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

Add member management for organizations #409

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
13 changes: 11 additions & 2 deletions amt/api/forms/organization.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
from gettext import NullTranslations

from amt.schema.webform import WebForm, WebFormField, WebFormFieldType, WebFormSearchField, WebFormSubmitButton
from amt.models import User
from amt.schema.webform import (
WebForm,
WebFormField,
WebFormFieldType,
WebFormOption,
WebFormSearchField,
WebFormSubmitButton,
)


def get_organization_form(id: str, translations: NullTranslations) -> WebForm:
def get_organization_form(id: str, translations: NullTranslations, user: User | None) -> WebForm:
_ = translations.gettext

organization_form: WebForm = WebForm(id=id, post_url="/organizations/new")
Expand Down Expand Up @@ -31,6 +39,7 @@ def get_organization_form(id: str, translations: NullTranslations) -> WebForm:
placeholder=_("Search for a person..."),
search_url="/organizations/users?returnType=search_select_field",
query_var_name="query",
default_value=WebFormOption(str(user.id), user.name) if user else None,
group="1",
),
WebFormSubmitButton(label=_("Add organization"), group="1", name="submit"),
Expand Down
6 changes: 3 additions & 3 deletions amt/api/navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class DisplayText(Enum):
MODELCARD = "modelcard"
DETAILS = "details"
ORGANIZATIONS = "organizations"
MEMBERS = "people"
MEMBERS = "members"


