2020-06-11 00:54:34 +02:00
|
|
|
from typing import Dict
|
2017-04-18 17:28:55 +02:00
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
import ujson
|
2017-04-18 17:28:55 +02:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
|
|
|
|
from zerver.decorator import internal_notify_view
|
|
|
|
from zerver.lib.email_mirror import mirror_email_message
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2017-04-18 17:28:55 +02:00
|
|
|
from zerver.lib.response import json_error, json_success
|
|
|
|
from zerver.lib.validator import check_dict, check_string
|
|
|
|
|
|
|
|
|
|
|
|
@internal_notify_view(False)
|
|
|
|
@has_request_variables
|
2017-12-24 05:03:44 +01:00
|
|
|
def email_mirror_message(request: HttpRequest,
|
|
|
|
data: Dict[str, str]=REQ(validator=check_dict([
|
|
|
|
('recipient', check_string),
|
|
|
|
('msg_text', check_string)]))) -> HttpResponse:
|
2017-04-18 17:28:55 +02:00
|
|
|
result = mirror_email_message(ujson.loads(request.POST['data']))
|
|
|
|
if result["status"] == "error":
|
|
|
|
return json_error(result['msg'])
|
|
|
|
return json_success()
|