2014-03-17 19:03:58 +01: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-02-19 10:50:53 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-03-23 09:31:13 +01:00
|
|
|
"bytes"
|
|
|
|
"container/list"
|
2014-02-19 10:50:53 +01:00
|
|
|
"fmt"
|
2014-03-23 09:31:13 +01:00
|
|
|
"io"
|
2014-02-19 10:50:53 +01:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/codegangsta/cli"
|
2014-03-23 09:31:13 +01:00
|
|
|
"github.com/qiniu/log"
|
2014-03-20 21:04:56 +01:00
|
|
|
|
2014-03-23 09:31:13 +01:00
|
|
|
"github.com/gogits/git"
|
2014-02-19 10:50:53 +01:00
|
|
|
"github.com/gogits/gogs/models"
|
2014-03-20 21:04:56 +01:00
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-02-19 10:50:53 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
COMMANDS_READONLY = map[string]int{
|
2014-02-25 07:01:52 +01:00
|
|
|
"git-upload-pack": models.AU_WRITABLE,
|
|
|
|
"git upload-pack": models.AU_WRITABLE,
|
|
|
|
"git-upload-archive": models.AU_WRITABLE,
|
2014-02-19 10:50:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
COMMANDS_WRITE = map[string]int{
|
|
|
|
"git-receive-pack": models.AU_READABLE,
|
|
|
|
"git receive-pack": models.AU_READABLE,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
var CmdServ = cli.Command{
|
|
|
|
Name: "serv",
|
2014-02-25 07:01:52 +01:00
|
|
|
Usage: "This command just should be called by ssh shell",
|
2014-02-19 10:50:53 +01:00
|
|
|
Description: `
|
2014-02-25 07:01:52 +01:00
|
|
|
gogs serv provide access auth for repositories`,
|
2014-02-19 10:50:53 +01:00
|
|
|
Action: runServ,
|
2014-03-12 05:19:45 +01:00
|
|
|
Flags: []cli.Flag{},
|
2014-02-19 10:50:53 +01:00
|
|
|
}
|
|
|
|
|
2014-03-23 09:31:13 +01:00
|
|
|
func parseCmd(cmd string) (string, string) {
|
|
|
|
ss := strings.SplitN(cmd, " ", 2)
|
|
|
|
if len(ss) != 2 {
|
|
|
|
return "", ""
|
|
|
|
}
|
|
|
|
|
|
|
|
verb, args := ss[0], ss[1]
|
|
|
|
if verb == "git" {
|
|
|
|
ss = strings.SplitN(args, " ", 2)
|
|
|
|
args = ss[1]
|
|
|
|
verb = fmt.Sprintf("%s %s", verb, ss[0])
|
|
|
|
}
|
|
|
|
return verb, args
|
|
|
|
}
|
|
|
|
|
2014-02-19 10:50:53 +01:00
|
|
|
func In(b string, sl map[string]int) bool {
|
|
|
|
_, e := sl[b]
|
|
|
|
return e
|
|
|
|
}
|
|
|
|
|
2014-03-23 09:31:13 +01:00
|
|
|
func runServ(k *cli.Context) {
|
2014-03-21 08:36:26 +01:00
|
|
|
base.NewConfigContext()
|
|
|
|
models.LoadModelsConfig()
|
|
|
|
models.NewEngine()
|
|
|
|
|
2014-02-19 10:50:53 +01:00
|
|
|
keys := strings.Split(os.Args[2], "-")
|
|
|
|
if len(keys) != 2 {
|
|
|
|
fmt.Println("auth file format error")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
keyId, err := strconv.ParseInt(keys[1], 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("auth file format error")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
user, err := models.GetUserByKeyId(keyId)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("You have no right to access")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd := os.Getenv("SSH_ORIGINAL_COMMAND")
|
|
|
|
if cmd == "" {
|
2014-03-16 07:28:24 +01:00
|
|
|
println("Hi", user.Name, "! You've successfully authenticated, but Gogs does not provide shell access.")
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
verb, args := parseCmd(cmd)
|
2014-02-25 07:01:52 +01:00
|
|
|
rRepo := strings.Trim(args, "'")
|
|
|
|
rr := strings.SplitN(rRepo, "/", 2)
|
2014-02-19 10:50:53 +01:00
|
|
|
if len(rr) != 2 {
|
2014-02-20 07:53:56 +01:00
|
|
|
println("Unavilable repository", args)
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
repoName := rr[1]
|
|
|
|
if strings.HasSuffix(repoName, ".git") {
|
|
|
|
repoName = repoName[:len(repoName)-4]
|
|
|
|
}
|
2014-03-16 05:18:34 +01:00
|
|
|
|
2014-03-23 09:31:13 +01:00
|
|
|
//os.Setenv("userName", user.Name)
|
|
|
|
//os.Setenv("userId", strconv.Itoa(int(user.Id)))
|
2014-03-22 09:44:57 +01:00
|
|
|
repo, err := models.GetRepositoryByName(user.Id, repoName)
|
2014-03-23 09:31:13 +01:00
|
|
|
var isExist bool = true
|
2014-03-16 05:18:34 +01:00
|
|
|
if err != nil {
|
2014-03-23 09:31:13 +01:00
|
|
|
if err == models.ErrRepoNotExist {
|
|
|
|
isExist = false
|
|
|
|
} else {
|
|
|
|
println("Unavilable repository", err)
|
|
|
|
return
|
|
|
|
}
|
2014-03-16 05:18:34 +01:00
|
|
|
}
|
2014-03-23 09:31:13 +01:00
|
|
|
//os.Setenv("repoId", strconv.Itoa(int(repo.Id)))
|
|
|
|
//os.Setenv("repoName", repoName)
|
2014-03-16 05:18:34 +01:00
|
|
|
|
2014-02-19 10:50:53 +01:00
|
|
|
isWrite := In(verb, COMMANDS_WRITE)
|
|
|
|
isRead := In(verb, COMMANDS_READONLY)
|
2014-02-20 07:53:56 +01:00
|
|
|
|
2014-02-19 10:50:53 +01:00
|
|
|
switch {
|
|
|
|
case isWrite:
|
2014-02-25 08:28:04 +01:00
|
|
|
has, err := models.HasAccess(user.Name, repoName, models.AU_WRITABLE)
|
2014-02-19 10:50:53 +01:00
|
|
|
if err != nil {
|
2014-02-25 07:01:52 +01:00
|
|
|
println("Inernel error:", err)
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if !has {
|
2014-02-25 08:28:04 +01:00
|
|
|
println("You have no right to write this repository")
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
case isRead:
|
2014-02-25 08:28:04 +01:00
|
|
|
has, err := models.HasAccess(user.Name, repoName, models.AU_READABLE)
|
2014-02-19 10:50:53 +01:00
|
|
|
if err != nil {
|
2014-02-25 07:01:52 +01:00
|
|
|
println("Inernel error")
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if !has {
|
2014-02-25 08:28:04 +01:00
|
|
|
has, err = models.HasAccess(user.Name, repoName, models.AU_WRITABLE)
|
2014-02-19 10:50:53 +01:00
|
|
|
if err != nil {
|
2014-02-25 07:01:52 +01:00
|
|
|
println("Inernel error")
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !has {
|
2014-02-20 07:53:56 +01:00
|
|
|
println("You have no right to access this repository")
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
default:
|
2014-02-20 07:53:56 +01:00
|
|
|
println("Unknown command")
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !isExist {
|
|
|
|
if isRead {
|
2014-02-20 07:53:56 +01:00
|
|
|
println("Repository", user.Name+"/"+repoName, "is not exist")
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
} else if isWrite {
|
2014-03-11 06:32:36 +01:00
|
|
|
_, err := models.CreateRepository(user, repoName, "", "", "", false, true)
|
2014-02-19 10:50:53 +01:00
|
|
|
if err != nil {
|
2014-02-20 07:53:56 +01:00
|
|
|
println("Create repository failed")
|
2014-02-19 10:50:53 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-23 09:31:13 +01:00
|
|
|
rep, err := git.OpenRepository(models.RepoPath(user.Name, repoName))
|
|
|
|
if err != nil {
|
|
|
|
println(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
refs, err := rep.AllReferencesMap()
|
|
|
|
if err != nil {
|
|
|
|
println(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-25 07:01:52 +01:00
|
|
|
gitcmd := exec.Command(verb, rRepo)
|
2014-03-20 21:04:56 +01:00
|
|
|
gitcmd.Dir = base.RepoRootPath
|
2014-03-23 09:31:13 +01:00
|
|
|
|
|
|
|
var s string
|
|
|
|
b := bytes.NewBufferString(s)
|
|
|
|
|
|
|
|
gitcmd.Stdout = io.MultiWriter(os.Stdout, b)
|
|
|
|
gitcmd.Stdin = io.MultiReader(os.Stdin, b)
|
2014-02-19 10:50:53 +01:00
|
|
|
gitcmd.Stderr = os.Stderr
|
|
|
|
|
2014-03-17 22:00:35 +01:00
|
|
|
if err = gitcmd.Run(); err != nil {
|
2014-02-25 07:01:52 +01:00
|
|
|
println("execute command error:", err.Error())
|
2014-02-19 10:50:53 +01:00
|
|
|
}
|
|
|
|
|
2014-03-23 09:31:13 +01:00
|
|
|
// update
|
|
|
|
w, _ := os.Create("serve.log")
|
|
|
|
defer w.Close()
|
|
|
|
log.SetOutput(w)
|
|
|
|
|
|
|
|
var t = "ok refs/heads/"
|
|
|
|
var i int
|
|
|
|
var refname string
|
|
|
|
for {
|
|
|
|
l, err := b.ReadString('\n')
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
i = i + 1
|
|
|
|
l = l[:len(l)-1]
|
|
|
|
idx := strings.Index(l, t)
|
|
|
|
if idx > 0 {
|
|
|
|
refname = l[idx+len(t):]
|
|
|
|
}
|
2014-02-19 10:50:53 +01:00
|
|
|
}
|
2014-03-23 09:31:13 +01:00
|
|
|
var ref *git.Reference
|
|
|
|
var ok bool
|
2014-02-20 07:53:56 +01:00
|
|
|
|
2014-03-23 09:31:13 +01:00
|
|
|
var l *list.List
|
|
|
|
//log.Info("----", refname, "-----")
|
|
|
|
if ref, ok = refs[refname]; !ok {
|
|
|
|
refs, err = rep.AllReferencesMap()
|
|
|
|
if err != nil {
|
|
|
|
println(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ref, ok = refs[refname]; !ok {
|
|
|
|
println("unknow reference name", refname)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
l, err = ref.AllCommits()
|
|
|
|
if err != nil {
|
|
|
|
println(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
//log.Info("----", ref, "-----")
|
|
|
|
var last *git.Commit
|
|
|
|
//log.Info("00000", ref.Oid.String())
|
|
|
|
last, err = ref.LastCommit()
|
|
|
|
if err != nil {
|
|
|
|
println(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ref2, err := rep.LookupReference(ref.Name)
|
|
|
|
if err != nil {
|
|
|
|
println(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
//log.Info("11111", ref2.Oid.String())
|
|
|
|
before, err := ref2.LastCommit()
|
|
|
|
if err != nil {
|
|
|
|
println(err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
//log.Info("----", before.Id(), "-----", last.Id())
|
|
|
|
l = ref.CommitsBetween(before, last)
|
|
|
|
}
|
|
|
|
|
|
|
|
commits := make([][]string, 0)
|
|
|
|
for e := l.Back(); e != nil; e = e.Prev() {
|
|
|
|
commit := e.Value.(*git.Commit)
|
|
|
|
commits = append(commits, []string{commit.Id().String(), commit.Message()})
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = models.CommitRepoAction(user.Id, user.Name,
|
|
|
|
repo.Id, ref.BranchName(), commits); err != nil {
|
|
|
|
log.Error("runUpdate.models.CommitRepoAction: %v", err, commits)
|
|
|
|
} else {
|
|
|
|
//log.Info("refname", refname)
|
|
|
|
//log.Info("Listen: %v", cmd)
|
|
|
|
//fmt.Println("...", cmd)
|
|
|
|
|
|
|
|
//runUpdate(k)
|
|
|
|
c := exec.Command("exec", "git", "update-server-info")
|
|
|
|
c.Run()
|
2014-02-19 10:50:53 +01:00
|
|
|
}
|
|
|
|
}
|