2024-11-26 21:36:40 +00:00
|
|
|
package datastore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
2024-11-26 23:30:58 +00:00
|
|
|
"git.itzana.me/strafesnet/maps-service/pkg/model"
|
2024-11-26 21:36:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
ErrNotExist = errors.New("resource does not exist")
|
|
|
|
)
|
|
|
|
|
|
|
|
type Datastore interface {
|
2024-11-26 23:30:58 +00:00
|
|
|
Submissions() Submissions
|
2024-11-26 21:36:40 +00:00
|
|
|
}
|
|
|
|
|
2024-11-26 23:30:58 +00:00
|
|
|
type Submissions interface {
|
|
|
|
Get(ctx context.Context, id int64) (model.Submission, error)
|
2024-11-27 23:14:50 +00:00
|
|
|
GetList(ctx context.Context, id []int64) ([]model.Submission, error)
|
|
|
|
Create(ctx context.Context, smap model.Submission) (model.Submission, error)
|
|
|
|
Update(ctx context.Context, id int64, values OptionalMap) error
|
|
|
|
Delete(ctx context.Context, id int64) error
|
|
|
|
List(ctx context.Context, filters OptionalMap, page model.Page) ([]model.Submission, error)
|
2024-11-26 21:36:40 +00:00
|
|
|
}
|