ningshuxia
2022-10-28 3ccb7c60e1ed8b6748ed7fb8b64b1dbe50d62abf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
using Microsoft.AspNetCore.Mvc;
using IStation.Model.Api;
using System.Net;
using System.Net.Http.Headers;
using Microsoft.Extensions.Hosting.Internal;
using Microsoft.AspNetCore.Http.Extensions;
using IStation.Untity;
 
namespace IStation.WebApi.Controllers
{
    /// <summary>
    /// UserAuthority标准Api
    /// </summary>
    [ApiController]
    [Route("v1/Standard/UserAuthority")]
    [ApiExplorerSettings(GroupName = "v1")]
    public class UserAuthority_StandardController : ControllerBase 
    {
        private Service.UserAuthority _service = new Service.UserAuthority();
 
        /// <summary>
        /// 通过 UserID 获取可下发的页面权限项列表
        /// </summary>
        [Route("GetAuthorizePageAuthTreeItemList")]
        [HttpGet]
        public Result GetAuthorizePageAuthTreeItemList(long UserID, string SoftType, string SoftTag)
        {
            if (UserID < 1)
            {
                return new Result(Code.Error, "UserID 参数错误");
            }
            if (string.IsNullOrEmpty(SoftType))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            if (string.IsNullOrEmpty(SoftTag))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
 
            var list = _service.GetAuthorizePageAuthTreeItemList(UserID, SoftType, SoftTag);
            return new Result<List<Model.AuthorizePageAuthTreeItem>>(list);
        }
 
        /// <summary>
        /// 通过 UserID 获取页面权限项列表
        /// </summary>
        [Route("GetPageAuthTreeItemList")]
        [HttpGet]
        public Result GetPageAuthTreeItemList(long UserID, string SoftType, string SoftTag)
        {
            if (UserID < 1)
            {
                return new Result(Code.Error, "UserID 参数错误");
            }
            if (string.IsNullOrEmpty(SoftType))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            if (string.IsNullOrEmpty(SoftTag))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            var list = _service.GetPageAuthTreeItemList(UserID, SoftType, SoftTag);
            return new Result<List<Model.PageAuthTreeItem>>(list);
        }
 
        /// <summary>
        /// 通过 UserID 获取页面权限拥有项列表
        /// </summary>
        [Route("GetPageAuthHaveTreeItemList")]
        [HttpGet]
        public Result GetPageAuthHaveTreeItemList(long UserID, string SoftType, string SoftTag)
        {
            if (UserID < 1)
            {
                return new Result(Code.Error, "UserID 参数错误");
            }
            if (string.IsNullOrEmpty(SoftType))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            if (string.IsNullOrEmpty(SoftTag))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            var list = _service.GetPageAuthHaveTreeItemList(UserID, SoftType, SoftTag);
            return new Result<List<Model.PageAuthHaveTreeItem>>(list);
        }
 
 
        /// <summary>
        /// 通过 UserID 获取可下发的页面权限树列表
        /// </summary>
        [Route("GetAuthorizePageAuthTreeList")]
        [HttpGet]
        public Result GetAuthorizePageAuthTreeList(long UserID, string SoftType, string SoftTag)
        {
            if (UserID < 1)
            {
                return new Result(Code.Error, "UserID 参数错误");
            }
            if (string.IsNullOrEmpty(SoftType))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            if (string.IsNullOrEmpty(SoftTag))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            var list = _service.GetAuthorizePageAuthTreeList(UserID, SoftType, SoftTag);
            return new Result<List<Model.AuthorizePageAuthTree>>(list);
        }
 
        /// <summary>
        /// 通过 UserID 获取页面权限树列表
        /// </summary>
        [Route("GetPageAuthTreeList")]
        [HttpGet]
        public Result GetPageAuthTreeList(long UserID, string SoftType, string SoftTag)
        {
            if (UserID < 1)
            {
                return new Result(Code.Error, "UserID 参数错误");
            }
            if (string.IsNullOrEmpty(SoftType))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            if (string.IsNullOrEmpty(SoftTag))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            var list = _service.GetPageAuthTreeList(UserID, SoftType, SoftTag);
            return new Result<List<Model.PageAuthTree>>(list);
        }
 
        /// <summary>
        /// 获取页面拥有权限树列表
        /// </summary>
        [Route("GetPageAuthHaveTreeList")]
        [HttpGet]
        public Result GetPageAuthHaveTreeList(long UserID, string SoftType, string SoftTag)
        {
            if (UserID < 1)
            {
                return new Result(Code.Error, "UserID 参数错误");
            }
            if (string.IsNullOrEmpty(SoftType))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            if (string.IsNullOrEmpty(SoftTag))
            {
                return new Result(Code.Error, "SoftTag 参数错误");
            }
            var list = _service.GetPageAuthHaveTreeList(UserID, SoftType, SoftTag);
            return new Result<List<Model.PageAuthHaveTree>>(list);
 
        }
 
        /// <summary>
        /// 下发权限
        /// </summary>
        [Route("Authorize")]
        [HttpPost]
        public Result Authorize(Model.UserAuthorize model)
        {
            if (model == null)
            {
                return new Result(Code.Error, "参数错误");
            }
            if (model.UserID < 1)
            {
                return new Result(Code.Error, "UserID 参数错误");
            }
            if (model.AuthItems == null || model.AuthItems.Count() < 1)
            {
                return new Result(Code.Error, "AuthItems 参数错误");
            }
            var status = _service.Authorize(model.UserID, model.AuthItems);
            return new Result<Model.eAuthorizeStatus>(status);
        }
 
 
    }
}