forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModuleController.cs
More file actions
132 lines (114 loc) · 3.86 KB
/
ModuleController.cs
File metadata and controls
132 lines (114 loc) · 3.86 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 ModuleController : ControllerBase
{
IModuleServices _ModuleServices;
/// <summary>
/// 构造函数
/// </summary>
/// <param name="ModuleServices"></param>
public ModuleController(IModuleServices ModuleServices )
{
_ModuleServices = ModuleServices;
}
// GET: api/User
[HttpGet]
public async Task<MessageModel<PageModel<Module>>> Get(int page = 1, string key = "")
{
var data = new MessageModel<PageModel<Module>>();
int intTotalCount = 50;
int TotalCount = 0;
int PageCount = 1;
List<Module> Modules = new List<Module>();
Modules = await _ModuleServices.Query(a => a.IsDeleted != true );
if (!string.IsNullOrEmpty(key))
{
Modules = Modules.Where(t => (t.Name != null && t.Name.Contains(key))).ToList();
}
//筛选后的数据总数
TotalCount = Modules.Count;
//筛选后的总页数
PageCount = (Math.Ceiling(TotalCount.ObjToDecimal() / intTotalCount.ObjToDecimal())).ObjToInt();
Modules = Modules.OrderByDescending(d => d.Id).Skip((page - 1) * intTotalCount).Take(intTotalCount).ToList();
return new MessageModel<PageModel<Module>>()
{
msg = "获取成功",
success = TotalCount >= 0,
response = new PageModel<Module>()
{
page = page,
pageCount = PageCount,
dataCount = TotalCount,
data = Modules,
}
};
}
// GET: api/User/5
[HttpGet("{id}")]
public string Get(string id)
{
return "value";
}
// POST: api/User
[HttpPost]
public async Task<MessageModel<string>> Post([FromBody] Module Module)
{
var data = new MessageModel<string>();
var id = (await _ModuleServices.Add(Module));
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] Module Module)
{
var data = new MessageModel<string>();
if (Module != null && Module.Id > 0)
{
data.success = await _ModuleServices.Update(Module);
if (data.success)
{
data.msg = "更新成功";
data.response = Module?.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 _ModuleServices.QueryByID(id);
userDetail.IsDeleted = true;
data.success = await _ModuleServices.Update(userDetail);
if (data.success)
{
data.msg = "删除成功";
data.response = userDetail?.Id.ObjToString();
}
}
return data;
}
}
}