Files
Atay-Makhzan/cmd/web.go
T

183 lines
4.9 KiB
Go
Raw Normal View History

2014-02-19 17:50:53 +08:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-05-01 21:21:46 -04:00
package cmd
2014-02-19 17:50:53 +08:00
import (
"fmt"
"net"
2014-02-19 17:50:53 +08:00
"net/http"
2014-11-03 20:46:53 -05:00
"net/http/fcgi"
_ "net/http/pprof" // Used for debugging if enabled and a web server is running
2014-04-15 20:01:20 -04:00
"os"
2014-09-29 05:38:46 -04:00
"strings"
2014-02-19 17:50:53 +08:00
"code.gitea.io/gitea/modules/log"
2017-11-07 14:33:06 +08:00
"code.gitea.io/gitea/modules/markup/external"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/routers"
2017-04-25 03:24:51 -04:00
"code.gitea.io/gitea/routers/routes"
2016-12-26 02:16:37 +01:00
2017-12-13 16:57:28 +08:00
"github.com/Unknwon/com"
2017-02-27 09:49:05 +08:00
context2 "github.com/gorilla/context"
2016-11-05 17:56:35 +01:00
"github.com/urfave/cli"
2017-12-13 16:57:28 +08:00
ini "gopkg.in/ini.v1"
2014-02-19 17:50:53 +08:00
)
2016-11-04 12:42:18 +01:00
// CmdWeb represents the available web sub-command.
2014-02-19 17:50:53 +08:00
var CmdWeb = cli.Command{
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`,
2014-02-19 17:50:53 +08:00
Action: runWeb,
Flags: []cli.Flag{
cli.StringFlag{
Name: "port, p",
Value: "3000",
Usage: "Temporary port number to prevent conflict",
},
cli.StringFlag{
Name: "config, c",
Value: "custom/conf/app.ini",
Usage: "Custom configuration file path",
},
2017-01-09 19:54:57 +08:00
cli.StringFlag{
Name: "pid, P",
2017-01-14 03:15:43 +01:00
Value: "/var/run/gitea.pid",
2017-01-09 19:54:57 +08:00
Usage: "Custom pid file path",
},
},
2014-02-19 17:50:53 +08:00
}
func runHTTPRedirector() {
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)
})
var err = runHTTP(source, context2.ClearHandler(handler))
if err != nil {
log.Fatal(4, "Failed to start port redirection: %v", err)
}
}
2016-05-12 14:32:28 -04:00
func runWeb(ctx *cli.Context) error {
if ctx.IsSet("config") {
setting.CustomConf = ctx.String("config")
}
2017-01-09 19:54:57 +08:00
if ctx.IsSet("pid") {
setting.CustomPID = ctx.String("pid")
}
routers.GlobalInit()
2014-02-19 17:50:53 +08:00
2017-11-07 14:33:06 +08:00
external.RegisterParsers()
2017-04-25 03:24:51 -04:00
m := routes.NewMacaron()
routes.RegisterRoutes(m)
2014-03-23 13:48:01 +08:00
// Flag for port number in case first time run conflict.
if ctx.IsSet("port") {
2016-11-27 18:14:25 +08:00
setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, ctx.String("port"), 1)
2016-08-11 14:55:10 -07:00
setting.HTTPPort = ctx.String("port")
2017-12-13 16:57:28 +08:00
switch setting.Protocol {
case setting.UnixSocket:
case setting.FCGI:
default:
// Save LOCAL_ROOT_URL if port changed
cfg := ini.Empty()
if com.IsFile(setting.CustomConf) {
// Keeps custom settings if there is already something.
if err := cfg.Append(setting.CustomConf); err != nil {
return fmt.Errorf("Failed to load custom conf '%s': %v", setting.CustomConf, err)
}
}
defaultLocalURL := string(setting.Protocol) + "://"
if setting.HTTPAddr == "0.0.0.0" {
defaultLocalURL += "localhost"
} else {
defaultLocalURL += setting.HTTPAddr
}
defaultLocalURL += ":" + setting.HTTPPort + "/"
cfg.Section("server").Key("LOCAL_ROOT_URL").SetValue(defaultLocalURL)
if err := cfg.SaveTo(setting.CustomConf); err != nil {
return fmt.Errorf("Error saving generated JWT Secret to custom config: %v", err)
}
}
}
2018-01-12 23:16:49 +01:00
listenAddr := setting.HTTPAddr
if setting.Protocol != setting.UnixSocket {
listenAddr += ":" + setting.HTTPPort
}
2016-11-27 18:14:25 +08:00
log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
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")
}
if setting.EnablePprof {
go func() {
2018-01-12 23:16:49 +01:00
log.Info("Starting pprof server on localhost:6060")
log.Info("%v", http.ListenAndServe("localhost:6060", nil))
}()
}
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:
2017-02-22 08:14:37 +01:00
err = runHTTP(listenAddr, context2.ClearHandler(m))
2014-05-25 20:11:25 -04:00
case setting.HTTPS:
if setting.RedirectOtherPort {
go runHTTPRedirector()
}
2017-02-22 08:14:37 +01:00
err = runHTTPS(listenAddr, setting.CertFile, setting.KeyFile, context2.ClearHandler(m))
2014-11-03 20:46:53 -05:00
case setting.FCGI:
2017-03-23 10:57:43 +03:00
listener, err := net.Listen("tcp", listenAddr)
if err != nil {
log.Fatal(4, "Failed to bind %s", listenAddr, err)
}
defer listener.Close()
err = fcgi.Serve(listener, context2.ClearHandler(m))
2016-11-27 18:14:25 +08:00
case setting.UnixSocket:
2017-02-05 15:27:37 +03:00
if err := os.Remove(listenAddr); err != nil && !os.IsNotExist(err) {
2017-01-29 12:13:57 -08:00
log.Fatal(4, "Failed to remove unix socket directory %s: %v", listenAddr, err)
2016-12-01 00:56:15 +01:00
}
2016-08-11 14:55:10 -07:00
var listener *net.UnixListener
listener, err = net.ListenUnix("unix", &net.UnixAddr{Name: listenAddr, Net: "unix"})
if err != nil {
2016-08-11 14:55:10 -07:00
break // Handle error after switch
}
2016-08-11 14:55:10 -07:00
// FIXME: add proper implementation of signal capture on all protocols
// execute this on SIGTERM or SIGINT: listener.Close()
2016-08-11 14:55:10 -07:00
if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
log.Fatal(4, "Failed to set permission of unix socket: %v", err)
}
2017-02-22 08:14:37 +01:00
err = http.Serve(listener, context2.ClearHandler(m))
2014-05-25 20:11:25 -04:00
default:
2014-07-26 00:24:27 -04:00
log.Fatal(4, "Invalid protocol: %s", setting.Protocol)
2014-05-25 20:11:25 -04:00
}
if err != nil {
2017-01-29 12:13:57 -08:00
log.Fatal(4, "Failed to start server: %v", err)
2014-03-18 21:58:58 +08:00
}
2016-05-12 14:32:28 -04:00
return nil
2014-02-19 17:50:53 +08:00
}