-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathweb.go
254 lines (219 loc) · 5.7 KB
/
web.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
package main
import (
"html/template"
"io/ioutil"
"log"
"net/http"
"sort"
"strings"
"time"
)
type WebInterface struct {
MediaStore *MediaStore
AlbumTemplate *template.Template
MediaTemplate *template.Template
IndexTemplate *template.Template
I18n I18n
}
type I18n struct {
SiteName string
Bio string
LastMedia string
AllAlbums string
}
func NewWebInterface(statikFS http.FileSystem) (*WebInterface, error) {
var err error
web := WebInterface{}
web.AlbumTemplate, err = getTemplate(statikFS, "/album.html.template", "album")
if err != nil {
return nil, err
}
web.MediaTemplate, err = getTemplate(statikFS, "/media.html.template", "media")
if err != nil {
return nil, err
}
web.IndexTemplate, err = getTemplate(statikFS, "/index.html.template", "index")
if err != nil {
return nil, err
}
return &web, nil
}
func slurpFile(statikFS http.FileSystem, filename string) (string, error) {
fd, err := statikFS.Open(filename)
if err != nil {
return "", err
}
defer fd.Close()
content, err := ioutil.ReadAll(fd)
if err != nil {
return "", err
}
return string(content), nil
}
func getTemplate(statikFS http.FileSystem, filename string, name string) (*template.Template, error) {
tmpl := template.New(name)
content, err := slurpFile(statikFS, filename)
if err != nil {
return nil, err
}
customFunctions := template.FuncMap{
"video": func(files []string) string {
for _, file := range files {
if strings.HasSuffix(file, ".mp4") {
return file
}
}
return ""
},
"photo": func(files []string) string {
for _, file := range files {
if strings.HasSuffix(file, ".jpeg") {
return file
}
}
return ""
},
"short": func(t time.Time) string {
return t.Format("2006-01")
},
}
return tmpl.Funcs(customFunctions).Parse(content)
}
func (web *WebInterface) handleFileNotFound(w http.ResponseWriter, r *http.Request) {
http.Error(w, "File not found", http.StatusNotFound)
}
func (web *WebInterface) handleError(w http.ResponseWriter, r *http.Request) {
http.Error(w, "Internal server error", http.StatusInternalServerError)
}
func (web *WebInterface) handleDisplayAlbum(w http.ResponseWriter, r *http.Request, albumName string) {
if albumName == "latest" {
albumName = ""
}
album, err := web.MediaStore.GetAlbum(albumName, false)
if err != nil {
log.Printf("MediaStore.GetAlbum: %s", err)
web.handleError(w, r)
return
}
err = web.AlbumTemplate.Execute(w, album)
if err != nil {
log.Printf("Template.Execute: %s", err)
web.handleError(w, r)
return
}
}
func (web *WebInterface) handleDisplayIndex(w http.ResponseWriter, r *http.Request) {
lastAlbum, err := web.MediaStore.GetAlbum("", false)
if err != nil {
log.Printf("MediaStore.GetAlbum(latest): %s", err)
web.handleError(w, r)
return
}
mediaCount := len(lastAlbum.Media)
if mediaCount >= 4 { // Max 4 media
mediaCount = 4
}
lastMedia := lastAlbum.Media[len(lastAlbum.Media)-mediaCount : len(lastAlbum.Media)]
albums, err := web.MediaStore.ListAlbums()
if err != nil {
log.Printf("MediaStore.ListAlbums: %s", err)
web.handleError(w, r)
return
}
sort.Sort(sort.Reverse(albums))
if len(albums) > 0 && albums[0].ID == "" {
// Latest album should be the first item. Replace it with the one retrieved above
// with metadata loaded.
albums[0] = *lastAlbum
}
err = web.IndexTemplate.Execute(w, struct {
I18n I18n
LastMedia []Media
Albums []Album
}{
web.I18n,
lastMedia,
albums,
})
if err != nil {
log.Printf("Template.Execute: %s", err)
web.handleError(w, r)
return
}
}
func (web *WebInterface) handleDisplayMedia(w http.ResponseWriter, r *http.Request, albumName string, mediaId string) {
if albumName == "latest" {
albumName = ""
}
media, err := web.MediaStore.GetMedia(albumName, mediaId)
if err != nil {
log.Printf("MediaStore.GetMedia: %s", err)
web.handleError(w, r)
return
}
if media == nil {
web.handleFileNotFound(w, r)
return
}
err = web.MediaTemplate.Execute(w, media)
if err != nil {
log.Printf("Template.Execute: %s", err)
web.handleError(w, r)
return
}
}
func (web *WebInterface) handleGetMedia(w http.ResponseWriter, r *http.Request, albumName string, mediaFilename string) {
if albumName == "latest" {
albumName = ""
}
fd, modtime, err := web.MediaStore.OpenFile(albumName, mediaFilename)
if err != nil {
log.Printf("MediaStore.OpenFile: %s", err)
web.handleError(w, r)
return
}
defer fd.Close()
http.ServeContent(w, r, mediaFilename, modtime, fd)
}
func (web *WebInterface) ServeHTTP(w http.ResponseWriter, r *http.Request) {
originalPath := r.URL.Path
var resource string
resource, r.URL.Path = ShiftPath(r.URL.Path)
if r.Method != "GET" {
http.Error(w, "Method not allowed", http.StatusMethodNotAllowed)
return
}
if resource == "album" {
var albumName, kind, media string
albumName, r.URL.Path = ShiftPath(r.URL.Path)
kind, r.URL.Path = ShiftPath(r.URL.Path)
media, r.URL.Path = ShiftPath(r.URL.Path)
if albumName != "" {
if kind == "" && media == "" {
if !strings.HasSuffix(originalPath, "/") {
http.Redirect(w, r, originalPath+"/", http.StatusMovedPermanently)
return
}
web.handleDisplayAlbum(w, r, albumName)
return
} else if kind == "raw" && media != "" {
web.handleGetMedia(w, r, albumName, media)
return
} else if kind == "media" && media != "" {
web.handleDisplayMedia(w, r, albumName, media)
return
}
} else {
if !strings.HasSuffix(originalPath, "/") {
http.Redirect(w, r, originalPath+"/", http.StatusMovedPermanently)
return
}
web.handleDisplayIndex(w, r)
return
}
} else if resource == "" {
http.Redirect(w, r, "/album/", http.StatusMovedPermanently)
return
}
web.handleFileNotFound(w, r)
}