forked from bombsquad-community/plugin-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile_share.py
376 lines (318 loc) · 12.3 KB
/
file_share.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
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
# ba_meta require api 8
'''
File Share Mod for BombSquad 1.7.30 and above.
https://youtu.be/qtGsFU4cgic
https://discord.gg/ucyaesh
by : Mr.Smoothy
Thanks Dliwk for contributing MultiPartForm.class
'''
from __future__ import annotations
import mimetypes
import json
import re
import io
import uuid
import bascenev1 as bs
import _baplus
import _babase
import babase
from bauiv1lib.fileselector import FileSelectorWindow
from bauiv1lib.sendinfo import SendInfoWindow
from bauiv1lib.confirm import ConfirmWindow
import bauiv1 as bui
import os
import urllib.request
from threading import Thread
import logging
from babase._general import Call
from typing import TYPE_CHECKING
from baenv import TARGET_BALLISTICA_BUILD
if TYPE_CHECKING:
from typing import Any, Callable, Sequence
app = _babase.app
MODS_DIR = app.python_directory_user if TARGET_BALLISTICA_BUILD < 21282 else app.env.python_directory_user
REPLAYS_DIR = bui.get_replays_dir()
HEADERS = {
'accept': 'application/json',
'Content-Type': 'application/octet-stream',
'User-Agent': 'BombSquad Client'
}
class UploadConfirmation(ConfirmWindow):
def __init__(
self,
file_path="",
status="init",
text: str | bui.Lstr = 'Are you sure?',
ok_text="",
action: Callable[[], Any] | None = None,
origin_widget: bui.Widget | None = None,
):
super().__init__(text=text, action=action,
origin_widget=origin_widget, ok_text=ok_text)
self.status = status
self.file_path = file_path
def _ok(self) -> None:
if self.status == "init":
self._cancel()
UploadConfirmation(
"", "uploading", text="Uploading file wait !", ok_text="Wait")
self._upload_file()
elif self.status == "uploading":
bui.screenmessage("uploading in progress")
elif self.status == "uploaded":
pass
def _upload_file(self):
self.status = "uploading"
# print(self.root_widget)
thread = Thread(target=handle_upload, args=(
self.file_path, self.uploaded, self.root_widget,))
thread.start()
def uploaded(self, url, root_widget):
self.status = "uploaded"
from bauiv1lib.url import ShowURLWindow
ShowURLWindow(url)
class InputWindow(SendInfoWindow):
def __init__(
self, modal: bool = True, origin_widget: bui.Widget | None = None, path=None):
super().__init__(modal=modal, legacy_code_mode=True, origin_widget=origin_widget)
bui.textwidget(edit=self._text_field, max_chars=300)
self._path = path
self.message_widget = bui.textwidget(
parent=self._root_widget,
text="put only trusted link",
position=(170, 230 - 200 - 30),
color=(0.8, 0.8, 0.8, 1.0),
size=(90, 30),
h_align='center',
)
def _do_enter(self):
url = bui.textwidget(query=self._text_field)
if self._path and self._path != "/bombsquad":
bui.textwidget(edit=self.message_widget,
text="downloading.... wait...")
bui.screenmessage("Downloading started")
thread = Thread(target=handle_download, args=(
url, self._path, self.on_download,))
thread.start()
else:
bui.textwidget(edit=self.message_widget,
text="First select folder were to save file.")
self.close()
def on_download(self, output_path):
bui.screenmessage("File Downloaded to path")
bui.screenmessage(output_path)
bui.screenmessage("GO back and reopen to refresh")
def close(self):
bui.containerwidget(
edit=self._root_widget, transition=self._transition_out
)
class FileSelectorExtended(FileSelectorWindow):
def __init__(
self,
path: str,
callback: Callable[[str | None], Any] | None = None,
show_base_path: bool = True,
valid_file_extensions: Sequence[str] | None = None,
allow_folders: bool = False,
):
super().__init__(path, callback=callback, show_base_path=show_base_path,
valid_file_extensions=valid_file_extensions, allow_folders=allow_folders)
self._import_button = bui.buttonwidget(
parent=self._root_widget,
button_type='square',
position=(self._folder_center + 200, self._height - 113),
color=(0.6, 0.53, 0.63),
textcolor=(0.75, 0.7, 0.8),
enable_sound=False,
size=(55, 35),
label="Import",
on_activate_call=self._open_import_menu,
)
def _open_import_menu(self):
InputWindow(origin_widget=self._import_button, path=self._path)
def _on_entry_activated(self, entry: str) -> None:
# pylint: disable=too-many-branches
new_path = None
try:
assert self._path is not None
if entry == '..':
chunks = self._path.split('/')
if len(chunks) > 1:
new_path = '/'.join(chunks[:-1])
if new_path == '':
new_path = '/'
else:
bui.getsound('error').play()
else:
if self._path == '/':
test_path = self._path + entry
else:
test_path = self._path + '/' + entry
if test_path == "/bombsquad/mods":
test_path = MODS_DIR
if test_path == "/bombsquad/replays":
test_path = REPLAYS_DIR
if os.path.isdir(test_path):
bui.getsound('swish').play()
new_path = test_path
elif os.path.isfile(test_path):
if self._is_valid_file_path(test_path):
bui.getsound('swish').play()
if self._callback is not None:
self._callback(test_path)
else:
bui.getsound('error').play()
else:
print(
(
'Error: FileSelectorWindow found non-file/dir:',
test_path,
)
)
except Exception:
logging.exception(
'Error in FileSelectorWindow._on_entry_activated().'
)
if new_path is not None:
self._set_path(new_path)
org_listdir = os.listdir
def custom_listdir(path):
if path == "/bombsquad":
return ["mods", "replays"]
return org_listdir(path)
os.listdir = custom_listdir
class MultiPartForm:
"""Accumulate the data to be used when posting a form."""
def __init__(self):
self.form_fields = []
self.files = []
# Use a large random byte string to separate
# parts of the MIME data.
self.boundary = uuid.uuid4().hex.encode('utf-8')
return
def get_content_type(self):
return 'multipart/form-data; boundary={}'.format(
self.boundary.decode('utf-8'))
def add_field(self, name, value):
"""Add a simple field to the form data."""
self.form_fields.append((name, value))
def add_file(self, fieldname, filename, fileHandle,
mimetype=None):
"""Add a file to be uploaded."""
body = fileHandle.read()
if mimetype is None:
mimetype = (
mimetypes.guess_type(filename)[0] or
'application/octet-stream'
)
self.files.append((fieldname, filename, mimetype, body))
return
@staticmethod
def _form_data(name):
return ('Content-Disposition: form-data; '
'name="{}"\r\n').format(name).encode('utf-8')
@staticmethod
def _attached_file(name, filename):
return ('Content-Disposition: form-data; '
'name="{}"; filename="{}"\r\n').format(
name, filename).encode('utf-8')
@staticmethod
def _content_type(ct):
return 'Content-Type: {}\r\n'.format(ct).encode('utf-8')
def __bytes__(self):
"""Return a byte-string representing the form data,
including attached files.
"""
buffer = io.BytesIO()
boundary = b'--' + self.boundary + b'\r\n'
# Add the form fields
for name, value in self.form_fields:
buffer.write(boundary)
buffer.write(self._form_data(name))
buffer.write(b'\r\n')
buffer.write(value.encode('utf-8'))
buffer.write(b'\r\n')
# Add the files to upload
for f_name, filename, f_content_type, body in self.files:
buffer.write(boundary)
buffer.write(self._attached_file(f_name, filename))
buffer.write(self._content_type(f_content_type))
buffer.write(b'\r\n')
buffer.write(body)
buffer.write(b'\r\n')
buffer.write(b'--' + self.boundary + b'--\r\n')
return buffer.getvalue()
def handle_upload(file, callback, root_widget):
file_name = file.split("/")[-1]
with open(file, "rb") as f:
file_content = f.read()
bui.screenmessage("Uploading file, wait !")
form = MultiPartForm()
form.add_file(
'file', file_name,
fileHandle=io.BytesIO(file_content))
# Build the request, including the byte-string
# for the data to be posted.
data = bytes(form)
file_name = urllib.parse.quote(file_name)
r = urllib.request.Request(f'https://file.io?title={file_name}', data=data)
r.add_header('Content-type', form.get_content_type())
r.add_header('Content-length', len(data))
try:
with urllib.request.urlopen(r) as response:
if response.getcode() == 200:
# callback(json.loads(response.read().decode('utf-8'))["link"])
_babase.pushcall(Call(callback, json.loads(response.read().decode(
'utf-8'))["link"], root_widget), from_other_thread=True)
else:
bui.screenmessage(
f"Failed to Upload file. Status code: {response.getcode()}")
except urllib.error.URLError as e:
bui.screenmessage(f"Error occurred: {e}")
def handle_download(url, path, callback):
req = urllib.request.Request(url, headers={'accept': '*/*'}, method='GET')
try:
with urllib.request.urlopen(req) as response:
if response.getcode() == 200:
# Read the filename from the Content-Disposition header
filename = None
content_disposition = response.headers.get(
'Content-Disposition', '')
match = re.search(r'filename\*?=(.+)', content_disposition)
if match:
filename = urllib.parse.unquote(
match.group(1), encoding='utf-8')
filename = filename.replace("UTF-8''", '')
output_path = os.path.join(path, filename)
with open(output_path, 'wb') as file:
file.write(response.read())
_babase.pushcall(Call(callback, output_path),
from_other_thread=True)
print(f"File downloaded and saved to: {output_path}")
else:
print(
f"Failed to download file. Status code: {response.getcode()}")
except urllib.error.URLError as e:
# bui.screenmessage(f'Error occured {e}')
print(f"Error occurred: {e}")
# ba_meta export plugin
class bySmoothy(babase.Plugin):
def on_app_running(self):
pass
def has_settings_ui(self):
return True
def show_settings_ui(self, source_widget):
virtual_directory_path = '/bombsquad'
FileSelectorExtended(
virtual_directory_path,
callback=self.fileSelected,
show_base_path=False,
valid_file_extensions=[
"txt", "py", "json", "brp"
],
allow_folders=False,
).get_root_widget()
def fileSelected(self, path):
if path:
UploadConfirmation(path, "init", text="You want to upload " +
path.split("/")[-1], ok_text="Upload")