gitea/modules/setting/setting.go

556 lines
16 KiB
Go
Raw Normal View History

2014-04-10 20:20:58 +02: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 02:11:25 +02:00
package setting
2014-04-10 20:20:58 +02:00
import (
"fmt"
"net/url"
2014-04-10 20:20:58 +02:00
"os"
"os/exec"
"path"
"path/filepath"
2014-09-16 19:34:09 +02:00
"runtime"
2014-04-10 20:20:58 +02:00
"strings"
"time"
2014-04-10 20:20:58 +02:00
"github.com/Unknwon/com"
2014-11-29 03:20:13 +01:00
"github.com/macaron-contrib/oauth2"
2014-07-26 06:24:27 +02:00
"github.com/macaron-contrib/session"
2014-12-31 11:37:29 +01:00
"gopkg.in/ini.v1"
2014-04-10 20:20:58 +02:00
2015-03-18 11:37:44 +01:00
"github.com/gogits/gogs/modules/bindata"
2014-04-10 20:20:58 +02:00
"github.com/gogits/gogs/modules/log"
2014-11-21 18:51:36 +01:00
// "github.com/gogits/gogs/modules/ssh"
2014-04-10 20:20:58 +02:00
)
2014-05-26 02:11:25 +02:00
type Scheme string
2014-04-14 00:12:07 +02:00
2014-05-26 02:11:25 +02:00
const (
HTTP Scheme = "http"
HTTPS Scheme = "https"
2014-11-04 02:46:53 +01:00
FCGI Scheme = "fcgi"
2014-05-26 02:11:25 +02:00
)
2014-04-10 20:20:58 +02:00
2014-11-25 00:47:59 +01:00
type LandingPage string
const (
LANDING_PAGE_HOME LandingPage = "/"
LANDING_PAGE_EXPLORE LandingPage = "/explore"
)
2014-04-10 20:20:58 +02:00
var (
2014-05-26 02:11:25 +02:00
// App settings.
2014-09-20 02:11:34 +02:00
AppVer string
AppName string
AppUrl string
AppSubUrl string
2014-05-26 02:11:25 +02:00
// Server settings.
Protocol Scheme
Domain string
HttpAddr, HttpPort string
2015-02-07 16:46:57 +01:00
DisableSSH bool
SSHPort int
2014-05-26 02:11:25 +02:00
OfflineMode bool
DisableRouterLog bool
CertFile, KeyFile string
StaticRootPath string
2014-07-26 06:24:27 +02:00
EnableGzip bool
2014-11-25 00:47:59 +01:00
LandingPageUrl LandingPage
2014-05-26 02:11:25 +02:00
// Security settings.
2014-06-24 19:55:47 +02:00
InstallLock bool
SecretKey string
LogInRememberDays int
CookieUserName string
CookieRememberName string
ReverseProxyAuthUser string
2014-04-10 20:20:58 +02:00
2015-02-12 03:58:37 +01:00
// Database settings.
UseSQLite3 bool
UseMySQL bool
UsePostgreSQL bool
2014-06-08 10:45:34 +02:00
// Webhook settings.
Webhook struct {
2015-02-11 18:04:01 +01:00
TaskInterval int
DeliverTimeout int
SkipTLSVerify bool
}
2014-06-08 10:45:34 +02:00
2014-05-26 02:11:25 +02:00
// Repository settings.
RepoRootPath string
ScriptType string
2014-04-10 20:20:58 +02:00
2014-05-26 02:11:25 +02:00
// Picture settings.
2014-11-21 16:58:08 +01:00
PictureService string
AvatarUploadPath string
GravatarSource string
DisableGravatar bool
2014-05-26 02:11:25 +02:00
// Log settings.
2014-05-28 07:53:06 +02:00
LogRootPath string
LogModes []string
LogConfigs []string
2014-04-10 20:20:58 +02:00
2014-07-23 21:15:47 +02:00
// Attachment settings.
AttachmentPath string
AttachmentAllowedTypes string
2014-07-24 15:19:59 +02:00
AttachmentMaxSize int64
AttachmentMaxFiles int
2014-07-24 15:51:40 +02:00
AttachmentEnabled bool
2014-07-23 21:15:47 +02:00
// Time settings.
TimeFormat string
2014-05-26 02:11:25 +02:00
// Cache settings.
CacheAdapter string
CacheInternal int
CacheConn string
2014-04-10 20:20:58 +02:00
2014-05-26 02:11:25 +02:00
EnableRedis bool
EnableMemcache bool
// Session settings.
2014-12-28 13:40:35 +01:00
SessionConfig session.Options
2014-04-10 20:20:58 +02:00
2014-09-17 20:22:51 +02:00
// Git settings.
2015-01-02 13:14:43 +01:00
Git struct {
MaxGitDiffLines int
GcArgs []string `delim:" "`
Fsck struct {
Enable bool
Interval int
Args []string `delim:" "`
} `ini:"git.fsck"`
}
2014-09-17 20:22:51 +02:00
// I18n settings.
Langs, Names []string
// Other settings.
ShowFooterBranding bool
2014-05-26 02:11:25 +02:00
// Global setting objects.
2014-12-31 11:37:29 +01:00
Cfg *ini.File
2014-07-26 06:24:27 +02:00
CustomPath string // Custom directory path.
CustomConf string
2014-07-26 06:24:27 +02:00
ProdMode bool
RunUser string
2014-09-16 19:34:09 +02:00
IsWindows bool
2014-09-22 01:39:10 +02:00
HasRobotsTxt bool
2014-04-10 20:20:58 +02:00
)
2014-07-26 06:24:27 +02:00
func init() {
2014-09-16 19:34:09 +02:00
IsWindows = runtime.GOOS == "windows"
2014-07-26 06:24:27 +02:00
log.NewLogger(0, "console", `{"level": 0}`)
}
2014-06-11 01:11:53 +02:00
func ExecPath() (string, error) {
2014-05-26 02:11:25 +02: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-11 01:11:53 +02: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 02:11:25 +02:00
}
func forcePathSeparator(path string) {
if strings.Contains(path, "\\") {
2015-03-18 11:37:44 +01:00
log.Fatal(4, "Do not use '\\' or '\\\\' in paths, instead, please use '/' in all places")
}
}
2014-05-26 02:11:25 +02:00
// NewConfigContext initializes configuration context.
2014-05-26 02:57:01 +02:00
// NOTE: do not print any log except error.
2014-05-26 02:11:25 +02:00
func NewConfigContext() {
workDir, err := WorkDir()
if err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Fail to get work directory: %v", err)
2014-05-26 02:11:25 +02:00
}
2015-03-18 11:37:44 +01:00
Cfg, err = ini.Load(bindata.MustAsset("conf/app.ini"))
2014-05-26 02:11:25 +02:00
if err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Fail to parse 'conf/app.ini': %v", err)
2014-05-26 02:11:25 +02:00
}
CustomPath = os.Getenv("GOGS_CUSTOM")
if len(CustomPath) == 0 {
CustomPath = path.Join(workDir, "custom")
}
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 02:11:25 +02:00
}
} else {
log.Warn("Custom config (%s) not found, ignore this if you're running first time", CustomConf)
2014-05-26 02:11:25 +02:00
}
2015-01-02 13:14:43 +01:00
Cfg.NameMapper = ini.AllCapsUnderscore
2014-05-26 02:11:25 +02:00
2014-12-31 11:37:29 +01:00
LogRootPath = Cfg.Section("log").Key("ROOT_PATH").MustString(path.Join(workDir, "log"))
forcePathSeparator(LogRootPath)
2014-12-31 11:37:29 +01:00
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 03:45:39 +02:00
if AppUrl[len(AppUrl)-1] != '/' {
AppUrl += "/"
}
2014-05-26 02:11:25 +02:00
2014-09-20 02:11:34 +02:00
// Check if has app suburl.
url, err := url.Parse(AppUrl)
if err != nil {
2014-09-20 02:11:34 +02:00
log.Fatal(4, "Invalid ROOT_URL(%s): %s", AppUrl, err)
}
2014-09-20 02:11:34 +02:00
AppSubUrl = strings.TrimSuffix(url.Path, "/")
2014-05-26 02:11:25 +02:00
Protocol = HTTP
2014-12-31 11:37:29 +01:00
if sec.Key("PROTOCOL").String() == "https" {
2014-05-26 02:11:25 +02:00
Protocol = HTTPS
2014-12-31 11:37:29 +01:00
CertFile = sec.Key("CERT_FILE").String()
KeyFile = sec.Key("KEY_FILE").String()
} else if sec.Key("PROTOCOL").String() == "fcgi" {
2014-11-04 02:46:53 +01:00
Protocol = FCGI
}
2014-12-31 11:37:29 +01: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 16:46:57 +01:00
DisableSSH = sec.Key("DISABLE_SSH").MustBool()
SSHPort = sec.Key("SSH_PORT").MustInt(22)
2014-12-31 11:37:29 +01: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-25 00:47:59 +01:00
case "explore":
LandingPageUrl = LANDING_PAGE_EXPLORE
default:
LandingPageUrl = LANDING_PAGE_HOME
}
2014-12-31 11:37:29 +01: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")
AttachmentPath = sec.Key("PATH").MustString("data/attachments")
if !filepath.IsAbs(AttachmentPath) {
AttachmentPath = path.Join(workDir, AttachmentPath)
}
2014-12-31 11:37:29 +01: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 21:15:47 +02:00
2014-08-01 06:24:29 +02: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 11:37:29 +01:00
}[Cfg.Section("time").Key("FORMAT").MustString("RFC1123")]
2014-12-31 11:37:29 +01:00
RunUser = Cfg.Section("").Key("RUN_USER").String()
2014-05-26 02:11:25 +02: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 06:24:27 +02:00
log.Fatal(4, "Expect user(%s) but current user is: %s", RunUser, curUser)
2014-05-26 02:11:25 +02:00
}
2014-12-07 02:22:48 +01:00
// Determine and create root git repository path.
2014-05-26 02:11:25 +02:00
homeDir, err := com.HomeDir()
if err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Fail to get home directory: %v", err)
2014-05-26 02:11:25 +02:00
}
homeDir = strings.Replace(homeDir, "\\", "/", -1)
2014-12-31 11:37:29 +01:00
sec = Cfg.Section("repository")
RepoRootPath = sec.Key("ROOT").MustString(path.Join(homeDir, "gogs-repositories"))
forcePathSeparator(RepoRootPath)
2014-06-24 08:28:47 +02:00
if !filepath.IsAbs(RepoRootPath) {
RepoRootPath = path.Join(workDir, RepoRootPath)
2014-06-24 08:28:47 +02:00
} else {
RepoRootPath = path.Clean(RepoRootPath)
2014-06-24 08:28:47 +02:00
}
2014-12-31 11:37:29 +01:00
ScriptType = sec.Key("SCRIPT_TYPE").MustString("bash")
2014-05-26 02:11:25 +02:00
2014-12-31 11:37:29 +01:00
sec = Cfg.Section("picture")
PictureService = sec.Key("SERVICE").In("server", []string{"server"})
AvatarUploadPath = sec.Key("AVATAR_UPLOAD_PATH").MustString("data/avatars")
forcePathSeparator(AvatarUploadPath)
if !filepath.IsAbs(AvatarUploadPath) {
AvatarUploadPath = path.Join(workDir, AvatarUploadPath)
}
2014-12-31 11:37:29 +01:00
switch sec.Key("GRAVATAR_SOURCE").MustString("gravatar") {
2014-11-17 02:27:04 +01:00
case "duoshuo":
GravatarSource = "http://gravatar.duoshuo.com/avatar/"
default:
GravatarSource = "//1.gravatar.com/avatar/"
}
2014-12-31 11:37:29 +01:00
DisableGravatar = sec.Key("DISABLE_GRAVATAR").MustBool()
2014-07-26 06:24:27 +02:00
2015-01-02 13:14:43 +01:00
if err = Cfg.Section("git").MapTo(&Git); err != nil {
log.Fatal(4, "Fail to map Git settings: %v", err)
}
2014-12-31 11:37:29 +01:00
Langs = Cfg.Section("i18n").Key("LANGS").Strings(",")
Names = Cfg.Section("i18n").Key("NAMES").Strings(",")
2014-09-22 01:39:10 +02:00
ShowFooterBranding = Cfg.Section("other").Key("SHOW_FOOTER_BRANDING").MustBool()
2014-09-22 01:39:10 +02:00
HasRobotsTxt = com.IsFile(path.Join(CustomPath, "robots.txt"))
2014-05-26 02:11:25 +02:00
}
2014-04-10 20:20:58 +02:00
var Service struct {
2014-12-05 23:54:57 +01:00
RegisterEmailConfirm bool
DisableRegistration bool
ShowRegistrationButton bool
2014-12-05 23:54:57 +01:00
RequireSignInView bool
EnableCacheAvatar bool
EnableNotifyMail bool
EnableReverseProxyAuth bool
EnableReverseProxyAutoRegister bool
ActiveCodeLives int
ResetPwdCodeLives int
2014-04-10 20:20:58 +02:00
}
2014-05-26 02:11:25 +02:00
func newService() {
2014-12-31 11:37:29 +01: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 03:16:23 +01:00
Service.ShowRegistrationButton = Cfg.Section("service").Key("SHOW_REGISTRATION_BUTTON").MustBool(!Service.DisableRegistration)
2014-12-31 11:37:29 +01: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()
2015-03-12 18:25:28 +01:00
Service.EnableReverseProxyAutoRegister = Cfg.Section("service").Key("ENABLE_REVERSE_PROXY_AUTO_REGISTRATION").MustBool()
2014-04-10 20:20:58 +02:00
}
var logLevels = map[string]string{
"Trace": "0",
"Debug": "1",
"Info": "2",
"Warn": "3",
"Error": "4",
"Critical": "5",
}
func newLogService() {
log.Info("%s %s", AppName, AppVer)
2014-04-10 20:20:58 +02:00
// Get and check log mode.
2014-12-31 11:37:29 +01:00
LogModes = strings.Split(Cfg.Section("log").Key("MODE").MustString("console"), ",")
LogConfigs = make([]string, len(LogModes))
for i, mode := range LogModes {
mode = strings.TrimSpace(mode)
2014-12-31 11:37:29 +01:00
sec, err := Cfg.GetSection("log." + mode)
if err != nil {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Unknown log mode: %s", mode)
}
validLevels := []string{"Trace", "Debug", "Info", "Warn", "Error", "Critical"}
// Log level.
levelName := Cfg.Section("log."+mode).Key("LEVEL").In(
Cfg.Section("log").Key("LEVEL").In("Trace", validLevels),
validLevels)
level, ok := logLevels[levelName]
if !ok {
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Unknown log level: %s", levelName)
}
// Generate log configuration.
switch mode {
case "console":
LogConfigs[i] = fmt.Sprintf(`{"level":%s}`, level)
case "file":
2014-12-31 11:37:29 +01:00
logPath := sec.Key("FILE_NAME").MustString(path.Join(LogRootPath, "gogs.log"))
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 11:37:29 +01: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))
case "conn":
2014-06-20 06:25:23 +02:00
LogConfigs[i] = fmt.Sprintf(`{"level":%s,"reconnectOnMsg":%v,"reconnect":%v,"net":"%s","addr":"%s"}`, level,
2014-12-31 11:37:29 +01: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"))
case "smtp":
2014-06-20 06:25:23 +02:00
LogConfigs[i] = fmt.Sprintf(`{"level":%s,"username":"%s","password":"%s","host":"%s","sendTos":"%s","subject":"%s"}`, level,
2014-12-31 11:37:29 +01: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"))
case "database":
2014-06-20 06:25:23 +02:00
LogConfigs[i] = fmt.Sprintf(`{"level":%s,"driver":"%s","conn":"%s"}`, level,
2014-12-31 11:37:29 +01:00
sec.Key("DRIVER").String(),
sec.Key("CONN").String())
}
2014-12-31 11:37:29 +01:00
log.NewLogger(Cfg.Section("log").Key("BUFFER_LEN").MustInt64(10000), mode, LogConfigs[i])
log.Info("Log Mode: %s(%s)", strings.Title(mode), levelName)
2014-04-10 20:20:58 +02:00
}
}
func newCacheService() {
2014-12-31 11:37:29 +01:00
CacheAdapter = Cfg.Section("cache").Key("ADAPTER").In("memory", []string{"memory", "redis", "memcache"})
2014-04-21 12:54:07 +02:00
if EnableRedis {
2014-04-20 04:13:22 +02:00
log.Info("Redis Enabled")
}
2014-04-21 12:54:07 +02:00
if EnableMemcache {
2014-04-20 04:13:22 +02:00
log.Info("Memcache Enabled")
}
2014-04-10 20:20:58 +02:00
switch CacheAdapter {
case "memory":
2014-12-31 11:37:29 +01:00
CacheInternal = Cfg.Section("cache").Key("INTERVAL").MustInt(60)
2014-04-10 20:20:58 +02:00
case "redis", "memcache":
2014-12-31 11:37:29 +01:00
CacheConn = strings.Trim(Cfg.Section("cache").Key("HOST").String(), "\" ")
2014-04-10 20:20:58 +02:00
default:
2014-07-26 06:24:27 +02:00
log.Fatal(4, "Unknown cache adapter: %s", CacheAdapter)
2014-04-10 20:20:58 +02:00
}
log.Info("Cache Service Enabled")
}
func newSessionService() {
2014-12-31 11:37:29 +01:00
SessionConfig.Provider = Cfg.Section("session").Key("PROVIDER").In("memory",
2014-05-19 04:05:35 +02:00
[]string{"memory", "file", "redis", "mysql"})
2014-12-31 11:37:29 +01: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 18:22:50 +02:00
SessionConfig.CookiePath = AppSubUrl
2014-12-31 11:37:29 +01: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 20:20:58 +02:00
log.Info("Session Service Enabled")
}
2014-05-26 02:11:25 +02:00
// Mailer represents mail service.
type Mailer struct {
Name string
Host string
From string
User, Passwd string
SkipVerify bool
UseCertificate bool
CertFile, KeyFile string
2014-05-26 02:11:25 +02:00
}
type OauthInfo struct {
2014-11-29 03:20:13 +01:00
oauth2.Options
AuthUrl, TokenUrl string
2014-05-26 02:11:25 +02: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 20:20:58 +02:00
func newMailService() {
2014-12-31 11:37:29 +01:00
sec := Cfg.Section("mailer")
2014-04-10 20:20:58 +02:00
// Check mailer setting.
2014-12-31 11:37:29 +01:00
if !sec.Key("ENABLED").MustBool() {
2014-04-10 20:20:58 +02:00
return
}
MailService = &Mailer{
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(),
UseCertificate: sec.Key("USE_CERTIFICATE").MustBool(),
CertFile: sec.Key("CERT_FILE").String(),
KeyFile: sec.Key("KEY_FILE").String(),
2014-04-10 20:20:58 +02:00
}
2014-12-31 11:37:29 +01:00
MailService.From = sec.Key("FROM").MustString(MailService.User)
2014-04-10 20:20:58 +02:00
log.Info("Mail Service Enabled")
}
func newRegisterMailService() {
2014-12-31 11:37:29 +01:00
if !Cfg.Section("service").Key("REGISTER_EMAIL_CONFIRM").MustBool() {
2014-04-10 20:20:58 +02: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 11:37:29 +01:00
if !Cfg.Section("service").Key("ENABLE_NOTIFY_MAIL").MustBool() {
2014-04-10 20:20:58 +02:00
return
} else if MailService == nil {
log.Warn("Notify Mail Service: Mail Service is not enabled")
return
}
2014-06-21 06:51:41 +02:00
Service.EnableNotifyMail = true
2014-04-10 20:20:58 +02:00
log.Info("Notify Mail Service Enabled")
}
2014-06-08 10:45:34 +02:00
func newWebhookService() {
sec := Cfg.Section("webhook")
Webhook.TaskInterval = sec.Key("TASK_INTERVAL").MustInt(1)
Webhook.DeliverTimeout = sec.Key("DELIVER_TIMEOUT").MustInt(5)
2015-02-11 18:04:01 +01:00
Webhook.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool()
2014-06-08 10:45:34 +02:00
}
2014-05-26 02:11:25 +02:00
func NewServices() {
2014-04-10 20:20:58 +02:00
newService()
newLogService()
newCacheService()
newSessionService()
newMailService()
newRegisterMailService()
newNotifyMailService()
2014-06-08 10:45:34 +02:00
newWebhookService()
2014-11-21 18:51:36 +01:00
// ssh.Listen("2222")
2014-04-10 20:20:58 +02:00
}