forked from mirrors/homebox
6dc2ae1bea
* add schema * run db migration * bulk seed asset IDs * breaking: update runtime options * conditionally increment asset IDs * update API endpoints * fix import asset id assignment * refactor display + marshal/unmarshal * add docs page * add to form field * hide 000-000 values * update ENV vars
45 lines
846 B
Go
45 lines
846 B
Go
package services
|
|
|
|
import "github.com/hay-kot/homebox/backend/internal/data/repo"
|
|
|
|
type AllServices struct {
|
|
User *UserService
|
|
Group *GroupService
|
|
Items *ItemService
|
|
}
|
|
|
|
type OptionsFunc func(*options)
|
|
|
|
type options struct {
|
|
autoIncrementAssetID bool
|
|
}
|
|
|
|
func WithAutoIncrementAssetID(v bool) func(*options) {
|
|
return func(o *options) {
|
|
o.autoIncrementAssetID = v
|
|
}
|
|
}
|
|
|
|
func New(repos *repo.AllRepos, opts ...OptionsFunc) *AllServices {
|
|
if repos == nil {
|
|
panic("repos cannot be nil")
|
|
}
|
|
|
|
options := &options{
|
|
autoIncrementAssetID: true,
|
|
}
|
|
|
|
for _, opt := range opts {
|
|
opt(options)
|
|
}
|
|
|
|
return &AllServices{
|
|
User: &UserService{repos},
|
|
Group: &GroupService{repos},
|
|
Items: &ItemService{
|
|
repo: repos,
|
|
at: attachmentTokens{},
|
|
autoIncrementAssetID: options.autoIncrementAssetID,
|
|
},
|
|
}
|
|
}
|