sigyllly commited on
Commit
01950db
·
verified ·
1 Parent(s): 080d9c7

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +4 -3
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, along with the password
266
- return jsonify({"archive": send_file(archive_path, as_attachment=True, download_name=archive_name), "password": password})
 
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)}")