增加批量删除文件接口

master
toesbieya 6 years ago
parent 13ca774f8d
commit fcedb14704
  1. 19
      java/cloud/web/file/src/main/java/cn/toesbieya/jxc/file/controller/FileController.java
  2. 16
      java/local/src/main/java/cn/toesbieya/jxc/controller/FileController.java

@ -2,31 +2,34 @@ package cn.toesbieya.jxc.file.controller;
import cn.toesbieya.jxc.common.model.vo.R;
import cn.toesbieya.jxc.file.service.FileService;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
@Controller
@RestController
@RequestMapping("file")
public class FileController {
@Resource
private FileService service;
@GetMapping("delete")
@ResponseBody
public R delete(@RequestParam String url) throws UnsupportedEncodingException {
service.delete(URLDecoder.decode(url, "utf-8"));
return R.success("删除成功");
}
@PostMapping("deleteBatch")
public R deleteBatch(@RequestBody String[] urls) {
if (urls.length == 0) {
return R.fail("参数错误");
}
service.deleteBatch(urls);
return R.success("批量删除成功");
}
@GetMapping("getToken")
@ResponseBody
public R getToken() {
return R.success(null, service.getToken());
}

@ -2,11 +2,7 @@ package cn.toesbieya.jxc.controller;
import cn.toesbieya.jxc.model.vo.R;
import cn.toesbieya.jxc.service.FileService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.io.UnsupportedEncodingException;
@ -14,7 +10,6 @@ import java.net.URLDecoder;
@RestController
@RequestMapping("file")
@Slf4j
public class FileController {
@Resource
private FileService service;
@ -25,6 +20,15 @@ public class FileController {
return R.success("删除成功");
}
@PostMapping("deleteBatch")
public R deleteBatch(@RequestBody String[] urls) {
if (urls.length == 0) {
return R.fail("参数错误");
}
service.deleteBatch(urls);
return R.success("批量删除成功");
}
@GetMapping("getToken")
public R getToken() {
return R.success(null, service.getToken());

Loading…
Cancel
Save