2014-04-10 18:20:58 +00: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-26 00:11:25 +00:00
|
|
|
package setting
|
2014-04-10 18:20:58 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-09-14 17:35:22 +00:00
|
|
|
"net/url"
|
2014-04-10 18:20:58 +00:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
2014-09-16 17:34:09 +00:00
|
|
|
"runtime"
|
2014-04-10 18:20:58 +00:00
|
|
|
"strings"
|
2014-07-24 20:31:59 +00:00
|
|
|
"time"
|
2014-04-10 18:20:58 +00:00
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
2014-11-29 02:20:13 +00:00
|
|
|
"github.com/macaron-contrib/oauth2"
|
2014-07-26 04:24:27 +00:00
|
|
|
"github.com/macaron-contrib/session"
|
2014-12-31 10:37:29 +00:00
|
|
|
"gopkg.in/ini.v1"
|
2014-04-10 18:20:58 +00:00
|
|
|
|
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-11-21 17:51:36 +00:00
|
|
|
// "github.com/gogits/gogs/modules/ssh"
|
2014-04-10 18:20:58 +00:00
|
|
|
)
|
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
type Scheme string
|
2014-04-13 22:12:07 +00:00
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
const (
|
|
|
|
HTTP Scheme = "http"
|
|
|
|
HTTPS Scheme = "https"
|
2014-11-04 01:46:53 +00:00
|
|
|
FCGI Scheme = "fcgi"
|
2014-05-26 00:11:25 +00:00
|
|
|
)
|
2014-04-10 18:20:58 +00:00
|
|
|
|
2014-11-24 23:47:59 +00:00
|
|
|
type LandingPage string
|
|
|
|
|
|
|
|
const (
|
|
|
|
LANDING_PAGE_HOME LandingPage = "/"
|
|
|
|
LANDING_PAGE_EXPLORE LandingPage = "/explore"
|
|
|
|
)
|
|
|
|
|
2014-04-10 18:20:58 +00:00
|
|
|
var (
|
2014-05-26 00:11:25 +00:00
|
|
|
// App settings.
|
2014-09-20 00:11:34 +00:00
|
|
|
AppVer string
|
|
|
|
AppName string
|
|
|
|
AppUrl string
|
|
|
|
AppSubUrl string
|
2014-05-26 00:11:25 +00:00
|
|
|
|
|
|
|
// Server settings.
|
|
|
|
Protocol Scheme
|
|
|
|
Domain string
|
|
|
|
HttpAddr, HttpPort string
|
2015-02-07 15:46:57 +00:00
|
|
|
DisableSSH bool
|
|
|
|
SSHPort int
|
2014-05-26 00:11:25 +00:00
|
|
|
OfflineMode bool
|
|
|
|
DisableRouterLog bool
|
|
|
|
CertFile, KeyFile string
|
|
|
|
StaticRootPath string
|
2014-07-26 04:24:27 +00:00
|
|
|
EnableGzip bool
|
2014-11-24 23:47:59 +00:00
|
|
|
LandingPageUrl LandingPage
|
2014-05-26 00:11:25 +00:00
|
|
|
|
|
|
|
// Security settings.
|
2014-06-24 17:55:47 +00:00
|
|
|
InstallLock bool
|
|
|
|
SecretKey string
|
|
|
|
LogInRememberDays int
|
|
|
|
CookieUserName string
|
|
|
|
CookieRememberName string
|
|
|
|
ReverseProxyAuthUser string
|
2014-04-10 18:20:58 +00:00
|
|
|
|
2014-06-08 08:45:34 +00:00
|
|
|
// Webhook settings.
|
2015-02-11 02:06:59 +00:00
|
|
|
Webhook struct {
|
2015-02-11 17:04:01 +00:00
|
|
|
TaskInterval int
|
|
|
|
DeliverTimeout int
|
|
|
|
SkipTLSVerify bool
|
2015-02-11 02:06:59 +00:00
|
|
|
}
|
2014-06-08 08:45:34 +00:00
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
// Repository settings.
|
|
|
|
RepoRootPath string
|
|
|
|
ScriptType string
|
2014-04-10 18:20:58 +00:00
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
// Picture settings.
|
2014-11-21 15:58:08 +00:00
|
|
|
PictureService string
|
|
|
|
AvatarUploadPath string
|
|
|
|
GravatarSource string
|
|
|
|
DisableGravatar bool
|
2014-05-26 00:11:25 +00:00
|
|
|
|
|
|
|
// Log settings.
|
2014-05-28 05:53:06 +00:00
|
|
|
LogRootPath string
|
|
|
|
LogModes []string
|
|
|
|
LogConfigs []string
|
2014-04-10 18:20:58 +00:00
|
|
|
|
2014-07-23 19:15:47 +00:00
|
|
|
// Attachment settings.
|
|
|
|
AttachmentPath string
|
|
|
|
AttachmentAllowedTypes string
|
2014-07-24 13:19:59 +00:00
|
|
|
AttachmentMaxSize int64
|
|
|
|
AttachmentMaxFiles int
|
2014-07-24 13:51:40 +00:00
|
|
|
AttachmentEnabled bool
|
2014-07-23 19:15:47 +00:00
|
|
|
|
2014-07-24 20:31:59 +00:00
|
|
|
// Time settings.
|
|
|
|
TimeFormat string
|
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
// Cache settings.
|
2014-07-31 21:25:34 +00:00
|
|
|
CacheAdapter string
|
|
|
|
CacheInternal int
|
|
|
|
CacheConn string
|
2014-04-10 18:20:58 +00:00
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
EnableRedis bool
|
|
|
|
EnableMemcache bool
|
|
|
|
|
|
|
|
// Session settings.
|
2014-12-28 12:40:35 +00:00
|
|
|
SessionConfig session.Options
|
2014-04-10 18:20:58 +00:00
|
|
|
|
2014-09-17 18:22:51 +00:00
|
|
|
// Git settings.
|
2015-01-02 12:14:43 +00:00
|
|
|
Git struct {
|
|
|
|
MaxGitDiffLines int
|
|
|
|
GcArgs []string `delim:" "`
|
|
|
|
Fsck struct {
|
|
|
|
Enable bool
|
|
|
|
Interval int
|
|
|
|
Args []string `delim:" "`
|
|
|
|
} `ini:"git.fsck"`
|
|
|
|
}
|
2014-09-17 18:22:51 +00:00
|
|
|
|
|
|
|
// I18n settings.
|
|
|
|
Langs, Names []string
|
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
// Global setting objects.
|
2014-12-31 10:37:29 +00:00
|
|
|
Cfg *ini.File
|
2014-07-26 04:24:27 +00:00
|
|
|
ConfRootPath string
|
|
|
|
CustomPath string // Custom directory path.
|
2015-02-05 10:12:37 +00:00
|
|
|
CustomConf string
|
2014-07-26 04:24:27 +00:00
|
|
|
ProdMode bool
|
|
|
|
RunUser string
|
2014-09-16 17:34:09 +00:00
|
|
|
IsWindows bool
|
2014-09-21 23:39:10 +00:00
|
|
|
HasRobotsTxt bool
|
2014-04-10 18:20:58 +00:00
|
|
|
)
|
|
|
|
|
2014-07-26 04:24:27 +00:00
|
|
|
func init() {
|
2014-09-16 17:34:09 +00:00
|
|
|
IsWindows = runtime.GOOS == "windows"
|
2014-07-26 04:24:27 +00:00
|
|
|
log.NewLogger(0, "console", `{"level": 0}`)
|
|
|
|
}
|
|
|
|
|
2014-06-10 23:11:53 +00:00
|
|
|
func ExecPath() (string, error) {
|
2014-05-26 00:11:25 +00:00
|
|
|
file, err := exec.LookPath(os.Args[0])
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
p, err := filepath.Abs(file)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2014-06-10 23:11:53 +00:00
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// WorkDir returns absolute path of work directory.
|
|
|
|
func WorkDir() (string, error) {
|
|
|
|
execPath, err := ExecPath()
|
|
|
|
return path.Dir(strings.Replace(execPath, "\\", "/", -1)), err
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewConfigContext initializes configuration context.
|
2014-05-26 00:57:01 +00:00
|
|
|
// NOTE: do not print any log except error.
|
2014-05-26 00:11:25 +00:00
|
|
|
func NewConfigContext() {
|
|
|
|
workDir, err := WorkDir()
|
|
|
|
if err != nil {
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Fail to get work directory: %v", err)
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
2014-07-26 04:24:27 +00:00
|
|
|
ConfRootPath = path.Join(workDir, "conf")
|
2014-05-26 00:11:25 +00:00
|
|
|
|
2014-12-31 10:37:29 +00:00
|
|
|
Cfg, err = ini.Load(path.Join(workDir, "conf/app.ini"))
|
2014-05-26 00:11:25 +00:00
|
|
|
if err != nil {
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Fail to parse 'conf/app.ini': %v", err)
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CustomPath = os.Getenv("GOGS_CUSTOM")
|
|
|
|
if len(CustomPath) == 0 {
|
|
|
|
CustomPath = path.Join(workDir, "custom")
|
|
|
|
}
|
|
|
|
|
2015-02-05 10:12:37 +00:00
|
|
|
if len(CustomConf) == 0 {
|
|
|
|
CustomConf = path.Join(CustomPath, "conf/app.ini")
|
|
|
|
}
|
|
|
|
|
|
|
|
if com.IsFile(CustomConf) {
|
|
|
|
if err = Cfg.Append(CustomConf); err != nil {
|
|
|
|
log.Fatal(4, "Fail to load custom conf '%s': %v", CustomConf, err)
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-02-05 10:12:37 +00:00
|
|
|
log.Warn("Custom config (%s) not found, ignore this if you're running first time", CustomConf)
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
2015-01-02 12:14:43 +00:00
|
|
|
Cfg.NameMapper = ini.AllCapsUnderscore
|
2014-05-26 00:11:25 +00:00
|
|
|
|
2014-12-31 10:37:29 +00:00
|
|
|
LogRootPath = Cfg.Section("log").Key("ROOT_PATH").MustString(path.Join(workDir, "log"))
|
|
|
|
|
|
|
|
sec := Cfg.Section("server")
|
|
|
|
AppName = Cfg.Section("").Key("APP_NAME").MustString("Gogs: Go Git Service")
|
|
|
|
AppUrl = sec.Key("ROOT_URL").MustString("http://localhost:3000/")
|
2014-08-25 01:45:39 +00:00
|
|
|
if AppUrl[len(AppUrl)-1] != '/' {
|
|
|
|
AppUrl += "/"
|
|
|
|
}
|
2014-05-26 00:11:25 +00:00
|
|
|
|
2014-09-20 00:11:34 +00:00
|
|
|
// Check if has app suburl.
|
2014-09-14 17:35:22 +00:00
|
|
|
url, err := url.Parse(AppUrl)
|
|
|
|
if err != nil {
|
2014-09-20 00:11:34 +00:00
|
|
|
log.Fatal(4, "Invalid ROOT_URL(%s): %s", AppUrl, err)
|
2014-09-14 17:35:22 +00:00
|
|
|
}
|
2014-09-20 00:11:34 +00:00
|
|
|
AppSubUrl = strings.TrimSuffix(url.Path, "/")
|
2014-09-14 17:35:22 +00:00
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
Protocol = HTTP
|
2014-12-31 10:37:29 +00:00
|
|
|
if sec.Key("PROTOCOL").String() == "https" {
|
2014-05-26 00:11:25 +00:00
|
|
|
Protocol = HTTPS
|
2014-12-31 10:37:29 +00:00
|
|
|
CertFile = sec.Key("CERT_FILE").String()
|
|
|
|
KeyFile = sec.Key("KEY_FILE").String()
|
|
|
|
} else if sec.Key("PROTOCOL").String() == "fcgi" {
|
2014-11-04 01:46:53 +00:00
|
|
|
Protocol = FCGI
|
|
|
|
}
|
2014-12-31 10:37:29 +00:00
|
|
|
Domain = sec.Key("DOMAIN").MustString("localhost")
|
|
|
|
HttpAddr = sec.Key("HTTP_ADDR").MustString("0.0.0.0")
|
|
|
|
HttpPort = sec.Key("HTTP_PORT").MustString("3000")
|
2015-02-07 15:46:57 +00:00
|
|
|
DisableSSH = sec.Key("DISABLE_SSH").MustBool()
|
|
|
|
SSHPort = sec.Key("SSH_PORT").MustInt(22)
|
2014-12-31 10:37:29 +00:00
|
|
|
OfflineMode = sec.Key("OFFLINE_MODE").MustBool()
|
|
|
|
DisableRouterLog = sec.Key("DISABLE_ROUTER_LOG").MustBool()
|
|
|
|
StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString(workDir)
|
|
|
|
EnableGzip = sec.Key("ENABLE_GZIP").MustBool()
|
|
|
|
|
|
|
|
switch sec.Key("LANDING_PAGE").MustString("home") {
|
2014-11-24 23:47:59 +00:00
|
|
|
case "explore":
|
|
|
|
LandingPageUrl = LANDING_PAGE_EXPLORE
|
|
|
|
default:
|
|
|
|
LandingPageUrl = LANDING_PAGE_HOME
|
|
|
|
}
|
|
|
|
|
2014-12-31 10:37:29 +00:00
|
|
|
sec = Cfg.Section("security")
|
|
|
|
InstallLock = sec.Key("INSTALL_LOCK").MustBool()
|
|
|
|
SecretKey = sec.Key("SECRET_KEY").String()
|
|
|
|
LogInRememberDays = sec.Key("LOGIN_REMEMBER_DAYS").MustInt()
|
|
|
|
CookieUserName = sec.Key("COOKIE_USERNAME").String()
|
|
|
|
CookieRememberName = sec.Key("COOKIE_REMEMBER_NAME").String()
|
|
|
|
ReverseProxyAuthUser = sec.Key("REVERSE_PROXY_AUTHENTICATION_USER").MustString("X-WEBAUTH-USER")
|
|
|
|
|
|
|
|
sec = Cfg.Section("attachment")
|
2015-02-09 03:23:01 +00:00
|
|
|
AttachmentPath = path.Join(workDir, sec.Key("PATH").MustString("data/attachments"))
|
2014-12-31 10:37:29 +00:00
|
|
|
AttachmentAllowedTypes = sec.Key("ALLOWED_TYPES").MustString("image/jpeg|image/png")
|
|
|
|
AttachmentMaxSize = sec.Key("MAX_SIZE").MustInt64(32)
|
|
|
|
AttachmentMaxFiles = sec.Key("MAX_FILES").MustInt(10)
|
|
|
|
AttachmentEnabled = sec.Key("ENABLE").MustBool(true)
|
2014-07-23 19:15:47 +00:00
|
|
|
|
2014-08-01 04:24:29 +00:00
|
|
|
TimeFormat = map[string]string{
|
|
|
|
"ANSIC": time.ANSIC,
|
|
|
|
"UnixDate": time.UnixDate,
|
|
|
|
"RubyDate": time.RubyDate,
|
|
|
|
"RFC822": time.RFC822,
|
|
|
|
"RFC822Z": time.RFC822Z,
|
|
|
|
"RFC850": time.RFC850,
|
|
|
|
"RFC1123": time.RFC1123,
|
|
|
|
"RFC1123Z": time.RFC1123Z,
|
|
|
|
"RFC3339": time.RFC3339,
|
|
|
|
"RFC3339Nano": time.RFC3339Nano,
|
|
|
|
"Kitchen": time.Kitchen,
|
|
|
|
"Stamp": time.Stamp,
|
|
|
|
"StampMilli": time.StampMilli,
|
|
|
|
"StampMicro": time.StampMicro,
|
|
|
|
"StampNano": time.StampNano,
|
2014-12-31 10:37:29 +00:00
|
|
|
}[Cfg.Section("time").Key("FORMAT").MustString("RFC1123")]
|
2014-07-24 20:31:59 +00:00
|
|
|
|
2014-07-23 19:15:47 +00:00
|
|
|
if err = os.MkdirAll(AttachmentPath, os.ModePerm); err != nil {
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Could not create directory %s: %s", AttachmentPath, err)
|
2014-07-23 19:15:47 +00:00
|
|
|
}
|
|
|
|
|
2014-12-31 10:37:29 +00:00
|
|
|
RunUser = Cfg.Section("").Key("RUN_USER").String()
|
2014-05-26 00:11:25 +00:00
|
|
|
curUser := os.Getenv("USER")
|
|
|
|
if len(curUser) == 0 {
|
|
|
|
curUser = os.Getenv("USERNAME")
|
|
|
|
}
|
|
|
|
// Does not check run user when the install lock is off.
|
|
|
|
if InstallLock && RunUser != curUser {
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Expect user(%s) but current user is: %s", RunUser, curUser)
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
|
|
|
|
2014-12-07 01:22:48 +00:00
|
|
|
// Determine and create root git repository path.
|
2014-05-26 00:11:25 +00:00
|
|
|
homeDir, err := com.HomeDir()
|
|
|
|
if err != nil {
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Fail to get home directory: %v", err)
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
2014-12-31 10:37:29 +00:00
|
|
|
sec = Cfg.Section("repository")
|
|
|
|
RepoRootPath = sec.Key("ROOT").MustString(filepath.Join(homeDir, "gogs-repositories"))
|
2014-06-24 06:28:47 +00:00
|
|
|
if !filepath.IsAbs(RepoRootPath) {
|
|
|
|
RepoRootPath = filepath.Join(workDir, RepoRootPath)
|
|
|
|
} else {
|
|
|
|
RepoRootPath = filepath.Clean(RepoRootPath)
|
|
|
|
}
|
2014-05-26 00:11:25 +00:00
|
|
|
if err = os.MkdirAll(RepoRootPath, os.ModePerm); err != nil {
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Fail to create repository root path(%s): %v", RepoRootPath, err)
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
2014-12-31 10:37:29 +00:00
|
|
|
ScriptType = sec.Key("SCRIPT_TYPE").MustString("bash")
|
2014-05-26 00:11:25 +00:00
|
|
|
|
2014-12-31 10:37:29 +00:00
|
|
|
sec = Cfg.Section("picture")
|
|
|
|
PictureService = sec.Key("SERVICE").In("server", []string{"server"})
|
2015-02-09 03:23:01 +00:00
|
|
|
AvatarUploadPath = path.Join(workDir, sec.Key("AVATAR_UPLOAD_PATH").MustString("data/avatars"))
|
2014-11-21 15:58:08 +00:00
|
|
|
os.MkdirAll(AvatarUploadPath, os.ModePerm)
|
2014-12-31 10:37:29 +00:00
|
|
|
switch sec.Key("GRAVATAR_SOURCE").MustString("gravatar") {
|
2014-11-17 01:27:04 +00:00
|
|
|
case "duoshuo":
|
|
|
|
GravatarSource = "http://gravatar.duoshuo.com/avatar/"
|
|
|
|
default:
|
|
|
|
GravatarSource = "//1.gravatar.com/avatar/"
|
|
|
|
}
|
2014-12-31 10:37:29 +00:00
|
|
|
DisableGravatar = sec.Key("DISABLE_GRAVATAR").MustBool()
|
2014-07-26 04:24:27 +00:00
|
|
|
|
2015-01-02 12:14:43 +00:00
|
|
|
if err = Cfg.Section("git").MapTo(&Git); err != nil {
|
|
|
|
log.Fatal(4, "Fail to map Git settings: %v", err)
|
|
|
|
}
|
2014-09-17 04:03:03 +00:00
|
|
|
|
2014-12-31 10:37:29 +00:00
|
|
|
Langs = Cfg.Section("i18n").Key("LANGS").Strings(",")
|
|
|
|
Names = Cfg.Section("i18n").Key("NAMES").Strings(",")
|
2014-09-21 23:39:10 +00:00
|
|
|
|
|
|
|
HasRobotsTxt = com.IsFile(path.Join(CustomPath, "robots.txt"))
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
|
|
|
|
2014-04-10 18:20:58 +00:00
|
|
|
var Service struct {
|
2014-12-05 22:54:57 +00:00
|
|
|
RegisterEmailConfirm bool
|
|
|
|
DisableRegistration bool
|
2015-02-05 16:09:26 +00:00
|
|
|
ShowRegistrationButton bool
|
2014-12-05 22:54:57 +00:00
|
|
|
RequireSignInView bool
|
|
|
|
EnableCacheAvatar bool
|
|
|
|
EnableNotifyMail bool
|
|
|
|
EnableReverseProxyAuth bool
|
|
|
|
EnableReverseProxyAutoRegister bool
|
|
|
|
ActiveCodeLives int
|
|
|
|
ResetPwdCodeLives int
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
func newService() {
|
2014-12-31 10:37:29 +00:00
|
|
|
Service.ActiveCodeLives = Cfg.Section("service").Key("ACTIVE_CODE_LIVE_MINUTES").MustInt(180)
|
|
|
|
Service.ResetPwdCodeLives = Cfg.Section("service").Key("RESET_PASSWD_CODE_LIVE_MINUTES").MustInt(180)
|
|
|
|
Service.DisableRegistration = Cfg.Section("service").Key("DISABLE_REGISTRATION").MustBool()
|
2015-02-07 02:16:23 +00:00
|
|
|
Service.ShowRegistrationButton = Cfg.Section("service").Key("SHOW_REGISTRATION_BUTTON").MustBool(!Service.DisableRegistration)
|
2014-12-31 10:37:29 +00:00
|
|
|
Service.RequireSignInView = Cfg.Section("service").Key("REQUIRE_SIGNIN_VIEW").MustBool()
|
|
|
|
Service.EnableCacheAvatar = Cfg.Section("service").Key("ENABLE_CACHE_AVATAR").MustBool()
|
|
|
|
Service.EnableReverseProxyAuth = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTHENTICATION").MustBool()
|
|
|
|
Service.EnableReverseProxyAutoRegister = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTO_REGISTERATION").MustBool()
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var logLevels = map[string]string{
|
|
|
|
"Trace": "0",
|
|
|
|
"Debug": "1",
|
|
|
|
"Info": "2",
|
|
|
|
"Warn": "3",
|
|
|
|
"Error": "4",
|
|
|
|
"Critical": "5",
|
|
|
|
}
|
|
|
|
|
|
|
|
func newLogService() {
|
2014-05-11 18:37:12 +00:00
|
|
|
log.Info("%s %s", AppName, AppVer)
|
2014-04-10 18:20:58 +00:00
|
|
|
|
2014-05-11 18:37:12 +00:00
|
|
|
// Get and check log mode.
|
2014-12-31 10:37:29 +00:00
|
|
|
LogModes = strings.Split(Cfg.Section("log").Key("MODE").MustString("console"), ",")
|
2014-05-11 18:37:12 +00:00
|
|
|
LogConfigs = make([]string, len(LogModes))
|
|
|
|
for i, mode := range LogModes {
|
|
|
|
mode = strings.TrimSpace(mode)
|
2014-12-31 10:37:29 +00:00
|
|
|
sec, err := Cfg.GetSection("log." + mode)
|
|
|
|
if err != nil {
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Unknown log mode: %s", mode)
|
2014-05-11 18:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Log level.
|
2014-12-31 10:37:29 +00:00
|
|
|
levelName := Cfg.Section("log."+mode).Key("LEVEL").In("Trace",
|
2014-05-19 02:05:35 +00:00
|
|
|
[]string{"Trace", "Debug", "Info", "Warn", "Error", "Critical"})
|
2014-05-11 18:37:12 +00:00
|
|
|
level, ok := logLevels[levelName]
|
|
|
|
if !ok {
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Unknown log level: %s", levelName)
|
2014-05-11 18:37:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Generate log configuration.
|
|
|
|
switch mode {
|
|
|
|
case "console":
|
|
|
|
LogConfigs[i] = fmt.Sprintf(`{"level":%s}`, level)
|
|
|
|
case "file":
|
2014-12-31 10:37:29 +00:00
|
|
|
logPath := sec.Key("FILE_NAME").MustString(path.Join(LogRootPath, "gogs.log"))
|
2014-05-11 18:37:12 +00:00
|
|
|
os.MkdirAll(path.Dir(logPath), os.ModePerm)
|
|
|
|
LogConfigs[i] = fmt.Sprintf(
|
|
|
|
`{"level":%s,"filename":"%s","rotate":%v,"maxlines":%d,"maxsize":%d,"daily":%v,"maxdays":%d}`, level,
|
|
|
|
logPath,
|
2014-12-31 10:37:29 +00:00
|
|
|
sec.Key("LOG_ROTATE").MustBool(true),
|
|
|
|
sec.Key("MAX_LINES").MustInt(1000000),
|
|
|
|
1<<uint(sec.Key("MAX_SIZE_SHIFT").MustInt(28)),
|
|
|
|
sec.Key("DAILY_ROTATE").MustBool(true),
|
|
|
|
sec.Key("MAX_DAYS").MustInt(7))
|
2014-05-11 18:37:12 +00:00
|
|
|
case "conn":
|
2014-06-20 04:25:23 +00:00
|
|
|
LogConfigs[i] = fmt.Sprintf(`{"level":%s,"reconnectOnMsg":%v,"reconnect":%v,"net":"%s","addr":"%s"}`, level,
|
2014-12-31 10:37:29 +00:00
|
|
|
sec.Key("RECONNECT_ON_MSG").MustBool(),
|
|
|
|
sec.Key("RECONNECT").MustBool(),
|
|
|
|
sec.Key("PROTOCOL").In("tcp", []string{"tcp", "unix", "udp"}),
|
|
|
|
sec.Key("ADDR").MustString(":7020"))
|
2014-05-11 18:37:12 +00:00
|
|
|
case "smtp":
|
2014-06-20 04:25:23 +00:00
|
|
|
LogConfigs[i] = fmt.Sprintf(`{"level":%s,"username":"%s","password":"%s","host":"%s","sendTos":"%s","subject":"%s"}`, level,
|
2014-12-31 10:37:29 +00:00
|
|
|
sec.Key("USER").MustString("example@example.com"),
|
|
|
|
sec.Key("PASSWD").MustString("******"),
|
|
|
|
sec.Key("HOST").MustString("127.0.0.1:25"),
|
|
|
|
sec.Key("RECEIVERS").MustString("[]"),
|
|
|
|
sec.Key("SUBJECT").MustString("Diagnostic message from serve"))
|
2014-05-11 18:37:12 +00:00
|
|
|
case "database":
|
2014-06-20 04:25:23 +00:00
|
|
|
LogConfigs[i] = fmt.Sprintf(`{"level":%s,"driver":"%s","conn":"%s"}`, level,
|
2014-12-31 10:37:29 +00:00
|
|
|
sec.Key("DRIVER").String(),
|
|
|
|
sec.Key("CONN").String())
|
2014-05-11 18:37:12 +00:00
|
|
|
}
|
|
|
|
|
2014-12-31 10:37:29 +00:00
|
|
|
log.NewLogger(Cfg.Section("log").Key("BUFFER_LEN").MustInt64(10000), mode, LogConfigs[i])
|
2014-05-11 18:37:12 +00:00
|
|
|
log.Info("Log Mode: %s(%s)", strings.Title(mode), levelName)
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newCacheService() {
|
2014-12-31 10:37:29 +00:00
|
|
|
CacheAdapter = Cfg.Section("cache").Key("ADAPTER").In("memory", []string{"memory", "redis", "memcache"})
|
2014-04-21 10:54:07 +00:00
|
|
|
if EnableRedis {
|
2014-04-20 02:13:22 +00:00
|
|
|
log.Info("Redis Enabled")
|
|
|
|
}
|
2014-04-21 10:54:07 +00:00
|
|
|
if EnableMemcache {
|
2014-04-20 02:13:22 +00:00
|
|
|
log.Info("Memcache Enabled")
|
|
|
|
}
|
2014-04-10 18:20:58 +00:00
|
|
|
|
|
|
|
switch CacheAdapter {
|
|
|
|
case "memory":
|
2014-12-31 10:37:29 +00:00
|
|
|
CacheInternal = Cfg.Section("cache").Key("INTERVAL").MustInt(60)
|
2014-04-10 18:20:58 +00:00
|
|
|
case "redis", "memcache":
|
2014-12-31 10:37:29 +00:00
|
|
|
CacheConn = strings.Trim(Cfg.Section("cache").Key("HOST").String(), "\" ")
|
2014-04-10 18:20:58 +00:00
|
|
|
default:
|
2014-07-26 04:24:27 +00:00
|
|
|
log.Fatal(4, "Unknown cache adapter: %s", CacheAdapter)
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Info("Cache Service Enabled")
|
|
|
|
}
|
|
|
|
|
|
|
|
func newSessionService() {
|
2014-12-31 10:37:29 +00:00
|
|
|
SessionConfig.Provider = Cfg.Section("session").Key("PROVIDER").In("memory",
|
2014-05-19 02:05:35 +00:00
|
|
|
[]string{"memory", "file", "redis", "mysql"})
|
2014-12-31 10:37:29 +00:00
|
|
|
SessionConfig.ProviderConfig = strings.Trim(Cfg.Section("session").Key("PROVIDER_CONFIG").String(), "\" ")
|
|
|
|
SessionConfig.CookieName = Cfg.Section("session").Key("COOKIE_NAME").MustString("i_like_gogits")
|
2014-09-21 16:22:50 +00:00
|
|
|
SessionConfig.CookiePath = AppSubUrl
|
2014-12-31 10:37:29 +00:00
|
|
|
SessionConfig.Secure = Cfg.Section("session").Key("COOKIE_SECURE").MustBool()
|
|
|
|
SessionConfig.Gclifetime = Cfg.Section("session").Key("GC_INTERVAL_TIME").MustInt64(86400)
|
|
|
|
SessionConfig.Maxlifetime = Cfg.Section("session").Key("SESSION_LIFE_TIME").MustInt64(86400)
|
2014-04-10 18:20:58 +00:00
|
|
|
|
|
|
|
log.Info("Session Service Enabled")
|
|
|
|
}
|
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
// Mailer represents mail service.
|
|
|
|
type Mailer struct {
|
|
|
|
Name string
|
|
|
|
Host string
|
2014-06-03 16:51:53 +00:00
|
|
|
From string
|
2014-05-26 00:11:25 +00:00
|
|
|
User, Passwd string
|
2014-12-18 11:34:30 +00:00
|
|
|
SkipVerify bool
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type OauthInfo struct {
|
2014-11-29 02:20:13 +00:00
|
|
|
oauth2.Options
|
|
|
|
AuthUrl, TokenUrl string
|
2014-05-26 00:11:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Oauther represents oauth service.
|
|
|
|
type Oauther struct {
|
|
|
|
GitHub, Google, Tencent,
|
|
|
|
Twitter, Weibo bool
|
|
|
|
OauthInfos map[string]*OauthInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
MailService *Mailer
|
|
|
|
OauthService *Oauther
|
|
|
|
)
|
|
|
|
|
2014-04-10 18:20:58 +00:00
|
|
|
func newMailService() {
|
2014-12-31 10:37:29 +00:00
|
|
|
sec := Cfg.Section("mailer")
|
2014-04-10 18:20:58 +00:00
|
|
|
// Check mailer setting.
|
2014-12-31 10:37:29 +00:00
|
|
|
if !sec.Key("ENABLED").MustBool() {
|
2014-04-10 18:20:58 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
MailService = &Mailer{
|
2014-12-31 10:37:29 +00:00
|
|
|
Name: sec.Key("NAME").MustString(AppName),
|
|
|
|
Host: sec.Key("HOST").String(),
|
|
|
|
User: sec.Key("USER").String(),
|
|
|
|
Passwd: sec.Key("PASSWD").String(),
|
|
|
|
SkipVerify: sec.Key("SKIP_VERIFY").MustBool(),
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|
2014-12-31 10:37:29 +00:00
|
|
|
MailService.From = sec.Key("FROM").MustString(MailService.User)
|
2014-04-10 18:20:58 +00:00
|
|
|
log.Info("Mail Service Enabled")
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRegisterMailService() {
|
2014-12-31 10:37:29 +00:00
|
|
|
if !Cfg.Section("service").Key("REGISTER_EMAIL_CONFIRM").MustBool() {
|
2014-04-10 18:20:58 +00:00
|
|
|
return
|
|
|
|
} else if MailService == nil {
|
|
|
|
log.Warn("Register Mail Service: Mail Service is not enabled")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
Service.RegisterEmailConfirm = true
|
|
|
|
log.Info("Register Mail Service Enabled")
|
|
|
|
}
|
|
|
|
|
|
|
|
func newNotifyMailService() {
|
2014-12-31 10:37:29 +00:00
|
|
|
if !Cfg.Section("service").Key("ENABLE_NOTIFY_MAIL").MustBool() {
|
2014-04-10 18:20:58 +00:00
|
|
|
return
|
|
|
|
} else if MailService == nil {
|
|
|
|
log.Warn("Notify Mail Service: Mail Service is not enabled")
|
|
|
|
return
|
|
|
|
}
|
2014-06-21 04:51:41 +00:00
|
|
|
Service.EnableNotifyMail = true
|
2014-04-10 18:20:58 +00:00
|
|
|
log.Info("Notify Mail Service Enabled")
|
|
|
|
}
|
|
|
|
|
2014-06-08 08:45:34 +00:00
|
|
|
func newWebhookService() {
|
2015-02-11 02:06:59 +00:00
|
|
|
sec := Cfg.Section("webhook")
|
|
|
|
Webhook.TaskInterval = sec.Key("TASK_INTERVAL").MustInt(1)
|
|
|
|
Webhook.DeliverTimeout = sec.Key("DELIVER_TIMEOUT").MustInt(5)
|
2015-02-11 17:04:01 +00:00
|
|
|
Webhook.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool()
|
2014-06-08 08:45:34 +00:00
|
|
|
}
|
|
|
|
|
2014-05-26 00:11:25 +00:00
|
|
|
func NewServices() {
|
2014-04-10 18:20:58 +00:00
|
|
|
newService()
|
|
|
|
newLogService()
|
|
|
|
newCacheService()
|
|
|
|
newSessionService()
|
|
|
|
newMailService()
|
|
|
|
newRegisterMailService()
|
|
|
|
newNotifyMailService()
|
2014-06-08 08:45:34 +00:00
|
|
|
newWebhookService()
|
2014-11-21 17:51:36 +00:00
|
|
|
// ssh.Listen("2222")
|
2014-04-10 18:20:58 +00:00
|
|
|
}
|