- 修改结构:OSS 七牛
This commit is contained in:
parent
e431f169fb
commit
0c987989fd
@ -197,7 +197,7 @@ export async function dictionaryDelete(params) {
|
|||||||
// file
|
// file
|
||||||
|
|
||||||
export async function fileGetQiniuToken() {
|
export async function fileGetQiniuToken() {
|
||||||
return request(`/admin-api/admins/file/get_qiniu_token`, {
|
return request(`/admin-api/admins/file/get-qiniu-token`, {
|
||||||
method: 'GET',
|
method: 'GET',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -30,6 +30,10 @@
|
|||||||
<artifactId>mall-spring-boot-starter-swagger</artifactId>
|
<artifactId>mall-spring-boot-starter-swagger</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.qiniu</groupId>
|
||||||
|
<artifactId>qiniu-java-sdk</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
@ -0,0 +1,38 @@
|
|||||||
|
package cn.iocoder.mall.system.rest.controller.admin;
|
||||||
|
|
||||||
|
import cn.iocoder.common.framework.vo.CommonResult;
|
||||||
|
import com.qiniu.util.Auth;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 文件模块(Admins API)
|
||||||
|
*
|
||||||
|
* author: sin
|
||||||
|
* time: 2020/4/20 9:41 上午
|
||||||
|
*/
|
||||||
|
@RestController
|
||||||
|
@RequestMapping("admins/file")
|
||||||
|
@Api(tags = "文件模块")
|
||||||
|
public class AdminsFileController {
|
||||||
|
|
||||||
|
private Logger logger = LoggerFactory.getLogger(getClass());
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private Auth auth;
|
||||||
|
@Value("${qiniu.bucket}")
|
||||||
|
private String bucket;
|
||||||
|
|
||||||
|
@GetMapping("/get-qiniu-token")
|
||||||
|
public CommonResult<String> getQiniuToken() {
|
||||||
|
String token = auth.uploadToken(bucket);
|
||||||
|
logger.info("[qiniu_token][token({}) get]", token);
|
||||||
|
return CommonResult.success(token);
|
||||||
|
}
|
||||||
|
}
|
@ -23,7 +23,7 @@ public class FileController {
|
|||||||
@Value("${qiniu.bucket}")
|
@Value("${qiniu.bucket}")
|
||||||
private String bucket;
|
private String bucket;
|
||||||
|
|
||||||
@GetMapping("/get_qiniu_token")
|
@GetMapping("/get-qiniu-token")
|
||||||
public CommonResult<String> getQiniuToken() {
|
public CommonResult<String> getQiniuToken() {
|
||||||
String token = auth.uploadToken(bucket);
|
String token = auth.uploadToken(bucket);
|
||||||
logger.info("[qiniu_token][token({}) get]", token);
|
logger.info("[qiniu_token][token({}) get]", token);
|
||||||
|
@ -18,7 +18,7 @@ server:
|
|||||||
|
|
||||||
admins:
|
admins:
|
||||||
security:
|
security:
|
||||||
ignore_urls: /admin-api/admins/passport/login, /admin-api/admins/file/get_qiniu_token
|
ignore_urls: /admin-api/admins/passport/login, /admin-api/admins/file/get-qiniu-token
|
||||||
|
|
||||||
# qiniu
|
# qiniu
|
||||||
qiniu:
|
qiniu:
|
||||||
|
Loading…
Reference in New Issue
Block a user