2017-01-24 01:48:35 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2021-04-16 00:57:30 +02:00
|
|
|
from django.utils.translation import gettext as _
|
2017-01-24 01:48:35 +01:00
|
|
|
|
2017-10-28 00:07:31 +02:00
|
|
|
from zerver.decorator import human_users_only
|
2017-01-24 01:48:35 +01:00
|
|
|
from zerver.lib.actions import do_mark_hotspot_as_read
|
2021-06-30 18:35:50 +02:00
|
|
|
from zerver.lib.exceptions import JsonableError
|
2017-01-24 01:48:35 +01:00
|
|
|
from zerver.lib.hotspots import ALL_HOTSPOTS
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2021-06-30 18:35:50 +02:00
|
|
|
from zerver.lib.response import json_success
|
2017-01-24 01:48:35 +01:00
|
|
|
from zerver.models import UserProfile
|
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2017-07-31 20:28:15 +02:00
|
|
|
@human_users_only
|
2017-01-24 01:48:35 +01:00
|
|
|
@has_request_variables
|
2021-02-12 08:19:30 +01:00
|
|
|
def mark_hotspot_as_read(
|
2021-05-04 09:54:27 +02:00
|
|
|
request: HttpRequest, user: UserProfile, hotspot: str = REQ()
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2017-01-24 01:48:35 +01:00
|
|
|
if hotspot not in ALL_HOTSPOTS:
|
2021-06-30 18:35:50 +02:00
|
|
|
raise JsonableError(_("Unknown hotspot: {}").format(hotspot))
|
2017-01-24 01:48:35 +01:00
|
|
|
do_mark_hotspot_as_read(user, hotspot)
|
|
|
|
return json_success()
|