2020-01-27 00:34:39 -05:00
|
|
|
|
package share
|
|
|
|
|
|
|
|
|
|
import (
|
2020-01-27 23:41:00 -05:00
|
|
|
|
"context"
|
2020-01-27 00:34:39 -05:00
|
|
|
|
"fmt"
|
|
|
|
|
model "github.com/HFO4/cloudreve/models"
|
2020-01-27 23:41:00 -05:00
|
|
|
|
"github.com/HFO4/cloudreve/pkg/filesystem"
|
2020-01-28 00:40:19 -05:00
|
|
|
|
"github.com/HFO4/cloudreve/pkg/filesystem/fsctx"
|
2020-01-30 01:22:03 -05:00
|
|
|
|
"github.com/HFO4/cloudreve/pkg/hashid"
|
2020-01-27 00:34:39 -05:00
|
|
|
|
"github.com/HFO4/cloudreve/pkg/serializer"
|
|
|
|
|
"github.com/HFO4/cloudreve/pkg/util"
|
2020-01-28 00:40:19 -05:00
|
|
|
|
"github.com/HFO4/cloudreve/service/explorer"
|
2020-01-27 00:34:39 -05:00
|
|
|
|
"github.com/gin-gonic/gin"
|
2020-01-30 00:21:21 -05:00
|
|
|
|
"path"
|
2020-01-27 00:34:39 -05:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ShareGetService 获取分享服务
|
|
|
|
|
type ShareGetService struct {
|
|
|
|
|
Password string `form:"password" binding:"max=255"`
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-31 00:18:32 -05:00
|
|
|
|
// Service 对分享进行操作的服务,
|
2020-01-30 00:21:21 -05:00
|
|
|
|
// path 为可选文件完整路径,在目录分享下有效
|
2020-01-31 00:18:32 -05:00
|
|
|
|
type Service struct {
|
2020-01-30 00:21:21 -05:00
|
|
|
|
Path string `form:"path" uri:"path" binding:"max=65535"`
|
2020-01-27 23:41:00 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-31 00:18:32 -05:00
|
|
|
|
// ArchiveService 分享归档下载服务
|
|
|
|
|
type ArchiveService struct {
|
|
|
|
|
Path string `json:"path" binding:"required,max=65535"`
|
|
|
|
|
Items []uint `json:"items" binding:"exists"`
|
|
|
|
|
Dirs []uint `json:"dirs" binding:"exists"`
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 00:34:39 -05:00
|
|
|
|
// Get 获取分享内容
|
|
|
|
|
func (service *ShareGetService) Get(c *gin.Context) serializer.Response {
|
2020-01-29 00:45:27 -05:00
|
|
|
|
shareCtx, _ := c.Get("share")
|
|
|
|
|
share := shareCtx.(*model.Share)
|
|
|
|
|
userCtx, _ := c.Get("user")
|
|
|
|
|
user := userCtx.(*model.User)
|
2020-01-27 00:34:39 -05:00
|
|
|
|
|
|
|
|
|
// 是否已解锁
|
|
|
|
|
unlocked := true
|
|
|
|
|
if share.Password != "" {
|
|
|
|
|
sessionKey := fmt.Sprintf("share_unlock_%d", share.ID)
|
|
|
|
|
unlocked = util.GetSession(c, sessionKey) != nil
|
|
|
|
|
if !unlocked && service.Password != "" {
|
|
|
|
|
// 如果未解锁,且指定了密码,则尝试解锁
|
|
|
|
|
if service.Password == share.Password {
|
|
|
|
|
unlocked = true
|
|
|
|
|
util.SetSession(c, map[string]interface{}{sessionKey: true})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 23:41:00 -05:00
|
|
|
|
if unlocked {
|
|
|
|
|
share.Viewed()
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-30 22:27:52 -05:00
|
|
|
|
// 如果已经下载过或者是自己的分享,不需要付积分
|
|
|
|
|
if share.UserID == user.ID || share.WasDownloadedBy(user, c) {
|
2020-01-27 23:41:00 -05:00
|
|
|
|
share.Score = 0
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 00:34:39 -05:00
|
|
|
|
return serializer.Response{
|
|
|
|
|
Code: 0,
|
|
|
|
|
Data: serializer.BuildShareResponse(share, unlocked),
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-27 23:41:00 -05:00
|
|
|
|
|
|
|
|
|
// CreateDownloadSession 创建下载会话
|
2020-01-31 00:18:32 -05:00
|
|
|
|
func (service *Service) CreateDownloadSession(c *gin.Context) serializer.Response {
|
2020-01-29 00:45:27 -05:00
|
|
|
|
shareCtx, _ := c.Get("share")
|
|
|
|
|
share := shareCtx.(*model.Share)
|
|
|
|
|
userCtx, _ := c.Get("user")
|
|
|
|
|
user := userCtx.(*model.User)
|
2020-01-27 23:41:00 -05:00
|
|
|
|
|
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystem(user)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
defer fs.Recycle()
|
|
|
|
|
|
|
|
|
|
// 重设文件系统处理目标为源文件
|
|
|
|
|
err = fs.SetTargetByInterface(share.GetSource())
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, "源文件不存在", err)
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-30 22:27:52 -05:00
|
|
|
|
// 重设根目录
|
|
|
|
|
if share.IsDir {
|
|
|
|
|
fs.Root = &fs.DirTarget[0]
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-27 23:41:00 -05:00
|
|
|
|
// 取得下载地址
|
2020-01-30 01:22:03 -05:00
|
|
|
|
downloadURL, err := fs.GetDownloadURL(context.Background(), service.Path, "download_timeout")
|
2020-01-27 23:41:00 -05:00
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodeNotSet, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return serializer.Response{
|
|
|
|
|
Code: 0,
|
|
|
|
|
Data: downloadURL,
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-28 00:40:19 -05:00
|
|
|
|
|
|
|
|
|
// PreviewContent 预览文件,需要登录会话, isText - 是否为文本文件,文本文件会
|
|
|
|
|
// 强制经由服务端中转
|
2020-01-31 00:18:32 -05:00
|
|
|
|
func (service *Service) PreviewContent(ctx context.Context, c *gin.Context, isText bool) serializer.Response {
|
2020-01-29 00:45:27 -05:00
|
|
|
|
shareCtx, _ := c.Get("share")
|
|
|
|
|
share := shareCtx.(*model.Share)
|
2020-01-28 00:40:19 -05:00
|
|
|
|
|
2020-01-28 22:03:09 -05:00
|
|
|
|
// 用于调下层service
|
2020-01-30 01:22:03 -05:00
|
|
|
|
if share.IsDir {
|
|
|
|
|
ctx = context.WithValue(ctx, fsctx.FolderModelCtx, share.GetSource())
|
|
|
|
|
} else {
|
|
|
|
|
ctx = context.WithValue(ctx, fsctx.FileModelCtx, share.GetSource())
|
|
|
|
|
}
|
2020-01-28 00:40:19 -05:00
|
|
|
|
subService := explorer.SingleFileService{
|
2020-01-30 01:22:03 -05:00
|
|
|
|
Path: service.Path,
|
2020-01-28 00:40:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return subService.PreviewContent(ctx, c, isText)
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-28 23:16:52 -05:00
|
|
|
|
// CreateDocPreviewSession 创建Office预览会话,返回预览地址
|
2020-01-31 00:18:32 -05:00
|
|
|
|
func (service *Service) CreateDocPreviewSession(c *gin.Context) serializer.Response {
|
2020-01-29 00:45:27 -05:00
|
|
|
|
shareCtx, _ := c.Get("share")
|
|
|
|
|
share := shareCtx.(*model.Share)
|
2020-01-28 23:16:52 -05:00
|
|
|
|
|
|
|
|
|
// 用于调下层service
|
2020-01-30 01:22:03 -05:00
|
|
|
|
ctx := context.Background()
|
|
|
|
|
if share.IsDir {
|
|
|
|
|
ctx = context.WithValue(ctx, fsctx.FolderModelCtx, share.GetSource())
|
|
|
|
|
} else {
|
|
|
|
|
ctx = context.WithValue(ctx, fsctx.FileModelCtx, share.GetSource())
|
|
|
|
|
}
|
2020-01-28 23:16:52 -05:00
|
|
|
|
subService := explorer.SingleFileService{
|
2020-01-30 01:22:03 -05:00
|
|
|
|
Path: service.Path,
|
2020-01-28 23:16:52 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return subService.CreateDocPreviewSession(ctx, c)
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-29 00:45:27 -05:00
|
|
|
|
// SaveToMyFile 将此分享转存到自己的网盘
|
2020-01-31 00:18:32 -05:00
|
|
|
|
func (service *Service) SaveToMyFile(c *gin.Context) serializer.Response {
|
2020-01-29 00:45:27 -05:00
|
|
|
|
shareCtx, _ := c.Get("share")
|
|
|
|
|
share := shareCtx.(*model.Share)
|
|
|
|
|
userCtx, _ := c.Get("user")
|
|
|
|
|
user := userCtx.(*model.User)
|
|
|
|
|
|
|
|
|
|
// 不能转存自己的文件
|
|
|
|
|
if share.UserID == user.ID {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, "不能转存自己的分享", nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystem(user)
|
2020-01-28 00:40:19 -05:00
|
|
|
|
if err != nil {
|
2020-01-29 00:45:27 -05:00
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
2020-01-28 00:40:19 -05:00
|
|
|
|
}
|
2020-01-29 00:45:27 -05:00
|
|
|
|
defer fs.Recycle()
|
2020-01-28 00:40:19 -05:00
|
|
|
|
|
2020-01-29 00:45:27 -05:00
|
|
|
|
// 重设文件系统处理目标为源文件
|
|
|
|
|
err = fs.SetTargetByInterface(share.GetSource())
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, "源文件不存在", err)
|
2020-01-28 22:03:09 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-29 00:45:27 -05:00
|
|
|
|
err = fs.SaveTo(context.Background(), service.Path)
|
2020-01-28 00:40:19 -05:00
|
|
|
|
if err != nil {
|
2020-01-29 00:45:27 -05:00
|
|
|
|
return serializer.Err(serializer.CodeNotSet, err.Error(), err)
|
2020-01-28 00:40:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-29 00:45:27 -05:00
|
|
|
|
return serializer.Response{}
|
2020-01-28 00:40:19 -05:00
|
|
|
|
}
|
2020-01-30 00:21:21 -05:00
|
|
|
|
|
|
|
|
|
// List 列出分享的目录下的对象
|
2020-01-31 00:18:32 -05:00
|
|
|
|
func (service *Service) List(c *gin.Context) serializer.Response {
|
2020-01-30 00:21:21 -05:00
|
|
|
|
shareCtx, _ := c.Get("share")
|
|
|
|
|
share := shareCtx.(*model.Share)
|
|
|
|
|
|
|
|
|
|
if !share.IsDir {
|
|
|
|
|
return serializer.ParamErr("此分享无法列目录", nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !path.IsAbs(service.Path) {
|
|
|
|
|
return serializer.ParamErr("路径无效", nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystem(share.GetCreator())
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
defer fs.Recycle()
|
|
|
|
|
|
|
|
|
|
// 上下文
|
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
|
|
// 重设根目录
|
2020-01-30 22:27:52 -05:00
|
|
|
|
fs.Root = share.GetSource().(*model.Folder)
|
|
|
|
|
fs.Root.Name = "/"
|
2020-01-30 00:21:21 -05:00
|
|
|
|
|
2020-01-30 01:22:03 -05:00
|
|
|
|
// 分享Key上下文
|
|
|
|
|
ctx = context.WithValue(ctx, fsctx.ShareKeyCtx, hashid.HashID(share.ID, hashid.ShareID))
|
|
|
|
|
|
2020-01-30 00:21:21 -05:00
|
|
|
|
// 获取子项目
|
|
|
|
|
objects, err := fs.List(ctx, service.Path, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodeCreateFolderFailed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return serializer.Response{
|
|
|
|
|
Code: 0,
|
|
|
|
|
Data: objects,
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-01-31 00:18:32 -05:00
|
|
|
|
|
|
|
|
|
// Archive 创建批量下载归档
|
|
|
|
|
func (service *ArchiveService) Archive(c *gin.Context) serializer.Response {
|
|
|
|
|
shareCtx, _ := c.Get("share")
|
|
|
|
|
share := shareCtx.(*model.Share)
|
|
|
|
|
userCtx, _ := c.Get("user")
|
|
|
|
|
user := userCtx.(*model.User)
|
|
|
|
|
|
|
|
|
|
// 是否有权限
|
|
|
|
|
if !user.Group.OptionsSerialized.ArchiveDownloadEnabled {
|
|
|
|
|
return serializer.Err(serializer.CodeNoPermissionErr, "您的用户组无权进行此操作", nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !share.IsDir {
|
|
|
|
|
return serializer.ParamErr("此分享无法进行打包", nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 创建文件系统
|
|
|
|
|
fs, err := filesystem.NewFileSystem(user)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return serializer.Err(serializer.CodePolicyNotAllowed, err.Error(), err)
|
|
|
|
|
}
|
|
|
|
|
defer fs.Recycle()
|
|
|
|
|
|
|
|
|
|
// 重设根目录
|
|
|
|
|
fs.Root = share.GetSource().(*model.Folder)
|
|
|
|
|
|
|
|
|
|
// 找到要打包文件的父目录
|
|
|
|
|
exist, parent := fs.IsPathExist(service.Path)
|
|
|
|
|
if !exist {
|
|
|
|
|
return serializer.Err(serializer.CodeNotFound, "路径不存在", nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ctx := context.WithValue(context.Background(), fsctx.LimitParentCtx, parent)
|
|
|
|
|
|
|
|
|
|
// 用于调下层service
|
|
|
|
|
tempUser := share.GetCreator()
|
|
|
|
|
tempUser.Group.OptionsSerialized.ArchiveDownloadEnabled = true
|
|
|
|
|
c.Set("user", tempUser)
|
|
|
|
|
|
|
|
|
|
subService := explorer.ItemService{
|
|
|
|
|
Items: service.Items,
|
|
|
|
|
Dirs: service.Dirs,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return subService.Archive(ctx, c)
|
|
|
|
|
}
|