DocSpace-client/common/ASC.ActiveDirectory/Base/Data/LdapLogin.cs

73 lines
1.8 KiB
C#
Raw Normal View History

2022-03-14 18:58:06 +00:00
/*
*
* (c) Copyright Ascensio System Limited 2010-2021
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
2022-03-17 19:44:34 +00:00
namespace ASC.ActiveDirectory.Base.Data;
public class LdapLogin
2022-03-14 18:58:06 +00:00
{
2022-03-17 19:44:34 +00:00
public string Username { get; private set; }
public string Domain { get; private set; }
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
public LdapLogin(string username, string domain)
{
Username = username;
Domain = domain;
}
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
public override string ToString()
{
return !string.IsNullOrEmpty(Domain) ? string.Format("{0}@{1}", Username, Domain) : Username;
}
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
public static LdapLogin ParseLogin(string login)
{
if (string.IsNullOrEmpty(login))
return null;
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
string username;
string domain = null;
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
if (login.Contains("\\"))
{
var splited = login.Split('\\');
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
if (!splited.Any() || splited.Length != 2)
return null;
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
domain = splited[0];
username = splited[1];
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
}
else if (login.Contains("@"))
{
var splited = login.Split('@');
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
if (!splited.Any() || splited.Length != 2)
return null;
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
username = splited[0];
domain = splited[1];
}
else
{
username = login;
}
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
var result = new LdapLogin(username, domain);
2022-03-14 18:58:06 +00:00
2022-03-17 19:44:34 +00:00
return result;
2022-03-14 18:58:06 +00:00
}
}