parent
8e9c14388a
commit
d8020ffd35
@ -0,0 +1,42 @@
|
|||||||
|
package com.macro.mall.controller;
|
||||||
|
|
||||||
|
|
||||||
|
import com.macro.mall.dto.CommonResult;
|
||||||
|
import com.macro.mall.dto.OssCallbackResult;
|
||||||
|
import com.macro.mall.dto.OssPolicyResult;
|
||||||
|
import com.macro.mall.service.impl.OssServiceImpl;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
|
||||||
|
import javax.servlet.http.HttpServletRequest;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Oss相关操作接口
|
||||||
|
*/
|
||||||
|
@Controller
|
||||||
|
@Api(tags = "OssController",description = "Oss管理")
|
||||||
|
@RequestMapping("/aliyun/oss")
|
||||||
|
public class OssController {
|
||||||
|
@Autowired
|
||||||
|
private OssServiceImpl ossService;//阿里云服务
|
||||||
|
|
||||||
|
@ApiOperation(value = "oss上传签名生成")
|
||||||
|
@RequestMapping(value = "/policy",method = RequestMethod.GET)
|
||||||
|
@ResponseBody
|
||||||
|
public Object policy() {
|
||||||
|
OssPolicyResult result = ossService.policy();
|
||||||
|
return new CommonResult().success(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
@ApiOperation(value = "oss上传成功回调")//阿里云存储
|
||||||
|
@RequestMapping(value = "callback",method = RequestMethod.POST)
|
||||||
|
@ResponseBody
|
||||||
|
public Object callback(HttpServletRequest request) {
|
||||||
|
OssCallbackResult ossCallbackResult = ossService.callback(request);
|
||||||
|
return new CommonResult().success(ossCallbackResult);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue