You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

web.go 7.9 kB

10 years ago
Git LFS support v2 (#122) * Import github.com/git-lfs/lfs-test-server as lfs module base Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198 Removed: Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go .dockerignore .gitignore README.md * Remove config, add JWT support from github.com/mgit-at/lfs-test-server Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83 * Add LFS settings * Add LFS meta object model * Add LFS routes and initialization * Import github.com/dgrijalva/jwt-go into vendor/ * Adapt LFS module: handlers, routing, meta store * Move LFS routes to /user/repo/info/lfs/* * Add request header checks to LFS BatchHandler / PostHandler * Implement LFS basic authentication * Rework JWT secret generation / load * Implement LFS SSH token authentication with JWT Specification: https://github.com/github/git-lfs/tree/master/docs/api * Integrate LFS settings into install process * Remove LFS objects when repository is deleted Only removes objects from content store when deleted repo is the only referencing repository * Make LFS module stateless Fixes bug where LFS would not work after installation without restarting Gitea * Change 500 'Internal Server Error' to 400 'Bad Request' * Change sql query to xorm call * Remove unneeded type from LFS module * Change internal imports to code.gitea.io/gitea/ * Add Gitea authors copyright * Change basic auth realm to "gitea-lfs" * Add unique indexes to LFS model * Use xorm count function in LFS check on repository delete * Return io.ReadCloser from content store and close after usage * Add LFS info to runWeb() * Export LFS content store base path * LFS file download from UI * Work around git-lfs client issue with unauthenticated requests Returning a dummy Authorization header for unauthenticated requests lets git-lfs client skip asking for auth credentials See: https://github.com/github/git-lfs/issues/1088 * Fix unauthenticated UI downloads from public repositories * Authentication check order, Finish LFS file view logic * Ignore LFS hooks if installed for current OS user Fixes Gitea UI actions for repositories tracking LFS files. Checks for minimum needed git version by parsing the semantic version string. * Hide LFS metafile diff from commit view, marking as binary * Show LFS notice if file in commit view is tracked * Add notbefore/nbf JWT claim * Correct lint suggestions - comments for structs and functions - Add comments to LFS model - Function comment for GetRandomBytesAsBase64 - LFS server function comments and lint variable suggestion * Move secret generation code out of conditional Ensures no LFS code may run with an empty secret * Do not hand out JWT tokens if LFS server support is disabled
8 years ago
11 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
6 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
6 years ago
Git LFS support v2 (#122) * Import github.com/git-lfs/lfs-test-server as lfs module base Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198 Removed: Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go .dockerignore .gitignore README.md * Remove config, add JWT support from github.com/mgit-at/lfs-test-server Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83 * Add LFS settings * Add LFS meta object model * Add LFS routes and initialization * Import github.com/dgrijalva/jwt-go into vendor/ * Adapt LFS module: handlers, routing, meta store * Move LFS routes to /user/repo/info/lfs/* * Add request header checks to LFS BatchHandler / PostHandler * Implement LFS basic authentication * Rework JWT secret generation / load * Implement LFS SSH token authentication with JWT Specification: https://github.com/github/git-lfs/tree/master/docs/api * Integrate LFS settings into install process * Remove LFS objects when repository is deleted Only removes objects from content store when deleted repo is the only referencing repository * Make LFS module stateless Fixes bug where LFS would not work after installation without restarting Gitea * Change 500 'Internal Server Error' to 400 'Bad Request' * Change sql query to xorm call * Remove unneeded type from LFS module * Change internal imports to code.gitea.io/gitea/ * Add Gitea authors copyright * Change basic auth realm to "gitea-lfs" * Add unique indexes to LFS model * Use xorm count function in LFS check on repository delete * Return io.ReadCloser from content store and close after usage * Add LFS info to runWeb() * Export LFS content store base path * LFS file download from UI * Work around git-lfs client issue with unauthenticated requests Returning a dummy Authorization header for unauthenticated requests lets git-lfs client skip asking for auth credentials See: https://github.com/github/git-lfs/issues/1088 * Fix unauthenticated UI downloads from public repositories * Authentication check order, Finish LFS file view logic * Ignore LFS hooks if installed for current OS user Fixes Gitea UI actions for repositories tracking LFS files. Checks for minimum needed git version by parsing the semantic version string. * Hide LFS metafile diff from commit view, marking as binary * Show LFS notice if file in commit view is tracked * Add notbefore/nbf JWT claim * Correct lint suggestions - comments for structs and functions - Add comments to LFS model - Function comment for GetRandomBytesAsBase64 - LFS server function comments and lint variable suggestion * Move secret generation code out of conditional Ensures no LFS code may run with an empty secret * Do not hand out JWT tokens if LFS server support is disabled
8 years ago
11 years ago
11 years ago
11 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
6 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package cmd
  5. import (
  6. "context"
  7. "fmt"
  8. "net"
  9. "net/http"
  10. _ "net/http/pprof" // Used for debugging if enabled and a web server is running
  11. "os"
  12. "strings"
  13. "code.gitea.io/gitea/modules/graceful"
  14. "code.gitea.io/gitea/modules/log"
  15. "code.gitea.io/gitea/modules/setting"
  16. "code.gitea.io/gitea/modules/util"
  17. "code.gitea.io/gitea/routers"
  18. "code.gitea.io/gitea/routers/routes"
  19. context2 "github.com/gorilla/context"
  20. "github.com/urfave/cli"
  21. "golang.org/x/crypto/acme/autocert"
  22. ini "gopkg.in/ini.v1"
  23. )
  24. // CmdWeb represents the available web sub-command.
  25. var CmdWeb = cli.Command{
  26. Name: "web",
  27. Usage: "Start Gitea web server",
  28. Description: `Gitea web server is the only thing you need to run,
  29. and it takes care of all the other things for you`,
  30. Action: runWeb,
  31. Flags: []cli.Flag{
  32. cli.StringFlag{
  33. Name: "port, p",
  34. Value: "3000",
  35. Usage: "Temporary port number to prevent conflict",
  36. },
  37. cli.StringFlag{
  38. Name: "install-port",
  39. Value: "3000",
  40. Usage: "Temporary port number to run the install page on to prevent conflict",
  41. },
  42. cli.StringFlag{
  43. Name: "pid, P",
  44. Value: setting.PIDFile,
  45. Usage: "Custom pid file path",
  46. },
  47. },
  48. }
  49. func runHTTPRedirector() {
  50. source := fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.PortToRedirect)
  51. dest := strings.TrimSuffix(setting.AppURL, "/")
  52. log.Info("Redirecting: %s to %s", source, dest)
  53. handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
  54. target := dest + r.URL.Path
  55. if len(r.URL.RawQuery) > 0 {
  56. target += "?" + r.URL.RawQuery
  57. }
  58. http.Redirect(w, r, target, http.StatusTemporaryRedirect)
  59. })
  60. var err = runHTTP("tcp", source, context2.ClearHandler(handler))
  61. if err != nil {
  62. log.Fatal("Failed to start port redirection: %v", err)
  63. }
  64. }
  65. func runLetsEncrypt(listenAddr, domain, directory, email string, m http.Handler) error {
  66. certManager := autocert.Manager{
  67. Prompt: autocert.AcceptTOS,
  68. HostPolicy: autocert.HostWhitelist(domain),
  69. Cache: autocert.DirCache(directory),
  70. Email: email,
  71. }
  72. go func() {
  73. log.Info("Running Let's Encrypt handler on %s", setting.HTTPAddr+":"+setting.PortToRedirect)
  74. // all traffic coming into HTTP will be redirect to HTTPS automatically (LE HTTP-01 validation happens here)
  75. var err = runHTTP("tcp", setting.HTTPAddr+":"+setting.PortToRedirect, certManager.HTTPHandler(http.HandlerFunc(runLetsEncryptFallbackHandler)))
  76. if err != nil {
  77. log.Fatal("Failed to start the Let's Encrypt handler on port %s: %v", setting.PortToRedirect, err)
  78. }
  79. }()
  80. return runHTTPSWithTLSConfig("tcp", listenAddr, certManager.TLSConfig(), context2.ClearHandler(m))
  81. }
  82. func runLetsEncryptFallbackHandler(w http.ResponseWriter, r *http.Request) {
  83. if r.Method != "GET" && r.Method != "HEAD" {
  84. http.Error(w, "Use HTTPS", http.StatusBadRequest)
  85. return
  86. }
  87. // Remove the trailing slash at the end of setting.AppURL, the request
  88. // URI always contains a leading slash, which would result in a double
  89. // slash
  90. target := strings.TrimSuffix(setting.AppURL, "/") + r.URL.RequestURI()
  91. http.Redirect(w, r, target, http.StatusFound)
  92. }
  93. func runWeb(ctx *cli.Context) error {
  94. managerCtx, cancel := context.WithCancel(context.Background())
  95. graceful.InitManager(managerCtx)
  96. defer cancel()
  97. if os.Getppid() > 1 && len(os.Getenv("LISTEN_FDS")) > 0 {
  98. log.Info("Restarting Gitea on PID: %d from parent PID: %d", os.Getpid(), os.Getppid())
  99. } else {
  100. log.Info("Starting Gitea on PID: %d", os.Getpid())
  101. }
  102. // Set pid file setting
  103. if ctx.IsSet("pid") {
  104. setting.PIDFile = ctx.String("pid")
  105. setting.WritePIDFile = true
  106. }
  107. // Perform pre-initialization
  108. needsInstall := routers.PreInstallInit(graceful.GetManager().HammerContext())
  109. if needsInstall {
  110. // Flag for port number in case first time run conflict
  111. if ctx.IsSet("port") {
  112. if err := setPort(ctx.String("port")); err != nil {
  113. return err
  114. }
  115. }
  116. if ctx.IsSet("install-port") {
  117. if err := setPort(ctx.String("install-port")); err != nil {
  118. return err
  119. }
  120. }
  121. c := routes.NewChi()
  122. routes.RegisterInstallRoute(c)
  123. err := listen(c, false)
  124. select {
  125. case <-graceful.GetManager().IsShutdown():
  126. <-graceful.GetManager().Done()
  127. log.Info("PID: %d Gitea Web Finished", os.Getpid())
  128. log.Close()
  129. return err
  130. default:
  131. }
  132. } else {
  133. NoInstallListener()
  134. }
  135. if setting.EnablePprof {
  136. go func() {
  137. log.Info("Starting pprof server on localhost:6060")
  138. log.Info("%v", http.ListenAndServe("localhost:6060", nil))
  139. }()
  140. }
  141. log.Info("Global init")
  142. // Perform global initialization
  143. routers.GlobalInit(graceful.GetManager().HammerContext())
  144. // Override the provided port number within the configuration
  145. if ctx.IsSet("port") {
  146. if err := setPort(ctx.String("port")); err != nil {
  147. return err
  148. }
  149. }
  150. // Set up Chi routes
  151. c := routes.NewChi()
  152. c.Mount("/", routes.NormalRoutes())
  153. routes.DelegateToMacaron(c)
  154. err := listen(c, true)
  155. <-graceful.GetManager().Done()
  156. log.Info("PID: %d Gitea Web Finished", os.Getpid())
  157. log.Close()
  158. return err
  159. }
  160. func setPort(port string) error {
  161. setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, port, 1)
  162. setting.HTTPPort = port
  163. switch setting.Protocol {
  164. case setting.UnixSocket:
  165. case setting.FCGI:
  166. case setting.FCGIUnix:
  167. default:
  168. // Save LOCAL_ROOT_URL if port changed
  169. cfg := ini.Empty()
  170. isFile, err := util.IsFile(setting.CustomConf)
  171. if err != nil {
  172. log.Fatal("Unable to check if %s is a file", err)
  173. }
  174. if isFile {
  175. // Keeps custom settings if there is already something.
  176. if err := cfg.Append(setting.CustomConf); err != nil {
  177. return fmt.Errorf("Failed to load custom conf '%s': %v", setting.CustomConf, err)
  178. }
  179. }
  180. defaultLocalURL := string(setting.Protocol) + "://"
  181. if setting.HTTPAddr == "0.0.0.0" {
  182. defaultLocalURL += "localhost"
  183. } else {
  184. defaultLocalURL += setting.HTTPAddr
  185. }
  186. defaultLocalURL += ":" + setting.HTTPPort + "/"
  187. cfg.Section("server").Key("LOCAL_ROOT_URL").SetValue(defaultLocalURL)
  188. if err := cfg.SaveTo(setting.CustomConf); err != nil {
  189. return fmt.Errorf("Error saving generated JWT Secret to custom config: %v", err)
  190. }
  191. }
  192. return nil
  193. }
  194. func listen(m http.Handler, handleRedirector bool) error {
  195. listenAddr := setting.HTTPAddr
  196. if setting.Protocol != setting.UnixSocket && setting.Protocol != setting.FCGIUnix {
  197. listenAddr = net.JoinHostPort(listenAddr, setting.HTTPPort)
  198. }
  199. log.Info("Listen: %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
  200. if setting.LFS.StartServer {
  201. log.Info("LFS server enabled")
  202. }
  203. var err error
  204. switch setting.Protocol {
  205. case setting.HTTP:
  206. if handleRedirector {
  207. NoHTTPRedirector()
  208. }
  209. err = runHTTP("tcp", listenAddr, context2.ClearHandler(m))
  210. case setting.HTTPS:
  211. if setting.EnableLetsEncrypt {
  212. err = runLetsEncrypt(listenAddr, setting.Domain, setting.LetsEncryptDirectory, setting.LetsEncryptEmail, context2.ClearHandler(m))
  213. break
  214. }
  215. if handleRedirector {
  216. if setting.RedirectOtherPort {
  217. go runHTTPRedirector()
  218. } else {
  219. NoHTTPRedirector()
  220. }
  221. }
  222. err = runHTTPS("tcp", listenAddr, setting.CertFile, setting.KeyFile, context2.ClearHandler(m))
  223. case setting.FCGI:
  224. if handleRedirector {
  225. NoHTTPRedirector()
  226. }
  227. err = runFCGI("tcp", listenAddr, context2.ClearHandler(m))
  228. case setting.UnixSocket:
  229. if handleRedirector {
  230. NoHTTPRedirector()
  231. }
  232. err = runHTTP("unix", listenAddr, context2.ClearHandler(m))
  233. case setting.FCGIUnix:
  234. if handleRedirector {
  235. NoHTTPRedirector()
  236. }
  237. err = runFCGI("unix", listenAddr, context2.ClearHandler(m))
  238. default:
  239. log.Fatal("Invalid protocol: %s", setting.Protocol)
  240. }
  241. if err != nil {
  242. log.Critical("Failed to start server: %v", err)
  243. }
  244. log.Info("HTTP Listener: %s Closed", listenAddr)
  245. return err
  246. }