Skip to content

Commit

Permalink
feat: internal entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
crisog committed May 19, 2024
1 parent d5361df commit 011c4df
Show file tree
Hide file tree
Showing 5 changed files with 175 additions and 11 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -162,4 +162,7 @@ cython_debug/
*.swp

# VSCode
.vscode
.vscode

# Pyenv
.python-version
123 changes: 121 additions & 2 deletions stateless/cli/commands/entrypoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,18 @@

import inquirer
from rich.console import Console
from typer import Argument, Exit, Option, Typer
from typer import Argument, Exit, Option, Typer, prompt

from ..models.entrypoints import EntrypointCreate, EntrypointUpdate
from ..models.entrypoints import (
EntrypointCreate,
EntrypointUpdate,
InternalProviderEntrypointCreate,
InternalProviderEntrypointUpdate,
)
from ..routes import V1Routes
from ..utils import (
BaseManager,
admin_guard,
make_request_with_api_key,
parse_config_file,
provider_guard,
Expand Down Expand Up @@ -302,3 +308,116 @@ def entrypoint_list(
break
else:
console.print(f"Error listing entrypoints: {json_response['detail']}")


@entrypoints_app.command("create-internal")
def entrypoint_create_internal(
config_file: Optional[str] = Option(
None,
"--config-file",
"-c",
help="The path to a JSON file with the internal provider entrypoint creation data.",
),
):
admin_guard()
while True:
if config_file:
entrypoint_create = parse_config_file(
config_file, InternalProviderEntrypointCreate
)
else:
chain_id = prompt("Enter the ID of the chain for the entrypoint", type=int)
url = prompt("Enter the URL of the entrypoint")
identity = prompt("Enter the identity of the internal provider")

entrypoint_create = InternalProviderEntrypointCreate(
url=url, chain_id=chain_id, identity=identity
)

response = make_request_with_api_key(
"POST",
V1Routes.INTERNAL_PROVIDER_ENTRYPOINTS,
entrypoint_create.model_dump_json(),
)
json_response = response.json()

if response.status_code == 201:
console.print("Your internal provider entrypoint has been created.")
create_another = inquirer.confirm(
"Would you like to create another entrypoint?"
)
if not create_another:
break
else:
console.print(f"Error creating entrypoint: {json_response['detail']}")
break


@entrypoints_app.command("view-internal")
def entrypoint_get_internal(
entrypoint_id: Optional[str] = Argument(
None, help="The UUID of the entrypoint to view."
),
):
admin_guard()
entrypoint_id = entrypoint_id or EntrypointsManager._select_entrypoint(
"What's the ID of the entrypoint you want to view?"
)
response = make_request_with_api_key(
"GET", f"{V1Routes.INTERNAL_PROVIDER_ENTRYPOINTS}/{entrypoint_id}"
)
json_response = response.json()

if response.status_code == 200:
items = [
(
str(json_response["id"]),
json_response["url"],
json_response["chain"]["name"],
json_response["identity"],
)
]
EntrypointsManager._print_table(
items, ["Entrypoint ID", "URL", "Chain", "Identity"]
)
else:
console.print(f"Error getting entrypoint: {json_response['detail']}")


@entrypoints_app.command("update-internal")
def entrypoint_update_internal(
entrypoint_id: Optional[str] = Argument(
None, help="The UUID of the entrypoint to update."
),
config_file: Optional[str] = Option(
None,
"--config-file",
"-c",
help="The path to a JSON file with the update data.",
),
):
admin_guard()
entrypoint_id = entrypoint_id or EntrypointsManager._select_entrypoint(
"What's the ID of the entrypoint you want to update?"
)
if config_file:
entrypoint_update = parse_config_file(
config_file, InternalProviderEntrypointUpdate
)
else:
url = prompt("Enter the updated URL of the entrypoint", default=None)
identity = prompt("Enter the updated identity of the entrypoint", default=None)

entrypoint_update = InternalProviderEntrypointUpdate(url=url, identity=identity)

response = make_request_with_api_key(
"PATCH",
f"{V1Routes.INTERNAL_PROVIDER_ENTRYPOINTS}/{entrypoint_id}",
entrypoint_update.model_dump_json(),
)
json_response = response.json()

if response.status_code == 200:
console.print("Your internal provider entrypoint has been updated.")
else:
console.print(f"Error updating entrypoint: {json_response['detail']}")
25 changes: 24 additions & 1 deletion stateless/cli/models/entrypoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class EntrypointNoURLResponse(BaseModel):

offering_id: UUID4
region_id: UUID4

region: Optional[RegionFullResponse]

created_at: datetime
Expand All @@ -34,3 +34,26 @@ class EntrypointCreate(BaseModel):

class EntrypointUpdate(BaseModel):
url: str = Field(None, description="The updated URL of the entrypoint")


class InternalProviderEntrypointCreate(BaseModel):
url: str = Field(..., description="The URL of the entrypoint")
chain_id: int = Field(..., description="The ID of the chain for the entrypoint")
identity: str = Field(..., description="The identity of the internal provider")


class InternalProviderEntrypointUpdate(BaseModel):
url: str = Field(None, description="The updated URL of the entrypoint")
identity: str = Field(None, description="The updated identity of the entrypoint")


class InternalProviderEntrypointFullResponse(BaseModel):
model_config = ConfigDict(from_attributes=True)

id: UUID4
chain_id: int
url: str
identity: str

created_at: datetime
updated_at: datetime
2 changes: 2 additions & 0 deletions stateless/cli/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ class V1Routes:
LIST_OFFERINGS = OFFERINGS + "/list"

ENTRYPOINTS = BaseUrl.V1 + "/entrypoints"
INTERNAL_PROVIDER_ENTRYPOINTS = ENTRYPOINTS + "/internal"

API_KEYS = BaseUrl.V1 + "/api_keys"

LIST_API_KEYS = API_KEYS + "/list"

CHAINS = BaseUrl.V1 + "/chains"
Expand Down
31 changes: 24 additions & 7 deletions stateless/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,7 @@

console = Console()

CHAINS_MAPPING = {
1: "ethereum",
137: "polygon",
10: "optimism",
42161: "arbitrum-one"
}
CHAINS_MAPPING = {1: "ethereum", 137: "polygon", 10: "optimism", 42161: "arbitrum-one"}


class BaseManager:
Expand Down Expand Up @@ -77,7 +72,29 @@ def user_guard():
raise Exit()


def make_request(method: str, url: str, data: str = None, params: dict = None, headers: dict = None) -> httpx.Response:
def get_account_role():
response = make_request_with_api_key("GET", V1Routes.ACCOUNT_PROFILE)
json_response = response.json()

if response.status_code == 200:
return json_response["role"]


def admin_guard():
if get_account_role() != "admin":
console.print("You must be logged in as an admin to use this command.")
raise Exit()


def ops_guard():
if get_account_role() != "ops":
console.print("You must be logged in as an ops to use this command.")
raise Exit()


def make_request(
method: str, url: str, data: str = None, params: dict = None, headers: dict = None
) -> httpx.Response:
try:
with httpx.Client() as client:
if method == "GET":
Expand Down

0 comments on commit 011c4df

Please sign in to comment.