
attribute-level imports are not checked by hacking module now. most noqa is used to disable warnings on attribute-level imports. This commit drops noqa for this purpose. After this, there are 8 noqa under horizon/ :) In addition to this, the following changes are made. horizon/exceptions.py: The following imports are dropped. They are not used anywhere. from django.http import HttpRequest from django.views.debug import CLEANSED_SUBSTITUTE horizon/forms/__init__.py: Some entries were missing in __all__. They are added. Change-Id: I33b504ef6c396f0675e8a340867e2ca59c77c684
185 lines
5.6 KiB
Python
185 lines
5.6 KiB
Python
# 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 datetime
|
|
import decimal
|
|
import math
|
|
import re
|
|
|
|
from oslo_utils import units
|
|
import six
|
|
|
|
from django.conf import settings
|
|
from django.contrib.auth import logout
|
|
from django import http
|
|
from django.utils.encoding import force_text
|
|
from django.utils.functional import lazy
|
|
from django.utils import translation
|
|
|
|
|
|
def _lazy_join(separator, strings):
|
|
return separator.join([force_text(s)
|
|
for s in strings])
|
|
|
|
lazy_join = lazy(_lazy_join, six.text_type)
|
|
|
|
|
|
def bytes_to_gigabytes(bytes):
|
|
# Converts the number of bytes to the next highest number of Gigabytes
|
|
# For example 5000000 (5 Meg) would return '1'
|
|
return int(math.ceil(float(bytes) / units.Gi))
|
|
|
|
|
|
def add_logout_reason(request, response, reason, status='success'):
|
|
# Store the translated string in the cookie
|
|
lang = translation.get_language_from_request(request)
|
|
with translation.override(lang):
|
|
reason = six.text_type(reason)
|
|
if six.PY2:
|
|
reason = reason.encode('utf-8')
|
|
response.set_cookie('logout_reason', reason, max_age=10)
|
|
response.set_cookie('logout_status', status, max_age=10)
|
|
|
|
|
|
def logout_with_message(request, msg, redirect=True, status='success'):
|
|
"""Send HttpResponseRedirect to LOGOUT_URL.
|
|
|
|
`msg` is a message displayed on the login page after the logout, to explain
|
|
the logout reason.
|
|
"""
|
|
logout(request)
|
|
if redirect:
|
|
response = http.HttpResponseRedirect(
|
|
'%s?next=%s' % (settings.LOGOUT_URL, request.path))
|
|
else:
|
|
response = http.HttpResponseRedirect(settings.LOGOUT_URL)
|
|
add_logout_reason(request, response, msg, status)
|
|
return response
|
|
|
|
|
|
def get_config_value(request, key, default, search_in_settings=True):
|
|
"""Retrieves the value of `key` from configuration in the following order:
|
|
- from the session; if not found there then
|
|
- from cookies; if not found there then
|
|
- from the settings file if `search_in_settings` is True,
|
|
otherwise this step is skipped; if not found there
|
|
- `default` is returned
|
|
"""
|
|
value = request.session.get(key, request.COOKIES.get(key))
|
|
|
|
if value is None:
|
|
if search_in_settings:
|
|
value = getattr(settings, key, default)
|
|
else:
|
|
value = default
|
|
|
|
if isinstance(default, int):
|
|
try:
|
|
value = int(value)
|
|
except ValueError:
|
|
value = request.session[key] = int(default)
|
|
|
|
return value
|
|
|
|
|
|
def save_config_value(request, response, key, value):
|
|
"""Sets value of key `key` to `value` in both session and cookies.
|
|
"""
|
|
request.session[key] = value
|
|
response.set_cookie(key, value, expires=one_year_from_now())
|
|
return response
|
|
|
|
|
|
def get_page_size(request):
|
|
return get_config_value(request, 'API_RESULT_PAGE_SIZE', 20)
|
|
|
|
|
|
def get_log_length(request):
|
|
return get_config_value(request, 'INSTANCE_LOG_LENGTH', 35)
|
|
|
|
|
|
def get_timezone(request):
|
|
# Session and cookie store timezone as django_timezone.
|
|
# In case there is no timezone neither in session nor in cookie,
|
|
# use default value from settings file where it's called TIME_ZONE.
|
|
return get_config_value(request, 'django_timezone',
|
|
getattr(settings, 'TIME_ZONE', 'UTC'))
|
|
|
|
|
|
def get_language(request):
|
|
return get_config_value(request, settings.LANGUAGE_COOKIE_NAME,
|
|
request.LANGUAGE_CODE, search_in_settings=False)
|
|
|
|
|
|
def natural_sort(attr):
|
|
return lambda x: [int(s) if s.isdigit() else s for s in
|
|
re.split(r'(\d+)', getattr(x, attr, x))]
|
|
|
|
|
|
def get_keys(tuple_of_tuples):
|
|
"""Processes a tuple of 2-element tuples and returns a tuple containing
|
|
first component of each tuple.
|
|
"""
|
|
return tuple([t[0] for t in tuple_of_tuples])
|
|
|
|
|
|
def value_for_key(tuple_of_tuples, key):
|
|
"""Processes a tuple of 2-element tuples and returns the value
|
|
corresponding to the given key. If no value is found, the key is returned.
|
|
"""
|
|
for t in tuple_of_tuples:
|
|
if t[0] == key:
|
|
return t[1]
|
|
else:
|
|
return key
|
|
|
|
|
|
def next_key(tuple_of_tuples, key):
|
|
"""Processes a tuple of 2-element tuples and returns the key which comes
|
|
after the given key.
|
|
"""
|
|
for i, t in enumerate(tuple_of_tuples):
|
|
if t[0] == key:
|
|
try:
|
|
return tuple_of_tuples[i + 1][0]
|
|
except IndexError:
|
|
return None
|
|
|
|
|
|
def previous_key(tuple_of_tuples, key):
|
|
"""Processes a tuple of 2-element tuples and returns the key which comes
|
|
before the given key.
|
|
"""
|
|
for i, t in enumerate(tuple_of_tuples):
|
|
if t[0] == key:
|
|
try:
|
|
return tuple_of_tuples[i - 1][0]
|
|
except IndexError:
|
|
return None
|
|
|
|
|
|
def format_value(value):
|
|
"""Returns the given value rounded to one decimal place if it is a
|
|
decimal, or integer if it is an integer.
|
|
"""
|
|
value = decimal.Decimal(str(value))
|
|
if int(value) == value:
|
|
return int(value)
|
|
|
|
# On Python 3, an explicit cast to float is required
|
|
return float(round(value, 1))
|
|
|
|
|
|
def one_year_from_now():
|
|
now = datetime.datetime.utcnow()
|
|
return now + datetime.timedelta(days=365)
|