mirror of
				https://github.com/cloudreve/cloudreve.git
				synced 2025-11-01 00:57:15 +08:00 
			
		
		
		
	 056de22edb
			
		
	
	056de22edb
	
	
	
		
			
			* Feat: retrieve nodes from data table * Feat: master node ping slave node in REST API * Feat: master send scheduled ping request * Feat: inactive nodes recover loop * Modify: remove database operations from aria2 RPC caller implementation * Feat: init aria2 client in master node * Feat: Round Robin load balancer * Feat: create and monitor aria2 task in master node * Feat: salve receive and handle heartbeat * Fix: Node ID will be 0 in download record generated in older version * Feat: sign request headers with all `X-` prefix * Feat: API call to slave node will carry meta data in headers * Feat: call slave aria2 rpc method from master * Feat: get slave aria2 task status Feat: encode slave response data using gob * Feat: aria2 callback to master node / cancel or select task to slave node * Fix: use dummy aria2 client when caller initialize failed in master node * Feat: slave aria2 status event callback / salve RPC auth * Feat: prototype for slave driven filesystem * Feat: retry for init aria2 client in master node * Feat: init request client with global options * Feat: slave receive async task from master * Fix: competition write in request header * Refactor: dependency initialize order * Feat: generic message queue implementation * Feat: message queue implementation * Feat: master waiting slave transfer result * Feat: slave transfer file in stateless policy * Feat: slave transfer file in slave policy * Feat: slave transfer file in local policy * Feat: slave transfer file in OneDrive policy * Fix: failed to initialize update checker http client * Feat: list slave nodes for dashboard * Feat: test aria2 rpc connection in slave * Feat: add and save node * Feat: add and delete node in node pool * Fix: temp file cannot be removed when aria2 task fails * Fix: delete node in admin panel * Feat: edit node and get node info * Modify: delete unused settings
		
			
				
	
	
		
			108 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package bootstrap
 | |
| 
 | |
| import (
 | |
| 	model "github.com/cloudreve/Cloudreve/v3/models"
 | |
| 	"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/slave"
 | |
| 	"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() {
 | |
| 				cache.Init()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"master",
 | |
| 			func() {
 | |
| 				model.Init()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"both",
 | |
| 			func() {
 | |
| 				task.Init()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"master",
 | |
| 			func() {
 | |
| 				cluster.Init()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"master",
 | |
| 			func() {
 | |
| 				aria2.Init(false)
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"master",
 | |
| 			func() {
 | |
| 				email.Init()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"master",
 | |
| 			func() {
 | |
| 				crontab.Init()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"master",
 | |
| 			func() {
 | |
| 				InitStatic()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"slave",
 | |
| 			func() {
 | |
| 				slave.Init()
 | |
| 			},
 | |
| 		},
 | |
| 		{
 | |
| 			"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()
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| }
 |