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"
"net/http"
"os"
"os/exec"
"path"
"regexp"
"strconv"
"strings"
"time"
2016-11-10 17:24:48 +01:00
"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"
2017-12-11 05:37:04 +01:00
"code.gitea.io/gitea/modules/util"
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" )
2017-04-21 04:43:29 +02:00
if ctx . Query ( "go-get" ) == "1" {
2017-09-23 15:24:24 +02:00
context . EarlyResponseForGoGetMeta ( ctx )
2017-04-21 04:43:29 +02:00
return
}
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
2017-02-21 16:02:10 +01:00
} 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" )
}
2017-02-21 16:02:10 +01:00
var accessMode models . AccessMode
if isPull {
accessMode = models . AccessModeRead
} else {
accessMode = models . AccessModeWrite
}
2015-12-01 02:45:55 +01:00
isWiki := false
2017-05-18 16:54:24 +02:00
var unitType = models . UnitTypeCode
2015-12-01 02:45:55 +01:00
if strings . HasSuffix ( reponame , ".wiki" ) {
isWiki = true
2017-05-18 16:54:24 +02:00
unitType = models . UnitTypeWiki
2017-02-25 15:54:40 +01:00
reponame = reponame [ : len ( reponame ) - 5 ]
2015-12-01 02:45:55 +01:00
}
2017-12-02 08:34:39 +01:00
repo , err := models . GetRepositoryByOwnerAndName ( username , reponame )
2014-04-10 20:20:58 +02:00
if err != nil {
2017-12-02 08:34:39 +01:00
ctx . NotFoundOrServerError ( "GetRepositoryByOwnerAndName" , models . IsErrRepoNotExist , err )
2014-04-10 20:20:58 +02:00
return
}
2015-02-07 21:47:23 +01:00
// Only public pull don't need auth.
2014-04-16 10:45:02 +02:00
isPublicPull := ! repo . IsPrivate && isPull
2015-02-07 21:47:23 +01:00
var (
askAuth = ! isPublicPull || setting . Service . RequireSignInView
authUser * models . User
authUsername string
authPasswd string
2017-02-25 15:54:40 +01:00
environ [ ] string
2015-02-07 21:47:23 +01:00
)
2014-04-11 04:27:13 +02:00
2014-04-10 20:20:58 +02:00
// check access
if askAuth {
2016-12-28 22:33:59 +01:00
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
}
2016-12-28 22:33:59 +01:00
authUser , err = models . GetUserByName ( authUsername )
2015-02-07 21:47:23 +01:00
if err != nil {
2016-12-28 22:33:59 +01:00
ctx . HandleText ( 401 , "reverse proxy login error, got error while running GetUserByName" )
2015-02-07 21:47:23 +01:00
return
2015-01-08 15:16:38 +01:00
}
2016-12-30 08:26:05 +01:00
} else {
2016-12-28 22:33:59 +01:00
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
}
2016-12-28 22:33:59 +01: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 ] )
2015-02-07 21:47:23 +01:00
if err != nil {
2016-12-28 22:33:59 +01:00
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
2016-12-28 22:33:59 +01:00
authUser , err = models . UserSignIn ( authUsername , authPasswd )
if err != nil {
if ! models . IsErrUserNotExist ( err ) {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "UserSignIn error: %v" , err )
2016-12-28 22:33:59 +01:00
return
}
2017-07-26 09:33:16 +02:00
}
if authUser == nil {
2017-10-15 17:35:43 +02:00
isUsernameToken := len ( authPasswd ) == 0 || authPasswd == "x-oauth-basic"
// Assume username is token
authToken := authUsername
if ! isUsernameToken {
// Assume password is token
authToken = authPasswd
authUser , err = models . GetUserByName ( authUsername )
if err != nil {
if models . IsErrUserNotExist ( err ) {
ctx . HandleText ( http . StatusUnauthorized , "invalid credentials" )
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetUserByName" , err )
2017-10-15 17:35:43 +02:00
}
return
2017-07-26 09:33:16 +02:00
}
}
2016-12-28 22:33:59 +01:00
2017-07-26 09:33:16 +02:00
// Assume password is a token.
2017-10-15 17:35:43 +02:00
token , err := models . GetAccessTokenBySHA ( authToken )
2016-12-28 22:33:59 +01:00
if err != nil {
if models . IsErrAccessTokenNotExist ( err ) || models . IsErrAccessTokenEmpty ( err ) {
2017-07-26 09:33:16 +02:00
ctx . HandleText ( http . StatusUnauthorized , "invalid credentials" )
2016-12-28 22:33:59 +01:00
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetAccessTokenBySha" , err )
2016-12-28 22:33:59 +01:00
}
return
}
2017-07-26 09:33:16 +02:00
2017-10-15 17:35:43 +02:00
if isUsernameToken {
authUser , err = models . GetUserByID ( token . UID )
if err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetUserByID" , err )
2017-10-15 17:35:43 +02:00
return
}
} else if authUser . ID != token . UID {
2017-07-26 09:33:16 +02:00
ctx . HandleText ( http . StatusUnauthorized , "invalid credentials" )
return
}
2017-12-11 05:37:04 +01:00
token . UpdatedUnix = util . TimeStampNow ( )
2016-12-28 22:33:59 +01:00
if err = models . UpdateAccessToken ( token ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "UpdateAccessToken" , err )
2016-12-28 22:33:59 +01:00
}
2017-07-26 09:33:16 +02:00
} else {
_ , err = models . GetTwoFactorByUID ( authUser . ID )
if err == nil {
// TODO: This response should be changed to "invalid credentials" for security reasons once the expectation behind it (creating an app token to authenticate) is properly documented
ctx . HandleText ( http . StatusUnauthorized , "Users with two-factor authentication enabled cannot perform HTTP/HTTPS operations via plain username and password. Please create and use a personal access token on the user settings page" )
return
} else if ! models . IsErrTwoFactorNotEnrolled ( err ) {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "IsErrTwoFactorNotEnrolled" , err )
2016-12-28 22:33:59 +01:00
return
}
2014-04-16 10:45:02 +02:00
}
2018-03-29 03:39:51 +02:00
}
2014-04-10 20:20:58 +02:00
2018-03-29 03:39:51 +02:00
if ! isPublicPull {
has , err := models . HasAccess ( authUser . ID , repo , accessMode )
if err != nil {
ctx . ServerError ( "HasAccess" , err )
return
} else if ! has {
if accessMode == models . AccessModeRead {
has , err = models . HasAccess ( authUser . ID , repo , models . AccessModeWrite )
if err != nil {
ctx . ServerError ( "HasAccess2" , err )
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
}
2018-03-29 03:39:51 +02:00
} else {
ctx . HandleText ( http . StatusForbidden , "User permission denied" )
2016-12-28 22:33:59 +01:00
return
}
2015-02-16 11:00:06 +01:00
}
2018-03-29 03:39:51 +02:00
if ! isPull && repo . IsMirror {
ctx . HandleText ( http . StatusForbidden , "mirror repository is read-only" )
return
}
2014-04-10 20:20:58 +02:00
}
2017-05-19 02:59:26 +02:00
if ! repo . CheckUnitUser ( authUser . ID , authUser . IsAdmin , unitType ) {
2017-05-18 16:54:24 +02:00
ctx . HandleText ( http . StatusForbidden , fmt . Sprintf ( "User %s does not have allowed access to repository %s 's code" ,
authUser . Name , repo . RepoPath ( ) ) )
return
}
2017-02-25 15:54:40 +01:00
environ = [ ] string {
models . EnvRepoUsername + "=" + username ,
models . EnvRepoName + "=" + reponame ,
models . EnvPusherName + "=" + authUser . Name ,
models . EnvPusherID + fmt . Sprintf ( "=%d" , authUser . ID ) ,
models . ProtectedBranchRepoID + fmt . Sprintf ( "=%d" , repo . ID ) ,
2015-12-01 02:45:55 +01:00
}
2018-07-26 18:38:55 +02:00
if ! authUser . KeepEmailPrivate {
environ = append ( environ , models . EnvPusherEmail + "=" + authUser . Email )
}
2017-02-25 15:54:40 +01:00
if isWiki {
environ = append ( environ , models . EnvRepoIsWiki + "=true" )
} else {
environ = append ( environ , models . EnvRepoIsWiki + "=false" )
2017-02-21 16:02:10 +01:00
}
}
2016-06-01 13:19:01 +02:00
HTTPBackend ( ctx , & serviceConfig {
UploadPack : true ,
ReceivePack : true ,
2017-02-25 15:54:40 +01:00
Env : environ ,
2015-03-12 06:15:01 +01:00
} ) ( ctx . Resp , ctx . Req . Request )
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
type serviceConfig struct {
UploadPack bool
ReceivePack bool
2017-02-25 15:54:40 +01:00
Env [ ] string
2014-04-10 20:20:58 +02:00
}
2016-06-01 13:19:01 +02:00
type serviceHandler struct {
2017-02-25 15:54:40 +01:00
cfg * serviceConfig
w http . ResponseWriter
r * http . Request
dir string
file string
environ [ ] string
2016-06-01 13:19:01 +02:00
}
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
}
2015-03-12 06:15:01 +01:00
type route struct {
2016-06-01 13:19:01 +02:00
reg * regexp . Regexp
2015-03-12 06:15:01 +01:00
method string
2016-06-01 13:19:01 +02:00
handler func ( serviceHandler )
2015-03-12 06:15:01 +01:00
}
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 ) )
2017-02-25 15:54:40 +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
}
2017-02-21 16:02:10 +01:00
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
2017-02-25 15:54:40 +01:00
var err error
var reqBody = h . r . Body
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
}
}
2017-02-25 15:54:40 +01:00
// set this for allow pre-receive and post-receive execute
h . environ = append ( h . environ , "SSH_ORIGINAL_COMMAND=" + service )
2017-02-21 16:02:10 +01:00
2017-02-25 15:54:40 +01:00
var stderr bytes . Buffer
2016-06-01 13:19:01 +02:00
cmd := exec . Command ( "git" , service , "--stateless-rpc" , h . dir )
cmd . Dir = h . dir
2017-02-25 15:54:40 +01:00
if service == "receive-pack" {
cmd . Env = append ( os . Environ ( ) , h . environ ... )
}
2016-06-01 13:19:01 +02:00
cmd . Stdout = h . w
2017-02-25 15:54:40 +01:00
cmd . Stdin = reqBody
cmd . Stderr = & stderr
2014-10-15 22:28:38 +02:00
if err := cmd . Run ( ) ; err != nil {
2017-02-25 15:54:40 +01:00
log . GitLogger . Error ( 2 , "fail to serve RPC(%s): %v - %v" , service , err , stderr )
2014-04-10 20:20:58 +02:00
return
}
}
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 {
2017-02-25 15:54:40 +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 {
2016-09-18 10:54:33 +02:00
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 ( ) )
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "HTTPBackend" , err )
2016-06-01 13:19:01 +02:00
return
}
2014-04-10 20:20:58 +02:00
2017-02-25 15:54:40 +01:00
route . handler ( serviceHandler { cfg , w , r , dir , file , cfg . Env } )
2016-06-01 13:19:01 +02:00
return
}
}
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "HTTPBackend" , nil )
2016-06-01 13:19:01 +02:00
return
}
2014-04-10 20:20:58 +02:00
}