aboutsummaryrefslogtreecommitdiff
path: root/gn_auth/auth/authorisation
diff options
context:
space:
mode:
authorMunyoki Kilyungi2024-03-19 22:05:56 +0300
committerMunyoki Kilyungi2024-03-21 10:07:08 +0300
commit7107b2b99058835bf0115955c3e79c23f9fb6bc9 (patch)
tree37a412d506aa47a213286531b466b2ff85d442ba /gn_auth/auth/authorisation
parentf7c41fa2f24d96c3024930b1bb603f566f402644 (diff)
downloadgn-auth-7107b2b99058835bf0115955c3e79c23f9fb6bc9.tar.gz
Revert "Add an extra endpoint for metadata authorisation."
This reverts commit f5e833c0d72eaec80425203b15210ed304cc4811. Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn_auth/auth/authorisation')
-rw-r--r--gn_auth/auth/authorisation/data/views.py50
-rw-r--r--gn_auth/auth/authorisation/resources/models.py19
2 files changed, 0 insertions, 69 deletions
diff --git a/gn_auth/auth/authorisation/data/views.py b/gn_auth/auth/authorisation/data/views.py
index c40b667..01fffcd 100644
--- a/gn_auth/auth/authorisation/data/views.py
+++ b/gn_auth/auth/authorisation/data/views.py
@@ -335,53 +335,3 @@ def link_phenotype() -> Response:
return jsonify(with_db_connection(
partial(__link__, **__values__(request.json))))
-
-
-@data.route("/metadata/authorisation", methods=["POST"])
-@require_json
-def metadata_resources() -> Response:
- """Retrieve the authorisation level for given metadata resources"""
- db_uri, privileges = app.config["AUTH_DB"], {}
- user = User(uuid.uuid4(), "anon@ymous.user", "Anonymous User")
- with db.connection(db_uri) as auth_conn:
- with require_oauth.acquire("profile group resource") as token:
- resources = attach_resources_data(
- auth_conn, user_resources(auth_conn, token.user)
- )
- roles = user_resource_roles(
- auth_conn, token.user
- )
- privileges = {
- resource_id: tuple(
- privilege.privilege_id
- for role in roles[resource_id]
- for privilege in role.privileges)
- for resource_id, is_authorised
- in authorised_for(
- auth_conn, token.user,
- ("group:resource:view-resource",),
- tuple(
- resource.resource_id for resource
- in resources
- )
- ).items()
- if is_authorised
- } | {
- resource.resource_id: ("system:resource:public-read",)
- for resource in resources if resource.public
- }
- resource_map = {
- resource.resource_category.resource_category_key.lower():
- resource.resource_id
- for resource in resources
- for item in resource.resource_data
- }
- return jsonify(
- {
- "user": asdict(user),
- "resource_id": resource_map.get(
- request.json.get("name") #type: ignore[union-attr]
- ),
- "privileges": privileges,
- }
- )
diff --git a/gn_auth/auth/authorisation/resources/models.py b/gn_auth/auth/authorisation/resources/models.py
index 3720baa..8bd8c73 100644
--- a/gn_auth/auth/authorisation/resources/models.py
+++ b/gn_auth/auth/authorisation/resources/models.py
@@ -2,7 +2,6 @@
from dataclasses import asdict
from uuid import UUID, uuid4
from functools import reduce, partial
-from sqlite3 import Row
from typing import Dict, Sequence, Optional
from gn_auth.auth.db import sqlite3 as db
@@ -36,22 +35,6 @@ from .phenotype import (
from .errors import MissingGroupError
-
-def __metadata_resource_data__(
- cursor: db.DbCursor,
- resource_id: UUID,
- offset: int = 0,
- limit: Optional[int] = None
-) -> Sequence[Row]:
- """Fetch metadata resources"""
- cursor.execute(
- (
- ("SELECT * FROM metadata_resources as mt \
-WHERE mt.resource_id=?")
- + (f" LIMIT {limit} OFFSET {offset}" if bool(limit) else "")),
- (str(resource_id),))
- return cursor.fetchall()
-
def __assign_resource_owner_role__(cursor, resource, user, group):
"""Assign `user` the 'Resource Owner' role for `resource`."""
cursor.execute(
@@ -202,7 +185,6 @@ def resource_data(conn, resource, offset: int = 0, limit: Optional[int] = None)
"mrna": mrna_resource_data,
"genotype": genotype_resource_data,
"phenotype": phenotype_resource_data,
- "metadata": __metadata_resource_data__,
"system": lambda *args: tuple(),
"group": lambda *args: tuple()
}
@@ -309,7 +291,6 @@ def attach_resources_data(
"mrna": mrna_attach_resources_data,
"genotype": genotype_attach_resources_data,
"phenotype": phenotype_attach_resources_data,
- "metadata": lambda *args: [],
"system": lambda *args: [],
"group": lambda *args: [],
"inbredset-group": lambda *args: []