memos/store/resource.go

78 lines
1.5 KiB
Go
Raw Normal View History

package store
2022-02-03 10:32:03 +03:00
import (
2022-08-07 05:17:12 +03:00
"context"
2022-02-03 10:32:03 +03:00
)
type Resource struct {
2023-08-04 16:55:07 +03:00
ID int32
2022-05-19 13:32:04 +03:00
// Standard fields
2023-08-04 16:55:07 +03:00
CreatorID int32
2022-05-19 13:32:04 +03:00
CreatedTs int64
UpdatedTs int64
// Domain specific fields
2023-09-15 19:11:07 +03:00
Filename string
Blob []byte
InternalPath string
ExternalLink string
Type string
Size int64
MemoID *int32
2022-05-19 13:32:04 +03:00
}
type FindResource struct {
2023-09-16 06:48:53 +03:00
GetBlob bool
ID *int32
CreatorID *int32
Filename *string
MemoID *int32
HasRelatedMemo bool
Limit *int
Offset *int
2022-05-19 13:32:04 +03:00
}
type UpdateResource struct {
2023-08-04 16:55:07 +03:00
ID int32
UpdatedTs *int64
Filename *string
InternalPath *string
MemoID *int32
Blob []byte
}
2022-10-01 05:37:02 +03:00
type DeleteResource struct {
ID int32
MemoID *int32
2022-02-03 10:32:03 +03:00
}
func (s *Store) CreateResource(ctx context.Context, create *Resource) (*Resource, error) {
return s.driver.CreateResource(ctx, create)
2023-05-25 19:38:27 +03:00
}
func (s *Store) ListResources(ctx context.Context, find *FindResource) ([]*Resource, error) {
return s.driver.ListResources(ctx, find)
2022-11-06 07:21:58 +03: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) {
return s.driver.UpdateResource(ctx, update)
}
func (s *Store) DeleteResource(ctx context.Context, delete *DeleteResource) error {
return s.driver.DeleteResource(ctx, delete)
}