def get_translation(key: DisplayText, translations: NullTranslations) -> str:
Expand Down Expand Up @@ -142,8 +142,8 @@ class Navigation:
ORGANIZATIONS_ALGORITHMS = BaseNavigationItem(
display_text=DisplayText.ALGORITHMS, url="/organizations/{organization_slug}/algorithms"
)
ORGANIZATIONS_PEOPLE = BaseNavigationItem(
display_text=DisplayText.MEMBERS, url="/organizations/{organization_slug}/people"
ORGANIZATIONS_MEMBERS = BaseNavigationItem(
display_text=DisplayText.MEMBERS, url="/organizations/{organization_slug}/members"
)


Expand Down
112 changes: 99 additions & 13 deletions amt/api/routes/organizations.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
from amt.api.routes.algorithm import UpdateFieldModel, set_path
from amt.api.routes.shared import get_filters_and_sort_by
from amt.core.authorization import get_user
from amt.core.exceptions import AMTNotFound, AMTRepositoryError
from amt.core.exceptions import AMTAuthorizationError, AMTNotFound, AMTRepositoryError
from amt.core.internationalization import get_current_translation
from amt.models import Organization
from amt.models import Organization, User
from amt.repositories.organizations import OrganizationsRepository
from amt.repositories.users import UsersRepository
from amt.schema.organization import OrganizationBase, OrganizationNew, OrganizationSlug
from amt.schema.organization import OrganizationBase, OrganizationNew, OrganizationSlug, OrganizationUsers
from amt.services.organizations import OrganizationsService

router = APIRouter()
Expand All @@ -35,7 +35,7 @@ def get_organization_tabs(request: Request, organization_slug: str) -> list[Navi
request.state.path_variables = {"organization_slug": organization_slug}

return resolve_navigation_items(
[Navigation.ORGANIZATIONS_INFO, Navigation.ORGANIZATIONS_ALGORITHMS, Navigation.ORGANIZATIONS_PEOPLE],
[Navigation.ORGANIZATIONS_INFO, Navigation.ORGANIZATIONS_ALGORITHMS, Navigation.ORGANIZATIONS_MEMBERS],
request,
)

Expand Down Expand Up @@ -65,14 +65,17 @@ async def get_users(
@router.get("/new")
async def get_new(
request: Request,
users_repository: Annotated[UsersRepository, Depends(UsersRepository)],
) -> HTMLResponse:
breadcrumbs = resolve_base_navigation_items([Navigation.ORGANIZATIONS_ROOT, Navigation.ORGANIZATIONS_NEW], request)

form = get_organization_form(id="organization", translations=get_current_translation(request))

context: dict[str, Any] = {"form": form, "breadcrumbs": breadcrumbs}

return templates.TemplateResponse(request, "organizations/new.html.j2", context)
# todo (Robbert): make object SessionUser so it can be used as alternative for Database User
session_user = get_user(request)
if session_user:
user = await users_repository.find_by_id(session_user["sub"])
form = get_organization_form(id="organization", translations=get_current_translation(request), user=user)
context: dict[str, Any] = {"form": form, "breadcrumbs": breadcrumbs}
return templates.TemplateResponse(request, "organizations/new.html.j2", context)
raise AMTAuthorizationError()


@router.get("/")
Expand Down Expand Up @@ -247,8 +250,91 @@ async def get_algorithms(
return templates.TemplateResponse(request, "pages/under_construction.html.j2", {})


@router.get("/{slug}/people")
async def get_people(
@router.delete("/{slug}/members/{user_id}")
async def remove_member(
request: Request,
slug: str,
user_id: UUID,
organizations_repository: Annotated[OrganizationsRepository, Depends(OrganizationsRepository)],
users_repository: Annotated[UsersRepository, Depends(UsersRepository)],
) -> HTMLResponse:
return templates.TemplateResponse(request, "pages/under_construction.html.j2", {})
# TODO (Robbert): add authorization and check if user and organization exist?
organization = await organizations_repository.find_by_slug(slug)
user: User | None = await users_repository.find_by_id(user_id)
if user:
await organizations_repository.remove_user(organization, user)
return templates.Redirect(request, f"/organizations/{slug}/members")
raise AMTAuthorizationError


@router.get("/{slug}/members/form")
async def get_members_form(
request: Request,
slug: str,
) -> HTMLResponse:
form = get_organization_form(id="organization", translations=get_current_translation(request), user=None)
context: dict[str, Any] = {"form": form, "slug": slug}
return templates.TemplateResponse(request, "organizations/parts/add_members_modal.html.j2", context)


@router.put("/{slug}/members", response_class=HTMLResponse)
async def add_new_members(
request: Request,
slug: str,
organizations_service: Annotated[OrganizationsService, Depends(OrganizationsService)],
organization_users: OrganizationUsers,
) -> HTMLResponse:
organization = await organizations_service.find_by_slug(slug)
await organizations_service.add_users(organization, organization_users.user_ids)
return templates.Redirect(request, f"/organizations/{slug}/members")


@router.get("/{slug}/members")
async def get_members(
request: Request,
slug: str,
organizations_repository: Annotated[OrganizationsRepository, Depends(OrganizationsRepository)],
users_repository: Annotated[UsersRepository, Depends(UsersRepository)],
skip: int = Query(0, ge=0),
limit: int = Query(5000, ge=1), # todo: fix infinite scroll
search: str = Query(""),
) -> HTMLResponse:
filters, drop_filters, localized_filters, sort_by = get_filters_and_sort_by(request)
organization = await organizations_repository.find_by_slug(slug)
tab_items = get_organization_tabs(request, organization_slug=slug)
request.state.path_variables = {"organization_slug": organization.slug}
breadcrumbs = resolve_base_navigation_items(
[
Navigation.ORGANIZATIONS_ROOT,
BaseNavigationItem(custom_display_text=organization.name, url="/organizations/{organization_slug}"),
Navigation.ORGANIZATIONS_MEMBERS,
],
request,
)

filters["organization-id"] = str(organization.id)
members = await users_repository.find_all(search=search, sort=sort_by, filters=filters)

context: dict[str, Any] = {
"slug": organization.slug,
"breadcrumbs": breadcrumbs,
"tab_items": tab_items,
"members": members,
"next": next,
"limit": limit,
"start": skip,
"search": search,
"sort_by": sort_by,
"members_length": len(members),
"filters": localized_filters,
"include_filters": False,
"organization_filters": get_localized_organization_filters(request),
}

if request.state.htmx:
if drop_filters:
context.update({"include_filters": True})
return templates.TemplateResponse(request, "organizations/parts/members_results.html.j2", context)
else:
context.update({"include_filters": True})
return templates.TemplateResponse(request, "organizations/members.html.j2", context)
1 change: 1 addition & 0 deletions amt/core/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"loggers": {
"": {"handlers": ["console", "file"], "level": "DEBUG", "propagate": False},
"httpcore": {"handlers": ["console", "file"], "level": "ERROR", "propagate": False},
"aiosqlite": {"handlers": ["console", "file"], "level": "INFO", "propagate": False},
},
}

Expand Down
Loading
Loading