mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
73 lines
2.9 KiB
C#
73 lines
2.9 KiB
C#
// ***********************************************************************
|
||
// Assembly : OpenAuth.Mvc
|
||
// Author : Administrator
|
||
// Created : 09-22-2015
|
||
//
|
||
// Last Modified By : Administrator
|
||
// Last Modified On : 09-22-2015
|
||
// ***********************************************************************
|
||
// <copyright file="BaseController.cs" company="">
|
||
// Copyright (c) . All rights reserved.
|
||
// </copyright>
|
||
// <summary>
|
||
// 基础控制器
|
||
// 继承该控制器可以防止未登录查看
|
||
// 继承该控制器后,如果想访问控制器中存在,但模块配置里面没有的Action(如:Home/Git),请使用AnonymousAttribute
|
||
// </summary>
|
||
// ***********************************************************************
|
||
|
||
using OpenAuth.Mvc.Models;
|
||
using System;
|
||
using System.Configuration;
|
||
using System.Linq;
|
||
using System.Reflection;
|
||
using System.Web;
|
||
using System.Web.Mvc;
|
||
using OpenAuth.App;
|
||
using OpenAuth.App.SSO;
|
||
|
||
namespace OpenAuth.Mvc.Controllers
|
||
{
|
||
public class BaseController : SSOController
|
||
{
|
||
protected BjuiResponse BjuiResponse = new BjuiResponse();
|
||
|
||
protected override void OnActionExecuting(ActionExecutingContext filterContext)
|
||
{
|
||
base.OnActionExecuting(filterContext);
|
||
|
||
var loginUser = AutofacExt.GetFromFac<LoginApp>().GetLoginUser();
|
||
|
||
var controllername = Request.RequestContext.RouteData.Values["controller"].ToString().ToLower();
|
||
var actionname = filterContext.ActionDescriptor.ActionName.ToLower();
|
||
|
||
var function = this.GetType().GetMethods().FirstOrDefault(u => u.Name.ToLower() == actionname);
|
||
if (function == null)
|
||
throw new Exception("未能找到Action");
|
||
|
||
var authorize = function.GetCustomAttribute(typeof(AuthenticateAttribute));
|
||
var module = loginUser.Modules.FirstOrDefault(u => u.Url.ToLower().Contains(controllername));
|
||
//当前登录用户没有Action记录&&Action没有anonymous标识
|
||
if (authorize != null && module == null)
|
||
{
|
||
filterContext.Result = new RedirectResult("/Login/Index");
|
||
return;
|
||
}
|
||
else
|
||
{
|
||
ViewBag.Module = module; //为View显示服务,主要是为了显示按钮
|
||
}
|
||
|
||
var version = ConfigurationManager.AppSettings["version"];
|
||
if (version == "demo")
|
||
{
|
||
HttpPostAttribute hobbyAttr = (HttpPostAttribute)Attribute.GetCustomAttribute(function, typeof(HttpPostAttribute));
|
||
if (actionname.Contains("del") || hobbyAttr != null) //客户端提交数据
|
||
{
|
||
throw new HttpException(400, "演示版本,不能进行该操作,当前模块:" + controllername +"/" +actionname);
|
||
}
|
||
}
|
||
|
||
}
|
||
}
|
||
} |