-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfs_access.py
executable file
·103 lines (83 loc) · 3.15 KB
/
fs_access.py
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
import sys
import asyncio
from io import StringIO
import paramiko
import gitpod.lib as util
from gitpod import AsyncGitpod
from gitpod.types.environment_spec_param import EnvironmentSpecParam
from gitpod.types.environment_initializer_param import Spec
from .scm_auth import verify_context_url # type: ignore
# Examples:
# - python -m examples.fs_access
# - python -m examples.fs_access https://github.com/gitpod-io/empty
async def main(cleanup: util.Disposables) -> None:
client = AsyncGitpod()
context_url = sys.argv[1] if len(sys.argv) > 1 else None
env_class = await util.find_most_used_environment_class(client)
if not env_class:
print("Error: No environment class found. Please create one first.")
sys.exit(1)
print(f"Found environment class: {env_class.display_name} ({env_class.description})")
print("Generating SSH key pair")
key = paramiko.RSAKey.generate(2048)
private_key_file = StringIO()
key.write_private_key(private_key_file)
private_key_file.seek(0) # Reset position to start
public_key = f"{key.get_name()} {key.get_base64()}"
print("Creating environment with SSH access")
key_id = "fs-access-example"
spec: EnvironmentSpecParam = {
"desired_phase": "ENVIRONMENT_PHASE_RUNNING",
"machine": {"class": env_class.id},
"ssh_public_keys": [{
"id": key_id,
"value": public_key
}]
}
if context_url:
await verify_context_url(client, context_url, env_class.runner_id)
spec["content"] = {
"initializer": {"specs": [Spec(
context_url={
"url": context_url
}
)]}
}
print("Creating environment")
environment = (await client.environments.create(spec=spec)).environment
cleanup.adda(lambda: client.environments.delete(environment_id=environment.id))
env = util.EnvironmentState(client, environment.id)
cleanup.adda(lambda: env.close())
print("Waiting for environment to be running")
await env.wait_until_running()
print("Waiting for SSH key to be applied")
await env.wait_for_ssh_key_applied(key_id=key_id, key_value=public_key)
print("Waiting for SSH URL")
ssh_url = await env.wait_for_ssh_url()
print(f"Setting up SSH connection to {ssh_url}")
# Parse ssh://username@host:port format
url_parts = ssh_url.split('://')[-1]
username, rest = url_parts.split('@')
host, port_str = rest.split(':')
port = int(port_str)
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(
hostname=host,
port=port,
username=username,
pkey=key
)
cleanup.add(lambda: ssh.close())
print("Creating SFTP client")
sftp = ssh.open_sftp()
cleanup.add(lambda: sftp.close())
print("Writing test file")
test_content = "Hello from Gitpod Python SDK!"
with sftp.file('test.txt', 'w') as f:
f.write(test_content)
with sftp.file('test.txt', 'r') as f:
content = f.read()
print(f"File content: {content.decode()}")
if __name__ == "__main__":
asyncio.run(util.with_disposables(main))