052aa55d34
There are no longer two separate projects living inside the horizon repository. There is a single project now with a single setup.py, single README, etc. The openstack-dashboard/dashboard django project is now named "openstack_dashboard" and lives as an example project in the topmost horizon directory. The "horizon/horizon" directory has been bumped up a level and now is directly on the path when the root horizon directory is on your python path. Javascript media which the horizon module directly relies upon now ships in the horizon/static dir rather than openstack-dashboard/dashboard/static. All the corresponding setup, installation, build, and env scripts have been updated accordingly. Implements blueprint unified-packaging. Change-Id: Ieed8e3c777432cd046c3e0298869a9428756ab62
118 lines
4.8 KiB
Python
118 lines
4.8 KiB
Python
# vim: tabstop=4 shiftwidth=4 softtabstop=4
|
|
|
|
# Copyright 2012 United States Government as represented by the
|
|
# Administrator of the National Aeronautics and Space Administration.
|
|
# All Rights Reserved.
|
|
#
|
|
# Copyright 2012 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.
|
|
|
|
import logging
|
|
|
|
from django import shortcuts
|
|
from django.contrib import messages
|
|
from django.core import validators
|
|
from django.core.urlresolvers import reverse
|
|
from django.utils.translation import ugettext as _
|
|
|
|
from horizon import api
|
|
from horizon import exceptions
|
|
from horizon import forms
|
|
|
|
|
|
LOG = logging.getLogger(__name__)
|
|
|
|
|
|
no_slash_validator = validators.RegexValidator(r'^(?u)[^/]+$',
|
|
_("Slash is not an allowed "
|
|
"character."),
|
|
code="noslash")
|
|
|
|
|
|
class CreateContainer(forms.SelfHandlingForm):
|
|
name = forms.CharField(max_length="255",
|
|
label=_("Container Name"),
|
|
validators=[no_slash_validator])
|
|
|
|
def handle(self, request, data):
|
|
try:
|
|
api.swift_create_container(request, data['name'])
|
|
messages.success(request, _("Container created successfully."))
|
|
except:
|
|
exceptions.handle(request, _('Unable to create container.'))
|
|
return shortcuts.redirect("horizon:nova:containers:index")
|
|
|
|
|
|
class UploadObject(forms.SelfHandlingForm):
|
|
name = forms.CharField(max_length="255",
|
|
label=_("Object Name"),
|
|
validators=[no_slash_validator])
|
|
object_file = forms.FileField(label=_("File"))
|
|
container_name = forms.CharField(widget=forms.HiddenInput())
|
|
|
|
def handle(self, request, data):
|
|
object_file = self.files['object_file']
|
|
try:
|
|
obj = api.swift_upload_object(request,
|
|
data['container_name'],
|
|
data['name'],
|
|
object_file)
|
|
obj.metadata['orig-filename'] = object_file.name
|
|
obj.sync_metadata()
|
|
messages.success(request, _("Object was successfully uploaded."))
|
|
except:
|
|
exceptions.handle(request, _("Unable to upload object."))
|
|
return shortcuts.redirect("horizon:nova:containers:object_index",
|
|
data['container_name'])
|
|
|
|
|
|
class CopyObject(forms.SelfHandlingForm):
|
|
new_container_name = forms.ChoiceField(label=_("Destination container"),
|
|
validators=[no_slash_validator])
|
|
new_object_name = forms.CharField(max_length="255",
|
|
label=_("Destination object name"),
|
|
validators=[no_slash_validator])
|
|
orig_container_name = forms.CharField(widget=forms.HiddenInput())
|
|
orig_object_name = forms.CharField(widget=forms.HiddenInput())
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
containers = kwargs.pop('containers')
|
|
super(CopyObject, self).__init__(*args, **kwargs)
|
|
self.fields['new_container_name'].choices = containers
|
|
|
|
def handle(self, request, data):
|
|
object_index = "horizon:nova:containers:object_index"
|
|
orig_container = data['orig_container_name']
|
|
orig_object = data['orig_object_name']
|
|
new_container = data['new_container_name']
|
|
new_object = data['new_object_name']
|
|
try:
|
|
api.swift_copy_object(request,
|
|
orig_container,
|
|
orig_object,
|
|
new_container,
|
|
new_object)
|
|
vals = {"container": new_container, "obj": new_object}
|
|
messages.success(request, _('Object "%(obj)s" copied to container '
|
|
'"%(container)s".') % vals)
|
|
except exceptions.HorizonException, exc:
|
|
messages.error(request, exc)
|
|
return shortcuts.redirect(object_index, orig_container)
|
|
except:
|
|
redirect = reverse(object_index, args=(orig_container,))
|
|
exceptions.handle(request,
|
|
_("Unable to copy object."),
|
|
redirect=redirect)
|
|
return shortcuts.redirect(object_index, new_container)
|