|
@@ -18,6 +18,7 @@ package org.apache.dolphinscheduler.api.controller;
|
|
|
|
|
|
|
|
|
import org.apache.dolphinscheduler.api.enums.Status;
|
|
|
+import org.apache.dolphinscheduler.api.exceptions.ApiException;
|
|
|
import org.apache.dolphinscheduler.api.service.AccessTokenService;
|
|
|
import org.apache.dolphinscheduler.api.utils.Result;
|
|
|
import org.apache.dolphinscheduler.common.Constants;
|
|
@@ -37,13 +38,14 @@ import springfox.documentation.annotations.ApiIgnore;
|
|
|
import java.util.Map;
|
|
|
|
|
|
import static org.apache.dolphinscheduler.api.enums.Status.*;
|
|
|
+
|
|
|
/**
|
|
|
* access token controller
|
|
|
*/
|
|
|
@Api(tags = "ACCESS_TOKEN_TAG", position = 1)
|
|
|
@RestController
|
|
|
@RequestMapping("/access-token")
|
|
|
-public class AccessTokenController extends BaseController{
|
|
|
+public class AccessTokenController extends BaseController {
|
|
|
|
|
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(AccessTokenController.class);
|
|
@@ -54,140 +56,125 @@ public class AccessTokenController extends BaseController{
|
|
|
|
|
|
/**
|
|
|
* create token
|
|
|
- * @param loginUser login user
|
|
|
- * @param userId token for user id
|
|
|
+ *
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param userId token for user id
|
|
|
* @param expireTime expire time for the token
|
|
|
- * @param token token
|
|
|
+ * @param token token
|
|
|
* @return create result state code
|
|
|
*/
|
|
|
@ApiIgnore
|
|
|
@PostMapping(value = "/create")
|
|
|
@ResponseStatus(HttpStatus.CREATED)
|
|
|
+ @ApiException(CREATE_ACCESS_TOKEN_ERROR)
|
|
|
public Result createToken(@ApiIgnore @RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
|
|
- @RequestParam(value = "userId") int userId,
|
|
|
- @RequestParam(value = "expireTime") String expireTime,
|
|
|
- @RequestParam(value = "token") String token){
|
|
|
+ @RequestParam(value = "userId") int userId,
|
|
|
+ @RequestParam(value = "expireTime") String expireTime,
|
|
|
+ @RequestParam(value = "token") String token) {
|
|
|
logger.info("login user {}, create token , userId : {} , token expire time : {} , token : {}", loginUser.getUserName(),
|
|
|
- userId,expireTime,token);
|
|
|
-
|
|
|
- try {
|
|
|
- Map<String, Object> result = accessTokenService.createToken(userId, expireTime, token);
|
|
|
- return returnDataList(result);
|
|
|
- }catch (Exception e){
|
|
|
- logger.error(CREATE_ACCESS_TOKEN_ERROR.getMsg(),e);
|
|
|
- return error(CREATE_ACCESS_TOKEN_ERROR.getCode(), CREATE_ACCESS_TOKEN_ERROR.getMsg());
|
|
|
- }
|
|
|
+ userId, expireTime, token);
|
|
|
+
|
|
|
+ Map<String, Object> result = accessTokenService.createToken(userId, expireTime, token);
|
|
|
+ return returnDataList(result);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* generate token string
|
|
|
- * @param loginUser login user
|
|
|
- * @param userId token for user
|
|
|
+ *
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param userId token for user
|
|
|
* @param expireTime expire time
|
|
|
* @return token string
|
|
|
*/
|
|
|
@ApiIgnore
|
|
|
@PostMapping(value = "/generate")
|
|
|
@ResponseStatus(HttpStatus.CREATED)
|
|
|
+ @ApiException(GENERATE_TOKEN_ERROR)
|
|
|
public Result generateToken(@RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
|
|
- @RequestParam(value = "userId") int userId,
|
|
|
- @RequestParam(value = "expireTime") String expireTime){
|
|
|
- logger.info("login user {}, generate token , userId : {} , token expire time : {}",loginUser,userId,expireTime);
|
|
|
- try {
|
|
|
- Map<String, Object> result = accessTokenService.generateToken(userId, expireTime);
|
|
|
- return returnDataList(result);
|
|
|
- }catch (Exception e){
|
|
|
- logger.error(GENERATE_TOKEN_ERROR.getMsg(),e);
|
|
|
- return error(GENERATE_TOKEN_ERROR.getCode(), GENERATE_TOKEN_ERROR.getMsg());
|
|
|
- }
|
|
|
+ @RequestParam(value = "userId") int userId,
|
|
|
+ @RequestParam(value = "expireTime") String expireTime) {
|
|
|
+ logger.info("login user {}, generate token , userId : {} , token expire time : {}", loginUser, userId, expireTime);
|
|
|
+ Map<String, Object> result = accessTokenService.generateToken(userId, expireTime);
|
|
|
+ return returnDataList(result);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* query access token list paging
|
|
|
*
|
|
|
* @param loginUser login user
|
|
|
- * @param pageNo page number
|
|
|
+ * @param pageNo page number
|
|
|
* @param searchVal search value
|
|
|
- * @param pageSize page size
|
|
|
+ * @param pageSize page size
|
|
|
* @return token list of page number and page size
|
|
|
*/
|
|
|
- @ApiOperation(value = "queryAccessTokenList", notes= "QUERY_ACCESS_TOKEN_LIST_NOTES")
|
|
|
+ @ApiOperation(value = "queryAccessTokenList", notes = "QUERY_ACCESS_TOKEN_LIST_NOTES")
|
|
|
@ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "searchVal", value = "SEARCH_VAL", dataType ="String"),
|
|
|
+ @ApiImplicitParam(name = "searchVal", value = "SEARCH_VAL", dataType = "String"),
|
|
|
@ApiImplicitParam(name = "pageNo", value = "PAGE_NO", dataType = "Int", example = "1"),
|
|
|
- @ApiImplicitParam(name = "pageSize", value = "PAGE_SIZE", dataType ="Int",example = "20")
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "PAGE_SIZE", dataType = "Int", example = "20")
|
|
|
})
|
|
|
- @GetMapping(value="/list-paging")
|
|
|
+ @GetMapping(value = "/list-paging")
|
|
|
@ResponseStatus(HttpStatus.OK)
|
|
|
+ @ApiException(QUERY_ACCESSTOKEN_LIST_PAGING_ERROR)
|
|
|
public Result queryAccessTokenList(@ApiIgnore @RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
|
|
- @RequestParam("pageNo") Integer pageNo,
|
|
|
- @RequestParam(value = "searchVal", required = false) String searchVal,
|
|
|
- @RequestParam("pageSize") Integer pageSize){
|
|
|
+ @RequestParam("pageNo") Integer pageNo,
|
|
|
+ @RequestParam(value = "searchVal", required = false) String searchVal,
|
|
|
+ @RequestParam("pageSize") Integer pageSize) {
|
|
|
logger.info("login user {}, list access token paging, pageNo: {}, searchVal: {}, pageSize: {}",
|
|
|
- loginUser.getUserName(),pageNo,searchVal,pageSize);
|
|
|
- try{
|
|
|
- Map<String, Object> result = checkPageParams(pageNo, pageSize);
|
|
|
- if(result.get(Constants.STATUS) != Status.SUCCESS){
|
|
|
- return returnDataListPaging(result);
|
|
|
- }
|
|
|
- searchVal = ParameterUtils.handleEscapes(searchVal);
|
|
|
- result = accessTokenService.queryAccessTokenList(loginUser, searchVal, pageNo, pageSize);
|
|
|
+ loginUser.getUserName(), pageNo, searchVal, pageSize);
|
|
|
+
|
|
|
+ Map<String, Object> result = checkPageParams(pageNo, pageSize);
|
|
|
+ if (result.get(Constants.STATUS) != Status.SUCCESS) {
|
|
|
return returnDataListPaging(result);
|
|
|
- }catch (Exception e){
|
|
|
- logger.error(QUERY_ACCESSTOKEN_LIST_PAGING_ERROR.getMsg(),e);
|
|
|
- return error(QUERY_ACCESSTOKEN_LIST_PAGING_ERROR.getCode(),QUERY_ACCESSTOKEN_LIST_PAGING_ERROR.getMsg());
|
|
|
}
|
|
|
+ searchVal = ParameterUtils.handleEscapes(searchVal);
|
|
|
+ result = accessTokenService.queryAccessTokenList(loginUser, searchVal, pageNo, pageSize);
|
|
|
+ return returnDataListPaging(result);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* delete access token by id
|
|
|
+ *
|
|
|
* @param loginUser login user
|
|
|
- * @param id token id
|
|
|
+ * @param id token id
|
|
|
* @return delete result code
|
|
|
*/
|
|
|
@ApiIgnore
|
|
|
@PostMapping(value = "/delete")
|
|
|
@ResponseStatus(HttpStatus.OK)
|
|
|
+ @ApiException(DELETE_ACCESS_TOKEN_ERROR)
|
|
|
public Result delAccessTokenById(@RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
|
|
- @RequestParam(value = "id") int id) {
|
|
|
+ @RequestParam(value = "id") int id) {
|
|
|
logger.info("login user {}, delete access token, id: {},", loginUser.getUserName(), id);
|
|
|
- try {
|
|
|
- Map<String, Object> result = accessTokenService.delAccessTokenById(loginUser, id);
|
|
|
- return returnDataList(result);
|
|
|
- }catch (Exception e){
|
|
|
- logger.error(DELETE_ACCESS_TOKEN_ERROR.getMsg(),e);
|
|
|
- return error(Status.DELETE_ACCESS_TOKEN_ERROR.getCode(), Status.DELETE_ACCESS_TOKEN_ERROR.getMsg());
|
|
|
- }
|
|
|
+ Map<String, Object> result = accessTokenService.delAccessTokenById(loginUser, id);
|
|
|
+ return returnDataList(result);
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* update token
|
|
|
- * @param loginUser login user
|
|
|
- * @param id token id
|
|
|
- * @param userId token for user
|
|
|
+ *
|
|
|
+ * @param loginUser login user
|
|
|
+ * @param id token id
|
|
|
+ * @param userId token for user
|
|
|
* @param expireTime token expire time
|
|
|
- * @param token token string
|
|
|
+ * @param token token string
|
|
|
* @return update result code
|
|
|
*/
|
|
|
@ApiIgnore
|
|
|
@PostMapping(value = "/update")
|
|
|
@ResponseStatus(HttpStatus.OK)
|
|
|
+ @ApiException(UPDATE_ACCESS_TOKEN_ERROR)
|
|
|
public Result updateToken(@RequestAttribute(value = Constants.SESSION_USER) User loginUser,
|
|
|
@RequestParam(value = "id") int id,
|
|
|
@RequestParam(value = "userId") int userId,
|
|
|
@RequestParam(value = "expireTime") String expireTime,
|
|
|
- @RequestParam(value = "token") String token){
|
|
|
+ @RequestParam(value = "token") String token) {
|
|
|
logger.info("login user {}, update token , userId : {} , token expire time : {} , token : {}", loginUser.getUserName(),
|
|
|
- userId,expireTime,token);
|
|
|
-
|
|
|
- try {
|
|
|
- Map<String, Object> result = accessTokenService.updateToken(id,userId, expireTime, token);
|
|
|
- return returnDataList(result);
|
|
|
- }catch (Exception e){
|
|
|
- logger.error(UPDATE_ACCESS_TOKEN_ERROR.getMsg(),e);
|
|
|
- return error(UPDATE_ACCESS_TOKEN_ERROR.getCode(), UPDATE_ACCESS_TOKEN_ERROR.getMsg());
|
|
|
- }
|
|
|
+ userId, expireTime, token);
|
|
|
+
|
|
|
+ Map<String, Object> result = accessTokenService.updateToken(id, userId, expireTime, token);
|
|
|
+ return returnDataList(result);
|
|
|
}
|
|
|
|
|
|
}
|