45 lines
980 B
Go
45 lines
980 B
Go
package subscription
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/marcopiovanello/yt-dlp-web-ui/v3/server/subscription/domain"
|
|
"github.com/marcopiovanello/yt-dlp-web-ui/v3/server/subscription/repository"
|
|
"github.com/marcopiovanello/yt-dlp-web-ui/v3/server/subscription/rest"
|
|
"github.com/marcopiovanello/yt-dlp-web-ui/v3/server/subscription/service"
|
|
"github.com/marcopiovanello/yt-dlp-web-ui/v3/server/subscription/task"
|
|
|
|
bolt "go.etcd.io/bbolt"
|
|
)
|
|
|
|
var (
|
|
repo domain.Repository
|
|
svc domain.Service
|
|
hand domain.RestHandler
|
|
|
|
repoOnce sync.Once
|
|
svcOnce sync.Once
|
|
handOnce sync.Once
|
|
)
|
|
|
|
func provideRepository(db *bolt.DB) domain.Repository {
|
|
repoOnce.Do(func() {
|
|
repo = repository.New(db)
|
|
})
|
|
return repo
|
|
}
|
|
|
|
func provideService(r domain.Repository, runner task.TaskRunner) domain.Service {
|
|
svcOnce.Do(func() {
|
|
svc = service.New(r, runner)
|
|
})
|
|
return svc
|
|
}
|
|
|
|
func provideHandler(s domain.Service) domain.RestHandler {
|
|
handOnce.Do(func() {
|
|
hand = rest.New(s)
|
|
})
|
|
return hand
|
|
}
|