forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRoleController.cs
More file actions
132 lines (114 loc) · 3.79 KB
/
RoleController.cs
File metadata and controls
132 lines (114 loc) · 3.79 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Blog.Core.IServices;
using Blog.Core.Model;
using Blog.Core.Model.Models;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
namespace Blog.Core.Controllers
{
[Route("api/[controller]/[action]")]
[ApiController]
[Authorize("Permission")]
public class RoleController : ControllerBase
{
IRoleServices _roleServices;
/// <summary>
/// 构造函数
/// </summary>
/// <param name="roleServices"></param>
public RoleController(IRoleServices roleServices )
{
_roleServices = roleServices;
}
// GET: api/User
[HttpGet]
public async Task<MessageModel<PageModel<Role>>> Get(int page = 1, string key = "")
{
var data = new MessageModel<PageModel<Role>>();
int intTotalCount = 50;
int TotalCount = 0;
int PageCount = 1;
List<Role> Roles = new List<Role>();
Roles = await _roleServices.Query(a => a.IsDeleted != true );
if (!string.IsNullOrEmpty(key))
{
Roles = Roles.Where(t => (t.Name != null && t.Name.Contains(key))).ToList();
}
//筛选后的数据总数
TotalCount = Roles.Count;
//筛选后的总页数
PageCount = (Math.Ceiling(TotalCount.ObjToDecimal() / intTotalCount.ObjToDecimal())).ObjToInt();
Roles = Roles.OrderByDescending(d => d.Id).Skip((page - 1) * intTotalCount).Take(intTotalCount).ToList();
return new MessageModel<PageModel<Role>>()
{
msg = "获取成功",
success = TotalCount >= 0,
response = new PageModel<Role>()
{
page = page,
pageCount = PageCount,
dataCount = TotalCount,
data = Roles,
}
};
}
// GET: api/User/5
[HttpGet("{id}")]
public string Get(string id)
{
return "value";
}
// POST: api/User
[HttpPost]
public async Task<MessageModel<string>> Post([FromBody] Role Role)
{
var data = new MessageModel<string>();
var id = (await _roleServices.Add(Role));
data.success = id > 0;
if (data.success)
{
data.response = id.ObjToString();
data.msg = "添加成功";
}
return data;
}
// PUT: api/User/5
[HttpPut]
public async Task<MessageModel<string>> Put([FromBody] Role Role)
{
var data = new MessageModel<string>();
if (Role != null && Role.Id > 0)
{
data.success = await _roleServices.Update(Role);
if (data.success)
{
data.msg = "更新成功";
data.response = Role?.Id.ObjToString();
}
}
return data;
}
// DELETE: api/ApiWithActions/5
[HttpDelete]
public async Task<MessageModel<string>> Delete(int id)
{
var data = new MessageModel<string>();
if (id > 0)
{
var userDetail = await _roleServices.QueryByID(id);
userDetail.IsDeleted = true;
data.success = await _roleServices.Update(userDetail);
if (data.success)
{
data.msg = "删除成功";
data.response = userDetail?.Id.ObjToString();
}
}
return data;
}
}
}