Warning

This document is for an old release of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.webapps.galaxy.api.tags

"""
API Controller providing Galaxy Tags
"""
import logging

from fastapi import (
    Body,
    status,
)

from galaxy.managers.context import ProvidesUserContext
from galaxy.managers.tags import (
    ItemTagsPayload,
    TagsManager,
)
from galaxy.web import expose_api
from . import (
    BaseGalaxyAPIController,
    depends,
    DependsOnTrans,
    Router,
)

log = logging.getLogger(__name__)

router = Router(tags=['tags'])


[docs]@router.cbv class FastAPITags: manager: TagsManager = depends(TagsManager)
[docs] @router.put( '/api/tags', summary="Apply a new set of tags to an item.", status_code=status.HTTP_204_NO_CONTENT, ) def update( self, trans: ProvidesUserContext = DependsOnTrans, payload: ItemTagsPayload = Body( ..., # Required title="Payload", description="Request body containing the item and the tags to be assigned.", ), ): """Replaces the tags associated with an item with the new ones specified in the payload. - The previous tags will be __deleted__. - If no tags are provided in the request body, the currently associated tags will also be __deleted__. """ self.manager.update(trans, payload)
[docs]class TagsController(BaseGalaxyAPIController): manager: TagsManager = depends(TagsManager) # Retag an item. All previous tags are deleted and new tags are applied.
[docs] @expose_api def update(self, trans: ProvidesUserContext, payload: dict, **kwd): """ PUT /api/tags/ Apply a new set of tags to an item; previous tags are deleted. """ self.manager.update(trans, ItemTagsPayload(**payload))