summaryrefslogtreecommitdiffstats
path: root/snaps/openstack/utils/glance_utils.py
blob: 6d90d3e9a04b890eefba3938865ae3e7effd0d79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Copyright (c) 2016 Cable Television Laboratories, Inc. ("CableLabs")
#                    and others.  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.
import logging

from snaps import file_utils
from glanceclient.client import Client
from snaps.openstack.utils import keystone_utils

__author__ = 'spisarski'

logger = logging.getLogger('glance_utils')

"""
Utilities for basic neutron API calls
"""


def glance_client(os_creds):
    """
    Creates and returns a glance client object
    :return: the glance client
    """
    return Client(version=os_creds.image_api_version, session=keystone_utils.keystone_session(os_creds))


def get_image(nova, glance, image_name):
    """
    Returns an OpenStack image object for a given name
    :param nova: the Nova client
    :param glance: the Glance client
    :param image_name: the image name to lookup
    :return: the image object or None
    """
    try:
        image_dict = nova.images.find(name=image_name)
        if image_dict:
            return glance.images.get(image_dict.id)
    except:
        pass
    return None


def create_image(glance, image_settings):
    """
    Creates and returns OpenStack image object with an external URL
    :param glance: the glance client
    :param image_settings: the image settings object
    :return: the OpenStack image object
    :raise Exception if using a file and it cannot be found
    """
    if image_settings.url:
        return glance.images.create(name=image_settings.name, disk_format=image_settings.format,
                                    container_format="bare", location=image_settings.url)
    elif image_settings.image_file:
        image_file = file_utils.get_file(image_settings.image_file)
        return glance.images.create(name=image_settings.name, disk_format=image_settings.format,
                                    container_format="bare", data=image_file)


def delete_image(glance, image):
    """
    Deletes an image from OpenStack
    :param glance: the glance client
    :param image: the image to delete
    """
    glance.images.delete(image)