Merge remote-tracking branch 'origin/master'
commit
9b7e2823ea
|
@ -1,8 +1,8 @@
|
||||||
; App name that shows on every page title
|
; App name that shows on every page title
|
||||||
APP_NAME = Gogs: Go Git Service
|
APP_NAME = Gogs: Go Git Service
|
||||||
APP_LOGO = img/favicon.png
|
APP_LOGO = img/favicon.png
|
||||||
; !!MUST CHANGE TO YOUR USER NAME!!
|
; Change it if you run locally
|
||||||
RUN_USER = skyblue
|
RUN_USER = git
|
||||||
; Either "dev", "prod" or "test", default is "dev"
|
; Either "dev", "prod" or "test", default is "dev"
|
||||||
RUN_MODE = dev
|
RUN_MODE = dev
|
||||||
|
|
||||||
|
|
15
gogs.go
15
gogs.go
|
@ -7,7 +7,6 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
// "os/user"
|
|
||||||
"runtime"
|
"runtime"
|
||||||
|
|
||||||
"github.com/codegangsta/cli"
|
"github.com/codegangsta/cli"
|
||||||
|
@ -27,21 +26,7 @@ func init() {
|
||||||
runtime.GOMAXPROCS(runtime.NumCPU())
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
||||||
}
|
}
|
||||||
|
|
||||||
// func checkRunUser() bool {
|
|
||||||
// u, err := user.Current()
|
|
||||||
// if err != nil {
|
|
||||||
// // TODO: log
|
|
||||||
// return false
|
|
||||||
// }
|
|
||||||
// return u.Username == base.Cfg.MustValue("", "RUN_USER")
|
|
||||||
// }
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
/*if !checkRunUser() {
|
|
||||||
println("The command should be run as", base.Cfg.MustValue("", "RUN_USER"))
|
|
||||||
return
|
|
||||||
}*/
|
|
||||||
|
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = "Gogs"
|
app.Name = "Gogs"
|
||||||
app.Usage = "Go Git Service"
|
app.Usage = "Go Git Service"
|
||||||
|
|
|
@ -259,24 +259,28 @@ func NewConfigContext() {
|
||||||
Cfg.BlockMode = false
|
Cfg.BlockMode = false
|
||||||
|
|
||||||
cfgPath = filepath.Join(workDir, "custom/conf/app.ini")
|
cfgPath = filepath.Join(workDir, "custom/conf/app.ini")
|
||||||
if !com.IsFile(cfgPath) {
|
if com.IsFile(cfgPath) {
|
||||||
fmt.Println("Custom configuration not found(custom/conf/app.ini)\n" +
|
|
||||||
"Please create it and make your own configuration!")
|
|
||||||
os.Exit(2)
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
if err = Cfg.AppendFiles(cfgPath); err != nil {
|
if err = Cfg.AppendFiles(cfgPath); err != nil {
|
||||||
fmt.Printf("Cannot load config file '%s'\n", cfgPath)
|
fmt.Printf("Cannot load config file '%s'\n", cfgPath)
|
||||||
os.Exit(2)
|
os.Exit(2)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
AppName = Cfg.MustValue("", "APP_NAME", "Gogs: Go Git Service")
|
AppName = Cfg.MustValue("", "APP_NAME", "Gogs: Go Git Service")
|
||||||
AppLogo = Cfg.MustValue("", "APP_LOGO", "img/favicon.png")
|
AppLogo = Cfg.MustValue("", "APP_LOGO", "img/favicon.png")
|
||||||
AppUrl = Cfg.MustValue("server", "ROOT_URL")
|
AppUrl = Cfg.MustValue("server", "ROOT_URL")
|
||||||
Domain = Cfg.MustValue("server", "DOMAIN")
|
Domain = Cfg.MustValue("server", "DOMAIN")
|
||||||
SecretKey = Cfg.MustValue("security", "SECRET_KEY")
|
SecretKey = Cfg.MustValue("security", "SECRET_KEY")
|
||||||
|
|
||||||
RunUser = Cfg.MustValue("", "RUN_USER")
|
RunUser = Cfg.MustValue("", "RUN_USER")
|
||||||
|
curUser := os.Getenv("USERNAME")
|
||||||
|
if len(curUser) == 0 {
|
||||||
|
curUser = os.Getenv("USER")
|
||||||
|
}
|
||||||
|
if RunUser != curUser {
|
||||||
|
fmt.Printf("Expect user(%s) but current user is: %s\n", RunUser, curUser)
|
||||||
|
os.Exit(2)
|
||||||
|
}
|
||||||
|
|
||||||
EnableHttpsClone = Cfg.MustBool("security", "ENABLE_HTTPS_CLONE", false)
|
EnableHttpsClone = Cfg.MustBool("security", "ENABLE_HTTPS_CLONE", false)
|
||||||
|
|
||||||
|
|
34
serve.go
34
serve.go
|
@ -49,7 +49,7 @@ func init() {
|
||||||
level := "0"
|
level := "0"
|
||||||
os.MkdirAll("log", os.ModePerm)
|
os.MkdirAll("log", os.ModePerm)
|
||||||
log.NewLogger(10000, "file", fmt.Sprintf(`{"level":%s,"filename":"%s"}`, level, "log/serv.log"))
|
log.NewLogger(10000, "file", fmt.Sprintf(`{"level":%s,"filename":"%s"}`, level, "log/serv.log"))
|
||||||
log.Info("start logging...")
|
log.Trace("start logging...")
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseCmd(cmd string) (string, string) {
|
func parseCmd(cmd string) (string, string) {
|
||||||
|
@ -73,6 +73,8 @@ func In(b string, sl map[string]int) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func runServ(k *cli.Context) {
|
func runServ(k *cli.Context) {
|
||||||
|
log.Trace("new serv request")
|
||||||
|
|
||||||
base.NewConfigContext()
|
base.NewConfigContext()
|
||||||
models.LoadModelsConfig()
|
models.LoadModelsConfig()
|
||||||
models.NewEngine()
|
models.NewEngine()
|
||||||
|
@ -80,17 +82,20 @@ func runServ(k *cli.Context) {
|
||||||
keys := strings.Split(os.Args[2], "-")
|
keys := strings.Split(os.Args[2], "-")
|
||||||
if len(keys) != 2 {
|
if len(keys) != 2 {
|
||||||
fmt.Println("auth file format error")
|
fmt.Println("auth file format error")
|
||||||
|
log.Error("auth file format error")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
keyId, err := strconv.ParseInt(keys[1], 10, 64)
|
keyId, err := strconv.ParseInt(keys[1], 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("auth file format error")
|
fmt.Println("auth file format error")
|
||||||
|
log.Error("auth file format error")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
user, err := models.GetUserByKeyId(keyId)
|
user, err := models.GetUserByKeyId(keyId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("You have no right to access")
|
fmt.Println("You have no right to access")
|
||||||
|
log.Error("You have no right to access")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -105,6 +110,7 @@ func runServ(k *cli.Context) {
|
||||||
rr := strings.SplitN(rRepo, "/", 2)
|
rr := strings.SplitN(rRepo, "/", 2)
|
||||||
if len(rr) != 2 {
|
if len(rr) != 2 {
|
||||||
println("Unavilable repository", args)
|
println("Unavilable repository", args)
|
||||||
|
log.Error("Unavilable repository %v", args)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
repoName := rr[1]
|
repoName := rr[1]
|
||||||
|
@ -122,11 +128,12 @@ func runServ(k *cli.Context) {
|
||||||
isExist = false
|
isExist = false
|
||||||
if isRead {
|
if isRead {
|
||||||
println("Repository", user.Name+"/"+repoName, "is not exist")
|
println("Repository", user.Name+"/"+repoName, "is not exist")
|
||||||
|
log.Error("Repository " + user.Name + "/" + repoName + " is not exist")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
println("Get repository error:", err)
|
println("Get repository error:", err)
|
||||||
log.Error(err.Error())
|
log.Error("Get repository error: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -142,6 +149,7 @@ func runServ(k *cli.Context) {
|
||||||
}
|
}
|
||||||
if !has {
|
if !has {
|
||||||
println("You have no right to write this repository")
|
println("You have no right to write this repository")
|
||||||
|
log.Error("You have no right to access this repository")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
case isRead:
|
case isRead:
|
||||||
|
@ -161,10 +169,12 @@ func runServ(k *cli.Context) {
|
||||||
}
|
}
|
||||||
if !has {
|
if !has {
|
||||||
println("You have no right to access this repository")
|
println("You have no right to access this repository")
|
||||||
|
log.Error("You have no right to access this repository")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
println("Unknown command")
|
println("Unknown command")
|
||||||
|
log.Error("Unknown command")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,7 +185,7 @@ func runServ(k *cli.Context) {
|
||||||
_, err = models.CreateRepository(user, repoName, "", "", "", false, true)
|
_, err = models.CreateRepository(user, repoName, "", "", "", false, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("Create repository failed")
|
println("Create repository failed")
|
||||||
log.Error(err.Error())
|
log.Error("Create repository failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -184,14 +194,14 @@ func runServ(k *cli.Context) {
|
||||||
rep, err = git.OpenRepository(repoPath)
|
rep, err = git.OpenRepository(repoPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("OpenRepository failed:", err.Error())
|
println("OpenRepository failed:", err.Error())
|
||||||
log.Error(err.Error())
|
log.Error("OpenRepository failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
refs, err := rep.AllReferencesMap()
|
refs, err := rep.AllReferencesMap()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("Get All References failed:", err.Error())
|
println("Get All References failed:", err.Error())
|
||||||
log.Error(err.Error())
|
log.Error("Get All References failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,7 +218,7 @@ func runServ(k *cli.Context) {
|
||||||
|
|
||||||
if err = gitcmd.Run(); err != nil {
|
if err = gitcmd.Run(); err != nil {
|
||||||
println("execute command error:", err.Error())
|
println("execute command error:", err.Error())
|
||||||
log.Error(err.Error())
|
log.Error("execute command error: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -236,6 +246,7 @@ func runServ(k *cli.Context) {
|
||||||
}
|
}
|
||||||
if refname == "" {
|
if refname == "" {
|
||||||
println("No find any reference name:", b.String())
|
println("No find any reference name:", b.String())
|
||||||
|
log.Error("No find any reference name: " + b.String())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -248,17 +259,18 @@ func runServ(k *cli.Context) {
|
||||||
refs, err = rep.AllReferencesMap()
|
refs, err = rep.AllReferencesMap()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("Get All References failed:", err.Error())
|
println("Get All References failed:", err.Error())
|
||||||
log.Error(err.Error())
|
log.Error("Get All References failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if ref, ok = refs[refname]; !ok {
|
if ref, ok = refs[refname]; !ok {
|
||||||
|
log.Error("unknow reference name -", refname, "-", b.String())
|
||||||
log.Error("unknow reference name -", refname, "-", b.String())
|
log.Error("unknow reference name -", refname, "-", b.String())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
l, err = ref.AllCommits()
|
l, err = ref.AllCommits()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("Get All Commits failed:", err.Error())
|
println("Get All Commits failed:", err.Error())
|
||||||
log.Error(err.Error())
|
log.Error("Get All Commits failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -268,14 +280,14 @@ func runServ(k *cli.Context) {
|
||||||
last, err = ref.LastCommit()
|
last, err = ref.LastCommit()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("Get last commit failed:", err.Error())
|
println("Get last commit failed:", err.Error())
|
||||||
log.Error(err.Error())
|
log.Error("Get last commit failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
ref2, err := rep.LookupReference(ref.Name)
|
ref2, err := rep.LookupReference(ref.Name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("look up reference failed:", err.Error())
|
println("look up reference failed:", err.Error())
|
||||||
log.Error(err.Error())
|
log.Error("look up reference failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -283,7 +295,7 @@ func runServ(k *cli.Context) {
|
||||||
before, err := ref2.LastCommit()
|
before, err := ref2.LastCommit()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
println("Get last commit failed:", err.Error())
|
println("Get last commit failed:", err.Error())
|
||||||
log.Error(err.Error())
|
log.Error("Get last commit failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
//log.Info("----", before.Id(), "-----", last.Id())
|
//log.Info("----", before.Id(), "-----", last.Id())
|
||||||
|
|
|
@ -6,9 +6,9 @@
|
||||||
<ul class="list-group">
|
<ul class="list-group">
|
||||||
<li class="list-group-item"><a href="/user/setting">Account Profile</a></li>
|
<li class="list-group-item"><a href="/user/setting">Account Profile</a></li>
|
||||||
<li class="list-group-item"><a href="/user/setting/password">Password</a></li>
|
<li class="list-group-item"><a href="/user/setting/password">Password</a></li>
|
||||||
<li class="list-group-item"><a href="/user/setting/notification">Notifications</a></li>
|
<!-- <li class="list-group-item"><a href="/user/setting/notification">Notifications</a></li> -->
|
||||||
<li class="list-group-item"><a href="/user/setting/ssh/">SSH Keys</a></li>
|
<li class="list-group-item"><a href="/user/setting/ssh/">SSH Keys</a></li>
|
||||||
<li class="list-group-item"><a href="/user/setting/security">Security</a></li>
|
<!-- <li class="list-group-item"><a href="/user/setting/security">Security</a></li> -->
|
||||||
<li class="list-group-item list-group-item-success"><a href="/user/delete">Delete Account</a></li>
|
<li class="list-group-item list-group-item-success"><a href="/user/delete">Delete Account</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue