Make g.cgi work for push too

This commit is contained in:
Neale Pickett 2015-02-26 05:49:21 +00:00
parent 7807b8d3e0
commit 74252c7247
4 changed files with 87 additions and 26 deletions

View File

@ -48,8 +48,8 @@ $(DESTDIR)/geneweb.cgi: geneweb.c
$(CC) -o $@ $< $(CC) -o $@ $<
chmod +s $@ chmod +s $@
$(DESTDIR)/g.cgi: g.cgi.c $(DESTDIR)/g.cgi: g.cgi.go
$(CC) -o $@ $< go build -o $@ $<
$(DESTDIR)/mp.cgi: minepig.cgi.go $(DESTDIR)/mp.cgi: minepig.cgi.go
go build -o $@ $< go build -o $@ $<

1
cgitrc
View File

@ -1,6 +1,7 @@
strict-export=git-daemon-export-ok strict-export=git-daemon-export-ok
about-filter=/home/neale/public_html/about-filter.sh about-filter=/home/neale/public_html/about-filter.sh
readme=:README.mdwn
readme=:README readme=:README
section-from-path=1 section-from-path=1

24
g.cgi.c
View File

@ -1,24 +0,0 @@
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#define GIT_PROJECT_ROOT "/home/neale/projects"
#define CGIT_CONFIG "/home/neale/public_html/cgitrc"
#define CGIT "/usr/lib/cgit/cgit.cgi"
int
main(int argc, char *argv[])
{
char *uri = getenv("REQUEST_URI");
if (uri && strstr(uri, "git-upload-pack")) {
/* Use git-http-backend for great speed! */
setenv("GIT_PROJECT_ROOT", GIT_PROJECT_ROOT, 1);
execlp("git", "git", "http-backend", NULL);
} else {
setenv("CGIT_CONFIG", CGIT_CONFIG, 1);
execl(CGIT, "cgit", NULL);
}
return 0;
}

84
g.cgi.go Normal file
View File

@ -0,0 +1,84 @@
package main
import (
"crypto/md5"
"fmt"
"log"
"os"
"os/exec"
"strings"
)
const GitProjectRoot = "/home/neale/projects"
const CgitConfig = "/home/neale/public_html/cgitrc"
const Cgit = "/usr/lib/cgit/cgit.cgi"
// printf "USER:PASS" | base64 | while read a; do printf "%s" "$a" | md5sum; done
var allowed = []string{
"2c64993e88c06e297d4f01cf3b5aebdf", // neale
}
func execv(name string, arg ...string) {
c := exec.Command(name, arg...)
c.Stdin = os.Stdin
c.Stdout = os.Stdout
c.Stderr = os.Stderr
if err := c.Run(); err != nil {
log.Print(err)
}
}
func Authenticated() bool {
auth := os.Getenv("HTTP_AUTHORIZATION")
if auth == "" {
return false
}
parts := strings.Split(auth, " ")
switch {
case len(parts) != 2:
return false
case parts[0] != "Basic":
return false
}
hash := md5.Sum([]byte(parts[1]))
hashhex := fmt.Sprintf("%x", hash)
for _, a := range allowed {
if a == hashhex {
os.Setenv("AUTH_TYPE", parts[0])
os.Setenv("REMOTE_USER", "XXX-neale")
return true
}
}
return false
}
func main() {
log.SetFlags(0)
//log.SetOutput(os.Stdout)
//log.SetPrefix("Status: 500 CGI Go Boom\nContent-type: text/plain\n\nERROR: ")
os.Setenv("GIT_PROJECT_ROOT", GitProjectRoot)
os.Setenv("CGIT_CONFIG", CgitConfig)
uri := os.Getenv("REQUEST_URI")
switch {
case strings.HasSuffix(uri, "git-receive-pack"):
if Authenticated() {
execv("git", "http-backend")
} else {
fmt.Println("Status: 401 Not Authorized")
fmt.Println("Content-type: text/plain")
fmt.Println("WWW-Authenticate: Basic realm=\"git\"")
fmt.Println()
fmt.Println("Nope", os.Getenv("HTTP_AUTHORIZATION"))
}
case strings.HasSuffix(uri, "git-upload-pack"):
execv("git", "http-backend")
default:
execv(Cgit)
}
}