-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatabase.go
399 lines (330 loc) · 8.34 KB
/
database.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
package main
import (
"archive/zip"
"bytes"
"encoding/json"
"errors"
"fmt"
"io"
"io/ioutil"
"mime/multipart"
"os"
"path/filepath"
"strconv"
"strings"
"sync"
"golang.org/x/crypto/bcrypt"
)
// ContestData stores a contest's information
type ContestData struct {
Name string
Title string
Tasks []TaskData
}
// TaskData stores a task's information
type TaskData struct {
Name string
Title string
TimeLimit int
MemoryLimit int
NTests int
Batches []BatchData
}
// BatchData stores information about a batch of test cases
type BatchData struct {
Value int
Tests []int
}
// StatementData stores a tasks' html and pdf statements
type StatementData struct {
Name string
HTML []byte
PDF []byte
}
// TestData stores a test case's input and output
type TestData struct {
N int
Input []byte
Output []byte
}
// Database stores information related to a user-specific database
type Database struct {
path string
archive *zip.ReadCloser
lock sync.Mutex
}
// OpenDatabase will copy the database file from formFile to a random location
// inside the specified folder and return a Database object representing the
// database.
func OpenDatabase(formFile multipart.File, folder string) (*Database, error) {
randKey, _ := generateKey(32)
path := filepath.Join(folder, string(randKey))
file, err := os.OpenFile(path, os.O_CREATE|os.O_WRONLY, 0666)
if err != nil {
return nil, err
}
_, err = io.Copy(file, formFile)
file.Close()
if err != nil {
os.Remove(path)
return nil, err
}
archive, err := zip.OpenReader(path)
if err != nil {
os.Remove(path)
return nil, err
}
return &Database{
path: path,
archive: archive,
}, nil
}
// Clear should be called when the database will not be used anymore, probably
// at the end of the program execution or at user logout.
func (db *Database) Clear() error {
db.lock.Lock()
defer db.lock.Unlock()
err := db.archive.Close()
if err != nil {
return err
}
err = os.Remove(db.path)
db.path = ""
return err
}
func (db *Database) filterFolder(path string) []*zip.File {
db.lock.Lock()
defer db.lock.Unlock()
var result []*zip.File
for _, file := range db.archive.File {
if !strings.HasSuffix(file.Name, "/") &&
strings.HasPrefix(file.Name, path) {
result = append(result, file)
}
}
return result
}
func (db *Database) filterFile(path string) *zip.File {
db.lock.Lock()
defer db.lock.Unlock()
for _, file := range db.archive.File {
if file.Name == path {
return file
}
}
return nil
}
func (db *Database) readFile(file *zip.File) ([]byte, error) {
db.lock.Lock()
defer db.lock.Unlock()
rc, err := file.Open()
if err != nil {
return nil, err
}
defer rc.Close()
content, err := ioutil.ReadAll(rc)
if err != nil {
return nil, err
}
return content, nil
}
func (db *Database) readSecure(file *zip.File, key []byte) ([]byte, error) {
content, err := db.readFile(file)
if err != nil {
return nil, err
}
content, err = decrypt(content, key)
if err != nil {
return nil, err
}
content, err = decompress(content)
if err != nil {
return nil, err
}
return content, nil
}
// Authenticate is used to check if user-specified password matches the hash
// located inside the database file. This same password will have to be
// specified in order to access the encrypted contents inside the database file.
func (db *Database) Authenticate(password []byte) (bool, error) {
file := db.filterFile("/hash")
if file == nil {
return false, errors.New("Error: no hash file")
}
hash, err := db.readFile(file)
if err != nil {
return false, err
}
return bcrypt.CompareHashAndPassword(hash, password) == nil, nil
}
// Contest returns a ContestData object corresponding to the contest stored
// inside the database.
func (db *Database) Contest() (ContestData, error) {
file := db.filterFile("/info.json")
if file == nil {
return ContestData{}, errors.New("No info.json file")
}
content, err := db.readFile(file)
if err != nil {
return ContestData{}, err
}
var contest ContestData
err = json.Unmarshal(content, &contest)
return contest, err
}
// Tasks returns an array []TaskData corresponding to the tasks stored inside
// the database.
func (db *Database) Tasks() ([]TaskData, error) {
contest, err := db.Contest()
if err != nil {
return []TaskData{}, err
}
return contest.Tasks, nil
}
// Task returns a single TaskData corresponding to the task with the specified
// name, stored inside the database.
func (db *Database) Task(name string) (TaskData, error) {
tasks, err := db.Tasks()
if err != nil {
return TaskData{}, err
}
for _, task := range tasks {
if task.Name == name {
return task, nil
}
}
return TaskData{}, errors.New("No task named " + name)
}
// Statement returns a single StatementData corresponding to the statement of
// the task with the specified name, stored inside the database.
func (db *Database) Statement(name string, key []byte) (StatementData, error) {
statement := StatementData{}
var err error
pdfFile := db.filterFile("/" + name + "/statements/statement.pdf")
if pdfFile != nil {
statement.PDF, err = db.readSecure(pdfFile, key)
if err != nil {
return statement, err
}
}
htmlFile := db.filterFile("/" + name + "/statements/statement.html")
if htmlFile != nil {
statement.HTML, err = db.readSecure(htmlFile, key)
if err != nil {
return statement, err
}
}
return statement, nil
}
// Tests returns an array []TestData corresponding to all the tests of the
// task with the specified name, stored inside the database.
func (db *Database) Tests(name string, key []byte) ([]TestData, error) {
testFiles := db.filterFolder("/" + name + "/tests/")
tests := make([]TestData, len(testFiles)/2)
var err error
for _, file := range testFiles {
info := strings.Split(filepath.Base(file.Name), ".")
if info[1] == "in" {
ix, _ := strconv.Atoi(info[0])
tests[ix].Input, err = db.readSecure(file, key)
if err != nil {
return []TestData{}, err
}
} else {
ix, _ := strconv.Atoi(info[0])
tests[ix].Output, err = db.readSecure(file, key)
if err != nil {
return []TestData{}, err
}
}
}
return tests, err
}
// BuildDatabase uses the files from the specified source folder to create a zip
// database in the correct format at the specified target folder. It will
// encrypt any sensitive files with the specified password, or ask for a new
// password. If the writePassword flag is set to true, it will write the used
// password to a file named pass in the current folder, for debug purposes.
func BuildDatabase(source, target string, password []byte, writePassword bool) error {
source = filepath.Clean(source)
target = filepath.Clean(target)
// Initialize zip database
_ = os.Remove(target)
file, err := os.Create(target)
if err != nil {
return err
}
defer file.Close()
archive := zip.NewWriter(file)
defer archive.Close()
// Choose password
if len(password) != 0 && len(password) != 16 {
return errors.New("Password has to be 16-letters long")
} else if len(password) == 0 {
password, err = generateKey(16)
if err != nil {
return err
}
}
fmt.Printf("Files encrypted with the key: '%s' (write it down!)\n", password)
if writePassword {
ioutil.WriteFile("pass", password, 0644)
}
// Store the key's hash in the database
hash, err := bcrypt.GenerateFromPassword(password, 14)
if err != nil {
return err
}
f, err := archive.Create("/hash")
if err != nil {
return err
}
_, err = f.Write(hash)
if err != nil {
return err
}
// Walk over all files, adding them to the zip database
err = filepath.Walk(source, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
header, err := zip.FileInfoHeader(info)
if err != nil {
return err
}
header.Name = strings.TrimPrefix(path, source)
if info.IsDir() {
header.Name += "/"
} else {
header.Method = zip.Deflate
}
writer, err := archive.CreateHeader(header)
if err != nil {
return err
}
if info.IsDir() {
return nil
}
content, err := ioutil.ReadFile(path)
if err != nil {
return err
}
if filepath.Ext(path) != ".json" {
content = compress(content)
content, err = encrypt(content, password)
if err != nil {
return err
}
}
_, err = io.Copy(writer, bytes.NewReader(content))
if err != nil {
return err
}
fmt.Println(path, "->", header.Name)
return nil
})
if err != nil {
return err
}
return nil
}