2019-11-04 07:30:12 -05:00
|
|
|
|
package main
|
|
|
|
|
|
2019-11-04 23:31:22 -05:00
|
|
|
|
import (
|
2022-04-09 07:58:07 -05:00
|
|
|
|
"embed"
|
2020-03-09 03:53:01 -05:00
|
|
|
|
"flag"
|
2020-11-21 04:34:55 -05:00
|
|
|
|
|
|
|
|
|
"github.com/cloudreve/Cloudreve/v3/bootstrap"
|
|
|
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/conf"
|
|
|
|
|
"github.com/cloudreve/Cloudreve/v3/pkg/util"
|
|
|
|
|
"github.com/cloudreve/Cloudreve/v3/routers"
|
2019-11-04 23:31:22 -05:00
|
|
|
|
)
|
2019-11-04 07:30:12 -05:00
|
|
|
|
|
2020-05-23 00:57:02 -05:00
|
|
|
|
var (
|
2020-12-06 03:49:49 -05:00
|
|
|
|
isEject bool
|
|
|
|
|
confPath string
|
|
|
|
|
scriptName string
|
2020-05-23 00:57:02 -05:00
|
|
|
|
)
|
2020-03-09 03:53:01 -05:00
|
|
|
|
|
2022-04-09 07:58:07 -05:00
|
|
|
|
//go:embed assets/build
|
2022-04-12 06:11:44 -05:00
|
|
|
|
var staticEmbed embed.FS
|
2022-04-09 07:58:07 -05:00
|
|
|
|
|
2019-11-07 02:56:05 -05:00
|
|
|
|
func init() {
|
2020-03-10 21:32:35 -05:00
|
|
|
|
flag.StringVar(&confPath, "c", util.RelativePath("conf.ini"), "配置文件路径")
|
2020-05-23 00:57:02 -05:00
|
|
|
|
flag.BoolVar(&isEject, "eject", false, "导出内置静态资源")
|
2020-12-06 03:49:49 -05:00
|
|
|
|
flag.StringVar(&scriptName, "database-script", "", "运行内置数据库助手脚本")
|
2020-03-09 03:53:01 -05:00
|
|
|
|
flag.Parse()
|
2022-04-12 06:11:44 -05:00
|
|
|
|
bootstrap.Init(confPath, staticEmbed)
|
2019-11-07 02:56:05 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-04 07:30:12 -05:00
|
|
|
|
func main() {
|
2020-05-23 00:57:02 -05:00
|
|
|
|
if isEject {
|
|
|
|
|
// 开始导出内置静态资源文件
|
2022-04-12 06:11:44 -05:00
|
|
|
|
bootstrap.Eject(staticEmbed)
|
2020-05-23 00:57:02 -05:00
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-06 03:49:49 -05:00
|
|
|
|
if scriptName != "" {
|
|
|
|
|
// 开始运行助手数据库脚本
|
|
|
|
|
bootstrap.RunScript(scriptName)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-04 23:31:22 -05:00
|
|
|
|
api := routers.InitRouter()
|
2020-05-23 00:17:48 -05:00
|
|
|
|
|
|
|
|
|
// 如果启用了SSL
|
|
|
|
|
if conf.SSLConfig.CertPath != "" {
|
|
|
|
|
go func() {
|
|
|
|
|
util.Log().Info("开始监听 %s", conf.SSLConfig.Listen)
|
|
|
|
|
if err := api.RunTLS(conf.SSLConfig.Listen,
|
|
|
|
|
conf.SSLConfig.CertPath, conf.SSLConfig.KeyPath); err != nil {
|
|
|
|
|
util.Log().Error("无法监听[%s],%s", conf.SSLConfig.Listen, err)
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-12 07:31:28 -05:00
|
|
|
|
// 如果启用了Unix
|
|
|
|
|
if conf.UnixConfig.Listen != "" {
|
2021-03-17 01:19:05 -05:00
|
|
|
|
util.Log().Info("开始监听 %s", conf.UnixConfig.Listen)
|
|
|
|
|
if err := api.RunUnix(conf.UnixConfig.Listen); err != nil {
|
|
|
|
|
util.Log().Error("无法监听[%s],%s", conf.UnixConfig.Listen, err)
|
|
|
|
|
}
|
|
|
|
|
return
|
2020-08-12 07:31:28 -05:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-09 03:53:01 -05:00
|
|
|
|
util.Log().Info("开始监听 %s", conf.SystemConfig.Listen)
|
|
|
|
|
if err := api.Run(conf.SystemConfig.Listen); err != nil {
|
|
|
|
|
util.Log().Error("无法监听[%s],%s", conf.SystemConfig.Listen, err)
|
|
|
|
|
}
|
2019-11-04 07:30:12 -05:00
|
|
|
|
}
|