-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.go
417 lines (329 loc) · 8.78 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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
package main
import (
"encoding/csv"
"fmt"
"html/template"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"path"
"sort"
"strconv"
"strings"
"sync"
"time"
"github.com/russross/blackfriday"
)
const portHttp = 8200
const fileSystemRoot = "/home/ubuntu/data/chezwatts.gallery/"
const contentRoot = fileSystemRoot + "content/"
const galleriesRoot = contentRoot + "galleries/"
const statsLogFilename = "stats_log.csv"
const statsFilename = "stats.csv"
const statsTemplateFilename = "stats.csv.tmpl"
var hitCountByPage = make(map[string]int)
var hitCountModifyLock = &sync.Mutex{}
func main() {
defer saveStats()
restoreStats()
httpMux := http.NewServeMux()
httpMux.HandleFunc("/favicon.ico", faviconHandler)
httpMux.HandleFunc("/", indexHandler)
httpMux.HandleFunc("/bio", bioHandler)
httpMux.HandleFunc("/gallery/", galleryHandler)
httpMux.HandleFunc("/stats", statsHandler)
httpMux.Handle("/galleries/", http.StripPrefix("/galleries/", http.FileServer(http.Dir(galleriesRoot))))
httpMux.Handle("/js/", http.StripPrefix("/js/", http.FileServer(http.Dir(fileSystemRoot+"js"))))
httpMux.Handle("/css/", http.StripPrefix("/css/", http.FileServer(http.Dir(fileSystemRoot+"css"))))
httpMux.Handle("/img/", http.StripPrefix("/img/", http.FileServer(http.Dir(fileSystemRoot+"img"))))
httpMux.HandleFunc("/stats-log", statsLogHandler)
go updateStatsLogDaily()
log.Fatal(http.ListenAndServe(":"+strconv.Itoa(portHttp), logAndDelegate(httpMux)))
}
func updateStatsLogDaily() {
c := time.Tick(24 * time.Hour)
for range c {
updateStatsLog()
}
}
func updateStatsLog() {
records := make([][]string, 0)
filename := fileSystemRoot + statsLogFilename
f, err := os.Open(filename)
if err != nil {
if os.IsNotExist(err) {
// if stats log file doesn't exist then
// records is minimal header row and no record rows
headerRow := []string{"Date"}
records = append(records, headerRow)
} else {
log.Fatal(err)
}
} else {
// if stats log file exists
defer f.Close()
// records = read stats log file
r := csv.NewReader(f)
records2, err := r.ReadAll()
if err != nil {
log.Fatal(err)
} else {
records = records2
}
}
// create new empty record with current date
headerRow := records[0]
numCols := len(headerRow)
newRecord := make([]string, numCols)
newRecord[0] = fmt.Sprint(time.Now().Date())
// for each gallery in stats
stats := getStatsPageViewModel()
for _, gallery := range stats.PageHitCounts {
columnIndex := indexOf(gallery.Page, headerRow)
// if not exists as a column in the log
if columnIndex < 0 {
// append name to header record
headerRow = append(headerRow, gallery.Page)
records[0] = headerRow
newRecord = append(newRecord, "0")
// append zero to each other record
for i := range records {
if i == 0 {
continue
}
records[i] = append(records[i], "0")
}
columnIndex = len(headerRow) - 1
}
// set correct field of the new record
newRecord[columnIndex] = fmt.Sprint(gallery.HitCount)
}
records = append(records, newRecord)
// overwrite file
f.Close()
f, err = os.Create(filename)
if err != nil {
log.Fatal(err)
}
defer f.Close()
writer := csv.NewWriter(f)
err = writer.WriteAll(records)
if err != nil {
log.Fatal(err)
}
}
func indexOf(word string, data []string) int {
for k, v := range data {
if word == v {
return k
}
}
return -1
}
func logAndDelegate(handler http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Println(r.Method, r.URL.Path, r.RemoteAddr, r.Referer(), r.UserAgent())
handler.ServeHTTP(w, r)
})
}
func saveStats() {
f, err := os.Create(fileSystemRoot + statsFilename)
if err != nil {
panic(err)
}
defer f.Close()
vm := getStatsPageViewModel()
ts := template.Must(template.ParseFiles(fileSystemRoot + statsTemplateFilename))
err = ts.Execute(f, vm)
if err != nil {
panic(err)
}
}
func restoreStats() {
f, err := os.Open(fileSystemRoot + statsFilename)
if err != nil {
panic(err)
}
r := csv.NewReader(f)
records, err := r.ReadAll()
if err != nil {
panic(err)
}
for _, row := range records {
page := row[0]
if page == "total" {
continue
}
count, err := strconv.Atoi(row[1])
if err != nil {
panic(err)
}
increaseHitCount(page, count)
}
}
func santitisePageName(page string) string {
return strings.Trim(page, "/")
}
type galleryViewModel struct {
Galleries []galleryLinkViewModel
Images []string
Blurb template.HTML
}
type indexViewModel struct {
Galleries []galleryLinkViewModel
About template.HTML
}
type bioViewModel struct {
Content template.HTML
}
type galleryLinkViewModel struct {
Name string
PreviewImage string
}
func faviconHandler(w http.ResponseWriter, r *http.Request) {
http.NotFound(w, r)
}
func statsLogHandler(w http.ResponseWriter, r *http.Request) {
hitCountModifyLock.Lock()
defer hitCountModifyLock.Unlock()
http.ServeFile(w, r, fileSystemRoot+statsLogFilename)
}
func galleryHandler(w http.ResponseWriter, r *http.Request) {
gallery, err := url.QueryUnescape(r.RequestURI[9:])
if err != nil {
log.Println(err)
http.Redirect(w, r, "/", http.StatusFound)
return
}
exists := getGalleryExists(gallery)
if !exists {
log.Println("Invalid request ignored.")
http.Redirect(w, r, "/", http.StatusFound)
return
}
increaseHitCount(gallery, 1)
g := galleryViewModel{
Galleries: getGalleries(),
Images: getImages(gallery),
Blurb: getGalleryBlurb(gallery),
}
renderTemplate("gallery", g, w)
}
func getGalleryBlurb(gallery string) template.HTML {
filename := fmt.Sprintf(galleriesRoot+"%v/blurb.markdown", gallery)
return getBlurb(filename)
}
func getBlurb(filename string) template.HTML {
markdown, err := ioutil.ReadFile(filename)
if err != nil {
log.Println(err)
return ""
}
html := template.HTML(blackfriday.MarkdownCommon(markdown))
return html
}
func indexHandler(w http.ResponseWriter, r *http.Request) {
increaseHitCount("index", 1)
vm := indexViewModel{
Galleries: getGalleries(),
About: getBlurb(contentRoot + "about.markdown"),
}
renderTemplate("index", vm, w)
}
func bioHandler(w http.ResponseWriter, r *http.Request) {
increaseHitCount("bio", 1)
vm := bioViewModel{
Content: getBlurb(contentRoot + "bio.markdown"),
}
renderTemplate("bio", vm, w)
}
func statsHandler(w http.ResponseWriter, r *http.Request) {
vm := getStatsPageViewModel()
renderTemplate("stats", vm, w)
}
func getGalleryExists(gallery string) bool {
dir := path.Join(galleriesRoot, gallery)
_, err := os.Stat(dir)
return !os.IsNotExist(err)
}
func getGalleries() []galleryLinkViewModel {
result := make([]galleryLinkViewModel, 0)
infos, err := ioutil.ReadDir(galleriesRoot)
if err != nil {
log.Println(err)
return result
}
for _, info := range infos {
if info.IsDir() {
galleryLinkViewModel := galleryLinkViewModel{
Name: info.Name(),
PreviewImage: "/galleries/" + info.Name() + "/preview.jpg",
}
result = append(result, galleryLinkViewModel)
}
}
return result
}
func getImages(gallery string) []string {
result := make([]string, 0)
dir := path.Join(galleriesRoot, gallery)
infos, err := ioutil.ReadDir(dir)
if err != nil {
log.Println(err)
return result
}
for _, info := range infos {
if path.Base(info.Name()) != "preview.jpg" && path.Ext(info.Name()) == ".jpg" || path.Ext(info.Name()) == ".JPG" {
result = append(result, fmt.Sprintf("/galleries/%v/%v", gallery, info.Name()))
}
}
return result
}
func renderTemplate(tmpl string, model interface{}, w http.ResponseWriter) {
templateFiles := []string{
fileSystemRoot + "page.html",
fileSystemRoot + tmpl + ".html",
}
ts := template.Must(template.ParseFiles(templateFiles...))
err := ts.ExecuteTemplate(w, "page.html", model)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}
type pageHitCountViewModel struct {
Page string
HitCount int
}
type statsPageViewModel struct {
PageHitCounts []pageHitCountViewModel
}
func increaseHitCount(page string, amount int) {
hitCountModifyLock.Lock()
defer saveStats()
defer hitCountModifyLock.Unlock()
page = santitisePageName(page)
hitCountByPage[page] += amount
hitCountByPage["total"] += amount
}
func getStatsPageViewModel() statsPageViewModel {
hitCountModifyLock.Lock()
defer hitCountModifyLock.Unlock()
result := make([]pageHitCountViewModel, 0)
for page, hitCount := range hitCountByPage {
pageHitCount := pageHitCountViewModel{
Page: page,
HitCount: hitCount,
}
result = append(result, pageHitCount)
}
sort.Sort(ByHits(result))
return statsPageViewModel{
PageHitCounts: result,
}
}
type ByHits []pageHitCountViewModel
func (a ByHits) Len() int { return len(a) }
func (a ByHits) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a ByHits) Less(i, j int) bool { return a[i].HitCount > a[j].HitCount }