-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathhandlers.go
176 lines (162 loc) · 3.29 KB
/
handlers.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package main
import (
"encoding/json"
"fmt"
"math/rand"
"net/http"
"strconv"
)
// This always returns the owner id as one of [1, 5] as the bootstrapping code only
// populates the users table with these records and since we have foreign key relationships
// the package owner must be one of those
func getOwnerId() int {
return rand.Intn(4) + 1
}
func packageRegHandler(
w http.ResponseWriter,
r *http.Request,
config appConfig,
) {
d := pkgRegisterResponse{}
err := r.ParseMultipartForm(5000)
if err != nil {
http.Error(
w,
err.Error(),
http.StatusBadRequest,
)
return
}
mForm := r.MultipartForm
fHeader := mForm.File["filedata"][0]
packageName := mForm.Value["name"][0]
packageVersion := mForm.Value["version"][0]
packageOwner := getOwnerId()
q := pkgQueryParams{
ownerId: packageOwner,
version: packageVersion,
name: packageName,
}
pkgResults, err := queryDb(
config, q,
)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if len(pkgResults) != 0 {
http.Error(w, "Package version for the owner exists", http.StatusBadRequest)
return
}
d.ID = fmt.Sprintf(
"%d/%s-%s-%s",
packageOwner,
packageName,
packageVersion,
fHeader.Filename,
)
nBytes, err := uploadData(config, d.ID, fHeader)
if err != nil {
http.Error(
w,
err.Error(),
http.StatusInternalServerError,
)
return
}
err = updateDb(
config,
pkgRow{
OwnerId: packageOwner,
Name: packageName,
Version: packageVersion,
ObjectStoreId: d.ID,
},
)
if err != nil {
http.Error(
w,
err.Error(),
http.StatusInternalServerError,
)
return
}
config.logger.Printf(
"Package uploaded: %s. Bytes written: %d\n",
d.ID,
nBytes,
)
jsonData, err := json.Marshal(d)
if err != nil {
http.Error(
w,
err.Error(),
http.StatusInternalServerError,
)
return
}
w.Header().Set("Content-Type", "application/json")
fmt.Fprint(w, string(jsonData))
}
func packageGetHandler(w http.ResponseWriter, r *http.Request, config appConfig) {
queryParams := r.URL.Query()
owner := queryParams.Get("owner_id")
name := queryParams.Get("name")
version := queryParams.Get("version")
if len(owner) == 0 || len(name) == 0 || len(version) == 0 {
http.Error(
w,
"Must specify package owner, name and version",
http.StatusBadRequest,
)
return
}
ownerId, err := strconv.Atoi(owner)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
q := pkgQueryParams{
ownerId: ownerId,
version: version,
name: name,
}
pkgResults, err := queryDb(
config, q,
)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if len(pkgResults) == 0 {
http.Error(w, "No package found", http.StatusNotFound)
return
}
url, err := config.packageBucket.SignedURL(
r.Context(),
pkgResults[0].ObjectStoreId,
nil,
)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
http.Redirect(w, r, url, http.StatusTemporaryRedirect)
}
func packageHandler(
w http.ResponseWriter,
r *http.Request,
config appConfig,
) {
switch r.Method {
case "POST":
packageRegHandler(w, r, config)
case "GET":
packageGetHandler(w, r, config)
default:
http.Error(w,
"Cannot process request",
http.StatusMethodNotAllowed,
)
}
}