mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 12:46:17 +08:00
47 lines
1.6 KiB
Go
47 lines
1.6 KiB
Go
![]() |
package sharing
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"strings"
|
||
|
|
||
|
"github.com/OpenListTeam/OpenList/v4/internal/errs"
|
||
|
"github.com/OpenListTeam/OpenList/v4/internal/model"
|
||
|
"github.com/OpenListTeam/OpenList/v4/internal/op"
|
||
|
"github.com/OpenListTeam/OpenList/v4/pkg/utils"
|
||
|
"github.com/OpenListTeam/OpenList/v4/server/common"
|
||
|
"github.com/pkg/errors"
|
||
|
)
|
||
|
|
||
|
func link(ctx context.Context, sid, path string, args *LinkArgs) (*model.Sharing, *model.Link, model.Obj, error) {
|
||
|
sharing, err := op.GetSharingById(sid, args.SharingListArgs.Refresh)
|
||
|
if err != nil {
|
||
|
return nil, nil, nil, errors.WithStack(errs.SharingNotFound)
|
||
|
}
|
||
|
if !sharing.Valid() {
|
||
|
return sharing, nil, nil, errors.WithStack(errs.InvalidSharing)
|
||
|
}
|
||
|
if !sharing.Verify(args.Pwd) {
|
||
|
return sharing, nil, nil, errors.WithStack(errs.WrongShareCode)
|
||
|
}
|
||
|
path = utils.FixAndCleanPath(path)
|
||
|
if len(sharing.Files) == 1 || path != "/" {
|
||
|
unwrapPath, err := op.GetSharingUnwrapPath(sharing, path)
|
||
|
if err != nil {
|
||
|
return nil, nil, nil, errors.WithMessage(err, "failed get sharing unwrap path")
|
||
|
}
|
||
|
storage, actualPath, err := op.GetStorageAndActualPath(unwrapPath)
|
||
|
if err != nil {
|
||
|
return nil, nil, nil, errors.WithMessage(err, "failed get sharing link")
|
||
|
}
|
||
|
l, obj, err := op.Link(ctx, storage, actualPath, args.LinkArgs)
|
||
|
if err != nil {
|
||
|
return nil, nil, nil, errors.WithMessage(err, "failed get sharing link")
|
||
|
}
|
||
|
if l.URL != "" && !strings.HasPrefix(l.URL, "http://") && !strings.HasPrefix(l.URL, "https://") {
|
||
|
l.URL = common.GetApiUrl(ctx) + l.URL
|
||
|
}
|
||
|
return sharing, l, obj, nil
|
||
|
}
|
||
|
return nil, nil, nil, errors.New("cannot get sharing root link")
|
||
|
}
|