-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
289 lines (268 loc) · 7.78 KB
/
app.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
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
import flask
import json
import requests
import os
import subprocess
import ipfshttpclient
import base64
from PIL import Image
import uu
from datetime import date
import time
# d = {}
#client = ipfshttpclient.connect('/ip4/127.0.0.1/tcp/5001/http')
client = ipfshttpclient.connect('/dns/ipfs.infura.io/tcp/5001/https')
app = flask.Flask(__name__)
@app.route('/store',methods = ['GET','POST'])
def recieve_crappy():
try:
lan = flask.request.get_json(force=True)
lan1 = lan['image']
name = lan['name']
print(lan1[:40])
imgdata = base64.b64decode(lan1)
filename = name
with open(filename, 'wb') as f:
f.write(imgdata)
os.system('python examples/tfci.py compress b2018-gdn-128-4'+' '+name)
hash_file = client.add(name+'.tfci')
os.remove(name)
os.remove(name+'.tfci')
fil = open(lan['user']+'.txt','a+')
fil.write('\n'+hash_file['Hash']+'.'+hash_file['Name'])
fil.close()
return 'True'
except:
return 'No file found'
@app.route('/all_images',methods = ['GET','POST'])
def send_files_name():
try:
lan = flask.request.get_json(force = True)
user = lan['user']
with open(user+'.txt') as f:
lines = f.readlines()
if len(lines) == 0:
return 'No filename for this user'
else:
files = {'image_list' : lines}
r = json.dumps(files)
return r
except:
return 'No filename for this user'
@app.route('/send',methods = ['GET','POST'])
def send_crappy():
lan = flask.request.get_json(force=True)
image = lan['image']
user = lan['user']
with open(user+'.txt') as f:
lines = f.readlines()
print(lines)
for line in lines:
if image in line:
y = line[:46]
break
client.get(y)
os.rename(y,image+'.tfci')
os.system(' python examples/tfci.py decompress'+' '+image+'.tfci')
os.rename(image+'.tfci.png',image)
with open(image,'rb') as img_file:
my_string = base64.b64encode(img_file.read())
os.remove(image)
os.remove(image+'.tfci')
return my_string
@app.route('/delete',methods = ['GET','POST'])
def delete_image():
lan = flask.request.get_json(force = True)
user = lan['user']
image = lan['image']
with open(user+".txt", "r") as f:
lines = f.readlines()
with open(user+".txt", "w") as f:
for line in lines:
if image not in line:
f.write(line)
return 'True'
@app.route('/video',methods = ['GET','POST'])
def recieve_video():
lan = flask.request.get_json(force = True)
user = lan['user']
vid_name = lan['name']
vid = lan['image']
res = client.add_json(vid)
print(res)
fil = open(user+'.txt','a+')
fil.write('\n'+res+'.'+vid_name+'\n')
fil.close()
return 'True'
@app.route('/videosend',methods = ['GET','POST'])
def send_vid():
lan = flask.request.get_json(force = True)
user = lan['user']
vid_name = lan['image']
print(vid_name)
with open(user+'.txt') as f:
lines = f.readlines()
print(lines)
for line in lines:
if vid_name in line:
print(line[:46])
p = client.get_json(line[:46])
print(p)
break
print(p)
return p
@app.route('/live_stream_record_start',methods = ['GET','POST'])
def live_stream_start():
lan = flask.request.get_json(force = True)
channel_name = lan['channel_name']
user = lan['user']
os.system('./start '+channel_name)
today = str(date.today())
print(today)
s = ''
for c in today:
if c!='-':
s+=c
s = s[:len(s)-2]
s+='26'
for files in os.listdir(s):
print(files)
fil = files
print(fil)
for files in os.listdir(s[:]+'/'+fil):
if 'mp4' in files:
uu.encode(s+'/'+fil+'/'+files,'video.txt')
break
res = client.add('video.txt')
hash_file = res['Hash']
fil = open(user+'.txt','a+')
fil.write('\n'+hash_file+'.'+str(int(time.time()*1000))+'.mp4')
fil.close()
os.system('rm -rf '+ s)
return 'True'
# r = subprocess.Popen(['./start', channel_name])
# d[channel_name] = r.pid
@app.route('/vid_download',methods = ['GET','POST'])
def vid():
lan = flask.request.get_json(force = True)
user = lan['user']
name = lan['name']
image = lan['image']
with open(name,'wb') as fh:
fh.write(base64.b64decode(image))
uu.encode(name,'video.txt')
res = client.add('video.txt')
hash_file = res['Hash']
fil = open(user+'.txt','a+')
fil.write('\n'+hash_file+name)
fil.close()
os.remove(name)
return 'True'
@app.route('/live_stream_record_download',methods = ['GET','POST'])
def live_stream_download():
lan = flask.request.get_json(force = True)
user = lan['user']
name = lan['name']
with open(user+'.txt') as f:
lines = f.readlines()
for line in lines:
if name in line:
client.get(line[:46])
break
uu.decode('video.txt','video-copy.mp4')
with open('video-copy.mp4','rb') as image:
image_reader = image.read()
image_encode = base64.encodestring(image_reader)
return image_encode
@app.route('/qrcode',methods = ['GET','POST'])
def qr_code_scanner():
lan = flask.request.get_json(force=True)
user1 = lan['user1']
user2 = lan['user2']
name = lan['name']
with open(user1+'.txt') as f:
lines = f.readlines()
for files in lines:
if name in files:
fil = files
break
t = open(user2+'.txt','a+')
t.write(fil+'\n')
t.close()
return 'True'
@app.route('/add_files',methods = ['GET','POST'])
def add_file():
lan = flask.request.get_json(force=True)
users = lan['users']
name = lan['name']
user1 = lan['user1']
with open(user1+'.txt') as f:
lines = f.readlines()
for files in lines:
if name in files:
fil = files
break
print(users)
for user in users:
print(user)
try:
t = open(user+'.txt','a+')
t.write(fil+'\n')
t.close()
except:
pass
return 'True'
@app.route('/make_public',methods = ['GET','POST'])
def public():
lan = flask.request.get_json(force=True)
name = lan['name']
user = lan['user']
with open(user+'.txt') as f:
lines = f.readlines()
for files in lines:
if name in files:
fil = files
break
t = open('public.txt','a+')
t.write(fil+'\n')
t.close()
return 'True'
@app.route('/public_images',methods = ['GET','POST'])
def images_public():
try:
with open('public.txt') as f:
lines = f.readlines()
try:
if len(lines) == 0:
return 'No filename for this user'
else:
files = {'image_list' : lines}
r = json.dumps(files)
return r
except:
return 'No filename for this user'
except:
return 'No public images'
@app.route('/public_images_download',methods = ['GET','POST'])
def images_public_download():
lan = flask.request.get_json(force = True)
image = lan['image']
with open('public.txt') as f:
lines = f.readlines()
print(lines)
for line in lines:
if image in line:
y = line[:46]
break
client.get(y)
os.rename(y,image+'.tfci')
os.system(' python examples/tfci.py decompress'+' '+image+'.tfci')
os.rename(image+'.tfci.png',image)
with open(image,'rb') as img_file:
my_string = base64.b64encode(img_file.read())
os.remove(image)
os.remove(image+'.tfci')
return my_string
if __name__ == '__main__':
app.debug = True
app.run(host='0.0.0.0', port = 5000)