Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
utils.py
CHANGED
@@ -209,11 +209,6 @@ def create_encrypted_7z_archive(file_path, password):
|
|
209 |
|
210 |
return archive_path
|
211 |
|
212 |
-
@app.route('/download/<filename>', methods=['GET'])
|
213 |
-
def download_file(filename):
|
214 |
-
# Serve the .7z file from the UPLOAD_FOLDER
|
215 |
-
return send_from_directory(UPLOAD_FOLDER, filename, as_attachment=True)
|
216 |
-
|
217 |
def process_request(request):
|
218 |
temp_dir = None # Initialize temp_dir to be used in the finally block
|
219 |
try:
|
@@ -284,16 +279,15 @@ def process_request(request):
|
|
284 |
# Create an encrypted 7z archive
|
285 |
archive_path = create_encrypted_7z_archive(modified_pe_path, password)
|
286 |
|
287 |
-
#
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
"archive_filename": archive_filename,
|
295 |
"password": password
|
296 |
-
}
|
297 |
|
298 |
except Exception as e:
|
299 |
current_app.logger.error(f"An error occurred: {str(e)}")
|
|
|
209 |
|
210 |
return archive_path
|
211 |
|
|
|
|
|
|
|
|
|
|
|
212 |
def process_request(request):
|
213 |
temp_dir = None # Initialize temp_dir to be used in the finally block
|
214 |
try:
|
|
|
279 |
# Create an encrypted 7z archive
|
280 |
archive_path = create_encrypted_7z_archive(modified_pe_path, password)
|
281 |
|
282 |
+
# Return the .7z file and password in the response
|
283 |
+
return send_file(
|
284 |
+
archive_path,
|
285 |
+
as_attachment=True,
|
286 |
+
download_name=os.path.basename(archive_path),
|
287 |
+
mimetype='application/octet-stream'
|
288 |
+
), {
|
|
|
289 |
"password": password
|
290 |
+
}
|
291 |
|
292 |
except Exception as e:
|
293 |
current_app.logger.error(f"An error occurred: {str(e)}")
|