-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement REST API for container_registry
- Loading branch information
1 parent
a3207ba
commit 3d09864
Showing
2 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
from __future__ import annotations | ||
|
||
import logging | ||
from typing import TYPE_CHECKING, Any, Iterable, Tuple | ||
|
||
import aiohttp_cors | ||
import sqlalchemy as sa | ||
import trafaret as t | ||
from aiohttp import web | ||
|
||
from ai.backend.common import validators as tx | ||
from ai.backend.logging import BraceStyleAdapter | ||
from ai.backend.manager.models.association_container_registries_groups import ( | ||
AssociationContainerRegistriesGroupsRow, | ||
) | ||
|
||
if TYPE_CHECKING: | ||
from .context import RootContext | ||
|
||
from .auth import superadmin_required | ||
from .manager import READ_ALLOWED, server_status_required | ||
from .types import CORSOptions, WebMiddleware | ||
from .utils import check_api_params | ||
|
||
log = BraceStyleAdapter(logging.getLogger(__spec__.name)) | ||
|
||
|
||
@server_status_required(READ_ALLOWED) | ||
@superadmin_required | ||
@check_api_params( | ||
t.Dict({ | ||
tx.AliasedKey(["registry_id", "registry"]): t.String, | ||
tx.AliasedKey(["group_id", "group"]): t.String, | ||
}) | ||
) | ||
async def associate_with_group(request: web.Request, params: Any) -> web.Response: | ||
log.info("ASSOCIATE_WITH_GROUP (cr:{}, gr:{})", params["registry_id"], params["group_id"]) | ||
root_ctx: RootContext = request.app["_root.context"] | ||
registry_id = params["registry_id"] | ||
group_id = params["group_id"] | ||
|
||
async with root_ctx.db.begin_session() as db_sess: | ||
insert_query = sa.insert(AssociationContainerRegistriesGroupsRow).values({ | ||
"registry_id": registry_id, | ||
"group_id": group_id, | ||
}) | ||
|
||
await db_sess.execute(insert_query) | ||
|
||
return web.json_response({}) | ||
|
||
|
||
@server_status_required(READ_ALLOWED) | ||
@superadmin_required | ||
@check_api_params( | ||
t.Dict({ | ||
tx.AliasedKey(["registry_id", "registry"]): t.String, | ||
tx.AliasedKey(["group_id", "group"]): t.String, | ||
}) | ||
) | ||
async def disassociate_with_group(request: web.Request, params: Any) -> web.Response: | ||
log.info("DISASSOCIATE_WITH_GROUP (cr:{}, gr:{})", params["registry_id"], params["group_id"]) | ||
root_ctx: RootContext = request.app["_root.context"] | ||
registry_id = params["registry_id"] | ||
group_id = params["group_id"] | ||
|
||
async with root_ctx.db.begin_session() as db_sess: | ||
delete_query = ( | ||
sa.delete(AssociationContainerRegistriesGroupsRow) | ||
.where(AssociationContainerRegistriesGroupsRow.registry_id == registry_id) | ||
.where(AssociationContainerRegistriesGroupsRow.group_id == group_id) | ||
) | ||
|
||
await db_sess.execute(delete_query) | ||
|
||
return web.json_response({}) | ||
|
||
|
||
def create_app( | ||
default_cors_options: CORSOptions, | ||
) -> Tuple[web.Application, Iterable[WebMiddleware]]: | ||
app = web.Application() | ||
app["api_versions"] = (1, 2, 3, 4, 5) | ||
app["prefix"] = "container-registries" | ||
cors = aiohttp_cors.setup(app, defaults=default_cors_options) | ||
cors.add(app.router.add_route("POST", "/associate-with-group", associate_with_group)) | ||
cors.add(app.router.add_route("POST", "/disassociate-with-group", disassociate_with_group)) | ||
return app, [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters