owl-blogs/app/repository/interfaces.go

54 lines
1.8 KiB
Go
Raw Normal View History

2023-06-25 18:04:06 +00:00
package repository
2023-07-06 17:36:24 +00:00
import (
"owl-blogs/domain/model"
)
2023-06-25 18:04:06 +00:00
type EntryRepository interface {
2023-07-09 20:12:06 +00:00
Create(entry model.Entry) error
2023-06-25 18:04:06 +00:00
Update(entry model.Entry) error
Delete(entry model.Entry) error
FindById(id string) (model.Entry, error)
FindAll(types *[]string) ([]model.Entry, error)
}
2023-07-08 09:08:55 +00:00
type BinaryRepository interface {
2023-07-09 17:09:54 +00:00
// Create creates a new binary file
// The name is the original file name, and is not unique
// BinaryFile.Id is a unique identifier
2023-07-09 19:27:59 +00:00
Create(name string, data []byte, entry model.Entry) (*model.BinaryFile, error)
2023-07-08 09:08:55 +00:00
FindById(id string) (*model.BinaryFile, error)
2023-07-09 19:27:59 +00:00
FindByNameForEntry(name string, entry model.Entry) (*model.BinaryFile, error)
2024-02-23 11:34:05 +00:00
// ListIds list all ids of binary files
// if filter is not empty, the list will be filter to all ids which include the filter filter substring
// ids and filters are compared in lower case
ListIds(filter string) ([]string, error)
2023-07-27 20:02:13 +00:00
Delete(binary *model.BinaryFile) error
2023-07-08 09:08:55 +00:00
}
2023-07-08 11:28:06 +00:00
type AuthorRepository interface {
2023-07-09 17:09:54 +00:00
// Create creates a new author
// It returns an error if the name is already taken
2023-07-08 11:28:06 +00:00
Create(name string, passwordHash string) (*model.Author, error)
2023-08-12 18:39:07 +00:00
Update(author *model.Author) error
2023-07-09 17:09:54 +00:00
// FindByName finds an author by name
// It returns an error if the author is not found
2023-07-08 11:28:06 +00:00
FindByName(name string) (*model.Author, error)
}
2023-07-16 19:08:25 +00:00
type ConfigRepository interface {
Get(name string, config interface{}) error
Update(name string, siteConfig interface{}) error
2023-07-16 19:08:25 +00:00
}
2023-08-08 18:17:04 +00:00
type InteractionRepository interface {
Create(interaction model.Interaction) error
Update(interaction model.Interaction) error
Delete(interaction model.Interaction) error
FindById(id string) (model.Interaction, error)
FindAll(entryId string) ([]model.Interaction, error)
2024-02-24 18:53:49 +00:00
// ListAllInteractions lists all interactions, sorted by creation date (descending)
ListAllInteractions() ([]model.Interaction, error)
2023-08-08 18:17:04 +00:00
}