Artificial-superintelligence commited on
Commit
40f3dcd
·
verified ·
1 Parent(s): 6407b2f

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +115 -64
templates/index.html CHANGED
@@ -1,71 +1,122 @@
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)
 
 
 
 
 
 
1
 
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Python Terminal</title>
8
+ <style>
9
+ body {
10
+ font-family: Arial, sans-serif;
11
+ background-color: #1e1e1e;
12
+ color: #c7c7c7;
13
+ margin: 0;
14
+ padding: 0;
15
+ display: flex;
16
+ justify-content: center;
17
+ align-items: center;
18
+ height: 100vh;
19
+ }
20
+ .terminal {
21
+ width: 80%;
22
+ height: 70%;
23
+ background: #2e2e2e;
24
+ border-radius: 8px;
25
+ padding: 15px;
26
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
27
+ display: flex;
28
+ flex-direction: column;
29
+ }
30
+ .terminal-output {
31
+ flex: 1;
32
+ background: #1e1e1e;
33
+ padding: 10px;
34
+ border-radius: 5px;
35
+ overflow-y: auto;
36
+ margin-bottom: 10px;
37
+ white-space: pre-wrap;
38
+ }
39
+ .terminal-input {
40
+ display: flex;
41
+ }
42
+ input {
43
+ flex: 1;
44
+ padding: 10px;
45
+ border-radius: 5px;
46
+ border: 1px solid #444;
47
+ background: #1e1e1e;
48
+ color: #c7c7c7;
49
+ }
50
+ button {
51
+ margin-left: 10px;
52
+ padding: 10px 20px;
53
+ border: none;
54
+ border-radius: 5px;
55
+ background: #0078d4;
56
+ color: white;
57
+ cursor: pointer;
58
+ }
59
+ button:hover {
60
+ background: #005bb5;
61
+ }
62
+ </style>
63
+ </head>
64
+ <body>
65
+ <div class="terminal">
66
+ <div id="output" class="terminal-output">Python Terminal Ready...</div>
67
+ <div class="terminal-input">
68
+ <input type="text" id="code-input" placeholder="Enter Python code or shell command (e.g., !git clone ...)" />
69
+ <button onclick="executeCode()">Run</button>
70
+ <button onclick="cleanup()">Cleanup</button>
71
+ </div>
72
+ </div>
73
+ <script>
74
+ function executeCode() {
75
+ const codeInput = document.getElementById("code-input");
76
+ const outputDiv = document.getElementById("output");
77
 
78
+ outputDiv.innerHTML += `\n> ${codeInput.value}<br>Running...`;
 
79
 
80
+ fetch("/execute", {
81
+ method: "POST",
82
+ headers: { "Content-Type": "application/json" },
83
+ body: JSON.stringify({ code: codeInput.value }),
84
+ })
85
+ .then(response => {
86
+ const reader = response.body.getReader();
87
+ const decoder = new TextDecoder();
88
+ let content = "";
89
 
90
+ function readStream() {
91
+ reader.read().then(({ done, value }) => {
92
+ if (done) return;
93
+ content += decoder.decode(value);
94
+ outputDiv.innerHTML += content;
95
+ outputDiv.scrollTop = outputDiv.scrollHeight;
96
+ readStream();
97
+ });
98
+ }
 
 
 
 
 
 
 
 
99
 
100
+ readStream();
101
+ })
102
+ .catch(error => {
103
+ outputDiv.innerHTML += `<br>Error: ${error}`;
104
+ outputDiv.scrollTop = outputDiv.scrollHeight;
105
+ });
106
+ codeInput.value = "";
107
+ }
108
 
109
+ function cleanup() {
110
+ fetch("/cleanup", { method: "POST" })
111
+ .then(response => response.json())
112
+ .then(data => {
113
+ const outputDiv = document.getElementById("output");
114
+ outputDiv.innerHTML += `\n${data.result}`;
115
+ outputDiv.scrollTop = outputDiv.scrollHeight;
116
+ });
117
+ }
 
 
 
 
 
 
118
 
119
+ window.addEventListener("beforeunload", cleanup);
120
+ </script>
121
+ </body>
122
+ </html>