2019-11-30 15:09:56 +08:00
|
|
|
|
package explorer
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"github.com/HFO4/cloudreve/pkg/filesystem"
|
2019-12-13 09:46:53 +08:00
|
|
|
|
"github.com/HFO4/cloudreve/pkg/filesystem/fsctx"
|
2019-11-30 15:09:56 +08:00
|
|
|
|
"github.com/HFO4/cloudreve/pkg/serializer"
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
|
)
|
|
|
|
|
|
2019-12-01 18:31:29 +08:00
|
|
|
|
// ItemMoveService 处理多文件/目录移动
|
|
|
|
|
type ItemMoveService struct {
|
|
|
|
|
SrcDir string `json:"src_dir" binding:"required,min=1,max=65535"`
|
|
|
|
|
Src ItemService `json:"src" binding:"exists"`
|
|
|
|
|
Dst string `json:"dst" binding:"required,min=1,max=65535"`
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-07 15:54:07 +08:00
|
|
|
|
// ItemRenameService 处理多文件/目录重命名
|
|
|
|
|
type ItemRenameService struct {
|
2019-12-08 13:03:08 +08:00
|
|
|
|
Src ItemService `json:"src" binding:"exists"`
|
|
|
|
|
NewName string `json:"new_name" binding:"required,min=1,max=255"`
|
2019-12-07 15:54:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-30 15:09:56 +08:00
|
|
|
|
// ItemService 处理多文件/目录相关服务
|
|
|
|
|
type ItemService struct {
|
2019-12-07 19:47:22 +08:00
|
|
|
|
Items []uint `json:"items" binding:"exists"`
|
|
|
|
|
Dirs []uint `json:"dirs" binding:"exists"`
|
2019-11-30 15:09:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-12 09:16:24 +08:00
|
|
|
|
// ArchiveAndDownload 创建归档并下載文件
|
|
|
|
|
func (service *ItemService) ArchiveAndDownload(ctx context.Context, c *gin.Context) serializer.Response {
|
2019-12-12 10:04:24 +08:00
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystemFromContext(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 检查用户组权限
|
|
|
|
|
if !fs.User.Group.OptionsSerialized.ArchiveDownloadEnabled {
|
|
|
|
|
return serializer.Err(serializer.CodeGroupNotAllowed, "当前用户组无法进行此操作", nil)
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 09:46:53 +08:00
|
|
|
|
//// 写HTTP头
|
|
|
|
|
//c.Header("Content-Type", "application/zip")
|
|
|
|
|
//c.Header("Content-Disposition", "attachment; filename=\"archive.zip\"")
|
|
|
|
|
|
2019-12-12 10:04:24 +08:00
|
|
|
|
// 开始压缩,获取压缩后的stream
|
2019-12-13 09:46:53 +08:00
|
|
|
|
ctx = context.WithValue(ctx, fsctx.GinCtx, c)
|
|
|
|
|
|
|
|
|
|
err = fs.Compress(ctx, service.Dirs, service.Items, c.Writer)
|
2019-12-12 10:04:24 +08:00
|
|
|
|
if err != nil {
|
2019-12-13 09:46:53 +08:00
|
|
|
|
return serializer.Err(serializer.CodeGroupNotAllowed, "无法创建", nil)
|
2019-12-12 10:04:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-12 09:16:24 +08:00
|
|
|
|
return serializer.Response{
|
|
|
|
|
Code: 0,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-30 15:09:56 +08:00
|
|
|
|
// Delete 删除对象
|
|
|
|
|
func (service *ItemService) Delete(ctx context.Context, c *gin.Context) serializer.Response {
|
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystemFromContext(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 删除对象
|
|
|
|
|
err = fs.Delete(ctx, service.Dirs, service.Items)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodeNotSet, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return serializer.Response{
|
|
|
|
|
Code: 0,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2019-12-01 18:31:29 +08:00
|
|
|
|
|
|
|
|
|
// Move 移动对象
|
|
|
|
|
func (service *ItemMoveService) Move(ctx context.Context, c *gin.Context) serializer.Response {
|
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystemFromContext(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-03 14:20:23 +08:00
|
|
|
|
// 移动对象
|
2019-12-01 18:31:29 +08:00
|
|
|
|
err = fs.Move(ctx, service.Src.Dirs, service.Src.Items, service.SrcDir, service.Dst)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodeNotSet, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return serializer.Response{
|
|
|
|
|
Code: 0,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2019-12-03 14:20:23 +08:00
|
|
|
|
|
|
|
|
|
// Copy 复制对象
|
|
|
|
|
func (service *ItemMoveService) Copy(ctx context.Context, c *gin.Context) serializer.Response {
|
|
|
|
|
// 复制操作只能对一个目录或文件对象进行操作
|
|
|
|
|
if len(service.Src.Items)+len(service.Src.Dirs) > 1 {
|
|
|
|
|
return serializer.ParamErr("只能复制一个对象", nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystemFromContext(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-07 15:54:07 +08:00
|
|
|
|
// 复制对象
|
2019-12-03 14:20:23 +08:00
|
|
|
|
err = fs.Copy(ctx, service.Src.Dirs, service.Src.Items, service.SrcDir, service.Dst)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodeNotSet, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return serializer.Response{
|
|
|
|
|
Code: 0,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
2019-12-07 15:54:07 +08:00
|
|
|
|
|
|
|
|
|
// Rename 重命名对象
|
|
|
|
|
func (service *ItemRenameService) Rename(ctx context.Context, c *gin.Context) serializer.Response {
|
2019-12-08 13:03:08 +08:00
|
|
|
|
// 重命名作只能对一个目录或文件对象进行操作
|
|
|
|
|
if len(service.Src.Items)+len(service.Src.Dirs) > 1 {
|
|
|
|
|
return serializer.ParamErr("只能操作一个对象", nil)
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-07 15:54:07 +08:00
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystemFromContext(c)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 重命名对象
|
2019-12-08 13:03:08 +08:00
|
|
|
|
err = fs.Rename(ctx, service.Src.Dirs, service.Src.Items, service.NewName)
|
2019-12-07 15:54:07 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodeNotSet, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return serializer.Response{
|
|
|
|
|
Code: 0,
|
|
|
|
|
}
|
|
|
|
|
}
|