-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.go
217 lines (177 loc) · 5.64 KB
/
server.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package main
import (
"context"
"encoding/json"
"fmt"
"net/http"
"path"
"strings"
"time"
"github.com/gorilla/mux"
neturl "net/url"
)
// internalPagesPrefix is a prefix that is reserved (cannot be used as a
// shortened URL name) for the pages and method of the shortener itself.
const internalPagesPrefix = "_"
type Clock interface {
Now() time.Time
}
type server struct {
// ShortURLPrefix is an optional prefix to return even shorter URLs than
// using the request's hostname and path.
ShortURLPrefix string
DB database
// SuperUser is a set of user IDs that are considered as owner of any short
// links.
SuperUser map[string]bool
Clock Clock
}
// illegalChars is a string containing all characters that are illegal in short
// URL names. They are illegal because they have a special meaning when using
// the short URL link.
const illegalChars = "/?#"
func (s server) Save(response http.ResponseWriter, request *http.Request) {
decoder := json.NewDecoder(request.Body)
var data namedURL
if err := decoder.Decode(&data); err != nil {
http.Error(response, `{"error":"Unable to parse json"}`, http.StatusBadRequest)
return
}
if data.Name == "" {
http.Error(response, `{"error":"Missing name"}`, http.StatusBadRequest)
return
}
if data.Name == internalPagesPrefix {
reply := map[string]string{"error": fmt.Sprintf("Name (%q) is reserved for the shortener use", internalPagesPrefix)}
if jsonData, ok := marshalJson(response, reply); ok {
http.Error(response, string(jsonData), http.StatusBadRequest)
}
return
}
if strings.ContainsAny(data.Name, illegalChars) {
if jsonData, ok := marshalJson(response, map[string]string{"error": fmt.Sprintf("Name (%q) contains an illegal character: %q", data.Name, illegalChars)}); ok {
http.Error(response, string(jsonData), http.StatusBadRequest)
}
return
}
if data.URL == "" {
if jsonData, ok := marshalJson(response, map[string]string{"error": fmt.Sprintf("Missing URL for %q", data.Name)}); ok {
http.Error(response, string(jsonData), http.StatusBadRequest)
}
return
}
if _, err := neturl.Parse(data.URL); err != nil {
if jsonData, ok := marshalJson(response, map[string]string{"error": fmt.Sprintf("Not a valid URL: %q.", data.URL)}); ok {
http.Error(response, string(jsonData), http.StatusBadRequest)
}
return
}
if user := userFrom(request); user != "" {
data.Owners = []string{user}
}
if err := s.DB.SaveURL(context.TODO(), data.Name, data.URL, data.Owners, data.ShouldExpandDates); err != nil {
if jsonData, ok := marshalJson(response, map[string]string{"error": err.Error()}); ok {
http.Error(response, string(jsonData), http.StatusInternalServerError)
}
return
}
resp := map[string]string{"name": data.Name}
if s.ShortURLPrefix != "" {
resp["url"] = s.ShortURLPrefix
}
if jsonData, ok := marshalJson(response, resp); ok {
response.Write(jsonData)
}
}
func (s server) Load(response http.ResponseWriter, request *http.Request) {
name := mux.Vars(request)["name"]
loaded, err := s.DB.LoadURL(context.TODO(), name)
if err != nil {
if _, ok := err.(NotFoundError); ok {
q := neturl.Values{}
q.Add("name", name)
q.Add("error", "No such URL yet. Feel free to add one.")
http.Redirect(response, request, "/#/?"+q.Encode(), http.StatusFound)
return
}
if jsonData, ok := marshalJson(response, map[string]string{"error": err.Error()}); ok {
http.Error(response, string(jsonData), http.StatusInternalServerError)
}
return
}
url := loaded.URL
statusCode := http.StatusMovedPermanently
if loaded.ShouldExpandDates {
url = s.Clock.Now().Format(url)
statusCode = http.StatusFound
}
var u *neturl.URL
if u, err = neturl.Parse(url); err != nil {
http.Redirect(response, request, url, statusCode)
return
}
var tinkered bool
if folder := mux.Vars(request)["folder"]; folder != "" {
u.Path = path.Join(u.Path, folder)
tinkered = true
}
if q := request.URL.RawQuery; q != "" && u.RawQuery == "" {
u.RawQuery = q
tinkered = true
}
if tinkered {
url = u.String()
}
http.Redirect(response, request, url, statusCode)
}
func (s server) List(response http.ResponseWriter, request *http.Request) {
urls, err := s.DB.ListURLs(context.TODO())
if err != nil {
if jsonData, ok := marshalJson(response, map[string]string{"error": err.Error()}); ok {
http.Error(response, string(jsonData), http.StatusInternalServerError)
}
return
}
if len(urls) == 0 {
urls = []namedURL{}
}
result := map[string]interface{}{"urls": urls}
if user := userFrom(request); user != "" {
result["user"] = user
if s.SuperUser != nil && s.SuperUser[user] {
result["superUser"] = true
}
}
if jsonData, ok := marshalJson(response, result); ok {
response.Write(jsonData)
}
}
func (s server) Delete(response http.ResponseWriter, request *http.Request) {
user := userFrom(request)
if user == "" {
http.Error(response, `{"error":"Request with no user"}`, http.StatusUnauthorized)
return
}
if s.SuperUser != nil && s.SuperUser[user] {
user = ""
}
name := mux.Vars(request)["name"]
if err := s.DB.DeleteURL(context.TODO(), name, user); err != nil {
if jsonData, ok := marshalJson(response, map[string]string{"error": err.Error()}); ok {
http.Error(response, string(jsonData), http.StatusInternalServerError)
return
}
}
response.Write([]byte(`{"success":true}`))
}
func marshalJson(response http.ResponseWriter, reply interface{}) ([]byte, bool) {
jsonData, err := json.Marshal(reply)
if err != nil {
http.Error(response, `{"error":"Unable to encode json"}`, http.StatusInternalServerError)
return nil, false
}
return jsonData, true
}
func userFrom(request *http.Request) string {
return request.Header.Get("X-Forwarded-User")
}