58 строки
2.0 KiB
Python
58 строки
2.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2022 Google Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License")
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
import werkzeug.exceptions
|
|
from chromestatus_openapi.models import (
|
|
GetSettingsResponse,
|
|
PostSettingsRequest,
|
|
SuccessMessage,
|
|
)
|
|
|
|
from framework import basehandlers
|
|
from internals import user_models
|
|
|
|
|
|
class SettingsAPI(basehandlers.APIHandler):
|
|
"""Users can store their settings preferences such as whether to get
|
|
notification from the features they starred."""
|
|
|
|
def do_post(self, **kwargs):
|
|
"""Set the user settings (currently only the notify_as_starrer)"""
|
|
user_pref = user_models.UserPref.get_signed_in_user_pref()
|
|
if not user_pref:
|
|
self.abort(403, msg='User must be signed in')
|
|
raw_data = self.request.json
|
|
new_notify = raw_data.get('notify')
|
|
|
|
if not isinstance(new_notify, bool):
|
|
raise werkzeug.exceptions.BadRequest(
|
|
f"Expected boolean for 'notify', got {type(new_notify).__name__}"
|
|
)
|
|
|
|
settings_request = PostSettingsRequest.from_dict(raw_data)
|
|
user_pref.notify_as_starrer = settings_request.notify
|
|
user_pref.put()
|
|
# Callers don't use the JSON response for this API call.
|
|
return SuccessMessage(message='Done').to_dict()
|
|
|
|
def do_get(self, **kwargs):
|
|
"""Return the user settings (currently only the notify_as_starrer)"""
|
|
user_pref = user_models.UserPref.get_signed_in_user_pref()
|
|
if not user_pref:
|
|
self.abort(404, msg='User preference not found')
|
|
|
|
response = GetSettingsResponse.from_dict({'notify_as_starrer': user_pref.notify_as_starrer})
|
|
|
|
return response.to_dict()
|