-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathPageHistoryController.java
More file actions
192 lines (179 loc) · 8.62 KB
/
PageHistoryController.java
File metadata and controls
192 lines (179 loc) · 8.62 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
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
188
189
190
191
192
/**
* Copyright (c) 2023 - present TinyEngine Authors.
* Copyright (c) 2023 - present Huawei Cloud Computing Technologies Co., Ltd.
*
* Use of this source code is governed by an MIT-style license.
*
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/
package com.tinyengine.it.controller;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.tinyengine.it.common.base.PageQueryVo;
import com.tinyengine.it.common.base.Result;
import com.tinyengine.it.common.log.SystemControllerLog;
import com.tinyengine.it.model.dto.PublishedPageVo;
import com.tinyengine.it.model.entity.PageHistory;
import com.tinyengine.it.service.app.PageHistoryService;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
import java.util.regex.Pattern;
import javax.validation.Valid;
/**
* <p>
* 页面历史记录管理
* </p>
*
* @author lu -yg
* @since 2024-10-24
*/
@Validated
@RestController
@RequestMapping("/app-center/api")
@Tag(name = "页面历史")
public class PageHistoryController {
/**
* The Page history service.
*/
@Autowired
private PageHistoryService pageHistoryService;
/**
* 获取页面历史记录列表
*
* @param page the page
* @return all page history
*/
@Operation(summary = "获取页面历史记录列表", description = "获取页面历史记录列表", parameters = {
@Parameter(name = "page", description = "page页面主键id")}, responses = {
@ApiResponse(responseCode = "200", description = "返回信息",
content = @Content(mediaType = "application/json",
schema = @Schema(implementation = PageHistory.class))),
@ApiResponse(responseCode = "400", description = "请求失败")})
@SystemControllerLog(description = "获取页面历史记录列表")
@GetMapping("/pages/histories")
public Result<List<PageHistory>> getAllPageHistory(@RequestParam Integer page) {
PageHistory pageHistory = new PageHistory();
pageHistory.setPage(page);
return Result.success(pageHistoryService.findPageHistoryByCondition(pageHistory));
}
/**
* 查询发布的页面记录
*
* @param pageQueryVo the pageQueryVo
* @return page history
*/
@Operation(summary = "获取页面历史记录列表", description = "获取页面历史记录列表", parameters = {
@Parameter(name = "page", description = "page页面主键id")}, responses = {
@ApiResponse(responseCode = "200", description = "返回信息",
content = @Content(mediaType = "application/json",
schema = @Schema(implementation = PageHistory.class))),
@ApiResponse(responseCode = "400", description = "请求失败")})
@SystemControllerLog(description = "获取页面历史记录列表")
@PostMapping("/pages/history/published")
public Result<IPage<PublishedPageVo>> getLatestPublishPage(@RequestBody PageQueryVo<PublishedPageVo> pageQueryVo) {
IPage<PublishedPageVo> pageHistoryVoList = pageHistoryService.findLatestPublishPage(pageQueryVo);
return Result.success(pageHistoryVoList);
}
/**
* 获取页面历史记录明细
*
* @param historyId the id
* @return page history by id
*/
@Operation(summary = "获取页面历史记录明细", description = "获取页面历史记录明细", parameters = {
@Parameter(name = "id", description = "页面历史主键id")}, responses = {
@ApiResponse(responseCode = "200", description = "返回信息",
content = @Content(mediaType = "application/json",
schema = @Schema(implementation = PageHistory.class))),
@ApiResponse(responseCode = "400", description = "请求失败")})
@SystemControllerLog(description = "获取页面历史记录明细")
@GetMapping("/pages/histories/detail/{historyId}")
public Result<PageHistory> getPageHistoryById(@PathVariable Integer historyId) {
PageHistory pageHistory = pageHistoryService.findPageHistoryById(historyId);
return Result.success(pageHistory);
}
/**
* 创建页面历史记录
*
* @param pageHistory the page history
* @return result
*/
@Operation(summary = "创建页面历史记录", description = "创建页面历史记录", parameters = {
@Parameter(name = "pageHistory", description = "入参对象")}, responses = {
@ApiResponse(responseCode = "200", description = "返回信息",
content = @Content(mediaType = "application/json",
schema = @Schema(implementation = PageHistory.class))),
@ApiResponse(responseCode = "400", description = "请求失败")})
@SystemControllerLog(description = "创建页面历史记录")
@PostMapping("/pages/history/create")
public Result<PageHistory> createPageHistory(@Valid @RequestBody PageHistory pageHistory) {
PageHistory result;
if (pageHistory.getPage() != null && Pattern.matches("^[0-9]+$", pageHistory.getPage().toString())
&& pageHistory.getPageContent() != null) {
pageHistoryService.createPageHistory(pageHistory);
int historyId = pageHistory.getId();
result = pageHistoryService.findPageHistoryById(historyId);
} else {
return Result.failed("The request body is missing some parameters");
}
return Result.success(result);
}
/**
* 删除页面历史记录
*
* @param historyId the id
* @return result
*/
@Operation(summary = "删除页面历史记录", description = "删除页面历史记录", parameters = {
@Parameter(name = "id", description = "页面历史主键id")}, responses = {
@ApiResponse(responseCode = "200", description = "返回信息",
content = @Content(mediaType = "application/json",
schema = @Schema(implementation = PageHistory.class))),
@ApiResponse(responseCode = "400", description = "请求失败")})
@SystemControllerLog(description = "删除页面历史记录")
@GetMapping("/pages/histories/delete/{historyId}")
public Result<PageHistory> deletePageHistory(@PathVariable Integer historyId) {
PageHistory pageHistory = pageHistoryService.findPageHistoryById(historyId);
pageHistoryService.deletePageHistoryById(historyId);
return Result.success(pageHistory);
}
/**
* 查询页面历史记录
*
* @param app the app
* @param name the name
* @return result
*/
@Operation(summary = "根据名称查询页面历史记录", description = "根据名称查询页面历史记录",
parameters = {
@Parameter(name = "name", description = "页面名称"),
@Parameter(name = "app", description = "appId")
},
responses = {
@ApiResponse(responseCode = "200", description = "返回信息",
content = @Content(mediaType = "application/json",
schema = @Schema(implementation = PageHistory.class))),
@ApiResponse(responseCode = "400", description = "请求失败")})
@SystemControllerLog(description = "根据名称查询页面历史记录")
@GetMapping("/pages/histories/find")
public Result<List<PageHistory>> findPageHistory(@RequestParam("name") String name, @RequestParam Integer app) {
List<PageHistory> pageHistoryList = pageHistoryService.findPageHistoryByName(name, app);
return Result.success(pageHistoryList);
}
}