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>
|
2020-09-28 22:54:34 +00:00
|
|
|
# Copyright (C) 2020 by Martin Rey <martin.rey@mailbox.org>
|
2020-07-01 19:34:16 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: 0BSD
|
|
|
|
|
2020-10-13 09:38:33 +00:00
|
|
|
"""REST API endpoints for managing triggers.
|
2020-07-11 10:54:07 +00:00
|
|
|
|
|
|
|
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-10-13 08:35:20 +00:00
|
|
|
from re import compile as regex_compile
|
|
|
|
from re import error as RegexError
|
|
|
|
from sqlite3 import IntegrityError
|
|
|
|
|
2020-07-01 19:34:16 +00:00
|
|
|
from fastapi import APIRouter, Depends, HTTPException, Response, status
|
|
|
|
from ormantic.exceptions import NoMatch
|
|
|
|
from pydantic import BaseModel
|
2020-10-13 08:35:20 +00:00
|
|
|
|
|
|
|
from kibicara.model import Trigger
|
|
|
|
from kibicara.webapi.hoods import get_hood
|
2020-07-01 19:34:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
|
|
|
|
2020-07-25 11:38:10 +00:00
|
|
|
@router.get(
|
|
|
|
'/',
|
|
|
|
# TODO response_model,
|
|
|
|
operation_id='get_triggers',
|
|
|
|
)
|
2020-07-01 19:34:16 +00:00
|
|
|
async def trigger_read_all(hood=Depends(get_hood)):
|
2020-10-13 09:38:33 +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()
|
|
|
|
|
|
|
|
|
2020-07-25 11:38:10 +00:00
|
|
|
@router.post(
|
|
|
|
'/',
|
|
|
|
status_code=status.HTTP_201_CREATED,
|
|
|
|
# TODO response_model,
|
|
|
|
operation_id='create_trigger',
|
|
|
|
)
|
2020-07-01 19:34:16 +00:00
|
|
|
async def trigger_create(
|
2020-07-02 12:31:53 +00:00
|
|
|
values: BodyTrigger, response: Response, hood=Depends(get_hood)
|
|
|
|
):
|
2020-09-04 23:39:24 +00:00
|
|
|
"""Creates a new trigger for hood with id **hood_id**.
|
2020-07-11 10:54:07 +00:00
|
|
|
|
|
|
|
- **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__)
|
2020-09-28 22:39:32 +00:00
|
|
|
response.headers['Location'] = str(trigger.id)
|
2020-07-01 19:34:16 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
2020-07-25 11:38:10 +00:00
|
|
|
@router.get(
|
|
|
|
'/{trigger_id}',
|
|
|
|
# TODO response_model,
|
|
|
|
operation_id='get_trigger',
|
|
|
|
)
|
2020-07-01 19:34:16 +00:00
|
|
|
async def trigger_read(trigger=Depends(get_trigger)):
|
2020-10-13 09:38:33 +00:00
|
|
|
"""Reads trigger with id **trigger_id** for hood with id **hood_id**."""
|
2020-07-01 19:34:16 +00:00
|
|
|
return trigger
|
|
|
|
|
|
|
|
|
2020-07-25 11:38:10 +00:00
|
|
|
@router.put(
|
|
|
|
'/{trigger_id}',
|
|
|
|
status_code=status.HTTP_204_NO_CONTENT,
|
|
|
|
operation_id='update_trigger',
|
|
|
|
)
|
2020-07-01 19:34:16 +00:00
|
|
|
async def trigger_update(values: BodyTrigger, trigger=Depends(get_trigger)):
|
2020-09-04 23:39:24 +00:00
|
|
|
"""Updates trigger with id **trigger_id** for hood with id **hood_id**.
|
2020-07-11 10:54:07 +00:00
|
|
|
|
|
|
|
- **pattern**: Regular expression which is used to match a trigger
|
|
|
|
"""
|
2020-07-01 19:34:16 +00:00
|
|
|
await trigger.update(**values.__dict__)
|
2020-09-11 00:58:39 +00:00
|
|
|
return Response(status_code=status.HTTP_204_NO_CONTENT)
|
2020-07-01 19:34:16 +00:00
|
|
|
|
|
|
|
|
2020-07-25 11:38:10 +00:00
|
|
|
@router.delete(
|
|
|
|
'/{trigger_id}',
|
|
|
|
status_code=status.HTTP_204_NO_CONTENT,
|
|
|
|
operation_id='delete_trigger',
|
|
|
|
)
|
2020-07-01 19:34:16 +00:00
|
|
|
async def trigger_delete(trigger=Depends(get_trigger)):
|
2020-10-13 09:38:33 +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()
|
2020-09-11 00:58:39 +00:00
|
|
|
return Response(status_code=status.HTTP_204_NO_CONTENT)
|