-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
131 lines (104 loc) · 4.02 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
class Python {
constructor() {
this.console = {}
}
async start() {
this.console = await loadPyodide({
stdout: (msg) => console.log(`Pyodide: ${msg}`)
});
}
}
const program = new Python()
async function runScript(script) {
return await program.console.runPythonAsync(script)
}
async function runDjangoAdminCommand(command, ...args) {
return await runScript(`
import sys
from django.core.management import execute_from_command_line
try:
sys.argv = ['django-admin', '${command}', '${args.join("', '")}']
execute_from_command_line(sys.argv)
except Exception as e:
print(f"An error occurred: {e}")
`)
}
async function runDjangoCommand(command, ...args) {
return await runScript(`
from django.core.management import call_command
try:
call_command('${command}', '${args.join("', '")}')
except Exception as e:
print(f"An error occurred: {e}")
`)
}
function listDir(dir) {
return program.console.FS.readdir(`./${dir}`).filter(file => file !== '.' && file !== '..')
}
function chdir(dir) {
return program.console.FS.chdir(dir)
}
async function chmodRecursive(path, mode) {
await runScript(`
import os
def chmod_recursive(path, mode):
"""
Recursively sets permissions on all files and directories under the specified path.
Args:
path (str): The root path to apply permissions to.
mode (int): The permission mode to set, in octal (e.g., 0o755).
"""
for root, dirs, files in os.walk(path):
# Change the permission of the directory itself
os.chmod(root, mode)
# Change the permission of each file in the directory
for filename in files:
file_path = os.path.join(root, filename)
os.chmod(file_path, mode)
chmod_recursive("${path}", 0o${mode})
`)
}
async function isFile(path) {
await chmodRecursive(path, 500)
return await runScript(`from pathlib import Path; Path("${path}").is_file()`)
}
async function loadFile(path) {
program.console.FS.chmod(path, 400)
return program.console.FS.readFile(path, { encoding: "utf8" })
}
async function saveFile(path, content) {
await chmodRecursive(path, 600)
return program.console.FS.writeFile(path, content)
}
async function downloadProject() {
await chmodRecursive(".", 500)
const projectName = loadValue(storeKeys.projectName)
const zipFileBase64 = await runScript(`
import io
import os
import zipfile
import base64
zip_buffer = io.BytesIO()
def package_django_project(project_dir):
# Create an in-memory zip file
zip_buffer = io.BytesIO()
# Create a ZipFile object in write mode
with zipfile.ZipFile(zip_buffer, 'w', zipfile.ZIP_DEFLATED) as zipf:
# Walk through all the files and folders in the project directory
for root, _, files in os.walk(project_dir):
for file in files:
file_path = os.path.join(root, file)
# Add file to the zip, with an arcname to maintain relative paths
arcname = os.path.relpath(file_path, project_dir)
zipf.write(file_path, arcname)
zip_buffer.seek(0)
# Encode zip file as base64 to send it to JavaScript
return base64.b64encode(zip_buffer.getvalue()).decode("utf-8")
package_django_project(".")
`)
const zipBlob = await fetch(`data:application/zip;base64,${zipFileBase64}`).then(res => res.blob());
const downloadLink = document.createElement("a");
downloadLink.href = URL.createObjectURL(zipBlob);
downloadLink.download = `${projectName}.zip`;
downloadLink.click();
}