2016-10-21 16:35:26 +08:00
|
|
|
|
using Bootstrap.Admin.Models;
|
2016-10-23 15:46:18 +08:00
|
|
|
|
using Bootstrap.DataAccess;
|
2018-10-10 14:49:36 +08:00
|
|
|
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
2018-06-11 12:48:11 +08:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2018-06-07 00:45:47 +08:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
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>
|
2018-09-16 01:24:51 +08:00
|
|
|
|
public IActionResult Index()
|
2016-10-20 17:55:29 +08:00
|
|
|
|
{
|
2019-02-27 16:48:19 +08:00
|
|
|
|
var model = new HeaderBarModel(User.Identity);
|
|
|
|
|
var url = DictHelper.RetrieveHomeUrl(model.AppCode);
|
|
|
|
|
return url.Equals("~/Home/Index", System.StringComparison.OrdinalIgnoreCase) ? (IActionResult)View(model) : Redirect(url);
|
2016-10-20 17:55:29 +08:00
|
|
|
|
}
|
2018-11-20 22:27:24 +08:00
|
|
|
|
|
2018-06-11 12:48:11 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
2018-06-11 13:51:50 +08:00
|
|
|
|
/// <param name="id"></param>
|
2018-06-11 12:48:11 +08:00
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[AllowAnonymous]
|
2018-06-11 13:51:50 +08:00
|
|
|
|
public IActionResult Error(int id)
|
2018-06-11 12:48:11 +08:00
|
|
|
|
{
|
2019-03-07 01:12:36 +08:00
|
|
|
|
var model = ErrorModel.CreateById(id);
|
|
|
|
|
if (id != 403)
|
|
|
|
|
{
|
|
|
|
|
var returnUrl = Request.Query[CookieAuthenticationDefaults.ReturnUrlParameter].ToString();
|
|
|
|
|
if (!string.IsNullOrEmpty(returnUrl)) model.ReturnUrl = returnUrl;
|
|
|
|
|
}
|
2018-11-20 22:27:24 +08:00
|
|
|
|
return View(model);
|
2018-06-11 12:48:11 +08:00
|
|
|
|
}
|
2016-10-20 17:55:29 +08:00
|
|
|
|
}
|
|
|
|
|
}
|