Пользовательский механизм входа на сайт ASP.NET
Я работаю над веб-сайтом ASP.NET, и мне нужно уйти с каким-то настраиваемым, но простым механизмом входа. Я начал со знаменитого набора информации о сотрудниках
Вот что у меня так далеко:
На странице ASP.NET:
protected void ButtonLogOn_Click(object sender, EventArgs e)
{
if (String.IsNullOrEmpty(txtUserName.Value) || String.IsNullOrEmpty(txtPassword.Value))
labelMessage.Text = MessageFormatter.GetFormattedErrorMessage("You can login using a username and a password associated with your account. Make sure that it is typed correctly.");
else
{
//if the log-in is successful
LoginPage LoginBack = new LoginPage();
if (LoginBack.VerifyCredentials(txtUserName.Value, txtPassword.Value) == 0)
{
SiteLogin.PerformAuthentication(txtUserName.Value, checkBoxRemember.Checked);
}
else
{
labelMessage.Text = MessageFormatter.GetFormattedErrorMessage("<strong>Login Failed!</strong><hr/>The username and/or password you entered do not belong to any User account on our system.<br/>You can login using a username and a password associated with your account. Make sure that it is typed correctly.");
}
}
}
protected void ButtonAdminLogOn_Click(object sender, EventArgs e)
{
if (String.IsNullOrEmpty(txtUserName.Value) || String.IsNullOrEmpty(txtPassword.Value))
labelMessage.Text = MessageFormatter.GetFormattedErrorMessage("<strong>Login Please!</strong><hr/>You can login using a username and a password associated with your account. Make sure that it is typed correctly.");
else
{
//if the log-in is successful
if (txtUserName.Value == "admin" && txtPassword.Value == "123123")
{
SiteLogin.PerformAdminAuthentication("admin", checkBoxRemember.Checked);
}
else
{
labelMessage.Text = MessageFormatter.GetFormattedErrorMessage("<strong>Login Failed!</strong><hr/>The username and/or password you entered do not belong to any Administrator ccount on our system.<br/>You can login using a username and a password associated with your account. Make sure that it is typed correctly.");
}
}
}
И служебный класс
public static void PerformAuthentication(string userName, bool remember)
{
FormsAuthentication.RedirectFromLoginPage(userName, remember);
if (HttpContext.Current.Request.QueryString["ReturnUrl"] == null)
{
RedirectToDefaultPage();
}
else
{
HttpContext.Current.Response.Redirect(HttpContext.Current.Request.QueryString["ReturnUrl"]);
}
}
public static void PerformAdminAuthentication(string userName, bool remember)
{
FormsAuthentication.RedirectFromLoginPage(userName, remember);
if (HttpContext.Current.Request.QueryString["ReturnUrl"] == null)
{
RedirectToAdminDefaultPage();
}
else
{
HttpContext.Current.Response.Redirect(HttpContext.Current.Request.QueryString["ReturnUrl"]);
}
}
Моя форма входа имеет две кнопки: Логин администратора - это жестко запрограммированное имя / пароль. Обычная процедура входа в систему восходит к другой сборке, которая вызывает веб-сервис и проверяет имя пользователя и пароль по имени входа в домен.
Теперь есть еще один файл, который содержит код и сбивает меня с толку.
Global.asax
<script RunAt="server">
protected void Application_AuthenticateRequest(Object sender, EventArgs e)
{
if (HttpContext.Current.User != null)
{
if (HttpContext.Current.User.Identity.IsAuthenticated)
{
if (HttpContext.Current.User.Identity.AuthenticationType != "Forms")
{
throw new InvalidOperationException("Only forms authentication is supported, not " +
HttpContext.Current.User.Identity.AuthenticationType);
}
IIdentity userId = HttpContext.Current.User.Identity;
//if role info is already NOT loaded into cache, put the role info in cache
if (HttpContext.Current.Cache[userId.Name] == null)
{
string[] roles;
if (userId.Name == "admin")
{
roles = new string[1] { "administrators" };
}
else if (userId.Name == "member1")
{
roles = new string[1] { "employees" };
}
else
{
roles = new string[1] { "public" };
}
//1 hour sliding expiring time. Adding the roles in cache.
//This will be used in Application_AuthenticateRequest event located in Global.ascx.cs
//file to attach user Principal object.
HttpContext.Current.Cache.Add(userId.Name, roles, null, DateTime.MaxValue, TimeSpan.FromHours(1), CacheItemPriority.BelowNormal, null);
}
//now assign the user role in the current security context
HttpContext.Current.User = new GenericPrincipal(userId, (string[])HttpContext.Current.Cache[userId.Name]);
}
}
}
</script>
На веб-сайте есть несколько страниц "О нас", которые предоставляют бесплатный доступ, но остальное - для администратора или сотрудника. Имя и пароль моего администратора фиксированы, но логин сотрудника вводится в формате домена и требует проверки в целевом домене (все делается), а затем задает роль сотрудника.
Как мне это сделать в методе Application_AuthenticateRequest в файле Global.asax?
1 ответ
Установите разные режимы авторизации для разных папок (через Web.config или даже через оснастку IIS):
- Аноним для пользователя root (с информацией о страницах)
- Аутентификация форм для области ~/Admin
- Windows/NTLM для ~ / Область работодателей
Также вы можете использовать расширенный контроль входа в систему с пользовательским поставщиком членства.