package com.iailab.module.system.api.oauth2; import com.iailab.framework.common.pojo.CommonResult; import com.iailab.module.system.api.oauth2.dto.OAuth2AccessTokenCheckRespDTO; import com.iailab.module.system.api.oauth2.dto.OAuth2AccessTokenCreateReqDTO; import com.iailab.module.system.api.oauth2.dto.OAuth2AccessTokenRespDTO; import com.iailab.module.system.enums.ApiConstants; import io.swagger.v3.oas.annotations.tags.Tag; import io.swagger.v3.oas.annotations.Parameter; import io.swagger.v3.oas.annotations.Parameters; import io.swagger.v3.oas.annotations.Operation; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.*; import javax.validation.Valid; @FeignClient(name = ApiConstants.NAME) @Tag(name = "RPC æœåŠ¡ - OAuth2.0 令牌") public interface OAuth2TokenApi { String PREFIX = ApiConstants.PREFIX + "/oauth2/token"; /** * æ ¡éªŒ Token çš„ URL 地å€ï¼Œä¸»è¦æ˜¯æ供给 Gateway 使用 */ @SuppressWarnings("HttpUrlsUsage") String URL_CHECK = "http://" + ApiConstants.NAME + PREFIX + "/check"; @PostMapping(PREFIX + "/create") @Operation(summary = "创建访问令牌") CommonResult<OAuth2AccessTokenRespDTO> createAccessToken(@Valid @RequestBody OAuth2AccessTokenCreateReqDTO reqDTO); @GetMapping(PREFIX + "/check") @Operation(summary = "æ ¡éªŒè®¿é—®ä»¤ç‰Œ") @Parameter(name = "accessToken", description = "访问令牌", required = true, example = "tudou") CommonResult<OAuth2AccessTokenCheckRespDTO> checkAccessToken(@RequestParam("accessToken") String accessToken); @DeleteMapping(PREFIX + "/remove") @Operation(summary = "移除访问令牌") @Parameter(name = "accessToken", description = "访问令牌", required = true, example = "tudou") CommonResult<OAuth2AccessTokenRespDTO> removeAccessToken(@RequestParam("accessToken") String accessToken); @PutMapping(PREFIX + "/refresh") @Operation(summary = "刷新访问令牌") @Parameters({ @Parameter(name = "refreshToken", description = "刷新令牌", required = true, example = "haha"), @Parameter(name = "clientId", description = "客户端编å·", required = true, example = "iailab") }) CommonResult<OAuth2AccessTokenRespDTO> refreshAccessToken(@RequestParam("refreshToken") String refreshToken, @RequestParam("clientId") String clientId); }