-
Notifications
You must be signed in to change notification settings - Fork 10
/
api_handler.go
151 lines (130 loc) · 4.03 KB
/
api_handler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package main
import (
"encoding/json"
"fmt"
"github.com/libgit2/git2go"
"log"
"net/http"
"os"
"os/exec"
)
type Payload struct {
Username string
RepoName string
}
func rootHandler(w http.ResponseWriter, r *http.Request) {
baseResp := BaseResponse{
CreateRepositoryURL: fmt.Sprintf(GetProtocol(config.SSLEnabled) + r.Host + GetRepoCreateURL()),
UserRepositoriesURL: fmt.Sprintf(GetProtocol(config.SSLEnabled) + r.Host + GetReposURL()),
UserRepositoryURL: fmt.Sprintf(GetProtocol(config.SSLEnabled) + r.Host + GetRepoURL()),
BranchesURL: fmt.Sprintf(GetProtocol(config.SSLEnabled) + r.Host + GetBranchesURL() + "{/branch-name}"),
}
WriteIndentedJSON(w, baseResp, "", " ")
}
func repoCreateHandler(w http.ResponseWriter, r *http.Request) {
var resp CreateResponse
resp.ResponseMessage = "Unknown error. Follow README"
resp.CloneURL = ""
wd, _ := os.Getwd()
defer func() {
WriteIndentedJSON(w, resp, "", " ")
if err := os.Chdir(wd); err != nil {
log.Println(err)
}
}()
var payload Payload
decoder := json.NewDecoder(r.Body)
if err := decoder.Decode(&payload); err != nil {
log.Println(err)
return
}
if payload.Username == "" || payload.RepoName == "" {
log.Println("Empty username or reponame")
return
}
usrPath := UserPath(payload.Username)
bareRepo := FormatRepoName(payload.RepoName)
url := FormCloneURL(r.Host, payload.Username, bareRepo)
if ok := IsExistingRepository(RepoPath(payload.Username, payload.RepoName)); ok {
resp.ResponseMessage = fmt.Sprintf("repository already exists for %s", payload.Username)
resp.CloneURL = url
return
}
if err := os.MkdirAll(usrPath, 0775); err != nil {
resp.ResponseMessage = "error while creating user"
return
}
if err := os.Chdir(usrPath); err != nil {
resp.ResponseMessage = "error while creating new repository"
return
}
cmd := exec.Command(config.GitPath, "init", "--bare", bareRepo)
if err := cmd.Start(); err == nil {
resp.CloneURL = url
resp.ResponseMessage = "repository created successfully"
} else {
resp.ResponseMessage = "error while creating new repository"
return
}
if err := cmd.Wait(); err != nil {
log.Println("Error while waiting:", err)
return
}
}
func repoIndexHandler(w http.ResponseWriter, r *http.Request) {
userName, _, _ := GetParamValues(r)
var errJSON Error
list, ok := FindAllDir(UserPath(userName))
if !ok {
errJSON = Error{Message: "repository not found"}
WriteIndentedJSON(w, errJSON, "", " ")
return
}
var repo Repository
var repos []Repository
for i := 0; i < len(list); i++ {
repo = GetRepository(r.Host, userName, list[i].Name())
repos = append(repos, repo)
}
WriteIndentedJSON(w, repos, "", " ")
}
func repoShowHandler(w http.ResponseWriter, r *http.Request) {
var errJSON Error
userName, repoName, _ := GetParamValues(r)
if ok := IsExistingRepository(RepoPath(userName, repoName)); !ok {
errJSON = Error{Message: "repository not found"}
WriteIndentedJSON(w, errJSON, "", " ")
return
}
repo := GetRepository(r.Host, userName, FormatRepoName(repoName))
WriteIndentedJSON(w, repo, "", " ")
}
func branchIndexHandler(w http.ResponseWriter, r *http.Request) {
var errJSON Error
userName, repoName, _ := GetParamValues(r)
if ok := IsExistingRepository(RepoPath(userName, repoName)); !ok {
errJSON = Error{Message: "repository not found"}
WriteIndentedJSON(w, errJSON, "", " ")
return
}
re, _ := git.OpenRepository(RepoPath(userName, repoName))
branches, _ := GetBranches(re)
WriteIndentedJSON(w, branches, "", " ")
}
func branchShowHandler(w http.ResponseWriter, r *http.Request) {
var errJSON Error
userName, repoName, branchName := GetParamValues(r)
if ok := IsExistingRepository(RepoPath(userName, repoName)); !ok {
errJSON = Error{Message: "repository not found"}
WriteIndentedJSON(w, errJSON, "", " ")
return
}
re, _ := git.OpenRepository(RepoPath(userName, repoName))
branch, ok := GetBranchByName(branchName, re)
if !ok {
errJSON = Error{Message: "branch not found"}
WriteIndentedJSON(w, errJSON, "", " ")
return
}
WriteIndentedJSON(w, branch, "", " ")
}