summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorAndrew Melton <andrew.melton@rackspace.com>2013-05-02 16:54:26 -0400
committerAndrew Melton <andrew.melton@rackspace.com>2013-05-31 15:50:40 -0400
commitf5d790df0a16034d767749161c8abd2898e707b4 (patch)
tree3d966eba16539639fbf473b3d16973a009f1f8c7 /nova/api
parent9ca2673bef0d6a883df673fb6531640c8f268a44 (diff)
downloadnova-f5d790df0a16034d767749161c8abd2898e707b4.tar.gz
nova-f5d790df0a16034d767749161c8abd2898e707b4.tar.xz
nova-f5d790df0a16034d767749161c8abd2898e707b4.zip
Launch_at and terminated_at on server(s) response
Implements bp usage-details-on-instance Change-Id: I0a9101c43a51d597a1eaff9d5a5d08d602024e72
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/compute/contrib/server_usage.py97
1 files changed, 97 insertions, 0 deletions
diff --git a/nova/api/openstack/compute/contrib/server_usage.py b/nova/api/openstack/compute/contrib/server_usage.py
new file mode 100644
index 000000000..fb9dc9f6a
--- /dev/null
+++ b/nova/api/openstack/compute/contrib/server_usage.py
@@ -0,0 +1,97 @@
+# Copyright 2013 Openstack Foundation
+#
+# 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.api.openstack import extensions
+from nova.api.openstack import wsgi
+from nova.api.openstack import xmlutil
+from nova import compute
+from nova.openstack.common import log as logging
+
+LOG = logging.getLogger(__name__)
+authorize = extensions.soft_extension_authorizer('compute', 'server_usage')
+
+
+class ServerUsageController(wsgi.Controller):
+ def __init__(self, *args, **kwargs):
+ super(ServerUsageController, self).__init__(*args, **kwargs)
+ self.compute_api = compute.API()
+
+ def _extend_server(self, server, instance):
+ for k in ['launched_at', 'terminated_at']:
+ key = "%s:%s" % (Server_usage.alias, k)
+ server[key] = instance[k]
+
+ @wsgi.extends
+ def show(self, req, resp_obj, id):
+ context = req.environ['nova.context']
+ if authorize(context):
+ # Attach our slave template to the response object
+ resp_obj.attach(xml=ServerUsageTemplate())
+ server = resp_obj.obj['server']
+ db_instance = req.get_db_instance(server['id'])
+ # server['id'] is guaranteed to be in the cache due to
+ # the core API adding it in its 'show' method.
+ self._extend_server(server, db_instance)
+
+ @wsgi.extends
+ def detail(self, req, resp_obj):
+ context = req.environ['nova.context']
+ if authorize(context):
+ # Attach our slave template to the response object
+ resp_obj.attach(xml=ServerUsagesTemplate())
+ servers = list(resp_obj.obj['servers'])
+ for server in servers:
+ db_instance = req.get_db_instance(server['id'])
+ # server['id'] is guaranteed to be in the cache due to
+ # the core API adding it in its 'detail' method.
+ self._extend_server(server, db_instance)
+
+
+class Server_usage(extensions.ExtensionDescriptor):
+ """Adds launched_at and terminated_at on Servers."""
+
+ name = "ServerUsage"
+ alias = "OS-SRV-USG"
+ namespace = ("http://docs.openstack.org/compute/ext/"
+ "server_usage/api/v1.1")
+ updated = "2013-04-29T00:00:00+00:00"
+
+ def get_controller_extensions(self):
+ controller = ServerUsageController()
+ extension = extensions.ControllerExtension(self, 'servers', controller)
+ return [extension]
+
+
+def make_server(elem):
+ elem.set('{%s}launched_at' % Server_usage.namespace,
+ '%s:launched_at' % Server_usage.alias)
+ elem.set('{%s}terminated_at' % Server_usage.namespace,
+ '%s:terminated_at' % Server_usage.alias)
+
+
+class ServerUsageTemplate(xmlutil.TemplateBuilder):
+ def construct(self):
+ root = xmlutil.TemplateElement('server', selector='server')
+ make_server(root)
+ return xmlutil.SlaveTemplate(root, 1, nsmap={
+ Server_usage.alias: Server_usage.namespace})
+
+
+class ServerUsagesTemplate(xmlutil.TemplateBuilder):
+ def construct(self):
+ root = xmlutil.TemplateElement('servers')
+ elem = xmlutil.SubTemplateElement(root, 'server', selector='servers')
+ make_server(elem)
+ return xmlutil.SlaveTemplate(root, 1, nsmap={
+ Server_usage.alias: Server_usage.namespace})