BootstrapAdmin/Bootstrap.Admin/Controllers/HomeController.cs

86 lines
2.7 KiB
C#
Raw Normal View History

2016-10-21 16:35:26 +08:00
using Bootstrap.Admin.Models;
using Bootstrap.DataAccess;
using Bootstrap.Security;
using Longbow.Security.Principal;
2016-10-21 16:35:26 +08:00
using System.Web.Mvc;
using System.Web.Security;
2016-10-20 17:55:29 +08:00
namespace Bootstrap.Admin.Controllers
{
2016-10-21 16:35:26 +08:00
/// <summary>
///
/// </summary>
2016-10-20 17:55:29 +08:00
public class HomeController : Controller
{
2016-10-21 16:35:26 +08:00
/// <summary>
///
/// </summary>
/// <returns></returns>
2016-10-20 17:55:29 +08:00
public ActionResult Index()
{
var v = new HeaderBarModel();
v.HomeUrl = DictHelper.RetrieveHomeUrl();
2016-12-22 16:26:42 +08:00
if (v.HomeUrl.StartsWith("~/")) return View(v);
else return Redirect(v.HomeUrl);
2016-10-20 17:55:29 +08:00
}
2016-10-21 16:35:26 +08:00
/// <summary>
///
/// </summary>
2016-11-06 02:11:03 +08:00
/// <returns></returns>
public ActionResult Lock()
2016-11-06 02:11:03 +08:00
{
2016-11-06 12:28:53 +08:00
var user = UserHelper.RetrieveUsersByName(User.Identity.Name);
var model = new LockModel();
2016-11-06 12:28:53 +08:00
model.UserName = user.UserName;
model.DisplayName = user.DisplayName;
model.ReturnUrl = Url.Encode(Request.UrlReferrer.AbsoluteUri);
FormsAuthentication.SignOut();
2016-11-06 12:28:53 +08:00
return View(model);
2016-11-06 02:11:03 +08:00
}
/// <summary>
///
/// </summary>
/// <param name="userName"></param>
2016-10-21 16:35:26 +08:00
/// <param name="password"></param>
/// <param name="remember"></param>
/// <returns></returns>
[AllowAnonymous]
public ActionResult Login(LoginModel login)
2016-10-20 17:55:29 +08:00
{
FormsAuthentication.SignOut();
if (!string.IsNullOrEmpty(login.UserName) && (LgbPrincipal.Authenticate(login.UserName, login.Password) || BootstrapUser.Authenticate(login.UserName, login.Password)))
2016-10-21 16:35:26 +08:00
{
FormsAuthentication.RedirectFromLoginPage(login.UserName, login.Remember == "true");
2016-12-22 16:26:42 +08:00
return new EmptyResult();
2016-10-21 16:35:26 +08:00
}
return View(login);
2016-10-21 16:35:26 +08:00
}
2016-11-06 16:01:14 +08:00
/// <summary>
///
/// </summary>
/// <returns></returns>
[AllowAnonymous]
public ActionResult Register(User p)
2016-11-06 16:01:14 +08:00
{
if (string.IsNullOrEmpty(p.UserName) || string.IsNullOrEmpty(p.Password) || string.IsNullOrEmpty(p.DisplayName) || string.IsNullOrEmpty(p.Description)) return View();
p.UserStatus = 1;
var result = UserHelper.SaveUser(p);
2016-11-10 16:39:07 +08:00
if (result)
{
return Redirect("~/Content/html/RegResult.html");
}
2016-11-10 16:39:07 +08:00
else
return View();
2016-11-06 16:01:14 +08:00
}
2016-11-20 20:25:31 +08:00
/// <summary>
///
/// </summary>
/// <returns></returns>
[AllowAnonymous]
public ActionResult Mobile()
{
return View();
}
2016-10-20 17:55:29 +08:00
}
}