mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-25 18:15:40 +00:00
03df23d97c
* fix inaccruate 401 error on SQL db error
* init golangci-lint config
* linter autofix
* testify auto fixes
* fix sqlite busy errors
* fix naming
* more linter errors
* fix rest of linter issues
Former-commit-id: e8449b3a73
49 lines
1,002 B
Go
49 lines
1,002 B
Go
// Package services provides the core business logic for the application.
|
|
package services
|
|
|
|
import (
|
|
"github.com/hay-kot/homebox/backend/internal/data/repo"
|
|
)
|
|
|
|
type AllServices struct {
|
|
User *UserService
|
|
Group *GroupService
|
|
Items *ItemService
|
|
BackgroundService *BackgroundService
|
|
}
|
|
|
|
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,
|
|
},
|
|
BackgroundService: &BackgroundService{repos},
|
|
}
|
|
}
|