103 lines
1.9 KiB
Go
103 lines
1.9 KiB
Go
package bitqiu
|
|
|
|
import (
|
|
"path"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/alist-org/alist/v3/internal/model"
|
|
"github.com/alist-org/alist/v3/pkg/utils"
|
|
)
|
|
|
|
type Object struct {
|
|
model.Object
|
|
ParentID string
|
|
}
|
|
|
|
func (r Resource) toObject(parentID, parentPath string) (model.Obj, error) {
|
|
id := r.ResourceID
|
|
if id == "" {
|
|
id = r.ResourceUID
|
|
}
|
|
obj := &Object{
|
|
Object: model.Object{
|
|
ID: id,
|
|
Name: r.Name,
|
|
IsFolder: r.ResourceType == 1,
|
|
},
|
|
ParentID: parentID,
|
|
}
|
|
if r.Size != nil {
|
|
if size, err := (*r.Size).Int64(); err == nil {
|
|
obj.Size = size
|
|
}
|
|
}
|
|
if ct := parseBitQiuTime(r.CreateTime); !ct.IsZero() {
|
|
obj.Ctime = ct
|
|
}
|
|
if mt := parseBitQiuTime(r.UpdateTime); !mt.IsZero() {
|
|
obj.Modified = mt
|
|
}
|
|
if r.FileMD5 != "" {
|
|
obj.HashInfo = utils.NewHashInfo(utils.MD5, strings.ToLower(r.FileMD5))
|
|
}
|
|
obj.SetPath(path.Join(parentPath, obj.Name))
|
|
return obj, nil
|
|
}
|
|
|
|
func parseBitQiuTime(value *string) time.Time {
|
|
if value == nil {
|
|
return time.Time{}
|
|
}
|
|
trimmed := strings.TrimSpace(*value)
|
|
if trimmed == "" {
|
|
return time.Time{}
|
|
}
|
|
if ts, err := time.ParseInLocation("2006-01-02 15:04:05", trimmed, time.Local); err == nil {
|
|
return ts
|
|
}
|
|
return time.Time{}
|
|
}
|
|
|
|
func updateObjectName(obj model.Obj, newName string) model.Obj {
|
|
newPath := path.Join(parentPathOf(obj.GetPath()), newName)
|
|
|
|
switch o := obj.(type) {
|
|
case *Object:
|
|
o.Name = newName
|
|
o.Object.Name = newName
|
|
o.SetPath(newPath)
|
|
return o
|
|
case *model.Object:
|
|
o.Name = newName
|
|
o.SetPath(newPath)
|
|
return o
|
|
}
|
|
|
|
if setter, ok := obj.(model.SetPath); ok {
|
|
setter.SetPath(newPath)
|
|
}
|
|
|
|
return &model.Object{
|
|
ID: obj.GetID(),
|
|
Path: newPath,
|
|
Name: newName,
|
|
Size: obj.GetSize(),
|
|
Modified: obj.ModTime(),
|
|
Ctime: obj.CreateTime(),
|
|
IsFolder: obj.IsDir(),
|
|
HashInfo: obj.GetHash(),
|
|
}
|
|
}
|
|
|
|
func parentPathOf(p string) string {
|
|
if p == "" {
|
|
return ""
|
|
}
|
|
dir := path.Dir(p)
|
|
if dir == "." {
|
|
return ""
|
|
}
|
|
return dir
|
|
}
|