-
Notifications
You must be signed in to change notification settings - Fork 4
/
gget_all.py
67 lines (44 loc) · 1.77 KB
/
gget_all.py
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
#!/usr/bin/env python3
"""
BASICS
Returns all the files the user has in the form of a tar file
"""
import os
from flask import Flask, send_file, jsonify, request
import tarfile
import base_functions as bf
app = Flask(__name__)
GREYFISH_FOLDER = os.environ['greyfish_path']+"/sandbox/"
CURDIR = dir_path = os.path.dirname(os.path.realpath(__file__)) # Current directory
# JSON object with all the files the user has
@app.route('/grey/all_user_files/<gkey>/<toktok>')
def all_user_files(toktok, gkey):
IP_addr = request.environ['REMOTE_ADDR']
if not bf.valid_key(gkey, toktok):
bf.failed_login(gkey, IP_addr, toktok, "json-all-user-files")
return "INVALID key"
if str('DIR_'+toktok) not in os.listdir(GREYFISH_FOLDER):
return 'INVALID, User directory does not exist'
bf.greyfish_log(IP_addr, toktok, "json summary", "all files")
return jsonify(bf.structure_in_json(GREYFISH_FOLDER+'DIR_'+toktok))
# Downloads a tar file with all the contents
@app.route('/grey/get_all/<gkey>/<toktok>')
def get_all(toktok, gkey):
IP_addr = request.environ['REMOTE_ADDR']
if not bf.valid_key(gkey, toktok):
bf.failed_login(gkey, IP_addr, toktok, "download-all-user-content")
return "INVALID key"
if str('DIR_'+toktok) not in os.listdir(GREYFISH_FOLDER):
return 'INVALID, User directory does not exist'
USER_DIR = GREYFISH_FOLDER+'DIR_'+str(toktok)+'/'
os.chdir(USER_DIR)
user_data = [x for x in os.listdir('.') if x != 'alldata.tar.gz']
tar = tarfile.open("alldata.tar.gz", "w:gz")
for content in user_data:
tar.add(content)
tar.close()
os.chdir(CURDIR)
bf.greyfish_log(IP_addr, toktok, "download", "all")
return send_file(USER_DIR+"alldata.tar.gz")
if __name__ == '__main__':
app.run()