gitea/routers/repo/http.go

515 lines
13 KiB
Go
Raw Normal View History

2014-04-16 10:37:07 +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-04-10 20:20:58 +02:00
package repo
import (
2014-04-11 04:27:13 +02:00
"bytes"
2014-10-15 22:28:38 +02:00
"compress/gzip"
2014-04-10 20:20:58 +02:00
"fmt"
2014-06-28 08:55:33 +02:00
"io"
2014-04-10 20:20:58 +02:00
"io/ioutil"
"net/http"
"os"
"os/exec"
"path"
"regexp"
2014-11-17 20:53:41 +01:00
"runtime"
2014-04-10 20:20:58 +02:00
"strconv"
"strings"
"time"
"github.com/go-gitea/git"
"github.com/go-gitea/gitea/models"
"github.com/go-gitea/gitea/modules/base"
"github.com/go-gitea/gitea/modules/context"
"github.com/go-gitea/gitea/modules/log"
"github.com/go-gitea/gitea/modules/setting"
2014-04-10 20:20:58 +02:00
)
2016-03-11 17:56:52 +01:00
func HTTP(ctx *context.Context) {
2014-07-26 06:24:27 +02:00
username := ctx.Params(":username")
2015-12-01 02:45:55 +01:00
reponame := strings.TrimSuffix(ctx.Params(":reponame"), ".git")
2014-04-10 20:20:58 +02:00
var isPull bool
service := ctx.Query("service")
if service == "git-receive-pack" ||
strings.HasSuffix(ctx.Req.URL.Path, "git-receive-pack") {
isPull = false
} else if service == "git-upload-pack" ||
strings.HasSuffix(ctx.Req.URL.Path, "git-upload-pack") {
isPull = true
} else {
isPull = (ctx.Req.Method == "GET")
}
2015-12-01 02:45:55 +01:00
isWiki := false
if strings.HasSuffix(reponame, ".wiki") {
isWiki = true
reponame = reponame[:len(reponame)-5]
}
2014-04-10 20:20:58 +02:00
repoUser, err := models.GetUserByName(username)
if err != nil {
2015-08-05 05:14:17 +02:00
if models.IsErrUserNotExist(err) {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusNotFound, "GetUserByName", nil)
2014-05-30 23:57:38 +02:00
} else {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusInternalServerError, "GetUserByName", err)
2014-05-30 23:57:38 +02:00
}
2014-04-10 20:20:58 +02:00
return
}
2016-07-23 19:08:22 +02:00
repo, err := models.GetRepositoryByName(repoUser.ID, reponame)
2014-04-10 20:20:58 +02:00
if err != nil {
if models.IsErrRepoNotExist(err) {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusNotFound, "GetRepositoryByName", nil)
2014-05-30 23:57:38 +02:00
} else {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusInternalServerError, "GetRepositoryByName", err)
2014-05-30 23:57:38 +02:00
}
2014-04-10 20:20:58 +02:00
return
}
// Only public pull don't need auth.
2014-04-16 10:45:02 +02:00
isPublicPull := !repo.IsPrivate && isPull
var (
askAuth = !isPublicPull || setting.Service.RequireSignInView
authUser *models.User
authUsername string
authPasswd string
)
2014-04-11 04:27:13 +02:00
2014-04-10 20:20:58 +02:00
// check access
if askAuth {
authHead := ctx.Req.Header.Get("Authorization")
if len(authHead) == 0 {
2016-06-01 13:19:01 +02:00
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=\".\"")
ctx.Error(http.StatusUnauthorized)
2014-04-10 20:20:58 +02:00
return
}
auths := strings.Fields(authHead)
2014-04-10 20:20:58 +02:00
// currently check basic auth
// TODO: support digit auth
// FIXME: middlewares/context.go did basic auth check already,
// maybe could use that one.
2014-04-10 20:20:58 +02:00
if len(auths) != 2 || auths[0] != "Basic" {
2016-06-01 13:19:01 +02:00
ctx.HandleText(http.StatusUnauthorized, "no basic auth and digit auth")
2014-04-10 20:20:58 +02:00
return
}
authUsername, authPasswd, err = base.BasicAuthDecode(auths[1])
2014-04-10 20:20:58 +02:00
if err != nil {
2016-06-01 13:19:01 +02:00
ctx.HandleText(http.StatusUnauthorized, "no basic auth and digit auth")
2014-04-10 20:20:58 +02:00
return
}
authUser, err = models.UserSignIn(authUsername, authPasswd)
2014-04-10 20:20:58 +02:00
if err != nil {
2015-08-05 05:14:17 +02:00
if !models.IsErrUserNotExist(err) {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusInternalServerError, "UserSignIn error: %v", err)
2015-01-08 15:16:38 +01:00
return
}
// Assume username now is a token.
2015-08-19 00:22:33 +02:00
token, err := models.GetAccessTokenBySHA(authUsername)
if err != nil {
2016-06-27 11:02:39 +02:00
if models.IsErrAccessTokenNotExist(err) || models.IsErrAccessTokenEmpty(err) {
2016-06-01 13:19:01 +02:00
ctx.HandleText(http.StatusUnauthorized, "invalid token")
} else {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusInternalServerError, "GetAccessTokenBySha", err)
2015-01-08 15:16:38 +01:00
}
return
2015-01-08 15:16:38 +01:00
}
2015-08-19 00:22:33 +02:00
token.Updated = time.Now()
2016-01-06 20:41:42 +01:00
if err = models.UpdateAccessToken(token); err != nil {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusInternalServerError, "UpdateAccessToken", err)
2015-08-19 00:22:33 +02:00
}
2015-08-17 11:05:37 +02:00
authUser, err = models.GetUserByID(token.UID)
if err != nil {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusInternalServerError, "GetUserByID", err)
2015-01-08 15:16:38 +01:00
return
}
2014-04-10 20:20:58 +02:00
}
2014-04-16 10:45:02 +02:00
if !isPublicPull {
2016-11-07 17:20:37 +01:00
var tp = models.AccessModeWrite
2014-04-16 10:45:02 +02:00
if isPull {
2016-11-07 17:20:37 +01:00
tp = models.AccessModeRead
2014-04-16 10:45:02 +02:00
}
2014-04-10 20:20:58 +02:00
has, err := models.HasAccess(authUser, repo, tp)
2014-04-16 10:45:02 +02:00
if err != nil {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusInternalServerError, "HasAccess", err)
2014-04-16 10:45:02 +02:00
return
} else if !has {
2016-11-07 17:20:37 +01:00
if tp == models.AccessModeRead {
has, err = models.HasAccess(authUser, repo, models.AccessModeWrite)
2015-12-31 03:29:30 +01:00
if err != nil {
2016-06-01 13:19:01 +02:00
ctx.Handle(http.StatusInternalServerError, "HasAccess2", err)
2015-12-31 03:29:30 +01:00
return
} else if !has {
2016-06-01 13:19:01 +02:00
ctx.HandleText(http.StatusForbidden, "User permission denied")
2014-04-16 10:45:02 +02:00
return
}
} else {
2016-06-01 13:19:01 +02:00
ctx.HandleText(http.StatusForbidden, "User permission denied")
2014-04-10 20:20:58 +02:00
return
}
}
if !isPull && repo.IsMirror {
2016-06-01 13:19:01 +02:00
ctx.HandleText(http.StatusForbidden, "mirror repository is read-only")
return
}
2014-04-10 20:20:58 +02:00
}
}
callback := func(rpc string, input []byte) {
2015-12-01 02:45:55 +01:00
if rpc != "receive-pack" || isWiki {
return
}
2014-06-28 08:55:33 +02:00
2015-12-01 02:45:55 +01:00
var lastLine int64 = 0
for {
head := input[lastLine : lastLine+2]
if head[0] == '0' && head[1] == '0' {
size, err := strconv.ParseInt(string(input[lastLine+2:lastLine+4]), 16, 32)
if err != nil {
log.Error(4, "%v", err)
return
}
2014-06-28 08:55:33 +02:00
2015-12-01 02:45:55 +01:00
if size == 0 {
//fmt.Println(string(input[lastLine:]))
break
}
2015-07-25 15:32:04 +02:00
2015-12-01 02:45:55 +01:00
line := input[lastLine : lastLine+size]
idx := bytes.IndexRune(line, '\000')
if idx > -1 {
line = line[:idx]
}
2016-06-01 13:19:01 +02:00
2015-12-01 02:45:55 +01:00
fields := strings.Fields(string(line))
if len(fields) >= 3 {
oldCommitId := fields[0][4:]
newCommitId := fields[1]
2016-08-17 08:06:38 +02:00
refFullName := fields[2]
2015-12-01 02:45:55 +01:00
// FIXME: handle error.
if err = models.PushUpdate(models.PushUpdateOptions{
2016-08-17 08:06:38 +02:00
RefFullName: refFullName,
OldCommitID: oldCommitId,
NewCommitID: newCommitId,
2016-07-23 19:08:22 +02:00
PusherID: authUser.ID,
PusherName: authUser.Name,
RepoUserName: username,
RepoName: reponame,
}); err == nil {
2016-08-17 08:06:38 +02:00
go models.AddTestPullRequestTask(authUser, repo.ID, strings.TrimPrefix(refFullName, git.BRANCH_PREFIX), true)
2014-06-28 08:55:33 +02:00
}
2015-12-01 02:45:55 +01:00
2014-04-11 04:27:13 +02:00
}
2015-12-01 02:45:55 +01:00
lastLine = lastLine + size
} else {
break
2014-04-11 04:27:13 +02:00
}
}
2014-06-28 08:55:33 +02:00
}
2016-06-01 13:19:01 +02:00
HTTPBackend(ctx, &serviceConfig{
UploadPack: true,
ReceivePack: true,
OnSucceed: callback,
})(ctx.Resp, ctx.Req.Request)
2014-04-10 20:20:58 +02:00
2014-11-17 20:53:41 +01:00
runtime.GC()
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
type serviceConfig struct {
UploadPack bool
ReceivePack bool
OnSucceed func(rpc string, input []byte)
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
type serviceHandler struct {
cfg *serviceConfig
2014-04-10 20:20:58 +02:00
w http.ResponseWriter
r *http.Request
2016-06-01 13:19:01 +02:00
dir string
file string
}
func (h *serviceHandler) setHeaderNoCache() {
h.w.Header().Set("Expires", "Fri, 01 Jan 1980 00:00:00 GMT")
h.w.Header().Set("Pragma", "no-cache")
h.w.Header().Set("Cache-Control", "no-cache, max-age=0, must-revalidate")
}
func (h *serviceHandler) setHeaderCacheForever() {
now := time.Now().Unix()
expires := now + 31536000
h.w.Header().Set("Date", fmt.Sprintf("%d", now))
h.w.Header().Set("Expires", fmt.Sprintf("%d", expires))
h.w.Header().Set("Cache-Control", "public, max-age=31536000")
}
func (h *serviceHandler) sendFile(contentType string) {
reqFile := path.Join(h.dir, h.file)
fi, err := os.Stat(reqFile)
if os.IsNotExist(err) {
h.w.WriteHeader(http.StatusNotFound)
return
}
h.w.Header().Set("Content-Type", contentType)
h.w.Header().Set("Content-Length", fmt.Sprintf("%d", fi.Size()))
h.w.Header().Set("Last-Modified", fi.ModTime().Format(http.TimeFormat))
http.ServeFile(h.w, h.r, reqFile)
2014-04-10 20:20:58 +02:00
}
type route struct {
2016-06-01 13:19:01 +02:00
reg *regexp.Regexp
method string
2016-06-01 13:19:01 +02:00
handler func(serviceHandler)
}
2014-04-10 20:20:58 +02:00
var routes = []route{
{regexp.MustCompile("(.*?)/git-upload-pack$"), "POST", serviceUploadPack},
{regexp.MustCompile("(.*?)/git-receive-pack$"), "POST", serviceReceivePack},
{regexp.MustCompile("(.*?)/info/refs$"), "GET", getInfoRefs},
{regexp.MustCompile("(.*?)/HEAD$"), "GET", getTextFile},
{regexp.MustCompile("(.*?)/objects/info/alternates$"), "GET", getTextFile},
{regexp.MustCompile("(.*?)/objects/info/http-alternates$"), "GET", getTextFile},
{regexp.MustCompile("(.*?)/objects/info/packs$"), "GET", getInfoPacks},
{regexp.MustCompile("(.*?)/objects/info/[^/]*$"), "GET", getTextFile},
{regexp.MustCompile("(.*?)/objects/[0-9a-f]{2}/[0-9a-f]{38}$"), "GET", getLooseObject},
{regexp.MustCompile("(.*?)/objects/pack/pack-[0-9a-f]{40}\\.pack$"), "GET", getPackFile},
{regexp.MustCompile("(.*?)/objects/pack/pack-[0-9a-f]{40}\\.idx$"), "GET", getIdxFile},
}
2016-06-01 13:19:01 +02:00
// FIXME: use process module
func gitCommand(dir string, args ...string) []byte {
cmd := exec.Command("git", args...)
cmd.Dir = dir
out, err := cmd.Output()
if err != nil {
log.GitLogger.Error(4, fmt.Sprintf("%v - %s", err, out))
2015-12-01 02:45:55 +01:00
}
2016-06-01 13:19:01 +02:00
return out
}
2015-12-01 02:45:55 +01:00
2016-06-01 13:19:01 +02:00
func getGitConfig(option, dir string) string {
out := string(gitCommand(dir, "config", option))
return out[0 : len(out)-1]
}
2015-12-01 02:45:55 +01:00
2016-06-01 13:19:01 +02:00
func getConfigSetting(service, dir string) bool {
service = strings.Replace(service, "-", "", -1)
setting := getGitConfig("http."+service, dir)
if service == "uploadpack" {
return setting != "false"
2015-12-01 02:45:55 +01:00
}
2016-06-01 13:19:01 +02:00
return setting == "true"
2015-12-01 02:45:55 +01:00
}
2016-06-01 13:19:01 +02:00
func hasAccess(service string, h serviceHandler, checkContentType bool) bool {
if checkContentType {
if h.r.Header.Get("Content-Type") != fmt.Sprintf("application/x-git-%s-request", service) {
return false
2014-04-10 20:20:58 +02:00
}
}
2016-06-01 13:19:01 +02:00
if !(service == "upload-pack" || service == "receive-pack") {
return false
}
if service == "receive-pack" {
return h.cfg.ReceivePack
}
if service == "upload-pack" {
return h.cfg.UploadPack
}
2014-04-10 20:20:58 +02:00
2016-06-01 13:19:01 +02:00
return getConfigSetting(service, h.dir)
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func serviceRPC(h serviceHandler, service string) {
defer h.r.Body.Close()
2014-04-10 20:20:58 +02:00
2016-06-01 13:19:01 +02:00
if !hasAccess(service, h, true) {
h.w.WriteHeader(http.StatusUnauthorized)
2014-04-10 20:20:58 +02:00
return
}
2016-06-01 13:19:01 +02:00
h.w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-result", service))
2014-04-10 20:20:58 +02:00
2014-10-15 22:28:38 +02:00
var (
2016-06-01 13:19:01 +02:00
reqBody = h.r.Body
2014-10-15 22:28:38 +02:00
input []byte
br io.Reader
err error
)
// Handle GZIP.
2016-06-01 13:19:01 +02:00
if h.r.Header.Get("Content-Encoding") == "gzip" {
2014-10-15 22:28:38 +02:00
reqBody, err = gzip.NewReader(reqBody)
if err != nil {
log.GitLogger.Error(2, "fail to create gzip reader: %v", err)
2016-06-01 13:19:01 +02:00
h.w.WriteHeader(http.StatusInternalServerError)
2014-10-15 22:28:38 +02:00
return
}
}
2016-06-01 13:19:01 +02:00
if h.cfg.OnSucceed != nil {
2014-10-15 22:28:38 +02:00
input, err = ioutil.ReadAll(reqBody)
if err != nil {
log.GitLogger.Error(2, "fail to read request body: %v", err)
2016-06-01 13:19:01 +02:00
h.w.WriteHeader(http.StatusInternalServerError)
2014-10-15 22:28:38 +02:00
return
}
2016-06-01 13:19:01 +02:00
2014-06-28 08:55:33 +02:00
br = bytes.NewReader(input)
} else {
2014-10-15 22:28:38 +02:00
br = reqBody
2014-06-28 08:55:33 +02:00
}
2014-06-28 05:06:07 +02:00
2016-06-01 13:19:01 +02:00
cmd := exec.Command("git", service, "--stateless-rpc", h.dir)
cmd.Dir = h.dir
cmd.Stdout = h.w
2014-06-28 05:06:07 +02:00
cmd.Stdin = br
2014-10-15 22:28:38 +02:00
if err := cmd.Run(); err != nil {
2016-06-01 13:19:01 +02:00
log.GitLogger.Error(2, "fail to serve RPC(%s): %v", service, err)
h.w.WriteHeader(http.StatusInternalServerError)
2014-04-10 20:20:58 +02:00
return
}
2016-06-01 13:19:01 +02:00
if h.cfg.OnSucceed != nil {
h.cfg.OnSucceed(service, input)
2014-04-10 20:20:58 +02:00
}
}
2016-06-01 13:19:01 +02:00
func serviceUploadPack(h serviceHandler) {
serviceRPC(h, "upload-pack")
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func serviceReceivePack(h serviceHandler) {
serviceRPC(h, "receive-pack")
2014-04-10 20:20:58 +02:00
}
func getServiceType(r *http.Request) string {
serviceType := r.FormValue("service")
2016-06-01 13:19:01 +02:00
if !strings.HasPrefix(serviceType, "git-") {
2014-04-10 20:20:58 +02:00
return ""
}
return strings.Replace(serviceType, "git-", "", 1)
}
2016-06-01 13:19:01 +02:00
func updateServerInfo(dir string) []byte {
return gitCommand(dir, "update-server-info")
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func packetWrite(str string) []byte {
s := strconv.FormatInt(int64(len(str)+4), 16)
if len(s)%4 != 0 {
s = strings.Repeat("0", 4-len(s)%4) + s
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
return []byte(s + str)
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func getInfoRefs(h serviceHandler) {
h.setHeaderNoCache()
if hasAccess(getServiceType(h.r), h, false) {
service := getServiceType(h.r)
refs := gitCommand(h.dir, service, "--stateless-rpc", "--advertise-refs", ".")
h.w.Header().Set("Content-Type", fmt.Sprintf("application/x-git-%s-advertisement", service))
h.w.WriteHeader(http.StatusOK)
h.w.Write(packetWrite("# service=git-" + service + "\n"))
h.w.Write([]byte("0000"))
h.w.Write(refs)
} else {
updateServerInfo(h.dir)
h.sendFile("text/plain; charset=utf-8")
2014-04-10 20:20:58 +02:00
}
}
2016-06-01 13:19:01 +02:00
func getTextFile(h serviceHandler) {
h.setHeaderNoCache()
h.sendFile("text/plain")
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func getInfoPacks(h serviceHandler) {
h.setHeaderCacheForever()
h.sendFile("text/plain; charset=utf-8")
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func getLooseObject(h serviceHandler) {
h.setHeaderCacheForever()
h.sendFile("application/x-git-loose-object")
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func getPackFile(h serviceHandler) {
h.setHeaderCacheForever()
h.sendFile("application/x-git-packed-objects")
}
2014-04-10 20:20:58 +02:00
2016-06-01 13:19:01 +02:00
func getIdxFile(h serviceHandler) {
h.setHeaderCacheForever()
h.sendFile("application/x-git-packed-objects-toc")
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func getGitRepoPath(subdir string) (string, error) {
if !strings.HasSuffix(subdir, ".git") {
subdir += ".git"
}
2014-04-10 20:20:58 +02:00
2016-06-01 13:19:01 +02:00
fpath := path.Join(setting.RepoRootPath, subdir)
if _, err := os.Stat(fpath); os.IsNotExist(err) {
return "", err
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
return fpath, nil
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
func HTTPBackend(ctx *context.Context, cfg *serviceConfig) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
for _, route := range routes {
r.URL.Path = strings.ToLower(r.URL.Path) // blue: In case some repo name has upper case name
if m := route.reg.FindStringSubmatch(r.URL.Path); m != nil {
2016-10-04 18:58:14 +02:00
if setting.Repository.DisableHTTPGit {
w.WriteHeader(http.StatusForbidden)
w.Write([]byte("Interacting with repositories by HTTP protocol is not allowed"))
return
}
2016-06-01 13:19:01 +02:00
if route.method != r.Method {
if r.Proto == "HTTP/1.1" {
w.WriteHeader(http.StatusMethodNotAllowed)
w.Write([]byte("Method Not Allowed"))
} else {
w.WriteHeader(http.StatusBadRequest)
w.Write([]byte("Bad Request"))
}
return
}
2014-04-10 20:20:58 +02:00
2016-06-01 13:19:01 +02:00
file := strings.Replace(r.URL.Path, m[1]+"/", "", 1)
dir, err := getGitRepoPath(m[1])
if err != nil {
log.GitLogger.Error(4, err.Error())
ctx.Handle(http.StatusNotFound, "HTTPBackend", err)
return
}
2014-04-10 20:20:58 +02:00
2016-06-01 13:19:01 +02:00
route.handler(serviceHandler{cfg, w, r, dir, file})
return
}
}
ctx.Handle(http.StatusNotFound, "HTTPBackend", nil)
return
}
2014-04-10 20:20:58 +02:00
}