Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
utils.py
CHANGED
@@ -3,7 +3,7 @@ import subprocess
|
|
3 |
import random
|
4 |
import string
|
5 |
from datetime import datetime
|
6 |
-
from flask import jsonify, send_file, current_app
|
7 |
import shutil
|
8 |
import tempfile
|
9 |
import requests
|
@@ -262,8 +262,9 @@ def process_request(request):
|
|
262 |
"7z", "a", "-t7z", "-p" + password, "-mx=9", "-m0=LZMA2", archive_path, modified_pe_path
|
263 |
], check=True)
|
264 |
|
265 |
-
# Return the .7z file in the response
|
266 |
-
|
|
|
267 |
|
268 |
except Exception as e:
|
269 |
current_app.logger.error(f"An error occurred: {str(e)}")
|
|
|
3 |
import random
|
4 |
import string
|
5 |
from datetime import datetime
|
6 |
+
from flask import jsonify, send_file, current_app, url_for
|
7 |
import shutil
|
8 |
import tempfile
|
9 |
import requests
|
|
|
262 |
"7z", "a", "-t7z", "-p" + password, "-mx=9", "-m0=LZMA2", archive_path, modified_pe_path
|
263 |
], check=True)
|
264 |
|
265 |
+
# Return the URL and password for the .7z file in the response
|
266 |
+
archive_url = url_for('uploaded_file', filename=archive_name, _external=True)
|
267 |
+
return jsonify({"archive_url": archive_url, "password": password})
|
268 |
|
269 |
except Exception as e:
|
270 |
current_app.logger.error(f"An error occurred: {str(e)}")
|