2014-02-12 23:54:09 +04: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-03-08 02:22:15 +04:00
package base
2014-02-12 23:54:09 +04:00
import (
"fmt"
"os"
2014-02-19 13:50:53 +04:00
"os/exec"
"path"
"path/filepath"
2014-02-12 23:54:09 +04:00
2014-03-11 07:03:17 +04:00
"github.com/Unknwon/com"
2014-02-12 23:54:09 +04:00
"github.com/Unknwon/goconfig"
2014-03-18 09:33:53 +04:00
"github.com/gogits/gogs/modules/log"
2014-02-12 23:54:09 +04:00
)
2014-03-18 09:33:53 +04:00
// Mailer represents a mail service.
type Mailer struct {
Name string
Host string
User , Passwd string
}
2014-03-15 15:01:50 +04:00
var (
2014-03-18 09:33:53 +04:00
AppVer string
AppName string
Domain string
Cfg * goconfig . ConfigFile
MailService * Mailer
2014-03-15 15:01:50 +04:00
)
2014-02-12 23:54:09 +04:00
2014-02-19 13:50:53 +04:00
func exeDir ( ) ( string , error ) {
file , err := exec . LookPath ( os . Args [ 0 ] )
if err != nil {
return "" , err
}
p , err := filepath . Abs ( file )
if err != nil {
return "" , err
}
return path . Dir ( p ) , nil
}
2014-02-12 23:54:09 +04:00
func init ( ) {
var err error
2014-02-19 13:50:53 +04:00
workDir , err := exeDir ( )
if err != nil {
fmt . Printf ( "Fail to get work directory: %s\n" , err )
os . Exit ( 2 )
}
2014-03-13 05:40:18 +04:00
cfgPath := filepath . Join ( workDir , "conf/app.ini" )
2014-02-19 13:50:53 +04:00
Cfg , err = goconfig . LoadConfigFile ( cfgPath )
2014-02-12 23:54:09 +04:00
if err != nil {
2014-02-19 13:50:53 +04:00
fmt . Printf ( "Cannot load config file '%s'\n" , cfgPath )
2014-02-12 23:54:09 +04:00
os . Exit ( 2 )
}
2014-03-17 22:03:58 +04:00
Cfg . BlockMode = false
2014-03-11 07:03:17 +04:00
2014-03-13 05:40:18 +04:00
cfgPath = filepath . Join ( workDir , "custom/conf/app.ini" )
2014-03-11 07:03:17 +04:00
if com . IsFile ( cfgPath ) {
if err = Cfg . AppendFiles ( cfgPath ) ; err != nil {
fmt . Printf ( "Cannot load config file '%s'\n" , cfgPath )
os . Exit ( 2 )
}
}
2014-02-12 23:54:09 +04:00
Cfg . BlockMode = false
2014-03-15 15:01:50 +04:00
2014-03-18 09:33:53 +04:00
AppName = Cfg . MustValue ( "" , "APP_NAME" , "Gogs: Go Git Service" )
2014-03-17 14:13:07 +04:00
Domain = Cfg . MustValue ( "server" , "DOMAIN" )
2014-03-18 09:33:53 +04:00
// Check mailer setting.
if Cfg . MustBool ( "mailer" , "ENABLED" ) {
MailService = & Mailer {
Name : Cfg . MustValue ( "mailer" , "NAME" , AppName ) ,
Host : Cfg . MustValue ( "mailer" , "HOST" , "127.0.0.1:25" ) ,
User : Cfg . MustValue ( "mailer" , "USER" , "example@example.com" ) ,
Passwd : Cfg . MustValue ( "mailer" , "PASSWD" , "******" ) ,
}
log . Info ( "Mail Service Enabled" )
}
2014-02-12 23:54:09 +04:00
}