Files
Atay-Makhzan/cmd/web.go
T

382 lines
12 KiB
Go
Raw Normal View History

2014-02-19 17:50:53 +08:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2014-02-19 17:50:53 +08:00
2014-05-01 21:21:46 -04:00
package cmd
2014-02-19 17:50:53 +08:00
import (
"context"
2014-02-19 17:50:53 +08:00
"fmt"
2020-07-26 22:31:28 +02:00
"net"
2014-02-19 17:50:53 +08:00
"net/http"
"net/http/pprof"
2014-04-15 20:01:20 -04:00
"os"
"path/filepath"
"strconv"
2014-09-29 05:38:46 -04:00
"strings"
"time"
2014-02-19 17:50:53 +08:00
"code.gitea.io/gitea/modules/container"
2019-10-23 16:32:19 +01:00
"code.gitea.io/gitea/modules/graceful"
2025-01-22 02:57:07 +08:00
"code.gitea.io/gitea/modules/gtprof"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/process"
"code.gitea.io/gitea/modules/public"
"code.gitea.io/gitea/modules/setting"
2026-01-24 13:11:49 +08:00
"code.gitea.io/gitea/modules/templates"
2025-01-22 02:57:07 +08:00
"code.gitea.io/gitea/modules/util"
"code.gitea.io/gitea/routers"
2021-06-09 07:33:54 +08:00
"code.gitea.io/gitea/routers/install"
2016-12-26 02:16:37 +01:00
2022-06-18 11:04:52 +01:00
"github.com/felixge/fgprof"
2025-06-10 14:35:12 +02:00
"github.com/urfave/cli/v3"
2014-02-19 17:50:53 +08:00
)
// PIDFile could be set from build tag
var PIDFile = "/run/gitea.pid"
2016-11-04 12:42:18 +01:00
// CmdWeb represents the available web sub-command.
2023-07-21 17:28:19 +08:00
var CmdWeb = &cli.Command{
2014-02-19 17:50:53 +08:00
Name: "web",
Usage: "Start Gitea web server",
Description: `Gitea web server is the only thing you need to run,
2014-03-24 07:36:38 -04:00
and it takes care of all the other things for you`,
2023-06-28 14:02:06 +08:00
Before: PrepareConsoleLoggerLevel(log.INFO),
2014-02-19 17:50:53 +08:00
Action: runWeb,
Flags: []cli.Flag{
2023-07-21 17:28:19 +08:00
&cli.StringFlag{
Name: "port",
Aliases: []string{"p"},
Value: "3000",
Usage: "Temporary port number to prevent conflict",
},
2023-07-21 17:28:19 +08:00
&cli.StringFlag{
2020-10-30 19:26:03 +00:00
Name: "install-port",
Value: "3000",
Usage: "Temporary port number to run the install page on to prevent conflict",
},
2023-07-21 17:28:19 +08:00
&cli.StringFlag{
Name: "pid",
Aliases: []string{"P"},
Value: PIDFile,
Usage: "Custom pid file path",
2017-01-09 19:54:57 +08:00
},
2023-07-21 17:28:19 +08:00
&cli.BoolFlag{
Name: "quiet",
Aliases: []string{"q"},
Usage: "Only display Fatal logging errors until logging is set-up",
},
2023-07-21 17:28:19 +08:00
&cli.BoolFlag{
Name: "verbose",
Usage: "Set initial logging to TRACE level until logging is properly set-up",
},
},
2014-02-19 17:50:53 +08:00
}
func runHTTPRedirector() {
_, _, finished := process.GetManager().AddTypedContext(graceful.GetManager().HammerContext(), "Web: HTTP Redirector", process.SystemProcessType, true)
defer finished()
source := fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.PortToRedirect)
dest := strings.TrimSuffix(setting.AppURL, "/")
log.Info("Redirecting: %s to %s", source, dest)
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
target := dest + r.URL.Path
if len(r.URL.RawQuery) > 0 {
target += "?" + r.URL.RawQuery
}
http.Redirect(w, r, target, http.StatusTemporaryRedirect)
})
2022-08-21 19:20:43 +01:00
err := runHTTP("tcp", source, "HTTP Redirector", handler, setting.RedirectorUseProxyProtocol)
if err != nil {
2019-04-02 08:48:31 +01:00
log.Fatal("Failed to start port redirection: %v", err)
}
}
func createPIDFile(pidPath string) {
currentPid := os.Getpid()
if err := os.MkdirAll(filepath.Dir(pidPath), os.ModePerm); err != nil {
log.Fatal("Failed to create PID folder: %v", err)
}
file, err := os.Create(pidPath)
if err != nil {
log.Fatal("Failed to create PID file: %v", err)
}
defer file.Close()
if _, err := file.WriteString(strconv.FormatInt(int64(currentPid), 10)); err != nil {
log.Fatal("Failed to write PID information: %v", err)
}
}
2023-08-05 21:24:49 +08:00
func showWebStartupMessage(msg string) {
2023-06-21 13:50:26 +08:00
log.Info("Gitea version: %s%s", setting.AppVer, setting.AppBuiltWith)
2023-08-05 21:24:49 +08:00
log.Info("* RunMode: %s", setting.RunMode)
log.Info("* AppPath: %s", setting.AppPath)
log.Info("* WorkPath: %s", setting.AppWorkPath)
log.Info("* CustomPath: %s", setting.CustomPath)
log.Info("* ConfigFile: %s", setting.CustomConf)
2024-04-07 19:17:06 +08:00
log.Info("%s", msg) // show startup message
if setting.CORSConfig.Enabled {
log.Info("CORS Service Enabled")
}
if setting.DefaultUILocation != time.Local {
log.Info("Default UI Location is %v", setting.DefaultUILocation.String())
}
if setting.MailService != nil {
log.Info("Mail Service Enabled: RegisterEmailConfirm=%v, Service.EnableNotifyMail=%v", setting.Service.RegisterEmailConfirm, setting.Service.EnableNotifyMail)
}
2023-08-05 21:24:49 +08:00
}
2025-06-10 14:35:12 +02:00
func serveInstall(cmd *cli.Command) error {
2023-08-05 21:24:49 +08:00
showWebStartupMessage("Prepare to run install page")
2023-06-21 13:50:26 +08:00
routers.InitWebInstallPage(graceful.GetManager().HammerContext())
// Flag for port number in case first time run conflict
2025-06-10 14:35:12 +02:00
if cmd.IsSet("port") {
if err := setPort(cmd.String("port")); err != nil {
2023-06-21 13:50:26 +08:00
return err
}
}
2025-06-10 14:35:12 +02:00
if cmd.IsSet("install-port") {
if err := setPort(cmd.String("install-port")); err != nil {
2023-06-21 13:50:26 +08:00
return err
}
}
c := install.Routes()
err := listen(c, false)
if err != nil {
log.Critical("Unable to open listener for installer. Is Gitea already running?")
graceful.GetManager().DoGracefulShutdown()
}
select {
case <-graceful.GetManager().IsShutdown():
<-graceful.GetManager().Done()
log.Info("PID: %d Gitea Web Finished", os.Getpid())
return err
default:
}
return nil
}
2025-06-10 14:35:12 +02:00
func serveInstalled(c *cli.Command) error {
2023-06-21 13:50:26 +08:00
setting.MustInstalled()
2023-08-05 21:24:49 +08:00
showWebStartupMessage("Prepare to run web server")
2023-06-21 13:50:26 +08:00
if setting.AppWorkPathMismatch {
log.Error("WORK_PATH from config %q doesn't match other paths from environment variables or command arguments. "+
2023-08-05 21:24:49 +08:00
"Only WORK_PATH in config should be set and used. Please make sure the path in config file is correct, "+
"remove the other outdated work paths from environment variables and command arguments", setting.CustomConf)
2023-06-21 13:50:26 +08:00
}
rootCfg := setting.CfgProvider
if rootCfg.Section("").Key("WORK_PATH").String() == "" {
saveCfg, err := rootCfg.PrepareSaving()
if err != nil {
2023-08-05 21:24:49 +08:00
log.Error("Unable to prepare saving WORK_PATH=%s to config %q: %v\nYou should set it manually, otherwise there might be bugs when accessing the git repositories.", setting.AppWorkPath, setting.CustomConf, err)
2023-06-21 13:50:26 +08:00
} else {
rootCfg.Section("").Key("WORK_PATH").SetValue(setting.AppWorkPath)
saveCfg.Section("").Key("WORK_PATH").SetValue(setting.AppWorkPath)
if err = saveCfg.Save(); err != nil {
2023-08-05 21:24:49 +08:00
log.Error("Unable to update WORK_PATH=%s to config %q: %v\nYou should set it manually, otherwise there might be bugs when accessing the git repositories.", setting.AppWorkPath, setting.CustomConf, err)
2023-06-21 13:50:26 +08:00
}
}
}
// in old versions, user's custom web files are placed in "custom/public", and they were served as "http://domain.com/assets/xxx"
// now, Gitea only serves pre-defined files in the "custom/public" folder basing on the web root, the user should move their custom files to "custom/public/assets"
publicFiles, _ := public.AssetFS().ListFiles(".")
publicFilesSet := container.SetOf(publicFiles...)
publicFilesSet.Remove(".well-known")
publicFilesSet.Remove("assets")
publicFilesSet.Remove("robots.txt")
for _, fn := range publicFilesSet.Values() {
log.Error("Found legacy public asset %q in CustomPath. Please move it to %s/public/assets/%s", fn, setting.CustomPath, fn)
}
if _, err := os.Stat(filepath.Join(setting.CustomPath, "robots.txt")); err == nil {
log.Error(`Found legacy public asset "robots.txt" in CustomPath. Please move it to %s/public/robots.txt`, setting.CustomPath)
}
2023-06-21 13:50:26 +08:00
routers.InitWebInstalled(graceful.GetManager().HammerContext())
// We check that AppDataPath exists here (it should have been created during installation)
// We can't check it in `InitWebInstalled`, because some integration tests
// use cmd -> InitWebInstalled, but the AppDataPath doesn't exist during those tests.
if _, err := os.Stat(setting.AppDataPath); err != nil {
log.Fatal("Can not find APP_DATA_PATH %q", setting.AppDataPath)
}
// the AppDataTempDir is fully managed by us with a safe sub-path
// so it's safe to automatically remove the outdated files
setting.AppDataTempDir("").RemoveOutdated(3 * 24 * time.Hour)
2023-06-21 13:50:26 +08:00
// Override the provided port number within the configuration
2025-06-10 14:35:12 +02:00
if c.IsSet("port") {
if err := setPort(c.String("port")); err != nil {
2023-06-21 13:50:26 +08:00
return err
}
}
2025-01-22 02:57:07 +08:00
gtprof.EnableBuiltinTracer(util.Iif(setting.IsProd, 2000*time.Millisecond, 100*time.Millisecond))
2023-06-21 13:50:26 +08:00
// Set up Chi routes
2023-08-13 00:30:16 +08:00
webRoutes := routers.NormalRoutes()
err := listen(webRoutes, true)
2023-06-21 13:50:26 +08:00
<-graceful.GetManager().Done()
log.Info("PID: %d Gitea Web Finished", os.Getpid())
return err
}
func servePprof() {
mux := http.NewServeMux()
mux.HandleFunc("/debug/pprof/", pprof.Index)
mux.HandleFunc("/debug/pprof/cmdline", pprof.Cmdline)
mux.HandleFunc("/debug/pprof/profile", pprof.Profile)
mux.HandleFunc("/debug/pprof/symbol", pprof.Symbol)
mux.HandleFunc("/debug/pprof/trace", pprof.Trace)
mux.Handle("/debug/fgprof", fgprof.Handler())
// FIXME: it should use a proper context
2025-08-27 19:00:01 +08:00
_, _, finished := process.GetManager().AddTypedContext(context.TODO(), "Web: PProf Server", process.SystemProcessType, true)
// The pprof server is for debug purpose only, it shouldn't be exposed on public network. At the moment, it's not worth introducing a configurable option for it.
2023-06-21 13:50:26 +08:00
log.Info("Starting pprof server on localhost:6060")
log.Info("Stopped pprof server: %v", http.ListenAndServe("localhost:6060", mux))
2023-06-21 13:50:26 +08:00
finished()
}
2025-08-27 19:00:01 +08:00
func runWeb(ctx context.Context, cmd *cli.Command) error {
if subCmdName, valid := isValidDefaultSubCommand(cmd); !valid {
return fmt.Errorf("unknown command: %s", subCmdName)
}
2025-08-27 19:00:01 +08:00
managerCtx, cancel := context.WithCancel(ctx)
graceful.InitManager(managerCtx)
defer cancel()
if os.Getppid() > 1 && len(os.Getenv("LISTEN_FDS")) > 0 {
log.Info("Restarting Gitea on PID: %d from parent PID: %d", os.Getpid(), os.Getppid())
} else {
log.Info("Starting Gitea on PID: %d", os.Getpid())
}
// Set pid file setting
2025-06-10 14:35:12 +02:00
if cmd.IsSet("pid") {
createPIDFile(cmd.String("pid"))
2017-01-09 19:54:57 +08:00
}
2026-01-24 13:11:49 +08:00
// init the HTML renderer and load templates, if error happens, it will report the error immediately and exit with error log
// in dev mode, it won't exit, but watch the template files for changes
_ = templates.PageRenderer()
2023-06-21 13:50:26 +08:00
if !setting.InstallLock {
2025-06-10 14:35:12 +02:00
if err := serveInstall(cmd); err != nil {
return err
}
} else {
NoInstallListener()
}
if setting.EnablePprof {
2023-06-21 13:50:26 +08:00
go servePprof()
}
2025-06-10 14:35:12 +02:00
return serveInstalled(cmd)
}
2017-12-13 16:57:28 +08:00
func setPort(port string) error {
setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, port, 1)
setting.HTTPPort = port
2017-12-13 16:57:28 +08:00
switch setting.Protocol {
case setting.HTTPUnix:
case setting.FCGI:
case setting.FCGIUnix:
default:
defaultLocalURL := string(setting.Protocol) + "://"
if setting.HTTPAddr == "0.0.0.0" {
defaultLocalURL += "localhost"
} else {
defaultLocalURL += setting.HTTPAddr
}
defaultLocalURL += ":" + setting.HTTPPort + "/"
2017-12-13 16:57:28 +08:00
2021-05-29 20:44:14 +02:00
// Save LOCAL_ROOT_URL if port changed
rootCfg := setting.CfgProvider
saveCfg, err := rootCfg.PrepareSaving()
if err != nil {
return fmt.Errorf("failed to save config file: %v", err)
}
rootCfg.Section("server").Key("LOCAL_ROOT_URL").SetValue(defaultLocalURL)
saveCfg.Section("server").Key("LOCAL_ROOT_URL").SetValue(defaultLocalURL)
if err = saveCfg.Save(); err != nil {
return fmt.Errorf("failed to save config file: %v", err)
2023-04-25 23:06:39 +08:00
}
}
return nil
}
func listen(m http.Handler, handleRedirector bool) error {
2018-01-12 23:16:49 +01:00
listenAddr := setting.HTTPAddr
if setting.Protocol != setting.HTTPUnix && setting.Protocol != setting.FCGIUnix {
2020-07-26 22:31:28 +02:00
listenAddr = net.JoinHostPort(listenAddr, setting.HTTPPort)
}
_, _, finished := process.GetManager().AddTypedContext(graceful.GetManager().HammerContext(), "Web: Gitea Server", process.SystemProcessType, true)
defer finished()
2016-11-27 18:14:25 +08:00
log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
// This can be useful for users, many users do wrong to their config and get strange behaviors behind a reverse-proxy.
// A user may fix the configuration mistake when he sees this log.
// And this is also very helpful to maintainers to provide help to users to resolve their configuration problems.
log.Info("AppURL(ROOT_URL): %s", setting.AppURL)
2016-08-11 14:55:10 -07:00
2016-12-26 02:16:37 +01:00
if setting.LFS.StartServer {
log.Info("LFS server enabled")
}
2016-08-11 14:55:10 -07:00
var err error
2014-05-25 20:11:25 -04:00
switch setting.Protocol {
case setting.HTTP:
if handleRedirector {
NoHTTPRedirector()
}
2022-08-21 19:20:43 +01:00
err = runHTTP("tcp", listenAddr, "Web", m, setting.UseProxyProtocol)
2014-05-25 20:11:25 -04:00
case setting.HTTPS:
2022-02-08 14:45:35 +09:00
if setting.EnableAcme {
err = runACME(listenAddr, m)
2018-08-21 09:56:50 -04:00
break
2022-08-21 19:20:43 +01:00
}
if handleRedirector {
if setting.RedirectOtherPort {
go runHTTPRedirector()
} else {
NoHTTPRedirector()
}
}
2022-08-21 19:20:43 +01:00
err = runHTTPS("tcp", listenAddr, "Web", setting.CertFile, setting.KeyFile, m, setting.UseProxyProtocol, setting.ProxyProtocolTLSBridging)
2014-11-03 20:46:53 -05:00
case setting.FCGI:
if handleRedirector {
NoHTTPRedirector()
}
2022-08-21 19:20:43 +01:00
err = runFCGI("tcp", listenAddr, "FCGI Web", m, setting.UseProxyProtocol)
case setting.HTTPUnix:
if handleRedirector {
NoHTTPRedirector()
}
2022-08-21 19:20:43 +01:00
err = runHTTP("unix", listenAddr, "Web", m, setting.UseProxyProtocol)
2019-12-10 12:23:26 +00:00
case setting.FCGIUnix:
if handleRedirector {
NoHTTPRedirector()
}
2022-08-21 19:20:43 +01:00
err = runFCGI("unix", listenAddr, "Web", m, setting.UseProxyProtocol)
2014-05-25 20:11:25 -04:00
default:
2019-04-02 08:48:31 +01:00
log.Fatal("Invalid protocol: %s", setting.Protocol)
2014-05-25 20:11:25 -04:00
}
if err != nil {
log.Critical("Failed to start server: %v", err)
2014-03-18 21:58:58 +08:00
}
log.Info("HTTP Listener: %s Closed", listenAddr)
return err
2014-02-19 17:50:53 +08:00
}