
The Glance API supports a sort direction which we can use to paginate back The Prev href tag contains a marker id of the first item in the table. When clicked, a GET API call is made, passing in this marker and the sort_dir='asc' This will return the previous page's data. Then we have to re-sort the data because it is ordered backwards. We use the default sort_key='created_by' for this. Once the patch #1252649 is restored, we can add the same behavior to Project > Images. If we are able to get the consistency across the APIs to include the sort_dir, then we can bring Prev to the other project tables as well. There are some blueprints to enhance API capabilities in this area. Change-Id: I3e7c6a2db595838dbdff595dc8f0fdda288b6bcf Partial-Bug: #1263142 Partial-Bug: #1282987 Partially-implements: blueprint pagination-add-prev-link
124 lines
4.0 KiB
Python
124 lines
4.0 KiB
Python
# Copyright 2012 United States Government as represented by the
|
|
# Administrator of the National Aeronautics and Space Administration.
|
|
# All Rights Reserved.
|
|
#
|
|
# Copyright 2012 Nebula, 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.
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import itertools
|
|
import logging
|
|
import thread
|
|
|
|
from django.conf import settings
|
|
|
|
import glanceclient as glance_client
|
|
|
|
from horizon.utils import functions as utils
|
|
|
|
from openstack_dashboard.api import base
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
def glanceclient(request):
|
|
url = base.url_for(request, 'image')
|
|
insecure = getattr(settings, 'OPENSTACK_SSL_NO_VERIFY', False)
|
|
cacert = getattr(settings, 'OPENSTACK_SSL_CACERT', None)
|
|
LOG.debug('glanceclient connection created using token "%s" and url "%s"'
|
|
% (request.user.token.id, url))
|
|
return glance_client.Client('1', url, token=request.user.token.id,
|
|
insecure=insecure, cacert=cacert)
|
|
|
|
|
|
def image_delete(request, image_id):
|
|
return glanceclient(request).images.delete(image_id)
|
|
|
|
|
|
def image_get(request, image_id):
|
|
"""Returns an Image object populated with metadata for image
|
|
with supplied identifier.
|
|
"""
|
|
image = glanceclient(request).images.get(image_id)
|
|
if not hasattr(image, 'name'):
|
|
image.name = None
|
|
return image
|
|
|
|
|
|
def image_list_detailed(request, marker=None, sort_dir='desc',
|
|
sort_key='created_at', filters=None, paginate=False):
|
|
limit = getattr(settings, 'API_RESULT_LIMIT', 1000)
|
|
page_size = utils.get_page_size(request)
|
|
|
|
if paginate:
|
|
request_size = page_size + 1
|
|
else:
|
|
request_size = limit
|
|
|
|
kwargs = {'filters': filters or {}}
|
|
if marker:
|
|
kwargs['marker'] = marker
|
|
kwargs['sort_dir'] = sort_dir
|
|
kwargs['sort_key'] = sort_key
|
|
|
|
images_iter = glanceclient(request).images.list(page_size=request_size,
|
|
limit=limit,
|
|
**kwargs)
|
|
has_prev_data = False
|
|
has_more_data = False
|
|
if paginate:
|
|
images = list(itertools.islice(images_iter, request_size))
|
|
# first and middle page condition
|
|
if len(images) > page_size:
|
|
images.pop(-1)
|
|
has_more_data = True
|
|
# middle page condition
|
|
if marker is not None:
|
|
has_prev_data = True
|
|
# first page condition when reached via prev back
|
|
elif sort_dir == 'asc' and marker is not None:
|
|
has_more_data = True
|
|
# last page condition
|
|
elif marker is not None:
|
|
has_prev_data = True
|
|
else:
|
|
images = list(images_iter)
|
|
return (images, has_more_data, has_prev_data)
|
|
|
|
|
|
def image_update(request, image_id, **kwargs):
|
|
return glanceclient(request).images.update(image_id, **kwargs)
|
|
|
|
|
|
def image_create(request, **kwargs):
|
|
copy_from = kwargs.pop('copy_from', None)
|
|
data = kwargs.pop('data', None)
|
|
|
|
image = glanceclient(request).images.create(**kwargs)
|
|
|
|
if data:
|
|
thread.start_new_thread(image_update,
|
|
(request, image.id),
|
|
{'data': data,
|
|
'purge_props': False})
|
|
elif copy_from:
|
|
thread.start_new_thread(image_update,
|
|
(request, image.id),
|
|
{'copy_from': copy_from,
|
|
'purge_props': False})
|
|
|
|
return image
|