6e881239c9
test suite to include bad inputs and tests for custom limits (#2) 2) Wrapped int() calls in blocks to ensure logic regardless of input. 3) Moved 1000 hard limit hard-coding to a keyword param. 4) Added comments as I went.
68 lines
2.4 KiB
Python
68 lines
2.4 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2010 OpenStack LLC.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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 nova import exception
|
|
|
|
|
|
def limited(items, request, max_limit=1000):
|
|
"""
|
|
Return a slice of items according to requested offset and limit.
|
|
|
|
@param items: A sliceable entity
|
|
@param request: `webob.Request` possibly containing 'offset' and 'limit'
|
|
GET variables. 'offset' is where to start in the list,
|
|
and 'limit' is the maximum number of items to return. If
|
|
'limit' is not specified, 0, or > max_limit, we default
|
|
to max_limit.
|
|
@kwarg max_limit: The maximum number of items to return from 'items'
|
|
"""
|
|
try:
|
|
offset = int(request.GET.get('offset', 0))
|
|
except ValueError:
|
|
offset = 0
|
|
|
|
try:
|
|
limit = int(request.GET.get('limit', max_limit))
|
|
except ValueError:
|
|
limit = max_limit
|
|
|
|
limit = min(max_limit, limit or max_limit)
|
|
range_end = offset + limit
|
|
return items[offset:range_end]
|
|
|
|
|
|
def get_image_id_from_image_hash(image_service, context, image_hash):
|
|
"""Given an Image ID Hash, return an objectstore Image ID.
|
|
|
|
image_service - reference to objectstore compatible image service.
|
|
context - security context for image service requests.
|
|
image_hash - hash of the image ID.
|
|
"""
|
|
|
|
# FIX(sandy): This is terribly inefficient. It pulls all images
|
|
# from objectstore in order to find the match. ObjectStore
|
|
# should have a numeric counterpart to the string ID.
|
|
try:
|
|
items = image_service.detail(context)
|
|
except NotImplementedError:
|
|
items = image_service.index(context)
|
|
for image in items:
|
|
image_id = image['id']
|
|
if abs(hash(image_id)) == int(image_hash):
|
|
return image_id
|
|
raise exception.NotFound(image_hash)
|