-
Notifications
You must be signed in to change notification settings - Fork 55
/
responseData.go
398 lines (340 loc) · 8.66 KB
/
responseData.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
package serverHandler
import (
"../i18n"
"../util"
"html/template"
"net/http"
"os"
"path"
"strings"
)
type pathEntry struct {
Name string `json:"name"`
Path string `json:"path"`
}
type itemHtml struct {
Type template.HTML
Url string
DisplayName template.HTML
DisplaySize template.HTML
DisplayTime template.HTML
DeleteUrl string
}
type responseData struct {
rawReqPath string
handlerReqPath string
errors []error
Status int
IsRoot bool
Path string
Paths []*pathEntry
RootRelPath string
File *os.File
Item os.FileInfo
ItemName string
SubItems []os.FileInfo
AliasSubItems []os.FileInfo
SubItemsHtml []*itemHtml
SubItemPrefix string
SortState SortState
Context *pathContext
CanUpload bool
CanMkdir bool
CanDelete bool
HasDeletable bool
CanArchive bool
CanCors bool
NeedAuth bool
AuthUserName string
IsDownload bool
IsUpload bool
IsMkdir bool
IsDelete bool
IsMutate bool
WantJson bool
Lang string
Trans *i18n.Translation
}
func isSlash(c rune) bool {
return c == '/'
}
func getPathEntries(path string, tailSlash bool) []*pathEntry {
paths := []string{"/"}
paths = append(paths, strings.FieldsFunc(path, isSlash)...)
displayPathsCount := len(paths)
pathsCount := displayPathsCount
if !tailSlash {
pathsCount--
}
pathEntries := make([]*pathEntry, displayPathsCount)
for i := 0; i < displayPathsCount; i++ {
var rPath string
switch {
case i < pathsCount-1:
rPath = strings.Repeat("../", pathsCount-1-i)
case i == pathsCount-1:
rPath = "./"
default:
rPath = "./" + strings.Join(paths[pathsCount:], "/") + "/"
}
pathEntries[i] = &pathEntry{
Name: paths[i],
Path: rPath,
}
}
return pathEntries
}
func stat(reqFsPath string, visitFs bool) (file *os.File, item os.FileInfo, err error) {
if !visitFs {
return
}
file, err = os.Open(reqFsPath)
if err != nil {
return
}
item, err = file.Stat()
if err != nil {
return
}
return
}
func readdir(file *os.File, item os.FileInfo, visitFs bool) (subItems []os.FileInfo, err error) {
if !visitFs || file == nil || item == nil || !item.IsDir() {
return
}
return file.Readdir(0)
}
func (h *handler) mergeAlias(
rawRequestPath string,
item os.FileInfo,
subItems []os.FileInfo,
) (mergedSubItems, aliasSubItems []os.FileInfo, errs []error) {
errs = []error{}
if (item != nil && !item.IsDir()) || len(h.aliases) == 0 {
return subItems, nil, errs
}
for _, alias := range h.aliases {
subName, isChildAlias, ok := getAliasSubPart(alias, rawRequestPath)
if !ok {
continue
}
aliasCaseSensitive := alias.caseSensitive()
var fsItem os.FileInfo
if isChildAlias { // reached second-deepest path of alias
var err error
fsItem, err = os.Stat(alias.fsPath())
if err != nil {
errs = append(errs, err)
}
}
matchExisted := false
for i, subItem := range subItems {
if !alias.namesEqual(subItem.Name(), subName) {
continue
}
matchExisted = true
if isVirtual(subItem) {
continue
}
var baseItem os.FileInfo
if fsItem != nil {
baseItem = fsItem
} else {
baseItem = subItem
}
aliasSubItem := createVirtualFileInfo(subItem.Name(), baseItem, aliasCaseSensitive)
aliasSubItems = append(aliasSubItems, aliasSubItem)
subItems[i] = aliasSubItem
if aliasCaseSensitive {
break
}
}
if !matchExisted {
// fsItem could be nil
aliasSubItem := createVirtualFileInfo(subName, fsItem, aliasCaseSensitive)
aliasSubItems = append(aliasSubItems, aliasSubItem)
subItems = append(subItems, aliasSubItem)
}
}
return subItems, aliasSubItems, errs
}
func getSubItemPrefix(rawRequestPath string, tailSlash bool) string {
if tailSlash {
return "./"
} else {
return "./" + path.Base(rawRequestPath) + "/"
}
}
func getItemName(info os.FileInfo, r *http.Request) (itemName string) {
if info != nil {
itemName = info.Name()
}
if len(itemName) == 0 || itemName == "." || itemName == "/" {
itemName = strings.Replace(r.Host, ":", "_", -1)
}
return
}
func getStatusByErr(err error) int {
switch {
case os.IsPermission(err):
return http.StatusForbidden
case os.IsNotExist(err):
return http.StatusNotFound
case err != nil:
return http.StatusInternalServerError
default:
return http.StatusOK
}
}
func (h *handler) stateIndexFile(rawReqPath, baseDir string, baseItem os.FileInfo) (file *os.File, item os.FileInfo, err error) {
if len(h.dirIndexes) == 0 {
return
}
for _, index := range h.dirIndexes {
for _, alias := range h.aliases {
if !alias.isMatch(path.Clean(rawReqPath + "/" + index)) {
continue
}
file, item, err = stat(alias.fsPath(), true)
if err != nil && file != nil {
file.Close()
}
if err != nil && os.IsNotExist(err) {
continue
} else {
return
}
}
}
if baseItem == nil || !baseItem.IsDir() || h.emptyRoot {
return
}
for _, index := range h.dirIndexes {
file, item, err = stat(path.Clean(baseDir+"/"+index), true)
if err != nil && file != nil {
file.Close()
}
if err != nil && os.IsNotExist(err) {
continue
} else {
return
}
}
return nil, nil, nil
}
func (h *handler) getResponseData(r *http.Request) *responseData {
requestUri := r.URL.Path
tailSlash := requestUri[len(requestUri)-1] == '/'
rawReqPath := util.CleanUrlPath(requestUri)
reqPath := util.CleanUrlPath(rawReqPath[len(h.urlPrefix):]) // strip url prefix path
errs := []error{}
status := http.StatusOK
isRoot := rawReqPath == "/"
rawQuery := r.URL.RawQuery
pathEntries := getPathEntries(rawReqPath, tailSlash)
var rootRelPath string
if len(pathEntries) > 0 {
rootRelPath = pathEntries[0].Path
} else {
rootRelPath = "./"
}
reqFsPath, _ := util.NormalizeFsPath(h.root + reqPath)
file, item, _statErr := stat(reqFsPath, !h.emptyRoot)
if _statErr != nil {
errs = append(errs, _statErr)
status = getStatusByErr(_statErr)
}
indexFile, indexItem, _statIdxErr := h.stateIndexFile(rawReqPath, reqFsPath, item)
if _statIdxErr != nil {
errs = append(errs, _statIdxErr)
status = getStatusByErr(_statIdxErr)
} else if indexFile != nil {
if indexItem != nil {
file.Close()
file = indexFile
item = indexItem
} else {
indexFile.Close()
}
}
itemName := getItemName(item, r)
subItems, _readdirErr := readdir(file, item, needResponseBody(r.Method))
if _readdirErr != nil {
errs = append(errs, _readdirErr)
status = http.StatusInternalServerError
}
subItems, aliasSubItems, _mergeErrs := h.mergeAlias(rawReqPath, item, subItems)
if len(_mergeErrs) > 0 {
errs = append(errs, _mergeErrs...)
status = http.StatusInternalServerError
}
subItems = h.FilterItems(subItems)
rawSortBy, sortState := sortInfos(subItems, rawQuery, h.defaultSort)
if h.emptyRoot && status == http.StatusOK && r.RequestURI != "/" {
status = http.StatusNotFound
}
subItemPrefix := getSubItemPrefix(rawReqPath, tailSlash)
canUpload := h.getCanUpload(item, rawReqPath, reqFsPath)
canMkdir := h.getCanMkdir(item, rawReqPath, reqFsPath)
canDelete := h.getCanDelete(item, rawReqPath, reqFsPath)
hasDeletable := canDelete && len(subItems) > len(aliasSubItems)
canArchive := h.getCanArchive(subItems, rawReqPath, reqFsPath)
canCors := h.getCanCors(rawReqPath, reqFsPath)
needAuth := h.getNeedAuth(rawReqPath, reqFsPath)
isDownload := false
isUpload := false
isMkdir := false
isDelete := false
isMutate := false
switch {
case strings.HasPrefix(rawQuery, "download"):
isDownload = true
case strings.HasPrefix(rawQuery, "upload") && r.Method == http.MethodPost:
isUpload = true
isMutate = true
case strings.HasPrefix(rawQuery, "mkdir"):
isMkdir = true
isMutate = true
case strings.HasPrefix(r.URL.RawQuery, "delete"):
isDelete = true
isMutate = true
}
wantJson := strings.HasPrefix(rawQuery, "json") || strings.Contains(rawQuery, "&json")
context := &pathContext{
download: isDownload,
sort: rawSortBy,
defaultSort: h.defaultSort,
}
return &responseData{
rawReqPath: rawReqPath,
handlerReqPath: reqPath,
errors: errs,
Status: status,
IsRoot: isRoot,
Path: rawReqPath,
Paths: pathEntries,
RootRelPath: rootRelPath,
File: file,
Item: item,
ItemName: itemName,
SubItems: subItems,
AliasSubItems: aliasSubItems,
SubItemsHtml: nil,
SubItemPrefix: subItemPrefix,
SortState: sortState,
Context: context,
CanUpload: canUpload,
CanMkdir: canMkdir,
CanDelete: canDelete,
HasDeletable: hasDeletable,
CanArchive: canArchive,
CanCors: canCors,
NeedAuth: needAuth,
IsDownload: isDownload,
IsUpload: isUpload,
IsMkdir: isMkdir,
IsDelete: isDelete,
IsMutate: isMutate,
WantJson: wantJson,
}
}