Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(auth): Add SCM authentication support for repository access #44

Merged
merged 1 commit into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions examples/anthropic_tool_use.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
# export ANTHROPIC_API_KEY=...
# python -m examples.anthropic_tool_use

from __future__ import annotations

Expand All @@ -11,6 +12,8 @@
from gitpod import AsyncGitpod
from gitpod.types.environment_initializer_param import Spec

from .scm_auth import verify_context_url # type: ignore

gpclient = AsyncGitpod()
llmclient = Anthropic()

Expand Down Expand Up @@ -41,8 +44,7 @@ async def create_environment(args: dict[str, str], cleanup: util.Disposables) ->
env_class = await util.find_most_used_environment_class(gpclient)
if not env_class:
raise Exception("No environment class found. Please create one first.")
env_class_id = env_class.id
assert env_class_id is not None
await verify_context_url(gpclient, args["context_url"], env_class.runner_id)

environment = (await gpclient.environments.create(
spec={
Expand All @@ -54,18 +56,15 @@ async def create_environment(args: dict[str, str], cleanup: util.Disposables) ->
}
)]},
},
"machine": {"class": env_class_id},
"machine": {"class": env_class.id},
}
)).environment
assert environment is not None
environment_id = environment.id
assert environment_id is not None
cleanup.add(lambda: asyncio.run(gpclient.environments.delete(environment_id=environment_id)))
cleanup.adda(lambda: gpclient.environments.delete(environment_id=environment.id))

print(f"\nCreated environment: {environment_id} - waiting for it to be ready...")
await util.wait_for_environment_ready(gpclient, environment_id)
print(f"\nEnvironment is ready: {environment_id}")
return environment_id
print(f"\nCreated environment: {environment.id} - waiting for it to be ready...")
await util.wait_for_environment_running(gpclient, environment.id)
print(f"\nEnvironment is ready: {environment.id}")
return environment.id

async def execute_command(args: dict[str, str]) -> str:
lines_iter = await util.run_command(gpclient, args["environment_id"], args["command"])
Expand Down Expand Up @@ -135,6 +134,4 @@ async def main(cleanup: util.Disposables) -> None:

if __name__ == "__main__":
import asyncio
disposables = util.Disposables()
with disposables:
asyncio.run(main(disposables))
asyncio.run(util.with_disposables(main))
26 changes: 10 additions & 16 deletions examples/fs_access.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import sys
import asyncio
from io import StringIO
Expand All @@ -11,10 +9,12 @@
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:
# - ./examples/fs_access.py
# - ./examples/fs_access.py https://github.com/gitpod-io/empty
# - 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()

Expand All @@ -25,8 +25,6 @@ async def main(cleanup: util.Disposables) -> None:
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})")
env_class_id = env_class.id
assert env_class_id is not None

print("Generating SSH key pair")
key = paramiko.RSAKey.generate(2048)
Expand All @@ -39,13 +37,14 @@ async def main(cleanup: util.Disposables) -> None:
key_id = "fs-access-example"
spec: EnvironmentSpecParam = {
"desired_phase": "ENVIRONMENT_PHASE_RUNNING",
"machine": {"class": env_class_id},
"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={
Expand All @@ -56,13 +55,10 @@ async def main(cleanup: util.Disposables) -> None:

print("Creating environment")
environment = (await client.environments.create(spec=spec)).environment
assert environment is not None
environment_id = environment.id
assert environment_id is not None
cleanup.add(lambda: asyncio.run(client.environments.delete(environment_id=environment_id)))
cleanup.adda(lambda: client.environments.delete(environment_id=environment.id))

env = util.EnvironmentState(client, environment_id)
cleanup.add(lambda: asyncio.run(env.close()))
env = util.EnvironmentState(client, environment.id)
cleanup.adda(lambda: env.close())

print("Waiting for environment to be running")
await env.wait_until_running()
Expand Down Expand Up @@ -104,6 +100,4 @@ async def main(cleanup: util.Disposables) -> None:
print(f"File content: {content.decode()}")

if __name__ == "__main__":
disposables = util.Disposables()
with disposables:
asyncio.run(main(disposables))
asyncio.run(util.with_disposables(main))
28 changes: 11 additions & 17 deletions examples/run_command.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import sys
import asyncio

Expand All @@ -8,10 +6,12 @@
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:
# - ./examples/run_command.py 'echo "Hello World!"'
# - ./examples/run_command.py 'echo "Hello World!"' https://github.com/gitpod-io/empty
# - python -m examples.run_command 'echo "Hello World!"'
# - python -m examples.run_command 'echo "Hello World!"' https://github.com/gitpod-io/empty
async def main(cleanup: util.Disposables) -> None:
client = AsyncGitpod()

Expand All @@ -27,14 +27,13 @@ async def main(cleanup: util.Disposables) -> None:
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})")
env_class_id = env_class.id
assert env_class_id is not None


