mirror of
				https://github.com/cloudreve/cloudreve.git
				synced 2025-10-31 00:27:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			115 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| 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"
 | |
| )
 | |
| 
 | |
| // Init 初始化启动
 | |
| func Init(path string) {
 | |
| 	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()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"slave",
 | |
| 			func() {
 | |
| 				cluster.InitController()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"both",
 | |
| 			func() {
 | |
| 				auth.Init()
 | |
| 			},
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	for _, dependency := range dependencies {
 | |
| 		switch dependency.mode {
 | |
| 		case "master":
 | |
| 			if conf.SystemConfig.Mode == "master" {
 | |
| 				dependency.factory()
 | |
| 			}
 | |
| 		case "slave":
 | |
| 			if conf.SystemConfig.Mode == "slave" {
 | |
| 				dependency.factory()
 | |
| 			}
 | |
| 		default:
 | |
| 			dependency.factory()
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| }
 | 
