ticketfrei3/kibicara/webapi/hoods/triggers.py

81 lines
2.7 KiB
Python
Raw Normal View History

2020-07-01 19:34:16 +00:00
# Copyright (C) 2020 by Thomas Lindner <tom@dl6tom.de>
# Copyright (C) 2020 by Cathy Hu <cathy.hu@fau.de>
#
# SPDX-License-Identifier: 0BSD
2020-07-11 10:54:07 +00:00
""" REST API endpoints for managing triggers.
Provides API endpoints for adding, removing and reading regular expressions that allow a
message to be passed through by a censor. A published message must match one of these
regular expressions otherwise it gets dropped by the censor. This provides a message
filter customizable by the hood admins.
"""
2020-07-01 19:34:16 +00:00
from fastapi import APIRouter, Depends, HTTPException, Response, status
from kibicara.model import Trigger
from kibicara.webapi.hoods import get_hood
from ormantic.exceptions import NoMatch
from pydantic import BaseModel
2020-07-06 08:58:01 +00:00
from re import compile as regex_compile, error as RegexError
2020-07-01 19:34:16 +00:00
from sqlite3 import IntegrityError
class BodyTrigger(BaseModel):
pattern: str
async def get_trigger(trigger_id: int, hood=Depends(get_hood)):
try:
return await Trigger.objects.get(id=trigger_id, hood=hood)
except NoMatch:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND)
router = APIRouter()
@router.get('/')
async def trigger_read_all(hood=Depends(get_hood)):
2020-07-11 10:54:07 +00:00
""" Get all triggers of hood with id **hood_id**. """
2020-07-01 19:34:16 +00:00
return await Trigger.objects.filter(hood=hood).all()
@router.post('/', status_code=status.HTTP_201_CREATED)
async def trigger_create(
values: BodyTrigger, response: Response, hood=Depends(get_hood)
):
2020-07-11 10:54:07 +00:00
""" Creates a new trigger for hood with id **hood_id**.
- **pattern**: Regular expression which is used to match a trigger.
"""
2020-07-01 19:34:16 +00:00
try:
2020-07-06 08:58:01 +00:00
regex_compile(values.pattern)
2020-07-01 19:34:16 +00:00
trigger = await Trigger.objects.create(hood=hood, **values.__dict__)
response.headers['Location'] = '%d' % trigger.id
return trigger
except IntegrityError:
raise HTTPException(status_code=status.HTTP_409_CONFLICT)
2020-07-06 08:58:01 +00:00
except RegexError:
raise HTTPException(status_code=status.HTTP_422_UNPROCESSABLE_ENTITY)
2020-07-01 19:34:16 +00:00
@router.get('/{trigger_id}')
async def trigger_read(trigger=Depends(get_trigger)):
2020-07-11 10:54:07 +00:00
""" Reads trigger with id **trigger_id** for hood with id **hood_id**. """
2020-07-01 19:34:16 +00:00
return trigger
@router.put('/{trigger_id}', status_code=status.HTTP_204_NO_CONTENT)
async def trigger_update(values: BodyTrigger, trigger=Depends(get_trigger)):
2020-07-11 10:54:07 +00:00
""" Updates trigger with id **trigger_id** for hood with id **hood_id**.
- **pattern**: Regular expression which is used to match a trigger
"""
2020-07-01 19:34:16 +00:00
await trigger.update(**values.__dict__)
@router.delete('/{trigger_id}', status_code=status.HTTP_204_NO_CONTENT)
async def trigger_delete(trigger=Depends(get_trigger)):
2020-07-11 10:54:07 +00:00
""" Deletes trigger with id **trigger_id** for hood with id **hood_id**. """
2020-07-01 19:34:16 +00:00
await trigger.delete()