Skip to content

Commit

Permalink
Add pseudo contributor role w/o readonly reqs, but write access (#777)
Browse files Browse the repository at this point in the history
* Add pseudo contributor role w/o readonly reqs, but write access

* duhhh

* Don't throw away all provided values

* Fix linting error

---------

Co-authored-by: Michael Franklin <[email protected]>
  • Loading branch information
illusional and illusional authored May 15, 2024
1 parent 60d67d1 commit d21e399
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/routes/cohort.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from fastapi import APIRouter

from api.utils.db import Connection, get_project_readonly_connection
from api.utils.db import Connection, HACK_get_project_contributor_connection
from db.python.layers.cohort import CohortLayer
from db.python.tables.project import ProjectPermissionsTable
from models.models.cohort import CohortBody, CohortCriteria, CohortTemplate, NewCohort
Expand All @@ -17,7 +17,7 @@
async def create_cohort_from_criteria(
cohort_spec: CohortBody,
cohort_criteria: CohortCriteria | None = None,
connection: Connection = get_project_readonly_connection,
connection: Connection = HACK_get_project_contributor_connection,
dry_run: bool = False,
) -> NewCohort:
"""
Expand Down Expand Up @@ -70,7 +70,7 @@ async def create_cohort_from_criteria(
@router.post('/{project}/cohort_template', operation_id='createCohortTemplate')
async def create_cohort_template(
template: CohortTemplate,
connection: Connection = get_project_readonly_connection,
connection: Connection = HACK_get_project_contributor_connection,
) -> str:
"""
Create a cohort template with the given name and sample/sequencing group IDs.
Expand Down
32 changes: 32 additions & 0 deletions api/utils/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,35 @@ async def dependable_get_write_project_connection(
)


async def HACK_dependable_contributor_project_connection(
project: str,
author: str = Depends(authenticate),
ar_guid: str = Depends(get_ar_guid),
extra_values: dict | None = Depends(get_extra_audit_log_values),
) -> Connection:
"""FastAPI handler for getting connection WITH project"""
meta = {}
if extra_values:
meta.update(extra_values)

meta['role'] = 'contributor'

# hack by making it appear readonly
connection = await ProjectPermissionsTable.get_project_connection(
project_name=project,
author=author,
readonly=True,
on_behalf_of=None,
ar_guid=ar_guid,
meta=meta,
)

# then hack it so
connection.readonly = False

return connection


async def dependable_get_readonly_project_connection(
project: str,
author: str = Depends(authenticate),
Expand Down Expand Up @@ -179,6 +208,9 @@ def validate_iap_jwt_and_get_email(iap_jwt, audience):

get_author = Depends(authenticate)
get_project_readonly_connection = Depends(dependable_get_readonly_project_connection)
HACK_get_project_contributor_connection = Depends(
HACK_dependable_contributor_project_connection
)
get_project_write_connection = Depends(dependable_get_write_project_connection)
get_projectless_db_connection = Depends(dependable_get_connection)
get_projectless_bq_connection = Depends(dependable_get_bq_connection)
Expand Down
1 change: 1 addition & 0 deletions db/python/tables/family.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ async def query(
if not filter_.project and not filter_.id:
raise ValueError('Project or ID filter is required for family queries')

has_participant_join = False
field_overrides = {'id': 'f.id', 'external_id': 'f.external_id'}

if filter_.participant_id:
Expand Down

0 comments on commit d21e399

Please sign in to comment.