Artificial-superintelligence commited on
Commit
74a1521
·
verified ·
1 Parent(s): 5280f7f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +101 -0
app.py ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import requests
3
+ import shutil
4
+ from urllib.parse import urlparse
5
+ from flask import Flask, request, jsonify, send_from_directory
6
+
7
+ app = Flask(__name__)
8
+
9
+ # Create directories to simulate a file system
10
+ if not os.path.exists('images'):
11
+ os.makedirs('images')
12
+
13
+ if not os.path.exists('files'):
14
+ os.makedirs('files')
15
+
16
+ # For simulating a terminal environment (virtual file system)
17
+ current_directory = 'files'
18
+
19
+ @app.route('/')
20
+ def index():
21
+ return send_from_directory('static', 'index.html')
22
+
23
+ @app.route('/download_image')
24
+ def download_image():
25
+ url = request.args.get('url')
26
+ if not url:
27
+ return jsonify({'success': False, 'message': 'No URL provided.'})
28
+
29
+ try:
30
+ response = requests.get(url)
31
+ if response.status_code == 200:
32
+ image_name = os.path.basename(urlparse(url).path)
33
+ image_path = os.path.join('images', image_name)
34
+ with open(image_path, 'wb') as file:
35
+ file.write(response.content)
36
+
37
+ file_size = os.path.getsize(image_path)
38
+ file_size = f'{file_size / (1024 * 1024):.2f} MB' # Convert to MB
39
+ return jsonify({
40
+ 'success': True,
41
+ 'image_url': f'/images/{image_name}',
42
+ 'file_size': file_size,
43
+ 'message': f'Image downloaded: {image_name}'
44
+ })
45
+ else:
46
+ return jsonify({'success': False, 'message': 'Failed to fetch image.'})
47
+ except Exception as e:
48
+ return jsonify({'success': False, 'message': str(e)})
49
+
50
+ @app.route('/images/<filename>')
51
+ def serve_image(filename):
52
+ return send_from_directory('images', filename)
53
+
54
+ @app.route('/terminal', methods=['POST'])
55
+ def terminal():
56
+ command = request.json.get('command')
57
+ global current_directory
58
+ output = ""
59
+
60
+ if command.startswith("ls"):
61
+ output = "\n".join(os.listdir(current_directory)) or "No files or directories."
62
+ elif command.startswith("cat"):
63
+ filename = command.split(" ")[1]
64
+ try:
65
+ with open(os.path.join(current_directory, filename), 'r') as f:
66
+ output = f.read()
67
+ except FileNotFoundError:
68
+ output = f"Error: {filename} not found."
69
+ elif command.startswith("mkdir"):
70
+ folder_name = command.split(" ")[1]
71
+ os.makedirs(os.path.join(current_directory, folder_name), exist_ok=True)
72
+ output = f"Directory {folder_name} created."
73
+ elif command.startswith("touch"):
74
+ filename = command.split(" ")[1]
75
+ with open(os.path.join(current_directory, filename), 'w') as f:
76
+ pass
77
+ output = f"File {filename} created."
78
+ elif command.startswith("rm"):
79
+ filename = command.split(" ")[1]
80
+ try:
81
+ os.remove(os.path.join(current_directory, filename))
82
+ output = f"File {filename} removed."
83
+ except FileNotFoundError:
84
+ output = f"Error: {filename} not found."
85
+ elif command.startswith("cd"):
86
+ folder_name = command.split(" ")[1]
87
+ new_directory = os.path.join(current_directory, folder_name)
88
+ if os.path.isdir(new_directory):
89
+ current_directory = new_directory
90
+ output = f"Changed directory to {folder_name}"
91
+ else:
92
+ output = f"Error: {folder_name} not found."
93
+ elif command == "pwd":
94
+ output = f"Current directory: {current_directory}"
95
+ else:
96
+ output = "Unknown command. Type 'help' for a list of available commands."
97
+
98
+ return jsonify({'output': output})
99
+
100
+ if __name__ == '__main__':
101
+ app.run(debug=True)