Artificial-superintelligence commited on
Commit
92018fe
·
verified ·
1 Parent(s): 6e32c09

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +65 -115
templates/index.html CHANGED
@@ -1,121 +1,71 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Python Terminal</title>
7
- <style>
8
- body {
9
- font-family: Arial, sans-serif;
10
- background-color: #1e1e1e;
11
- color: #c7c7c7;
12
- margin: 0;
13
- padding: 0;
14
- display: flex;
15
- justify-content: center;
16
- align-items: center;
17
- height: 100vh;
18
- }
19
- .terminal {
20
- width: 80%;
21
- height: 70%;
22
- background: #2e2e2e;
23
- border-radius: 8px;
24
- padding: 15px;
25
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
26
- display: flex;
27
- flex-direction: column;
28
- }
29
- .terminal-output {
30
- flex: 1;
31
- background: #1e1e1e;
32
- padding: 10px;
33
- border-radius: 5px;
34
- overflow-y: auto;
35
- margin-bottom: 10px;
36
- white-space: pre-wrap;
37
- }
38
- .terminal-input {
39
- display: flex;
40
- }
41
- input {
42
- flex: 1;
43
- padding: 10px;
44
- border-radius: 5px;
45
- border: 1px solid #444;
46
- background: #1e1e1e;
47
- color: #c7c7c7;
48
- }
49
- button {
50
- margin-left: 10px;
51
- padding: 10px 20px;
52
- border: none;
53
- border-radius: 5px;
54
- background: #0078d4;
55
- color: white;
56
- cursor: pointer;
57
- }
58
- button:hover {
59
- background: #005bb5;
60
- }
61
- </style>
62
- </head>
63
- <body>
64
- <div class="terminal">
65
- <div id="output" class="terminal-output">Python Terminal Ready...</div>
66
- <div class="terminal-input">
67
- <input type="text" id="code-input" placeholder="Enter Python code or shell command (e.g., !git clone ...)" />
68
- <button onclick="executeCode()">Run</button>
69
- <button onclick="cleanup()">Cleanup</button>
70
- </div>
71
- </div>
72
- <script>
73
- function executeCode() {
74
- const codeInput = document.getElementById("code-input");
75
- const outputDiv = document.getElementById("output");
76
 
77
- outputDiv.innerHTML += `\n> ${codeInput.value}<br>Running...`;
78
 
79
- fetch("/execute", {
80
- method: "POST",
81
- headers: { "Content-Type": "application/json" },
82
- body: JSON.stringify({ code: codeInput.value }),
83
- })
84
- .then(response => {
85
- const reader = response.body.getReader();
86
- const decoder = new TextDecoder();
87
- let content = "";
88
 
89
- function readStream() {
90
- reader.read().then(({ done, value }) => {
91
- if (done) return;
92
- content += decoder.decode(value);
93
- outputDiv.innerHTML += content;
94
- outputDiv.scrollTop = outputDiv.scrollHeight;
95
- readStream();
96
- });
97
- }
98
 
99
- readStream();
100
- })
101
- .catch(error => {
102
- outputDiv.innerHTML += `<br>Error: ${error}`;
103
- outputDiv.scrollTop = outputDiv.scrollHeight;
104
- });
105
- codeInput.value = "";
106
- }
 
 
 
 
 
 
 
 
 
107
 
108
- function cleanup() {
109
- fetch("/cleanup", { method: "POST" })
110
- .then(response => response.json())
111
- .then(data => {
112
- const outputDiv = document.getElementById("output");
113
- outputDiv.innerHTML += `\n${data.result}`;
114
- outputDiv.scrollTop = outputDiv.scrollHeight;
115
- });
116
- }
117
 
118
- window.addEventListener("beforeunload", cleanup);
119
- </script>
120
- </body>
121
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from flask import Flask, request, jsonify, render_template, stream_with_context, Response
2
+ import os
3
+ import subprocess
4
+ import tempfile
5
+ import shutil
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
 
7
+ app = Flask(__name__)
8
 
9
+ # Create a temporary directory for operations
10
+ temp_dir = tempfile.mkdtemp()
 
 
 
 
 
 
 
11
 
12
+ @app.route("/")
13
+ def index():
14
+ return render_template("index.html")
 
 
 
 
 
 
15
 
16
+ def execute_shell_command(command):
17
+ """Executes a shell command and streams output."""
18
+ process = subprocess.Popen(
19
+ command,
20
+ shell=True,
21
+ stdout=subprocess.PIPE,
22
+ stderr=subprocess.PIPE,
23
+ text=True,
24
+ cwd=temp_dir
25
+ )
26
+ for line in iter(process.stdout.readline, ""):
27
+ yield f"{line}<br>"
28
+ for line in iter(process.stderr.readline, ""):
29
+ yield f"Error: {line}<br>"
30
+ process.stdout.close()
31
+ process.stderr.close()
32
+ process.wait()
33
 
34
+ @app.route("/execute", methods=["POST"])
35
+ def execute_code():
36
+ command = request.json.get("code", "").strip()
37
+ if not command:
38
+ return jsonify({"result": "Error: No command provided."})
 
 
 
 
39
 
40
+ try:
41
+ if command.startswith("!"):
42
+ shell_command = command[1:]
43
+ return Response(stream_with_context(execute_shell_command(shell_command)))
44
+ else:
45
+ process = subprocess.run(
46
+ ["python3", "-c", command],
47
+ stdout=subprocess.PIPE,
48
+ stderr=subprocess.PIPE,
49
+ text=True,
50
+ cwd=temp_dir
51
+ )
52
+ return jsonify({"result": process.stdout + process.stderr})
53
+ except Exception as e:
54
+ return jsonify({"result": f"Error: {e}"})
55
+
56
+ @app.route("/cleanup", methods=["POST"])
57
+ def cleanup():
58
+ global temp_dir
59
+ if os.path.exists(temp_dir):
60
+ shutil.rmtree(temp_dir)
61
+ temp_dir = tempfile.mkdtemp()
62
+ return jsonify({"result": "Temporary files cleaned up."})
63
+
64
+ if __name__ == "__main__":
65
+ # Check if Git is available in the environment
66
+ try:
67
+ subprocess.run(["git", "--version"], check=True)
68
+ print("Git is installed.")
69
+ except subprocess.CalledProcessError:
70
+ print("Git is not installed.")
71
+ app.run(host="0.0.0.0", port=7860)