You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
1.7 KiB
107 lines
1.7 KiB
package bootstrap
|
|
|
|
import (
|
|
model "github.com/cloudreve/Cloudreve/v3/models"
|
|
"github.com/cloudreve/Cloudreve/v3/models/scripts"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/aria2"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/auth"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/cache"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/cluster"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/conf"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/crontab"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/email"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/mq"
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/task"
|
|
"github.com/gin-gonic/gin"
|
|
"io/fs"
|
|
)
|
|
|
|
// Init 初始化启动
|
|
func Init(path string, statics fs.FS) {
|
|
InitApplication()
|
|
conf.Init(path)
|
|
// Debug 关闭时,切换为生产模式
|
|
if !conf.SystemConfig.Debug {
|
|
gin.SetMode(gin.ReleaseMode)
|
|
}
|
|
|
|
dependencies := []struct {
|
|
mode string
|
|
factory func()
|
|
}{
|
|
{
|
|
"both",
|
|
func() {
|
|
scripts.Init()
|
|
},
|
|
},
|
|
{
|
|
"both",
|
|
func() {
|
|
cache.Init(conf.SystemConfig.Mode == "slave")
|
|
},
|
|
},
|
|
{
|
|
"master",
|
|
func() {
|
|
model.Init()
|
|
},
|
|
},
|
|
{
|
|
"both",
|
|
func() {
|
|
task.Init()
|
|
},
|
|
},
|
|
{
|
|
"master",
|
|
func() {
|
|
cluster.Init()
|
|
},
|
|
},
|
|
{
|
|
"master",
|
|
func() {
|
|
aria2.Init(false, cluster.Default, mq.GlobalMQ)
|
|
},
|
|
},
|
|
{
|
|
"master",
|
|
func() {
|
|
email.Init()
|
|
},
|
|
},
|
|
{
|
|
"master",
|
|
func() {
|
|
crontab.Init()
|
|
},
|
|
},
|
|
{
|
|
"master",
|
|
func() {
|
|
InitStatic(statics)
|
|
},
|
|
},
|
|
{
|
|
"slave",
|
|
func() {
|
|
cluster.InitController()
|
|
},
|
|
},
|
|
{
|
|
"both",
|
|
func() {
|
|
auth.Init()
|
|
},
|
|
},
|
|
}
|
|
|
|
for _, dependency := range dependencies {
|
|
if dependency.mode == conf.SystemConfig.Mode || dependency.mode == "both" {
|
|
dependency.factory()
|
|
}
|
|
}
|
|
|
|
}
|