2021-12-14 20:08:12 +08:00
|
|
|
package store
|
|
|
|
|
2022-02-03 15:32:03 +08:00
|
|
|
import (
|
2022-08-07 10:17:12 +08:00
|
|
|
"context"
|
2023-10-28 10:42:39 +08:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
|
|
|
"github.com/usememos/memos/internal/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// thumbnailImagePath is the directory to store image thumbnails.
|
|
|
|
thumbnailImagePath = ".thumbnail_cache"
|
2022-02-03 15:32:03 +08:00
|
|
|
)
|
2021-12-14 20:08:12 +08:00
|
|
|
|
2023-07-06 00:01:40 +08:00
|
|
|
type Resource struct {
|
2023-08-04 21:55:07 +08:00
|
|
|
ID int32
|
2022-05-19 18:32:04 +08:00
|
|
|
|
|
|
|
// Standard fields
|
2023-08-04 21:55:07 +08:00
|
|
|
CreatorID int32
|
2022-05-19 18:32:04 +08:00
|
|
|
CreatedTs int64
|
|
|
|
UpdatedTs int64
|
|
|
|
|
|
|
|
// Domain specific fields
|
2023-09-16 00:11:07 +08:00
|
|
|
Filename string
|
|
|
|
Blob []byte
|
|
|
|
InternalPath string
|
|
|
|
ExternalLink string
|
|
|
|
Type string
|
|
|
|
Size int64
|
2023-09-27 00:40:16 +08:00
|
|
|
MemoID *int32
|
2022-05-19 18:32:04 +08:00
|
|
|
}
|
|
|
|
|
2023-07-06 00:01:40 +08:00
|
|
|
type FindResource struct {
|
2023-09-16 11:48:53 +08:00
|
|
|
GetBlob bool
|
|
|
|
ID *int32
|
|
|
|
CreatorID *int32
|
|
|
|
Filename *string
|
|
|
|
MemoID *int32
|
|
|
|
HasRelatedMemo bool
|
|
|
|
Limit *int
|
|
|
|
Offset *int
|
2022-05-19 18:32:04 +08:00
|
|
|
}
|
|
|
|
|
2023-07-06 00:01:40 +08:00
|
|
|
type UpdateResource struct {
|
2023-08-04 21:55:07 +08:00
|
|
|
ID int32
|
2023-08-03 19:08:39 +08:00
|
|
|
UpdatedTs *int64
|
|
|
|
Filename *string
|
|
|
|
InternalPath *string
|
2023-09-27 00:40:16 +08:00
|
|
|
MemoID *int32
|
2023-08-03 19:08:39 +08:00
|
|
|
Blob []byte
|
2023-07-06 00:01:40 +08:00
|
|
|
}
|
2022-10-01 10:37:02 +08:00
|
|
|
|
2023-07-06 00:01:40 +08:00
|
|
|
type DeleteResource struct {
|
2023-09-27 00:40:16 +08:00
|
|
|
ID int32
|
|
|
|
MemoID *int32
|
2022-02-03 15:32:03 +08:00
|
|
|
}
|
2021-12-14 20:08:12 +08:00
|
|
|
|
2023-07-06 21:56:42 +08:00
|
|
|
func (s *Store) CreateResource(ctx context.Context, create *Resource) (*Resource, error) {
|
2023-09-26 19:04:07 +08:00
|
|
|
return s.driver.CreateResource(ctx, create)
|
2023-05-26 00:38:27 +08:00
|
|
|
}
|
|
|
|
|
2023-07-06 00:01:40 +08:00
|
|
|
func (s *Store) ListResources(ctx context.Context, find *FindResource) ([]*Resource, error) {
|
2023-09-26 19:04:07 +08:00
|
|
|
return s.driver.ListResources(ctx, find)
|
2022-11-06 12:21:58 +08:00
|
|
|
}
|
|
|
|
|
2023-07-20 23:15:56 +08:00
|
|
|
func (s *Store) GetResource(ctx context.Context, find *FindResource) (*Resource, error) {
|
|
|
|
resources, err := s.ListResources(ctx, find)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(resources) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return resources[0], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) UpdateResource(ctx context.Context, update *UpdateResource) (*Resource, error) {
|
2023-09-26 19:04:07 +08:00
|
|
|
return s.driver.UpdateResource(ctx, update)
|
2023-07-20 23:15:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Store) DeleteResource(ctx context.Context, delete *DeleteResource) error {
|
2023-10-28 10:42:39 +08:00
|
|
|
resource, err := s.GetResource(ctx, &FindResource{ID: &delete.ID})
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to get resource")
|
|
|
|
}
|
2023-10-28 10:51:03 +08:00
|
|
|
if resource == nil {
|
|
|
|
return errors.Wrap(nil, "resource not found")
|
|
|
|
}
|
2023-10-28 10:42:39 +08:00
|
|
|
|
|
|
|
// Delete the local file.
|
|
|
|
if resource.InternalPath != "" {
|
|
|
|
_ = os.Remove(resource.InternalPath)
|
|
|
|
}
|
|
|
|
// Delete the thumbnail.
|
|
|
|
if util.HasPrefixes(resource.Type, "image/png", "image/jpeg") {
|
|
|
|
ext := filepath.Ext(resource.Filename)
|
|
|
|
thumbnailPath := filepath.Join(s.Profile.Data, thumbnailImagePath, fmt.Sprintf("%d%s", resource.ID, ext))
|
|
|
|
_ = os.Remove(thumbnailPath)
|
|
|
|
}
|
2023-09-27 09:27:31 +08:00
|
|
|
return s.driver.DeleteResource(ctx, delete)
|
2021-12-14 20:08:12 +08:00
|
|
|
}
|