-
Notifications
You must be signed in to change notification settings - Fork 44
/
file.go
497 lines (413 loc) · 12.9 KB
/
file.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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
// Copyright 2013 Chris McGee <[email protected]>. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"encoding/json"
"errors"
"io"
"net/http"
"os"
"path/filepath"
"strconv"
"strings"
)
type FileDetails struct {
ETag string
Id string
Name string
Location string
Directory bool
LocalTimeStamp int64
Parents []FileDetails
Attributes map[string]bool
ChildrenLocation string
Children interface{} `json:",omitempty"`
ImportLocation string
Git *GitMeta
}
type GitMeta struct {
CloneLocation string
CommitLocation string
ConfigLocation string
DefaultRemoteBranchLocation string
DiffLocation string
HeadLocation string
IndexLocation string
RemoteLocation string
StatusLocation string
TagLocation string
}
func fileHandler(writer http.ResponseWriter, req *http.Request, path string, pathSegs []string) bool {
switch {
case req.Method == "POST" && len(pathSegs) > 1:
fileRelPath := "/" + strings.Join(pathSegs[1:], "/")
filePath := ""
// Find a match in reverse GOPATH order
for _, srcDir := range srcDirs {
p := srcDir + fileRelPath
_, err := os.Stat(p)
if err == nil {
filePath = p
break
}
}
if filePath == "" {
ShowError(writer, 400, "Parent doesn't exist. The entry could be in the GOROOT and not on the GOPATH.", nil)
return true
}
details := make(map[string]string)
dec := json.NewDecoder(req.Body)
err := dec.Decode(&details)
if err != nil {
ShowError(writer, 400, "Invalid input", err)
return true
}
newName := details["Name"]
createOptions := req.Header.Get("X-Create-Options")
// This is a move
if strings.Contains(createOptions, "move") {
oldPathSegs := strings.Split(details["Location"], "/")
// Two path segments are stripped off of the beginning (one for / and the other for "file")
oldRelPath := strings.Join(oldPathSegs[2:], "/")
oldPath := ""
// Find a match in reverse GOPATH order
for _, srcDir := range srcDirs {
p := filepath.Join(srcDir, oldRelPath)
_, err := os.Stat(p)
if err == nil {
oldPath = p
break
}
}
if oldPath == "" {
ShowError(writer, 400, "Original doesn't exist", nil)
return true
}
// Delete the destination if we don't have the no overwrite flag
if !strings.Contains(createOptions, "no-overwrite") {
err := os.RemoveAll(filePath + "/" + newName)
if err != nil {
ShowError(writer, 500, "Error overwriting file", err)
return true
}
}
err := os.Rename(oldPath, filePath+"/"+newName)
if err != nil {
ShowError(writer, 500, "Error moving file", err)
return true
}
} else if strings.Contains(createOptions, "copy") {
oldPathSegs := strings.Split(details["Location"], "/")
// Two path segments are stripped off of the beginning (one for / and the other for "file")
oldRelPath := strings.Join(oldPathSegs[2:], "/")
oldPath := ""
// Find a match in reverse GOPATH order
for _, srcDir := range srcDirs {
p := filepath.Join(srcDir, oldRelPath)
_, err := os.Stat(p)
if err == nil {
oldPath = p
break
}
}
if oldPath == "" {
ShowError(writer, 400, "Original not found so nothing copied", nil)
return true
}
overwrite := !strings.Contains(createOptions, "no-overwrite")
err = filepath.Walk(oldPath, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
destRelPath, _ := filepath.Rel(oldPath, path)
destPath := filepath.Join(filePath, newName, destRelPath)
if !overwrite {
_, statErr := os.Stat(destPath)
if statErr == nil {
// Already exists, return error
return errors.New("File exists, can't overwrite")
}
}
if info.IsDir() {
err = os.Mkdir(destPath, info.Mode())
if err != nil && overwrite {
err = nil
}
} else {
sourceFile, err := os.Open(path)
if err != nil {
return err
}
defer sourceFile.Close()
destFile, err := os.Create(destPath)
if err != nil {
return err
}
defer destFile.Close()
_, err = io.Copy(destFile, sourceFile)
}
return err
})
if err != nil {
ShowError(writer, 500, "Error copying project", err)
return true
}
} else if details["Directory"] == "true" {
err = os.Mkdir(filePath+"/"+newName, 0700)
if err != nil {
ShowError(writer, 500, "Error creating directory", err)
return true
}
} else {
file, err := os.Create(filePath + "/" + newName)
if err != nil {
ShowError(writer, 500, "Error creating file", err)
return true
}
file.Close()
}
// In any case we return the information about this new file or folder
fileinfo, err := os.Stat(filepath.Join(filePath, newName))
if err != nil {
ShowError(writer, 500, "Error stating new file", err)
return true
}
info := FileDetails{}
info.Name = fileinfo.Name()
info.Id = fileinfo.Name()
info.Location = "/file" + fileRelPath + "/" + newName
info.Directory = fileinfo.IsDir()
// Provide a location to import into a directory
if info.Directory {
info.ImportLocation = "/xfer" + info.Location
}
info.LocalTimeStamp = fileinfo.ModTime().Unix() * 1000
info.ETag = strconv.FormatInt(fileinfo.ModTime().Unix(), 16)
info.Parents = []FileDetails{} // TODO Calculate parent and put the object in here
info.Attributes = make(map[string]bool)
info.Attributes["ReadOnly"] = false
info.Attributes["Executable"] = (fileinfo.Mode()&os.ModePerm)&0111 != 0
// Symlink check
fileinfo, err = os.Lstat(filePath)
if err != nil {
ShowError(writer, 500, "Error accessing file", err)
return true
}
info.Attributes["SymbolicLink"] = (fileinfo.Mode() & os.ModeSymlink) != 0
info.ChildrenLocation = info.Location + "?depth=1"
ShowJson(writer, 201, info)
return true
case req.Method == "DELETE" && len(pathSegs) > 1:
fileRelPath := "/" + strings.Join(pathSegs[1:], "/")
filePath := ""
for _, srcDir := range srcDirs {
p := srcDir + fileRelPath
_, err := os.Stat(p)
if err == nil {
filePath = p
break
}
}
if filePath == "" {
writer.WriteHeader(204)
return true
}
err := os.RemoveAll(filePath)
if err != nil {
ShowError(writer, 500, "Unable to remove file", err)
return true
}
writer.WriteHeader(204)
return true
case req.Method == "PUT" && len(pathSegs) > 1:
fileRelPath := "/" + strings.Join(pathSegs[1:], "/")
filePath := ""
for _, srcDir := range srcDirs {
p := srcDir + fileRelPath
_, err := os.Stat(p)
if err == nil {
filePath = p
break
}
}
if filePath == "" {
writer.WriteHeader(404)
return true
}
file, err := os.Create(filePath)
if err != nil {
ShowError(writer, 500, "Error writing to file", err)
return true
}
_, err = io.Copy(file, req.Body)
if err != nil {
ShowError(writer, 500, "Error writing to file", err)
return true
}
file.Close()
fileinfo, err := os.Stat(filePath)
if err != nil {
ShowError(writer, 500, "Error accessing file", err)
return true
}
info := FileDetails{}
info.Name = fileinfo.Name()
info.Id = fileinfo.Name()
info.Location = "/file" + fileRelPath
info.Directory = fileinfo.IsDir()
// Provide a location to import into a directory
if info.Directory {
info.ImportLocation = "/xfer" + info.Location
}
info.LocalTimeStamp = fileinfo.ModTime().Unix() * 1000
info.ETag = strconv.FormatInt(fileinfo.ModTime().Unix(), 16)
info.Parents = []FileDetails{} // TODO Calculate parent and put the object in here
info.Attributes = make(map[string]bool)
info.Attributes["ReadOnly"] = false
info.Attributes["Executable"] = (fileinfo.Mode()&os.ModePerm)&0111 != 0
// Symlink check
fileinfo, err = os.Lstat(filePath)
if err != nil {
ShowError(writer, 500, "Error accessing file", err)
return true
}
info.Attributes["SymbolicLink"] = (fileinfo.Mode() & os.ModeSymlink) != 0
info.ChildrenLocation = "/file" + fileRelPath + "?depth=1"
ShowJson(writer, 200, info)
return true
case req.Method == "GET" && len(pathSegs) > 1:
fileRelPath := "/" + strings.Join(pathSegs[1:], "/")
filePath := ""
var err error
var fileinfo os.FileInfo
for _, srcDir := range srcDirs {
p := srcDir + fileRelPath
fileinfo, err = os.Stat(p)
if err == nil {
filePath = p
break
}
}
isgoroot := false
if filePath == "" && len(pathSegs) >= 2 && pathSegs[1] == "GOROOT" {
// Try again with the GOROOT
filesDir := filepath.Join(goroot, "/src/pkg")
fileRelPath := "/" + strings.Join(pathSegs[2:], "/")
filePath = filesDir + fileRelPath
isgoroot = true
fileinfo, err = os.Stat(filePath)
if err != nil {
writer.WriteHeader(404)
return true
}
} else if filePath == "" {
writer.WriteHeader(404)
return true
}
parts := req.URL.Query().Get("parts")
if parts != "meta" && !fileinfo.IsDir() {
file, err := os.Open(filePath)
if err != nil {
ShowError(writer, 400, "Unable to open file", err)
return true
}
writer.WriteHeader(200)
_, err = io.Copy(writer, file)
if err != nil {
panic(err)
}
return true
}
info := FileDetails{}
info.Name = fileinfo.Name()
info.Id = fileinfo.Name()
info.Location = "/file" + fileRelPath
info.Directory = fileinfo.IsDir()
info.ETag = strconv.FormatInt(fileinfo.ModTime().Unix(), 16)
info.LocalTimeStamp = fileinfo.ModTime().Unix() * 1000
// Provide a location to import into a directory
if info.Directory {
info.ImportLocation = "/xfer" + info.Location
}
parentPathSegs := pathSegs[:len(pathSegs)-1]
info.Parents = make([]FileDetails, len(pathSegs)-2, len(pathSegs)-2)
idx := 0
for len(parentPathSegs) > 1 {
parentInfo := FileDetails{}
parentInfo.Name = parentPathSegs[len(parentPathSegs)-1]
parentInfo.Id = parentPathSegs[len(parentPathSegs)-1]
parentInfo.Location = "/" + strings.Join(parentPathSegs, "/")
parentInfo.ChildrenLocation = parentInfo.Location + "?depth=1"
parentInfo.Directory = true
info.Parents[idx] = parentInfo
idx++
parentPathSegs = parentPathSegs[:len(parentPathSegs)-1]
}
info.Attributes = make(map[string]bool)
info.Attributes["ReadOnly"] = isgoroot
info.Attributes["Executable"] = (fileinfo.Mode()&os.ModePerm)&0111 != 0
// Symlink check
fileinfo, err = os.Lstat(filePath)
if err != nil {
ShowError(writer, 500, "Error accessing file", err)
return true
}
info.Attributes["SymbolicLink"] = (fileinfo.Mode() & os.ModeSymlink) != 0
info.ChildrenLocation = "/file" + fileRelPath + "?depth=1"
_, err = os.Stat(filePath + "/.git")
if err == nil {
// TODO handle more complicated branches and setup
info.Git = &GitMeta{}
info.Git.CloneLocation = "/gitapi/clone" + info.Location
info.Git.CommitLocation = "/gitapi/commit/master" + info.Location
info.Git.ConfigLocation = "/gitapi/config/clone" + info.Location
info.Git.DefaultRemoteBranchLocation = "/gitapi/remote/origin/master" + info.Location
info.Git.DiffLocation = "/gitapi/diff/Default" + info.Location
info.Git.HeadLocation = "/gitapi/commit/HEAD" + info.Location
info.Git.IndexLocation = "/gitapi/index" + info.Location
info.Git.RemoteLocation = "/gitapi/remote" + info.Location
info.Git.StatusLocation = "/gitapi/status" + info.Location
info.Git.TagLocation = "/gitapi/tag" + info.Location
}
// TODO handle depths larger than 1
if info.Directory /*&& strings.HasPrefix(req.URL.RawQuery, "depth" )*/ {
dir, _ := os.Open(filePath)
childNames, err := dir.Readdirnames(-1)
if err == nil {
children := make([]FileDetails, len(childNames), len(childNames))
for idx, childName := range childNames {
fi, err := os.Stat(filepath.Join(filePath, childName))
if err != nil {
continue
}
childInfo := FileDetails{}
childInfo.Name = fi.Name()
childInfo.Id = fi.Name()
childInfo.Location = "/file" + fileRelPath + "/" + fi.Name()
childInfo.Directory = fi.IsDir()
childInfo.LocalTimeStamp = fi.ModTime().Unix() * 1000
childInfo.Parents = []FileDetails{}
childInfo.Attributes = make(map[string]bool)
childInfo.Attributes["ReadOnly"] = isgoroot
childInfo.Attributes["Executable"] = (fi.Mode()&os.ModePerm)&0111 != 0
childInfo.ChildrenLocation = "/file" + fileRelPath + "/" + fi.Name() + "?depth=1"
// Provide a location to import into a directory
if childInfo.Directory {
childInfo.ImportLocation = "/xfer" + childInfo.Location
}
// Check for symbolic link
fi, err = os.Lstat(filepath.Join(filePath, childName))
if err == nil {
childInfo.Attributes["SymbolicLink"] = (fi.Mode() & os.ModeSymlink) != 0
}
children[idx] = childInfo
}
info.Children = children
}
}
ShowJson(writer, 200, info)
return true
}
return false
}