-
Notifications
You must be signed in to change notification settings - Fork 1
/
file.go
303 lines (273 loc) · 6.78 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
package main
import (
"archive/zip"
"fmt"
"github.com/kataras/iris/v12/sessions"
"io"
"io/ioutil"
"log"
"os"
"path"
"path/filepath"
"strings"
"time"
"github.com/kataras/iris/v12"
)
const (
maxSize = 1 * iris.GB
uploadDir = "./userdata/userfiles"
)
func init() {
os.Mkdir("./userdata/userfiles", 0700)
}
type FileDetail struct {
FileName string `json:"fileName-js"`
LastModiTime string `json:"lastModiTime-js"`
Size int64 `json:"size-js"`
IsDir bool `json:"isDir-js"`
}
type FileListData struct {
FileDetails []FileDetail `json:"fileDetails-js"`
FilePath string `json:"filePath-js"`
ParentPath string `json:"parentPath-js"`
}
type MDStream struct {
FileName string `json:"fileName-js"`
DataStream string `json:"dataStream-js"`
}
type FileResponse struct {
IsNewFlag bool `json:"isNewFile"`
ResponseData MDStream `json:"JSONData"`
}
func getFile(ctx iris.Context){
if auth, _ := sessions.Get(ctx).GetBoolean("authenticated"); !auth{
ctx.JSON(iris.Map{
"redirect": true,
})
return
}
var responseMessage FileResponse
getFileName := ctx.URLParam("FileName")
if getFileName == ""{
responseMessage = FileResponse{
IsNewFlag: true,
ResponseData: MDStream{
FileName: "",
DataStream: "",
},
}
} else{
checkFileName := getFileName
if string(getFileName[0]) != "." {
checkFileName = uploadDir + "/" + getFileName
}
if _, err := os.Stat(checkFileName); os.IsNotExist(err) {
responseMessage = FileResponse{
IsNewFlag: true,
ResponseData: MDStream{
FileName: "",
DataStream: "",
},
}
}else{
mdData, _ := ioutil.ReadFile(checkFileName)
checkFileName = strings.TrimSuffix(path.Base(checkFileName), path.Ext(path.Base(checkFileName)))
responseMessage = FileResponse{
IsNewFlag: false,
ResponseData: MDStream{
FileName: checkFileName,
DataStream: string(mdData),
},
}
}
}
ctx.JSON(responseMessage)
}
func saveFile(ctx iris.Context){
if auth, _ := sessions.Get(ctx).GetBoolean("authenticated"); !auth{
ctx.JSON(iris.Map{
"redirect": true,
})
return
}
var MDData MDStream
err := ctx.ReadJSON(&MDData)
if err != nil{
fmt.Println("JSON Format Error")
return
} else {
pathWithFile := MDData.FileName
pathWithFile = uploadDir + "/" + MDData.FileName
if _, err := os.Stat(pathWithFile); os.IsNotExist(err) {
basePath := path.Dir(pathWithFile)
//filename := path.Base(pathWithFile)
os.Mkdir(basePath, 0755)
}
err2 := ioutil.WriteFile(pathWithFile, []byte(MDData.DataStream), 0755)
if err2 != nil {
return
}
}
ctx.JSON(iris.Map{
"result":true,
})
}
func getFilePath(ctx iris.Context) {
if auth, _ := sessions.Get(ctx).GetBoolean("authenticated"); !auth{
ctx.JSON(iris.Map{
"redirect": true,
})
return
}
ctx.JSON(iris.Map{
"presentPath": uploadDir,
})
}
func showAllFiles(ctx iris.Context) {
if auth, _ := sessions.Get(ctx).GetBoolean("authenticated"); !auth{
ctx.JSON(iris.Map{
"redirect": true,
})
return
}
changedPath:= ctx.URLParam("changePathRequest")
filepathNames,err := filepath.Glob(filepath.Join(changedPath,"*"))
if err != nil {
log.Fatal(err)
}
var fileDetailData []FileDetail
for i := range filepathNames {
info, err := os.Stat(filepathNames[i])
if err != nil {
fmt.Println("os.Stat err =",err)
return
}
fileDetailData = append(fileDetailData,FileDetail{
FileName: info.Name(),
LastModiTime: info.ModTime().Format(time.RFC822),
Size: info.Size(),
IsDir: info.IsDir(),
})
}
test := FileListData{
FileDetails: fileDetailData,
FilePath: uploadDir,
ParentPath: uploadDir,
}
ctx.JSON(test)
}
type FileList struct {
SelectList []string `json:"Request"`
SelectPath string `json:"Path"`
}
func downloadFile(ctx iris.Context){
if auth, _ := sessions.Get(ctx).GetBoolean("authenticated"); !auth{
ctx.JSON(iris.Map{
"redirect": true,
})
return
}
var selectList FileList
output := uploadDir + "/" + "Download.zip"
if err := os.RemoveAll(output); err != nil {
ctx.StopWithError(iris.StatusInternalServerError, err)
return
}
err := ctx.ReadJSON(&selectList)
if err != nil {
fmt.Println("JSON Format error")
return
}
for i:=0; i < len(selectList.SelectList); i++{
selectList.SelectList[i] = selectList.SelectPath + "/" + selectList.SelectList[i]
}
if err := ZipFiles(output, selectList.SelectList); err != nil {
panic(err)
}
err = os.Chmod(output, 0755)
if err != nil {
log.Fatal(err)
}
fmt.Println("Zipped File:", output)
dest := "" /* optionally, keep it empty to resolve the filename based on the "src" */
// Limit download speed to ~50Kb/s with a burst of 100KB.
limit := 50.0 * iris.KB
burst := 100 * iris.KB
ctx.SendFileWithRate("./userdata/userfiles/userfiles.zip", dest, limit, burst)
}
func deleteFile(ctx iris.Context) {
if auth, _ := sessions.Get(ctx).GetBoolean("authenticated"); !auth{
ctx.JSON(iris.Map{
"redirect": true,
})
return
}
// It does not contain the system path,
// as we are not exposing it to the user.
var selectList FileList
err := ctx.ReadJSON(&selectList)
fmt.Println(selectList)
if err != nil {
fmt.Println("JSON Format error")
return
}
for i := 0; i < len(selectList.SelectList); i++{
filePath := path.Join(selectList.SelectPath, selectList.SelectList[i])
if err := os.RemoveAll(filePath); err != nil {
ctx.StopWithError(iris.StatusInternalServerError, err)
return
}
}
ctx.JSON(iris.Map{
"result":true,
})
}
// ZipFiles compresses one or many files into a single zip archive file.
// Param 1: filename is the output zip file's name.
// Param 2: files is a list of files to add to the zip.
func ZipFiles(filename string, files []string) error {
newZipFile, err := os.Create(filename)
if err != nil {
return err
}
defer newZipFile.Close()
zipWriter := zip.NewWriter(newZipFile)
defer zipWriter.Close()
// Add files to zip
for _, file := range files {
if err = AddFileToZip(zipWriter, file); err != nil {
return err
}
}
return nil
}
func AddFileToZip(zipWriter *zip.Writer, filename string) error {
fileToZip, err := os.Open(filename)
fmt.Println(fileToZip)
fmt.Println(filename)
if err != nil {
return err
}
defer fileToZip.Close()
// Get the file information
info, err := fileToZip.Stat()
if err != nil {
return err
}
header, err := zip.FileInfoHeader(info)
if err != nil {
return err
}
// Using FileInfoHeader() above only uses the basename of the file. If we want
// to preserve the folder structure we can overwrite this with the full path.
header.Name = filename
// Change to deflate to gain better compression
// see http://golang.org/pkg/archive/zip/#pkg-constants
header.Method = zip.Deflate
writer, err := zipWriter.CreateHeader(header)
if err != nil {
return err
}
_, err = io.Copy(writer, fileToZip)
return err
}