Sith/api/views/api.py

35 lines
909 B
Python
Raw Normal View History

# -*- coding:utf-8 -*
#
# Copyright 2023 © AE UTBM
# ae@utbm.fr / ae.info@utbm.fr
#
# This file is part of the website of the UTBM Student Association (AE UTBM),
# https://ae.utbm.fr.
#
# You can find the source code of the website at https://github.com/ae-utbm/sith3
#
# LICENSED UNDER THE GNU GENERAL PUBLIC LICENSE VERSION 3 (GPLv3)
# SEE : https://raw.githubusercontent.com/ae-utbm/sith3/master/LICENSE
# OR WITHIN THE LOCAL FILE "LICENSE"
#
#
2016-08-04 22:50:48 +00:00
from rest_framework.response import Response
2016-09-06 16:43:39 +00:00
from rest_framework.decorators import api_view, renderer_classes
2019-10-18 16:13:53 +00:00
from rest_framework.renderers import StaticHTMLRenderer
2016-08-04 22:50:48 +00:00
from core.templatetags.renderer import markdown
2016-08-07 22:33:02 +00:00
2016-08-04 22:50:48 +00:00
2018-10-04 19:29:19 +00:00
@api_view(["POST"])
2016-09-06 16:43:39 +00:00
@renderer_classes((StaticHTMLRenderer,))
2016-08-04 22:50:48 +00:00
def RenderMarkdown(request):
"""
2020-08-27 13:59:42 +00:00
Render Markdown
2016-08-04 22:50:48 +00:00
"""
2016-09-06 16:43:39 +00:00
try:
2018-10-04 19:29:19 +00:00
data = markdown(request.POST["text"])
2016-09-06 16:43:39 +00:00
except:
2018-10-04 19:29:19 +00:00
data = "Error"
2016-09-06 16:43:39 +00:00
return Response(data)