mirror of https://github.com/elunez/eladmin
84 lines
3.0 KiB
Java
84 lines
3.0 KiB
Java
/*
|
|
* Copyright 2019-2020 Zheng Jie
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
package me.zhengjie.rest;
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
import me.zhengjie.annotation.Log;
|
|
import me.zhengjie.domain.LocalStorage;
|
|
import me.zhengjie.service.LocalStorageService;
|
|
import me.zhengjie.service.dto.LocalStorageQueryCriteria;
|
|
import org.springframework.data.domain.Pageable;
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.http.ResponseEntity;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import io.swagger.annotations.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* @author Zheng Jie
|
|
* @date 2019-09-05
|
|
*/
|
|
@RestController
|
|
@RequiredArgsConstructor
|
|
@Api(tags = "工具:本地存储管理")
|
|
@RequestMapping("/api/localStorage")
|
|
public class LocalStorageController {
|
|
|
|
private final LocalStorageService localStorageService;
|
|
|
|
@ApiOperation("查询文件")
|
|
@GetMapping
|
|
@PreAuthorize("@el.check('storage:list')")
|
|
public ResponseEntity<Object> query(LocalStorageQueryCriteria criteria, Pageable pageable){
|
|
return new ResponseEntity<>(localStorageService.queryAll(criteria,pageable),HttpStatus.OK);
|
|
}
|
|
|
|
@Log("导出数据")
|
|
@ApiOperation("导出数据")
|
|
@GetMapping(value = "/download")
|
|
@PreAuthorize("@el.check('storage:list')")
|
|
public void download(HttpServletResponse response, LocalStorageQueryCriteria criteria) throws IOException {
|
|
localStorageService.download(localStorageService.queryAll(criteria), response);
|
|
}
|
|
|
|
@ApiOperation("上传文件")
|
|
@PostMapping
|
|
@PreAuthorize("@el.check('storage:add')")
|
|
public ResponseEntity<Object> create(@RequestParam String name, @RequestParam("file") MultipartFile file){
|
|
return new ResponseEntity<>(localStorageService.create(name, file),HttpStatus.CREATED);
|
|
}
|
|
|
|
@ApiOperation("修改文件")
|
|
@PutMapping
|
|
@PreAuthorize("@el.check('storage:edit')")
|
|
public ResponseEntity<Object> update(@Validated @RequestBody LocalStorage resources){
|
|
localStorageService.update(resources);
|
|
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
|
|
}
|
|
|
|
@Log("多选删除")
|
|
@DeleteMapping
|
|
@ApiOperation("多选删除")
|
|
public ResponseEntity<Object> delete(@RequestBody Long[] ids) {
|
|
localStorageService.deleteAll(ids);
|
|
return new ResponseEntity<>(HttpStatus.OK);
|
|
}
|
|
} |