2019-12-10 17:10:34 +08:00
|
|
|
|
package fsctx
|
2019-11-18 19:09:56 +08:00
|
|
|
|
|
|
|
|
|
type key int
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
// GinCtx Gin的上下文
|
|
|
|
|
GinCtx key = iota
|
|
|
|
|
// SavePathCtx 文件物理路径
|
|
|
|
|
SavePathCtx
|
2019-11-19 18:10:18 +08:00
|
|
|
|
// FileHeaderCtx 上传的文件
|
|
|
|
|
FileHeaderCtx
|
2019-11-26 20:59:57 +08:00
|
|
|
|
// PathCtx 文件或目录的虚拟路径
|
|
|
|
|
PathCtx
|
2019-12-10 17:10:34 +08:00
|
|
|
|
// FileModelCtx 文件数据库模型
|
|
|
|
|
FileModelCtx
|
2020-01-30 14:22:03 +08:00
|
|
|
|
// FolderModelCtx 目录数据库模型
|
|
|
|
|
FolderModelCtx
|
2019-12-17 12:02:50 +08:00
|
|
|
|
// HTTPCtx HTTP请求的上下文
|
|
|
|
|
HTTPCtx
|
2019-12-27 21:15:05 +08:00
|
|
|
|
// UploadPolicyCtx 上传策略,一般为slave模式下使用
|
|
|
|
|
UploadPolicyCtx
|
2020-01-02 14:51:17 +08:00
|
|
|
|
// UserCtx 用户
|
|
|
|
|
UserCtx
|
2020-01-15 14:15:25 +08:00
|
|
|
|
// ThumbSizeCtx 缩略图尺寸
|
|
|
|
|
ThumbSizeCtx
|
2020-01-16 10:11:16 +08:00
|
|
|
|
// OriginSourceNameCtx 原始原文件名
|
|
|
|
|
OriginSourceNameCtx
|
2020-01-17 14:05:51 +08:00
|
|
|
|
// FileSizeCtx 文件大小
|
|
|
|
|
FileSizeCtx
|
2020-01-30 14:22:03 +08:00
|
|
|
|
// ShareKeyCtx 分享文件的 HashID
|
|
|
|
|
ShareKeyCtx
|
2020-01-31 13:18:32 +08:00
|
|
|
|
// LimitParentCtx 限制父目录
|
|
|
|
|
LimitParentCtx
|
2019-11-18 19:09:56 +08:00
|
|
|
|
)
|