532 lines
19 KiB
C#
532 lines
19 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Claims;
|
|
using System.Threading.Tasks;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using Microsoft.AspNet.Identity;
|
|
using Microsoft.AspNet.Identity.EntityFramework;
|
|
using Microsoft.Owin.Security;
|
|
using Fab2ApprovalSystem.Models;
|
|
using System.Web.Security;
|
|
using Fab2ApprovalSystem.Misc;
|
|
using Fab2ApprovalSystem.DMO;
|
|
|
|
namespace Fab2ApprovalSystem.Controllers
|
|
{
|
|
[Authorize]
|
|
public class AccountController : Controller
|
|
{
|
|
public AccountController()
|
|
: this(new UserManager<ApplicationUser>(new UserStore<ApplicationUser>(new ApplicationDbContext())))
|
|
{
|
|
}
|
|
|
|
|
|
public AccountController(UserManager<ApplicationUser> userManager)
|
|
{
|
|
UserManager = userManager;
|
|
}
|
|
|
|
public UserManager<ApplicationUser> UserManager { get; private set; }
|
|
|
|
//
|
|
// GET: /Account/Login
|
|
[AllowAnonymous]
|
|
// try to make the browser refresh the login page every time, to prevent issues with changing usernames and the anti-forgery token validation
|
|
[OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]
|
|
public ActionResult Login(string returnUrl)
|
|
{
|
|
ViewBag.ReturnUrl = returnUrl;
|
|
return View();
|
|
}
|
|
|
|
[HttpPost]
|
|
[AllowAnonymous]
|
|
[ValidateAntiForgeryToken]
|
|
public ActionResult Login(LoginModel model, string returnUrl)
|
|
{
|
|
try
|
|
{
|
|
//if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
|
|
//{
|
|
// return RedirectToLocal(returnUrl);
|
|
//}
|
|
|
|
UserAccountDMO userDMO = new UserAccountDMO();
|
|
bool isLoginValid;
|
|
MembershipProvider domainProvider;
|
|
|
|
#if(DEBUG)
|
|
isLoginValid = true;
|
|
|
|
#endif
|
|
#if (!DEBUG)
|
|
|
|
bool isIFX = false;
|
|
//domainProvider = Membership.Providers["NA_ADMembershipProvider"];
|
|
//isLoginValid = domainProvider.ValidateUser(model.LoginID, model.Password);
|
|
|
|
if (GlobalVars.DBConnection.ToUpper() == "TEST" || GlobalVars.DBConnection.ToUpper() == "QUALITY")
|
|
isLoginValid = true;
|
|
else
|
|
{
|
|
isLoginValid = Functions.NA_ADAuthenticate(model.LoginID, model.Password);
|
|
if (!isLoginValid)
|
|
{
|
|
isLoginValid = Functions.IFX_ADAuthenticate(model.LoginID, model.Password);
|
|
isIFX = true;
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (isLoginValid)
|
|
{
|
|
//Check ITAR Permissions from AD group
|
|
#if(!DEBUG)
|
|
try
|
|
{
|
|
|
|
bool hasITARAccess = false;
|
|
|
|
//========TEMP CODE - NEEDS TO BE DELETED
|
|
//Functions.WriteEvent("Using DB for EC Auth for user " + model.LoginID, System.Diagnostics.EventLogEntryType.Information);
|
|
//hasITARAccess = userDMO.GetEC_AD_Users(model.LoginID);
|
|
//=============END OF TEMP CODE
|
|
|
|
|
|
if (GlobalVars.DBConnection.ToUpper() == "TEST" || GlobalVars.DBConnection.ToUpper() == "QUALITY")
|
|
{
|
|
hasITARAccess = true;
|
|
}
|
|
else
|
|
{
|
|
hasITARAccess = Functions.NA_HasITARAccess(model.LoginID, model.Password);
|
|
if (!hasITARAccess) // check the IFX domain
|
|
hasITARAccess = Functions.IFX_HasITARAccess(model.LoginID, model.Password);
|
|
}
|
|
userDMO.UpdateInsertITARAccess(model.LoginID, hasITARAccess ? "1" : "0");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ModelState.AddModelError("", "Not a member of the EC Domain" + ex.Message);
|
|
return View(model);
|
|
}
|
|
#endif
|
|
|
|
LoginModel user = userDMO.GetUser(model.LoginID);
|
|
if (user != null)
|
|
{
|
|
Session[GlobalVars.SESSION_USERID] = user.UserID;
|
|
Session[GlobalVars.SESSION_USERNAME] = user.FullName;
|
|
Session[GlobalVars.IS_ADMIN] = user.IsAdmin;
|
|
Session[GlobalVars.OOO] = user.OOO;
|
|
Session[GlobalVars.CAN_CREATE_PARTS_REQUEST] = user.IsAdmin || PartsRequestController.CanCreatePartsRequest(user.UserID);
|
|
|
|
FormsAuthentication.SetAuthCookie(user.LoginID, true);
|
|
return RedirectToLocal(returnUrl);
|
|
}
|
|
else
|
|
{
|
|
ModelState.AddModelError("", "The user name does not exist in the DB. Please contact the System Admin");
|
|
}
|
|
|
|
}
|
|
else
|
|
{
|
|
ModelState.AddModelError("", "The user name or password provided is incorrect.");
|
|
}
|
|
}
|
|
|
|
catch (Exception ex)
|
|
{
|
|
Functions.WriteEvent(@User.Identity.Name + " " + ex.InnerException , System.Diagnostics.EventLogEntryType.Error);
|
|
EventLogDMO.Add(new WinEventLog() { IssueID = 99999, UserID = @User.Identity.Name, DocumentType = "Login", OperationType = "Error", Comments = "Reject - " + ex.Message });
|
|
ModelState.AddModelError("", ex.Message);
|
|
}
|
|
|
|
return View(model);
|
|
// If we got this far, something failed, redisplay form
|
|
|
|
}
|
|
|
|
////
|
|
//// POST: /Account/Login
|
|
//[HttpPost]
|
|
//[AllowAnonymous]
|
|
//[ValidateAntiForgeryToken]
|
|
//public async Task<ActionResult> Login(LoginViewModel model, string returnUrl)
|
|
//{
|
|
// if (ModelState.IsValid)
|
|
// {
|
|
// var user = await UserManager.FindAsync(model.UserName, model.Password);
|
|
// if (user != null)
|
|
// {
|
|
// await SignInAsync(user, model.RememberMe);
|
|
// return RedirectToLocal(returnUrl);
|
|
// }
|
|
// else
|
|
// {
|
|
// ModelState.AddModelError("", "Invalid username or password.");
|
|
// }
|
|
// }
|
|
|
|
// // If we got this far, something failed, redisplay form
|
|
// return View(model);
|
|
//}
|
|
|
|
//
|
|
// GET: /Account/Register
|
|
[AllowAnonymous]
|
|
public ActionResult Register()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
//
|
|
// POST: /Account/Register
|
|
//[HttpPost]
|
|
//[AllowAnonymous]
|
|
//[ValidateAntiForgeryToken]
|
|
//public async Task<ActionResult> Register(RegisterViewModel model)
|
|
//{
|
|
// if (ModelState.IsValid)
|
|
// {
|
|
// var user = new ApplicationUser() { UserName = model.UserName };
|
|
// var result = await UserManager.CreateAsync(user, model.Password);
|
|
// if (result.Succeeded)
|
|
// {
|
|
// await SignInAsync(user, isPersistent: false);
|
|
// return RedirectToAction("Index", "Home");
|
|
// }
|
|
// else
|
|
// {
|
|
// AddErrors(result);
|
|
// }
|
|
// }
|
|
|
|
// // If we got this far, something failed, redisplay form
|
|
// return View(model);
|
|
//}
|
|
|
|
//
|
|
// POST: /Account/Disassociate
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public async Task<ActionResult> Disassociate(string loginProvider, string providerKey)
|
|
{
|
|
ManageMessageId? message = null;
|
|
IdentityResult result = await UserManager.RemoveLoginAsync(User.Identity.GetUserId(), new UserLoginInfo(loginProvider, providerKey));
|
|
if (result.Succeeded)
|
|
{
|
|
message = ManageMessageId.RemoveLoginSuccess;
|
|
}
|
|
else
|
|
{
|
|
message = ManageMessageId.Error;
|
|
}
|
|
return RedirectToAction("Manage", new { Message = message });
|
|
}
|
|
|
|
//
|
|
// GET: /Account/Manage
|
|
public ActionResult Manage(ManageMessageId? message)
|
|
{
|
|
//ViewBag.StatusMessage =
|
|
// message == ManageMessageId.ChangePasswordSuccess ? "Your password has been changed."
|
|
// : message == ManageMessageId.SetPasswordSuccess ? "Your password has been set."
|
|
// : message == ManageMessageId.RemoveLoginSuccess ? "The external login was removed."
|
|
// : message == ManageMessageId.Error ? "An error has occurred."
|
|
// : "";
|
|
//ViewBag.HasLocalPassword = HasPassword();
|
|
//ViewBag.ReturnUrl = Url.Action("Manage");
|
|
return View();
|
|
}
|
|
|
|
////
|
|
//// POST: /Account/Manage
|
|
//[HttpPost]
|
|
//[ValidateAntiForgeryToken]
|
|
//public async Task<ActionResult> Manage(ManageUserViewModel model)
|
|
//{
|
|
// bool hasPassword = HasPassword();
|
|
// ViewBag.HasLocalPassword = hasPassword;
|
|
// ViewBag.ReturnUrl = Url.Action("Manage");
|
|
// if (hasPassword)
|
|
// {
|
|
// if (ModelState.IsValid)
|
|
// {
|
|
// IdentityResult result = await UserManager.ChangePasswordAsync(User.Identity.GetUserId(), model.OldPassword, model.NewPassword);
|
|
// if (result.Succeeded)
|
|
// {
|
|
// return RedirectToAction("Manage", new { Message = ManageMessageId.ChangePasswordSuccess });
|
|
// }
|
|
// else
|
|
// {
|
|
// AddErrors(result);
|
|
// }
|
|
// }
|
|
// }
|
|
// else
|
|
// {
|
|
// // User does not have a password so remove any validation errors caused by a missing OldPassword field
|
|
// ModelState state = ModelState["OldPassword"];
|
|
// if (state != null)
|
|
// {
|
|
// state.Errors.Clear();
|
|
// }
|
|
|
|
// if (ModelState.IsValid)
|
|
// {
|
|
// IdentityResult result = await UserManager.AddPasswordAsync(User.Identity.GetUserId(), model.NewPassword);
|
|
// if (result.Succeeded)
|
|
// {
|
|
// return RedirectToAction("Manage", new { Message = ManageMessageId.SetPasswordSuccess });
|
|
// }
|
|
// else
|
|
// {
|
|
// AddErrors(result);
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
// // If we got this far, something failed, redisplay form
|
|
// return View(model);
|
|
//}
|
|
|
|
//
|
|
// POST: /Account/ExternalLogin
|
|
[HttpPost]
|
|
[AllowAnonymous]
|
|
[ValidateAntiForgeryToken]
|
|
public ActionResult ExternalLogin(string provider, string returnUrl)
|
|
{
|
|
// Request a redirect to the external login provider
|
|
return new ChallengeResult(provider, Url.Action("ExternalLoginCallback", "Account", new { ReturnUrl = returnUrl }));
|
|
}
|
|
|
|
////
|
|
//// GET: /Account/ExternalLoginCallback
|
|
//[AllowAnonymous]
|
|
//public async Task<ActionResult> ExternalLoginCallback(string returnUrl)
|
|
//{
|
|
// var loginInfo = await AuthenticationManager.GetExternalLoginInfoAsync();
|
|
// if (loginInfo == null)
|
|
// {
|
|
// return RedirectToAction("Login");
|
|
// }
|
|
|
|
// // Sign in the user with this external login provider if the user already has a login
|
|
// var user = await UserManager.FindAsync(loginInfo.Login);
|
|
// if (user != null)
|
|
// {
|
|
// await SignInAsync(user, isPersistent: false);
|
|
// return RedirectToLocal(returnUrl);
|
|
// }
|
|
// else
|
|
// {
|
|
// // If the user does not have an account, then prompt the user to create an account
|
|
// ViewBag.ReturnUrl = returnUrl;
|
|
// ViewBag.LoginProvider = loginInfo.Login.LoginProvider;
|
|
// return View("ExternalLoginConfirmation", new ExternalLoginConfirmationViewModel { UserName = loginInfo.DefaultUserName });
|
|
// }
|
|
//}
|
|
|
|
//
|
|
// POST: /Account/LinkLogin
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public ActionResult LinkLogin(string provider)
|
|
{
|
|
// Request a redirect to the external login provider to link a login for the current user
|
|
return new ChallengeResult(provider, Url.Action("LinkLoginCallback", "Account"), User.Identity.GetUserId());
|
|
}
|
|
|
|
//
|
|
// GET: /Account/LinkLoginCallback
|
|
public async Task<ActionResult> LinkLoginCallback()
|
|
{
|
|
var loginInfo = await AuthenticationManager.GetExternalLoginInfoAsync(XsrfKey, User.Identity.GetUserId());
|
|
if (loginInfo == null)
|
|
{
|
|
return RedirectToAction("Manage", new { Message = ManageMessageId.Error });
|
|
}
|
|
var result = await UserManager.AddLoginAsync(User.Identity.GetUserId(), loginInfo.Login);
|
|
if (result.Succeeded)
|
|
{
|
|
return RedirectToAction("Manage");
|
|
}
|
|
return RedirectToAction("Manage", new { Message = ManageMessageId.Error });
|
|
}
|
|
|
|
//
|
|
// POST: /Account/ExternalLoginConfirmation
|
|
//[HttpPost]
|
|
//[AllowAnonymous]
|
|
//[ValidateAntiForgeryToken]
|
|
//public async Task<ActionResult> ExternalLoginConfirmation(ExternalLoginConfirmationViewModel model, string returnUrl)
|
|
//{
|
|
// if (User.Identity.IsAuthenticated)
|
|
// {
|
|
// return RedirectToAction("Manage");
|
|
// }
|
|
|
|
// if (ModelState.IsValid)
|
|
// {
|
|
// // Get the information about the user from the external login provider
|
|
// var info = await AuthenticationManager.GetExternalLoginInfoAsync();
|
|
// if (info == null)
|
|
// {
|
|
// return View("ExternalLoginFailure");
|
|
// }
|
|
// var user = new ApplicationUser() { UserName = model.UserName };
|
|
// var result = await UserManager.CreateAsync(user);
|
|
// if (result.Succeeded)
|
|
// {
|
|
// result = await UserManager.AddLoginAsync(user.Id, info.Login);
|
|
// if (result.Succeeded)
|
|
// {
|
|
// await SignInAsync(user, isPersistent: false);
|
|
// return RedirectToLocal(returnUrl);
|
|
// }
|
|
// }
|
|
// AddErrors(result);
|
|
// }
|
|
|
|
// ViewBag.ReturnUrl = returnUrl;
|
|
// return View(model);
|
|
//}
|
|
|
|
//
|
|
// POST: /Account/LogOff
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public ActionResult LogOff()
|
|
{
|
|
//AuthenticationManager.SignOut(DefaultAuthenticationTypes.ExternalCookie);
|
|
//AuthenticationManager.SignOut();
|
|
FormsAuthentication.SignOut();
|
|
return RedirectToAction("Login", "Account");
|
|
}
|
|
|
|
//
|
|
// GET: /Account/ExternalLoginFailure
|
|
[AllowAnonymous]
|
|
public ActionResult ExternalLoginFailure()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
[ChildActionOnly]
|
|
public ActionResult RemoveAccountList()
|
|
{
|
|
var linkedAccounts = UserManager.GetLogins(User.Identity.GetUserId());
|
|
ViewBag.ShowRemoveButton = HasPassword() || linkedAccounts.Count > 1;
|
|
return (ActionResult)PartialView("_RemoveAccountPartial", linkedAccounts);
|
|
}
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && UserManager != null)
|
|
{
|
|
UserManager.Dispose();
|
|
UserManager = null;
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Helpers
|
|
// Used for XSRF protection when adding external logins
|
|
private const string XsrfKey = "XsrfId";
|
|
|
|
private IAuthenticationManager AuthenticationManager
|
|
{
|
|
get
|
|
{
|
|
return HttpContext.GetOwinContext().Authentication;
|
|
}
|
|
}
|
|
|
|
private async Task SignInAsync(ApplicationUser user, bool isPersistent)
|
|
{
|
|
AuthenticationManager.SignOut(DefaultAuthenticationTypes.ExternalCookie);
|
|
var identity = await UserManager.CreateIdentityAsync(user, DefaultAuthenticationTypes.ApplicationCookie);
|
|
AuthenticationManager.SignIn(new AuthenticationProperties() { IsPersistent = isPersistent }, identity);
|
|
}
|
|
|
|
private void AddErrors(IdentityResult result)
|
|
{
|
|
foreach (var error in result.Errors)
|
|
{
|
|
ModelState.AddModelError("", error);
|
|
}
|
|
}
|
|
|
|
private bool HasPassword()
|
|
{
|
|
var user = UserManager.FindById(User.Identity.GetUserId());
|
|
if (user != null)
|
|
{
|
|
return user.PasswordHash != null;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public enum ManageMessageId
|
|
{
|
|
ChangePasswordSuccess,
|
|
SetPasswordSuccess,
|
|
RemoveLoginSuccess,
|
|
Error
|
|
}
|
|
|
|
private ActionResult RedirectToLocal(string returnUrl)
|
|
{
|
|
if (Url.IsLocalUrl(returnUrl))
|
|
{
|
|
return Redirect(returnUrl);
|
|
}
|
|
else
|
|
{
|
|
|
|
//return RedirectToAction("HierarchicalDataTest", "Home");
|
|
|
|
return RedirectToAction("MyTasks", "Home");
|
|
//return RedirectToAction("Index", "Home", new { tabName = "MyTasks"});
|
|
}
|
|
}
|
|
|
|
private class ChallengeResult : HttpUnauthorizedResult
|
|
{
|
|
public ChallengeResult(string provider, string redirectUri) : this(provider, redirectUri, null)
|
|
{
|
|
}
|
|
|
|
public ChallengeResult(string provider, string redirectUri, string userId)
|
|
{
|
|
LoginProvider = provider;
|
|
RedirectUri = redirectUri;
|
|
UserId = userId;
|
|
}
|
|
|
|
public string LoginProvider { get; set; }
|
|
public string RedirectUri { get; set; }
|
|
public string UserId { get; set; }
|
|
|
|
public override void ExecuteResult(ControllerContext context)
|
|
{
|
|
var properties = new AuthenticationProperties() { RedirectUri = RedirectUri };
|
|
if (UserId != null)
|
|
{
|
|
properties.Dictionary[XsrfKey] = UserId;
|
|
}
|
|
context.HttpContext.GetOwinContext().Authentication.Challenge(properties, LoginProvider);
|
|
}
|
|
}
|
|
#endregion
|
|
}
|
|
}
|