2014-02-19 18:04:31 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2016-12-21 12:13:17 +00:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-02-19 09:50:53 +00:00
|
|
|
|
2016-11-11 13:56:35 +00:00
|
|
|
// Gitea (git with a cup of tea) is a painless self-hosted Git Service.
|
|
|
|
package main // import "code.gitea.io/gitea"
|
2014-02-12 17:49:46 +00:00
|
|
|
|
|
|
|
import (
|
2019-04-29 18:08:21 +00:00
|
|
|
"fmt"
|
2014-02-19 09:50:53 +00:00
|
|
|
"os"
|
2019-01-24 15:22:51 +00:00
|
|
|
"runtime"
|
2017-02-28 00:40:02 +00:00
|
|
|
"strings"
|
2020-11-17 22:44:52 +00:00
|
|
|
"time"
|
2016-11-30 23:56:15 +00:00
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/cmd"
|
2017-01-04 13:16:03 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2018-11-01 13:41:07 +00:00
|
|
|
|
2017-09-21 05:20:14 +00:00
|
|
|
// register supported doc types
|
2023-01-18 00:46:58 +00:00
|
|
|
_ "code.gitea.io/gitea/modules/markup/asciicast"
|
2022-06-08 21:46:39 +00:00
|
|
|
_ "code.gitea.io/gitea/modules/markup/console"
|
2018-07-20 21:08:15 +00:00
|
|
|
_ "code.gitea.io/gitea/modules/markup/csv"
|
2017-09-21 05:20:14 +00:00
|
|
|
_ "code.gitea.io/gitea/modules/markup/markdown"
|
|
|
|
_ "code.gitea.io/gitea/modules/markup/orgmode"
|
|
|
|
|
2016-11-04 12:44:23 +00:00
|
|
|
"github.com/urfave/cli"
|
2014-02-12 17:49:46 +00:00
|
|
|
)
|
|
|
|
|
2019-04-02 16:10:11 +00:00
|
|
|
var (
|
|
|
|
// Version holds the current Gitea version
|
2020-01-25 13:21:22 +00:00
|
|
|
Version = "development"
|
2019-04-02 16:10:11 +00:00
|
|
|
// Tags holds the build tags used
|
|
|
|
Tags = ""
|
|
|
|
// MakeVersion holds the current Make version if built with make
|
|
|
|
MakeVersion = ""
|
2019-04-29 18:08:21 +00:00
|
|
|
|
|
|
|
originalAppHelpTemplate = ""
|
|
|
|
originalCommandHelpTemplate = ""
|
|
|
|
originalSubcommandHelpTemplate = ""
|
2019-04-02 16:10:11 +00:00
|
|
|
)
|
2017-02-28 00:40:02 +00:00
|
|
|
|
2014-02-12 19:54:09 +00:00
|
|
|
func init() {
|
2016-11-04 11:32:04 +00:00
|
|
|
setting.AppVer = Version
|
2019-06-12 19:41:28 +00:00
|
|
|
setting.AppBuiltWith = formatBuiltWith()
|
2020-11-17 22:44:52 +00:00
|
|
|
setting.AppStartTime = time.Now().UTC()
|
2019-04-29 18:08:21 +00:00
|
|
|
|
|
|
|
// Grab the original help templates
|
|
|
|
originalAppHelpTemplate = cli.AppHelpTemplate
|
|
|
|
originalCommandHelpTemplate = cli.CommandHelpTemplate
|
|
|
|
originalSubcommandHelpTemplate = cli.SubcommandHelpTemplate
|
2014-02-12 19:54:09 +00:00
|
|
|
}
|
|
|
|
|
2014-02-12 17:49:46 +00:00
|
|
|
func main() {
|
2014-02-19 09:50:53 +00:00
|
|
|
app := cli.NewApp()
|
2016-11-11 13:56:35 +00:00
|
|
|
app.Name = "Gitea"
|
|
|
|
app.Usage = "A painless self-hosted Git service"
|
2018-01-10 04:58:08 +00:00
|
|
|
app.Description = `By default, gitea will start serving using the webserver with no
|
|
|
|
arguments - which can alternatively be run by running the subcommand web.`
|
2019-06-12 19:41:28 +00:00
|
|
|
app.Version = Version + formatBuiltWith()
|
2014-02-19 09:50:53 +00:00
|
|
|
app.Commands = []cli.Command{
|
2014-05-02 01:21:46 +00:00
|
|
|
cmd.CmdWeb,
|
|
|
|
cmd.CmdServ,
|
2017-02-23 03:40:44 +00:00
|
|
|
cmd.CmdHook,
|
2014-06-10 23:11:53 +00:00
|
|
|
cmd.CmdDump,
|
2014-09-22 21:30:58 +00:00
|
|
|
cmd.CmdCert,
|
2016-08-13 23:11:52 +00:00
|
|
|
cmd.CmdAdmin,
|
2018-02-18 18:14:37 +00:00
|
|
|
cmd.CmdGenerate,
|
2018-10-31 03:14:42 +00:00
|
|
|
cmd.CmdMigrate,
|
2018-11-01 13:41:07 +00:00
|
|
|
cmd.CmdKeys,
|
2019-06-08 13:53:45 +00:00
|
|
|
cmd.CmdConvert,
|
2020-01-11 14:24:57 +00:00
|
|
|
cmd.CmdDoctor,
|
2020-01-29 01:01:06 +00:00
|
|
|
cmd.CmdManager,
|
2020-02-02 02:17:44 +00:00
|
|
|
cmd.Cmdembedded,
|
2020-08-18 04:23:45 +00:00
|
|
|
cmd.CmdMigrateStorage,
|
2020-11-07 00:32:57 +00:00
|
|
|
cmd.CmdDocs,
|
2020-12-27 03:34:19 +00:00
|
|
|
cmd.CmdDumpRepository,
|
|
|
|
cmd.CmdRestoreRepository,
|
2023-04-17 17:07:13 +00:00
|
|
|
cmd.CmdActions,
|
F3: Forgejo driver and CLI
user, topic, project, label, milestone, repository, pull_request,
release, asset, comment, reaction, review providers
Signed-off-by: Earl Warren <contact@earl-warren.org>
Preserve file size when creating attachments
Introduced in c6f50297084ebd9ec8b8c25370b9b963167274eb
repoList.LoadAttributes has a ctx argument now
Rename `repo.GetOwner` to `repo.LoadOwner`
bd66fa586a0da58c4cf2f5f8390aef4bac9d0527
upgrade to the latest gof3
(cherry picked from commit c77071365629984c1dc39a7a83e7252fd5b298e2)
[F3] ID remapping logic is in place, remove workaround
(cherry picked from commit d0fee301670c37c0e73afb271e0a8dd6b622f6f6)
[F3] it is experimental, do not enable by default
(cherry picked from commit de325b21d0adad199ec05652cb8d9fff19248ddb)
(cherry picked from commit 547e7b3c40f15766deb569cf2acface3290cf092)
(cherry picked from commit 820df3a56bc194645b482ef77a8845255d1185fe)
(cherry picked from commit eaba87689bbea84a215558033fc7d514b1b44f3e)
(cherry picked from commit 1b86896b3b4144254ed27064a167650b4e12c690)
(cherry picked from commit 0046aac1c639e021e719408e374cfc84fcbaa1d8)
2022-09-06 04:35:43 +00:00
|
|
|
cmd.CmdF3,
|
2014-02-19 09:50:53 +00:00
|
|
|
}
|
2019-04-29 18:08:21 +00:00
|
|
|
// Now adjust these commands to add our global configuration options
|
|
|
|
|
|
|
|
// First calculate the default paths and set the AppHelpTemplates in this context
|
2019-05-14 15:20:35 +00:00
|
|
|
setting.SetCustomPathAndConf("", "", "")
|
2019-04-29 18:08:21 +00:00
|
|
|
setAppHelpTemplates()
|
|
|
|
|
|
|
|
// default configuration flags
|
|
|
|
defaultFlags := []cli.Flag{
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "custom-path, C",
|
|
|
|
Value: setting.CustomPath,
|
|
|
|
Usage: "Custom path file path",
|
|
|
|
},
|
|
|
|
cli.StringFlag{
|
|
|
|
Name: "config, c",
|
|
|
|
Value: setting.CustomConf,
|
|
|
|
Usage: "Custom configuration file path",
|
|
|
|
},
|
|
|
|
cli.VersionFlag,
|
2019-05-14 15:20:35 +00:00
|
|
|
cli.StringFlag{
|
|
|
|
Name: "work-path, w",
|
|
|
|
Value: setting.AppWorkPath,
|
|
|
|
Usage: "Set the gitea working path",
|
|
|
|
},
|
2019-04-29 18:08:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the default to be equivalent to cmdWeb and add the default flags
|
2018-11-01 00:36:41 +00:00
|
|
|
app.Flags = append(app.Flags, cmd.CmdWeb.Flags...)
|
2019-04-29 18:08:21 +00:00
|
|
|
app.Flags = append(app.Flags, defaultFlags...)
|
2018-01-10 04:58:08 +00:00
|
|
|
app.Action = cmd.CmdWeb.Action
|
2019-04-29 18:08:21 +00:00
|
|
|
|
|
|
|
// Add functions to set these paths and these flags to the commands
|
|
|
|
app.Before = establishCustomPath
|
|
|
|
for i := range app.Commands {
|
|
|
|
setFlagsAndBeforeOnSubcommands(&app.Commands[i], defaultFlags, establishCustomPath)
|
|
|
|
}
|
|
|
|
|
2023-02-21 17:32:24 +00:00
|
|
|
app.EnableBashCompletion = true
|
|
|
|
|
2016-11-30 23:56:15 +00:00
|
|
|
err := app.Run(os.Args)
|
|
|
|
if err != nil {
|
2019-04-02 07:48:31 +00:00
|
|
|
log.Fatal("Failed to run app with %s: %v", os.Args, err)
|
2016-11-30 23:56:15 +00:00
|
|
|
}
|
Rewrite logger system (#24726)
## ⚠️ Breaking
The `log.<mode>.<logger>` style config has been dropped. If you used it,
please check the new config manual & app.example.ini to make your
instance output logs as expected.
Although many legacy options still work, it's encouraged to upgrade to
the new options.
The SMTP logger is deleted because SMTP is not suitable to collect logs.
If you have manually configured Gitea log options, please confirm the
logger system works as expected after upgrading.
## Description
Close #12082 and maybe more log-related issues, resolve some related
FIXMEs in old code (which seems unfixable before)
Just like rewriting queue #24505 : make code maintainable, clear legacy
bugs, and add the ability to support more writers (eg: JSON, structured
log)
There is a new document (with examples): `logging-config.en-us.md`
This PR is safer than the queue rewriting, because it's just for
logging, it won't break other logic.
## The old problems
The logging system is quite old and difficult to maintain:
* Unclear concepts: Logger, NamedLogger, MultiChannelledLogger,
SubLogger, EventLogger, WriterLogger etc
* Some code is diffuclt to konw whether it is right:
`log.DelNamedLogger("console")` vs `log.DelNamedLogger(log.DEFAULT)` vs
`log.DelLogger("console")`
* The old system heavily depends on ini config system, it's difficult to
create new logger for different purpose, and it's very fragile.
* The "color" trick is difficult to use and read, many colors are
unnecessary, and in the future structured log could help
* It's difficult to add other log formats, eg: JSON format
* The log outputer doesn't have full control of its goroutine, it's
difficult to make outputer have advanced behaviors
* The logs could be lost in some cases: eg: no Fatal error when using
CLI.
* Config options are passed by JSON, which is quite fragile.
* INI package makes the KEY in `[log]` section visible in `[log.sub1]`
and `[log.sub1.subA]`, this behavior is quite fragile and would cause
more unclear problems, and there is no strong requirement to support
`log.<mode>.<logger>` syntax.
## The new design
See `logger.go` for documents.
## Screenshot
<details>
![image](https://github.com/go-gitea/gitea/assets/2114189/4462d713-ba39-41f5-bb08-de912e67e1ff)
![image](https://github.com/go-gitea/gitea/assets/2114189/b188035e-f691-428b-8b2d-ff7b2199b2f9)
![image](https://github.com/go-gitea/gitea/assets/2114189/132e9745-1c3b-4e00-9e0d-15eaea495dee)
</details>
## TODO
* [x] add some new tests
* [x] fix some tests
* [x] test some sub-commands (manually ....)
---------
Co-authored-by: Jason Song <i@wolfogre.com>
Co-authored-by: delvh <dev.lh@web.de>
Co-authored-by: Giteabot <teabot@gitea.io>
2023-05-21 22:35:11 +00:00
|
|
|
|
|
|
|
log.GetManager().Close()
|
2014-02-12 17:49:46 +00:00
|
|
|
}
|
2017-02-28 00:40:02 +00:00
|
|
|
|
2019-04-29 18:08:21 +00:00
|
|
|
func setFlagsAndBeforeOnSubcommands(command *cli.Command, defaultFlags []cli.Flag, before cli.BeforeFunc) {
|
|
|
|
command.Flags = append(command.Flags, defaultFlags...)
|
|
|
|
command.Before = establishCustomPath
|
|
|
|
for i := range command.Subcommands {
|
|
|
|
setFlagsAndBeforeOnSubcommands(&command.Subcommands[i], defaultFlags, before)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func establishCustomPath(ctx *cli.Context) error {
|
|
|
|
var providedCustom string
|
|
|
|
var providedConf string
|
2019-05-14 15:20:35 +00:00
|
|
|
var providedWorkPath string
|
2019-04-29 18:08:21 +00:00
|
|
|
|
|
|
|
currentCtx := ctx
|
|
|
|
for {
|
2019-05-14 15:20:35 +00:00
|
|
|
if len(providedCustom) != 0 && len(providedConf) != 0 && len(providedWorkPath) != 0 {
|
2019-04-29 18:08:21 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
if currentCtx == nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if currentCtx.IsSet("custom-path") && len(providedCustom) == 0 {
|
|
|
|
providedCustom = currentCtx.String("custom-path")
|
|
|
|
}
|
|
|
|
if currentCtx.IsSet("config") && len(providedConf) == 0 {
|
|
|
|
providedConf = currentCtx.String("config")
|
|
|
|
}
|
2019-05-14 15:20:35 +00:00
|
|
|
if currentCtx.IsSet("work-path") && len(providedWorkPath) == 0 {
|
|
|
|
providedWorkPath = currentCtx.String("work-path")
|
|
|
|
}
|
2019-04-29 18:08:21 +00:00
|
|
|
currentCtx = currentCtx.Parent()
|
|
|
|
|
|
|
|
}
|
2019-05-14 15:20:35 +00:00
|
|
|
setting.SetCustomPathAndConf(providedCustom, providedConf, providedWorkPath)
|
2019-04-29 18:08:21 +00:00
|
|
|
|
|
|
|
setAppHelpTemplates()
|
|
|
|
|
|
|
|
if ctx.IsSet("version") {
|
|
|
|
cli.ShowVersion(ctx)
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func setAppHelpTemplates() {
|
|
|
|
cli.AppHelpTemplate = adjustHelpTemplate(originalAppHelpTemplate)
|
|
|
|
cli.CommandHelpTemplate = adjustHelpTemplate(originalCommandHelpTemplate)
|
|
|
|
cli.SubcommandHelpTemplate = adjustHelpTemplate(originalSubcommandHelpTemplate)
|
|
|
|
}
|
|
|
|
|
|
|
|
func adjustHelpTemplate(originalTemplate string) string {
|
2022-08-07 00:54:26 +00:00
|
|
|
overridden := ""
|
2019-04-29 18:08:21 +00:00
|
|
|
if _, ok := os.LookupEnv("GITEA_CUSTOM"); ok {
|
2022-08-07 00:54:26 +00:00
|
|
|
overridden = "(GITEA_CUSTOM)"
|
2019-04-29 18:08:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf(`%s
|
|
|
|
DEFAULT CONFIGURATION:
|
|
|
|
CustomPath: %s %s
|
|
|
|
CustomConf: %s
|
|
|
|
AppPath: %s
|
|
|
|
AppWorkPath: %s
|
|
|
|
|
2022-08-07 00:54:26 +00:00
|
|
|
`, originalTemplate, setting.CustomPath, overridden, setting.CustomConf, setting.AppPath, setting.AppWorkPath)
|
2019-04-29 18:08:21 +00:00
|
|
|
}
|
|
|
|
|
2019-06-12 19:41:28 +00:00
|
|
|
func formatBuiltWith() string {
|
2022-01-20 17:46:10 +00:00
|
|
|
version := runtime.Version()
|
2019-04-02 16:10:11 +00:00
|
|
|
if len(MakeVersion) > 0 {
|
|
|
|
version = MakeVersion + ", " + runtime.Version()
|
|
|
|
}
|
2017-02-28 00:40:02 +00:00
|
|
|
if len(Tags) == 0 {
|
2019-04-02 16:10:11 +00:00
|
|
|
return " built with " + version
|
2017-02-28 00:40:02 +00:00
|
|
|
}
|
|
|
|
|
2020-10-11 20:27:20 +00:00
|
|
|
return " built with " + version + " : " + strings.ReplaceAll(Tags, " ", ", ")
|
2017-02-28 00:40:02 +00:00
|
|
|
}
|