sigyllly commited on
Commit
3e2b877
·
verified ·
1 Parent(s): b696fdf

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +8 -14
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
- # Move the .7z file to the UPLOAD_FOLDER
288
- archive_filename = os.path.basename(archive_path)
289
- new_archive_path = os.path.join(UPLOAD_FOLDER, archive_filename)
290
- shutil.move(archive_path, new_archive_path)
291
-
292
- # Return the archive filename and password
293
- return jsonify({
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)}")