spec: EnvironmentSpecParam = {
"desired_phase": "ENVIRONMENT_PHASE_RUNNING",
"machine": {"class": env_class_id},
"machine": {"class": env_class.id},
}
if context_url:
await verify_context_url(client, context_url, env_class.runner_id)
spec["content"] = {
"initializer": {"specs": [Spec(
context_url={
Expand All @@ -45,20 +44,15 @@ async def main(cleanup: util.Disposables) -> None:

print("Creating environment")
environment = (await client.environments.create(spec=spec)).environment
assert environment is not None
environment_id = environment.id
assert environment_id is not None
cleanup.add(lambda: asyncio.run(client.environments.delete(environment_id=environment_id)))
cleanup.adda(lambda: client.environments.delete(environment_id=environment.id))

print("Waiting for environment to be ready")
await util.wait_for_environment_ready(client, environment_id)
await util.wait_for_environment_running(client, environment.id)

print("Running command")
lines = await util.run_command(client, environment_id, command)
lines = await util.run_command(client, environment.id, command)
async for line in lines:
print(line)

if __name__ == "__main__":
disposables = util.Disposables()
with disposables:
asyncio.run(main(disposables))
asyncio.run(util.with_disposables(main))
41 changes: 17 additions & 24 deletions examples/run_service.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#!/usr/bin/env python

import sys
import asyncio

Expand All @@ -8,56 +6,53 @@
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:
# - ./examples/run_service.py
# - ./examples/run_service.py https://github.com/gitpod-io/empty
# - python -m examples.run_service
# - python -m examples.run_service 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})")
env_class_id = env_class.id
assert env_class_id is not None

port = 8888
spec: EnvironmentSpecParam = {
"desired_phase": "ENVIRONMENT_PHASE_RUNNING",
"machine": {"class": env_class_id},
"machine": {"class": env_class.id},
"ports": [{
"name": "Lama Service",
"port": port,
"admission": "ADMISSION_LEVEL_EVERYONE"
}]
}
if context_url:
await verify_context_url(client, context_url, env_class.runner_id)
spec["content"] = {
"initializer": {"specs": [Spec(
context_url={
"url": context_url
}
)]}
}
context_url={
"url": context_url
}
)]}
}

print("Creating environment")
environment = (await client.environments.create(spec=spec)).environment
assert environment is not None
environment_id = environment.id
assert environment_id is not None
cleanup.add(lambda: asyncio.run(client.environments.delete(environment_id=environment_id)))
cleanup.adda(lambda: client.environments.delete(environment_id=environment.id))

print("Waiting for environment to be ready")
env = util.EnvironmentState(client, environment_id)
cleanup.add(lambda: asyncio.run(env.close()))
env = util.EnvironmentState(client, environment.id)
cleanup.adda(lambda: env.close())
await env.wait_until_running()

print("Starting Lama Service")
lines = await util.run_service(client, environment_id, {
lines = await util.run_service(client, environment.id, {
"name":"Lama Service",
"description":"Lama Service",
"reference":"lama-service"
Expand All @@ -75,6 +70,4 @@ async def main(cleanup: util.Disposables) -> None:
print(line)

if __name__ == "__main__":
disposables = util.Disposables()
with disposables:
asyncio.run(main(disposables))
asyncio.run(util.with_disposables(main))
Loading