mirror of https://github.com/zulip/zulip.git
41 lines
1.5 KiB
Python
41 lines
1.5 KiB
Python
from __future__ import absolute_import
|
|
|
|
from django.http import HttpResponse, HttpRequest
|
|
|
|
from typing import List
|
|
from zerver.models import UserProfile
|
|
|
|
from zerver.decorator import has_request_variables, REQ
|
|
from zerver.lib.response import json_success
|
|
from zerver.lib.validator import check_list, check_string
|
|
|
|
from zerver.lib.actions import do_add_alert_words, do_remove_alert_words, do_set_alert_words
|
|
from zerver.lib.alert_words import user_alert_words
|
|
|
|
from six import text_type
|
|
|
|
def list_alert_words(request, user_profile):
|
|
# type: (HttpRequest, UserProfile) -> HttpResponse
|
|
return json_success({'alert_words': user_alert_words(user_profile)})
|
|
|
|
@has_request_variables
|
|
def set_alert_words(request, user_profile,
|
|
alert_words=REQ(validator=check_list(check_string), default=[])):
|
|
# type: (HttpRequest, UserProfile, List[text_type]) -> HttpResponse
|
|
do_set_alert_words(user_profile, alert_words)
|
|
return json_success()
|
|
|
|
@has_request_variables
|
|
def add_alert_words(request, user_profile,
|
|
alert_words=REQ(validator=check_list(check_string), default=[])):
|
|
# type: (HttpRequest, UserProfile, List[str]) -> HttpResponse
|
|
do_add_alert_words(user_profile, alert_words)
|
|
return json_success()
|
|
|
|
@has_request_variables
|
|
def remove_alert_words(request, user_profile,
|
|
alert_words=REQ(validator=check_list(check_string), default=[])):
|
|
# type: (HttpRequest, UserProfile, List[str]) -> HttpResponse
|
|
do_remove_alert_words(user_profile, alert_words)
|
|
return json_success()
|