
- add devstack plugin - update openstack common - move unit tests to unit folder - update infrastructural files Change-Id: Id72006f70110dbd1762f42b582470ac5f3439f2a
125 lines
4.6 KiB
Python
125 lines
4.6 KiB
Python
# Copyright 2014
|
|
# The Cloudscaling Group, 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 gceapi.api import base_api
|
|
from gceapi.api import clients
|
|
from gceapi.api import operation_util
|
|
from gceapi.api import region_api
|
|
from gceapi.api import scopes
|
|
from gceapi.api import utils
|
|
from gceapi import exception
|
|
from gceapi.i18n import _
|
|
|
|
|
|
class API(base_api.API):
|
|
"""GCE Address API - nova-network implementation."""
|
|
|
|
KIND = "address"
|
|
PERSISTENT_ATTRIBUTES = ["id", "creationTimestamp", "name", "description"]
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(API, self).__init__(*args, **kwargs)
|
|
self._region_api = region_api.API()
|
|
|
|
def _get_type(self):
|
|
return self.KIND
|
|
|
|
def _get_persistent_attributes(self):
|
|
return self.PERSISTENT_ATTRIBUTES
|
|
|
|
def get_scopes(self, context, item):
|
|
region = item["scope"]
|
|
if region is not None:
|
|
return [scopes.RegionScope(region)]
|
|
return self._region_api.get_items_as_scopes(context)
|
|
|
|
def get_item(self, context, name, scope=None):
|
|
client = clients.nova(context)
|
|
return self._get_floating_ips(client, context, scope, name)[0]
|
|
|
|
def get_items(self, context, scope=None):
|
|
client = clients.nova(context)
|
|
return self._get_floating_ips(client, context, scope)
|
|
|
|
def delete_item(self, context, name, scope=None):
|
|
client = clients.nova(context)
|
|
floating_ip = self._get_floating_ips(client, context, scope, name)[0]
|
|
operation_util.start_operation(context)
|
|
self._delete_db_item(context, floating_ip)
|
|
client.floating_ips.delete(floating_ip["id"])
|
|
|
|
def add_item(self, context, name, body, scope=None):
|
|
client = clients.nova(context)
|
|
if any(x["name"] == name
|
|
for x in self._get_floating_ips(client, context, scope)):
|
|
raise exception.InvalidInput(
|
|
_("The resource '%s' already exists.") % name)
|
|
operation_util.start_operation(context)
|
|
result = client.floating_ips.create()
|
|
floating_ip = self._prepare_floating_ip(client, context, result, scope)
|
|
floating_ip["name"] = body["name"]
|
|
if "description" in body:
|
|
floating_ip["description"] = body["description"]
|
|
floating_ip = self._add_db_item(context, floating_ip)
|
|
return floating_ip
|
|
|
|
def _get_floating_ips(self, client, context, scope, name=None):
|
|
results = client.floating_ips.list()
|
|
gce_floating_ips = self._get_db_items_dict(context)
|
|
results = [self._prepare_floating_ip(
|
|
client, context, x, scope,
|
|
gce_floating_ips.get(str(x.id)))
|
|
for x in results]
|
|
unnamed_ips = self._purge_db(context, results, gce_floating_ips)
|
|
self._add_nonnamed_items(context, unnamed_ips)
|
|
|
|
if name is None:
|
|
return results
|
|
|
|
for item in results:
|
|
if item["name"] == name:
|
|
return [item]
|
|
|
|
raise exception.NotFound
|
|
|
|
def _prepare_floating_ip(self, client, context, floating_ip, scope,
|
|
db_item=None):
|
|
floating_ip = utils.to_dict(floating_ip)
|
|
fixed_ip = floating_ip.get("fixed_ip")
|
|
floating_ip = {
|
|
"fixed_ip_address": fixed_ip if fixed_ip else None,
|
|
"floating_ip_address": floating_ip["ip"],
|
|
"id": floating_ip["id"],
|
|
"port_id": None,
|
|
"tenant_id": context.project_id,
|
|
"scope": scope,
|
|
"status": "IN USE" if fixed_ip else "RESERVED",
|
|
}
|
|
|
|
instance_id = floating_ip.get("instance_id")
|
|
if instance_id is not None:
|
|
instance = client.servers.get(instance_id)
|
|
floating_ip["instance_name"] = instance.name
|
|
floating_ip["instance_zone"] = getattr(
|
|
instance, "OS-EXT-AZ:availability_zone")
|
|
|
|
return self._prepare_item(floating_ip, db_item)
|
|
|
|
def _add_nonnamed_items(self, context, items):
|
|
for item in items:
|
|
item["name"] = ("address-" +
|
|
item["floating_ip_address"].replace(".", "-"))
|
|
item["creationTimestamp"] = ""
|
|
self._add_db_item(context, item)
|