mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
69 lines
1.6 KiB
C#
69 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using Infrastructure.Helper;
|
|
using OpenAuth.App;
|
|
using OpenAuth.Mvc.Models;
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
{
|
|
public class LoginController : Controller
|
|
{
|
|
private LoginApp _app;
|
|
|
|
public LoginController()
|
|
{
|
|
_app = AutofacExt.GetFromFac<LoginApp>();
|
|
}
|
|
// GET: Login
|
|
public ActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
[HttpPost]
|
|
public ActionResult Index(string username, string password)
|
|
{
|
|
try
|
|
{
|
|
SessionHelper.AddSessionUser( _app.Login(username, password));
|
|
return RedirectToAction("Index", "Home");
|
|
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
var response = new BjuiResponse
|
|
{
|
|
statusCode = "300",
|
|
message = e.Message
|
|
};
|
|
return View(response);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 开发者登陆
|
|
/// </summary>
|
|
public ActionResult LoginByDev()
|
|
{
|
|
try
|
|
{
|
|
SessionHelper.AddSessionUser(_app.LoginByDev());
|
|
return RedirectToAction("Index", "Home");
|
|
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
return View(e.Message);
|
|
}
|
|
}
|
|
|
|
public ActionResult Logout()
|
|
{
|
|
SessionHelper.Clear();
|
|
return RedirectToAction("Index", "Login");
|
|
}
|
|
}
|
|
} |