forked from mirrors/homebox
a6bcb36c5b
* WIP: initial work * refactoring * fix failing JS tests * update import docs * fix import headers * fix column headers * update refs on import * remove demo status * finnnneeeee * formatting
46 lines
806 B
Go
46 lines
806 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,
|
|
autoIncrementAssetID: options.autoIncrementAssetID,
|
|
},
|
|
}
|
|
}
|