Source code for openstack_dashboard.dashboards.project.volumes.tabs

# Copyright 2013 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 collections import OrderedDict

from django.utils.translation import ugettext_lazy as _

from horizon import exceptions
from horizon import tabs

from openstack_dashboard import api

from openstack_dashboard.dashboards.project.volumes.backups \
    import tables as backups_tables
from openstack_dashboard.dashboards.project.volumes.snapshots \
    import tables as vol_snapshot_tables
from openstack_dashboard.dashboards.project.volumes.volumes \
    import tables as volume_tables


[docs]class VolumeTableMixIn(object): def _get_volumes(self, search_opts=None): try: return api.cinder.volume_list(self.request, search_opts=search_opts) except Exception: exceptions.handle(self.request, _('Unable to retrieve volume list.')) return [] def _get_instances(self, search_opts=None): try: instances, has_more = api.nova.server_list(self.request, search_opts=search_opts) return instances except Exception: exceptions.handle(self.request, _("Unable to retrieve volume/instance " "attachment information")) return [] def _get_volumes_ids_with_snapshots(self, search_opts=None): try: volume_ids = [] snapshots = api.cinder.volume_snapshot_list( self.request, search_opts=search_opts) if snapshots: # extract out the volume ids volume_ids = set([(s.volume_id) for s in snapshots]) except Exception: exceptions.handle(self.request, _("Unable to retrieve snapshot list.")) return volume_ids # set attachment string and if volume has snapshots def _set_volume_attributes(self, volumes, instances, volume_ids_with_snapshots): instances = OrderedDict([(inst.id, inst) for inst in instances]) for volume in volumes: if volume_ids_with_snapshots: if volume.id in volume_ids_with_snapshots: setattr(volume, 'has_snapshot', True) for att in volume.attachments: server_id = att.get('server_id', None) att['instance'] = instances.get(server_id, None)
[docs]class VolumeTab(tabs.TableTab, VolumeTableMixIn): table_classes = (volume_tables.VolumesTable,) name = _("Volumes") slug = "volumes_tab" template_name = ("horizon/common/_detail_table.html") preload = False
[docs] def get_volumes_data(self): volumes = self._get_volumes() instances = self._get_instances() volume_ids_with_snapshots = self._get_volumes_ids_with_snapshots() self._set_volume_attributes( volumes, instances, volume_ids_with_snapshots) return volumes
[docs]class SnapshotTab(tabs.TableTab): table_classes = (vol_snapshot_tables.VolumeSnapshotsTable,) name = _("Volume Snapshots") slug = "snapshots_tab" template_name = ("horizon/common/_detail_table.html") preload = False
[docs] def get_volume_snapshots_data(self): if api.base.is_service_enabled(self.request, 'volume'): try: snapshots = api.cinder.volume_snapshot_list(self.request) volumes = api.cinder.volume_list(self.request) volumes = dict((v.id, v) for v in volumes) except Exception: snapshots = [] volumes = {} exceptions.handle(self.request, _("Unable to retrieve " "volume snapshots.")) for snapshot in snapshots: volume = volumes.get(snapshot.volume_id) setattr(snapshot, '_volume', volume) else: snapshots = [] return snapshots
[docs]class BackupsTab(tabs.TableTab, VolumeTableMixIn): table_classes = (backups_tables.BackupsTable,) name = _("Volume Backups") slug = "backups_tab" template_name = ("horizon/common/_detail_table.html") preload = False
[docs] def allowed(self, request): return api.cinder.volume_backup_supported(self.request)
[docs] def get_volume_backups_data(self): try: backups = api.cinder.volume_backup_list(self.request) volumes = api.cinder.volume_list(self.request) volumes = dict((v.id, v) for v in volumes) for backup in backups: backup.volume = volumes.get(backup.volume_id) except Exception: backups = [] exceptions.handle(self.request, _("Unable to retrieve " "volume backups.")) return backups
[docs]class VolumeAndSnapshotTabs(tabs.TabGroup): slug = "volumes_and_snapshots" tabs = (VolumeTab, SnapshotTab, BackupsTab) sticky = True

Project Source