gitea/routers/repo/http.go

605 lines
16 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"
"code.gitea.io/git"
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
2014-04-10 20:20:58 +02:00
)
2016-11-24 08:04:31 +01:00
// HTTP implmentation git smart HTTP protocol
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 if service == "git-upload-archive" ||
strings.HasSuffix(ctx.Req.URL.Path, "git-upload-archive") {
isPull = true
2014-04-10 20:20:58 +02:00
} else {
isPull = (ctx.Req.Method == "GET")
}
var accessMode models.AccessMode
if isPull {
accessMode = models.AccessModeRead
} else {
accessMode = models.AccessModeWrite
}
2015-12-01 02:45:55 +01:00
isWiki := false
if strings.HasSuffix(reponame, ".wiki") {
isWiki = true
Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
2017-02-22 08:14:37 +01:00
reponame = reponame[:len(reponame) - 5]
2015-12-01 02:45:55 +01:00
}
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 {
if setting.Service.EnableReverseProxyAuth {
authUsername = ctx.Req.Header.Get(setting.ReverseProxyAuthUser)
if len(authUsername) == 0 {
ctx.HandleText(401, "reverse proxy login error. authUsername empty")
2015-01-08 15:16:38 +01:00
return
}
authUser, err = models.GetUserByName(authUsername)
if err != nil {
ctx.HandleText(401, "reverse proxy login error, got error while running GetUserByName")
return
2015-01-08 15:16:38 +01:00
}
} else {
authHead := ctx.Req.Header.Get("Authorization")
if len(authHead) == 0 {
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=\".\"")
ctx.Error(http.StatusUnauthorized)
return
2015-08-19 00:22:33 +02:00
}
auths := strings.Fields(authHead)
// currently check basic auth
// TODO: support digit auth
// FIXME: middlewares/context.go did basic auth check already,
// maybe could use that one.
if len(auths) != 2 || auths[0] != "Basic" {
ctx.HandleText(http.StatusUnauthorized, "no basic auth and digit auth")
return
}
authUsername, authPasswd, err = base.BasicAuthDecode(auths[1])
if err != nil {
ctx.HandleText(http.StatusUnauthorized, "no basic auth and digit auth")
2015-01-08 15:16:38 +01:00
return
}
2014-04-10 20:20:58 +02:00
authUser, err = models.UserSignIn(authUsername, authPasswd)
if err != nil {
if !models.IsErrUserNotExist(err) {
ctx.Handle(http.StatusInternalServerError, "UserSignIn error: %v", err)
return
}
// Assume username now is a token.
token, err := models.GetAccessTokenBySHA(authUsername)
if err != nil {
if models.IsErrAccessTokenNotExist(err) || models.IsErrAccessTokenEmpty(err) {
ctx.HandleText(http.StatusUnauthorized, "invalid token")
} else {
ctx.Handle(http.StatusInternalServerError, "GetAccessTokenBySha", err)
}
return
}
token.Updated = time.Now()
if err = models.UpdateAccessToken(token); err != nil {
ctx.Handle(http.StatusInternalServerError, "UpdateAccessToken", err)
}
authUser, err = models.GetUserByID(token.UID)
if err != nil {
ctx.Handle(http.StatusInternalServerError, "GetUserByID", err)
return
}
2014-04-16 10:45:02 +02:00
}
2014-04-10 20:20:58 +02:00
if !isPublicPull {
has, err := models.HasAccess(authUser, repo, accessMode)
if err != nil {
ctx.Handle(http.StatusInternalServerError, "HasAccess", err)
return
} else if !has {
if accessMode == models.AccessModeRead {
has, err = models.HasAccess(authUser, repo, models.AccessModeWrite)
if err != nil {
ctx.Handle(http.StatusInternalServerError, "HasAccess2", err)
return
} else if !has {
ctx.HandleText(http.StatusForbidden, "User permission denied")
return
}
} else {
2016-06-01 13:19:01 +02:00
ctx.HandleText(http.StatusForbidden, "User permission denied")
2014-04-16 10:45:02 +02:00
return
}
2014-04-10 20:20:58 +02:00
}
if !isPull && repo.IsMirror {
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
2016-11-24 08:04:31 +01:00
var lastLine int64
2015-12-01 02:45:55 +01:00
for {
Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
2017-02-22 08:14:37 +01:00
head := input[lastLine: lastLine + 2]
2015-12-01 02:45:55 +01:00
if head[0] == '0' && head[1] == '0' {
Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
2017-02-22 08:14:37 +01:00
size, err := strconv.ParseInt(string(input[lastLine + 2:lastLine + 4]), 16, 32)
2015-12-01 02:45:55 +01:00
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
Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
2017-02-22 08:14:37 +01:00
line := input[lastLine: lastLine + size]
2015-12-01 02:45:55 +01:00
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 {
2016-11-24 08:04:31 +01:00
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,
2016-11-24 08:04:31 +01:00
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-12-22 10:30:52 +01:00
go models.AddTestPullRequestTask(authUser, repo.ID, strings.TrimPrefix(refFullName, git.BranchPrefix), 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
}
params := make(map[string]string)
if askAuth {
params[models.ProtectedBranchUserID] = fmt.Sprintf("%d", authUser.ID)
if err == nil {
params[models.ProtectedBranchAccessMode] = accessMode.String()
}
params[models.ProtectedBranchRepoID] = fmt.Sprintf("%d", repo.ID)
}
2016-06-01 13:19:01 +02:00
HTTPBackend(ctx, &serviceConfig{
UploadPack: true,
ReceivePack: true,
Params: params,
2016-06-01 13:19:01 +02:00
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
Params map[string]string
2016-06-01 13:19:01 +02:00
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) getBranch(input []byte) string {
var lastLine int64
var branchName string
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 branchName
}
if size == 0 {
//fmt.Println(string(input[lastLine:]))
break
}
line := input[lastLine : lastLine+size]
idx := bytes.IndexRune(line, '\000')
if idx > -1 {
line = line[:idx]
}
fields := strings.Fields(string(line))
if len(fields) >= 3 {
refFullName := fields[2]
branchName = strings.TrimPrefix(refFullName, git.BranchPrefix)
}
lastLine = lastLine + size
} else {
break
}
}
return branchName
}
2016-06-01 13:19:01 +02:00
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))
Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
2017-02-22 08:14:37 +01:00
return out[0: len(out) - 1]
2016-06-01 13:19:01 +02:00
}
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 (
reqBody = h.r.Body
input []byte
br io.Reader
err error
branchName string
2014-10-15 22:28:38 +02:00
)
// 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
branchName = h.getBranch(input)
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
// check protected branch
repoID, _ := strconv.ParseInt(h.cfg.Params[models.ProtectedBranchRepoID], 10, 64)
accessMode := models.ParseAccessMode(h.cfg.Params[models.ProtectedBranchAccessMode])
// skip admin or owner AccessMode
if accessMode == models.AccessModeWrite {
protectBranch, err := models.GetProtectedBranchBy(repoID, branchName)
if err != nil {
log.GitLogger.Error(2, "fail to get protected branch information: %v", err)
h.w.WriteHeader(http.StatusInternalServerError)
return
}
if protectBranch != nil {
log.GitLogger.Error(2, "protected branches can not be pushed to")
h.w.WriteHeader(http.StatusForbidden)
return
}
}
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 {
Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
2017-02-22 08:14:37 +01:00
s := strconv.FormatInt(int64(len(str) + 4), 16)
2016-06-01 13:19:01 +02:00
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-11-24 08:04:31 +01:00
// HTTPBackend middleware for git smart HTTP protocol
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
}