Merge "Add signed url action for queue"
This commit is contained in:
commit
6bcdf8efb1
@ -85,8 +85,11 @@ class QueueActions(generic.View):
|
|||||||
resource_types = request.DATA.get("resource_types")
|
resource_types = request.DATA.get("resource_types")
|
||||||
zaqar.queue_purge(request, queue_name, resource_types)
|
zaqar.queue_purge(request, queue_name, resource_types)
|
||||||
elif action == "share":
|
elif action == "share":
|
||||||
# FIXME(flwang): This is placeholder for pre-signed feature.
|
paths = request.DATA.get("paths")
|
||||||
pass
|
ttl_seconds = request.DATA.get("ttl_seconds")
|
||||||
|
methods = request.DATA.get("methods")
|
||||||
|
return zaqar.queue_signed_url(request, queue_name, paths,
|
||||||
|
ttl_seconds, methods)
|
||||||
|
|
||||||
|
|
||||||
@urls.register
|
@urls.register
|
||||||
|
@ -102,6 +102,12 @@ def message_list(request, queue_name):
|
|||||||
return zaqarclient(request).queue(queue_name).messages()
|
return zaqarclient(request).queue(queue_name).messages()
|
||||||
|
|
||||||
|
|
||||||
|
def queue_signed_url(request, queue_name, paths, ttl_seconds, methods):
|
||||||
|
queue = zaqarclient(request).queue(queue_name, auto_create=False)
|
||||||
|
return queue.signed_url(paths=paths, ttl_seconds=ttl_seconds,
|
||||||
|
methods=methods)
|
||||||
|
|
||||||
|
|
||||||
def subscription_list(request, queue_name):
|
def subscription_list(request, queue_name):
|
||||||
return [{'subscriber': s.subscriber,
|
return [{'subscriber': s.subscriber,
|
||||||
'id': s.id,
|
'id': s.id,
|
||||||
|
@ -43,6 +43,7 @@
|
|||||||
purgeQueue: purgeQueue,
|
purgeQueue: purgeQueue,
|
||||||
postMessages: postMessages,
|
postMessages: postMessages,
|
||||||
getMessages: getMessages,
|
getMessages: getMessages,
|
||||||
|
signedUrl: signedUrl,
|
||||||
getSubscriptions: getSubscriptions,
|
getSubscriptions: getSubscriptions,
|
||||||
addSubscription: addSubscription,
|
addSubscription: addSubscription,
|
||||||
deleteSubscription: deleteSubscription,
|
deleteSubscription: deleteSubscription,
|
||||||
@ -106,6 +107,12 @@
|
|||||||
return apiService.post(url, msgs).error(error(msg));
|
return apiService.post(url, msgs).error(error(msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function signedUrl(queueName, form) {
|
||||||
|
var msg = gettext('Unable to create signed URL.');
|
||||||
|
var url = queuePath + queueName + '/share';
|
||||||
|
return apiService.post(url, form).error(error(msg));
|
||||||
|
}
|
||||||
|
|
||||||
function getSubscriptions(queue) {
|
function getSubscriptions(queue) {
|
||||||
var url = interpolate(subPath, [queue.name]);
|
var url = interpolate(subPath, [queue.name]);
|
||||||
return apiService.get(url);
|
return apiService.get(url);
|
||||||
|
@ -35,6 +35,7 @@
|
|||||||
'horizon.dashboard.project.queues.actions.purgeQueueService',
|
'horizon.dashboard.project.queues.actions.purgeQueueService',
|
||||||
'horizon.dashboard.project.queues.actions.postMessageService',
|
'horizon.dashboard.project.queues.actions.postMessageService',
|
||||||
'horizon.dashboard.project.queues.actions.listMessageService',
|
'horizon.dashboard.project.queues.actions.listMessageService',
|
||||||
|
'horizon.dashboard.project.queues.actions.signedUrlService',
|
||||||
'horizon.dashboard.project.queues.actions.createSubscriptionService',
|
'horizon.dashboard.project.queues.actions.createSubscriptionService',
|
||||||
'horizon.dashboard.project.queues.resourceType'
|
'horizon.dashboard.project.queues.resourceType'
|
||||||
];
|
];
|
||||||
@ -47,6 +48,7 @@
|
|||||||
purgeQueueService,
|
purgeQueueService,
|
||||||
postMessageService,
|
postMessageService,
|
||||||
listMessageService,
|
listMessageService,
|
||||||
|
signedUrlService,
|
||||||
createSubscriptionService,
|
createSubscriptionService,
|
||||||
resourceType
|
resourceType
|
||||||
) {
|
) {
|
||||||
@ -67,6 +69,13 @@
|
|||||||
text: gettext('View Messages')
|
text: gettext('View Messages')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
.append({
|
||||||
|
id: 'queuesSignedUrl',
|
||||||
|
service: signedUrlService,
|
||||||
|
template: {
|
||||||
|
text: gettext('Signed URL')
|
||||||
|
}
|
||||||
|
})
|
||||||
.append({
|
.append({
|
||||||
id: 'queuesItemUpdate',
|
id: 'queuesItemUpdate',
|
||||||
service: updateQueueService,
|
service: updateQueueService,
|
||||||
|
@ -0,0 +1,196 @@
|
|||||||
|
/**
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
||||||
|
* not use self 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
(function() {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ngdoc factory
|
||||||
|
* @name horizon.dashboard.project.queues.signed-url.service
|
||||||
|
* @description
|
||||||
|
* Service for the signed url for the queue
|
||||||
|
*/
|
||||||
|
angular
|
||||||
|
.module('horizon.dashboard.project.queues')
|
||||||
|
.factory(
|
||||||
|
'horizon.dashboard.project.queues.actions.signedUrlService',
|
||||||
|
signedUrlService);
|
||||||
|
|
||||||
|
signedUrlService.$inject = [
|
||||||
|
'horizon.app.core.openstack-service-api.policy',
|
||||||
|
'horizon.app.core.openstack-service-api.zaqar',
|
||||||
|
'horizon.dashboard.project.queues.basePath',
|
||||||
|
'horizon.dashboard.project.queues.events',
|
||||||
|
'horizon.dashboard.project.queues.resourceType',
|
||||||
|
'horizon.framework.util.actions.action-result.service',
|
||||||
|
'horizon.framework.util.i18n.gettext',
|
||||||
|
'horizon.framework.util.q.extensions',
|
||||||
|
'horizon.framework.widgets.form.ModalFormService',
|
||||||
|
'horizon.framework.widgets.modal-wait-spinner.service',
|
||||||
|
'horizon.framework.widgets.toast.service'
|
||||||
|
];
|
||||||
|
|
||||||
|
function signedUrlService(
|
||||||
|
policy, zaqar, basePath, events, resourceType, actionResult, gettext,
|
||||||
|
$qExtensions, modal, waitSpinner, toast
|
||||||
|
) {
|
||||||
|
// schema
|
||||||
|
var schema = {
|
||||||
|
type: "object",
|
||||||
|
properties: {
|
||||||
|
name: {
|
||||||
|
},
|
||||||
|
paths: {
|
||||||
|
},
|
||||||
|
ttl_seconds: {
|
||||||
|
type: "number",
|
||||||
|
minimum: 1
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// form
|
||||||
|
var form = [
|
||||||
|
{
|
||||||
|
type: "section",
|
||||||
|
htmlClass: "col-sm-12",
|
||||||
|
items: [
|
||||||
|
{ // for result message
|
||||||
|
type: "help",
|
||||||
|
helpvalue: "",
|
||||||
|
condition: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "paths",
|
||||||
|
type: "checkboxes",
|
||||||
|
title: gettext("Paths"),
|
||||||
|
titleMap: [
|
||||||
|
{value: "messages", name: gettext("Messages")},
|
||||||
|
{value: "subscriptions", name: gettext("Subscriptions")},
|
||||||
|
{value: "claims", name: gettext("Claims")}
|
||||||
|
],
|
||||||
|
htmlClass: "horizontal-checkboxes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "ttl_seconds",
|
||||||
|
title: gettext("TTL Seconds")
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: "methods",
|
||||||
|
title: gettext("Methods"),
|
||||||
|
type: "checkboxes",
|
||||||
|
titleMap: [
|
||||||
|
{value: "GET", name: gettext("GET")},
|
||||||
|
{value: "HEAD", name: gettext("HEAD")},
|
||||||
|
{value: "OPTIONS", name: gettext("OPTIONS")},
|
||||||
|
{value: "POST", name: gettext("POST")},
|
||||||
|
{value: "PUT", name: gettext("PUT")},
|
||||||
|
{value: "DELETE", name: gettext("DELETE")}
|
||||||
|
],
|
||||||
|
htmlClass: "horizontal-checkboxes"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
// model
|
||||||
|
var model = {
|
||||||
|
id: '',
|
||||||
|
name: '',
|
||||||
|
paths: '',
|
||||||
|
ttl_seconds: '',
|
||||||
|
methods: ''
|
||||||
|
};
|
||||||
|
|
||||||
|
// modal config
|
||||||
|
var config = {
|
||||||
|
title: gettext("Signed URL for %s"),
|
||||||
|
schema: schema,
|
||||||
|
form: angular.copy(form),
|
||||||
|
model: model
|
||||||
|
};
|
||||||
|
|
||||||
|
var message = {
|
||||||
|
success: gettext("Signed URL was successfully created for the queue %s with expires %s " +
|
||||||
|
"and signature %s.")
|
||||||
|
};
|
||||||
|
|
||||||
|
var service = {
|
||||||
|
initAction: initAction,
|
||||||
|
perform: perform,
|
||||||
|
allowed: allowed
|
||||||
|
};
|
||||||
|
|
||||||
|
return service;
|
||||||
|
|
||||||
|
//////////////
|
||||||
|
|
||||||
|
function initAction() {
|
||||||
|
}
|
||||||
|
|
||||||
|
function allowed() {
|
||||||
|
return policy.ifAllowed({ rules: [['queue', 'signed_url']] });
|
||||||
|
}
|
||||||
|
|
||||||
|
function perform(selected) {
|
||||||
|
config.model.id = selected.name;
|
||||||
|
config.model.name = selected.name;
|
||||||
|
config.model.paths = '';
|
||||||
|
config.form = angular.copy(form);
|
||||||
|
config.title = interpolate(config.title, [selected.name]);
|
||||||
|
modal.open(config).then(submit);
|
||||||
|
}
|
||||||
|
|
||||||
|
function submit(context) {
|
||||||
|
var name = context.model.name;
|
||||||
|
delete context.model.id;
|
||||||
|
delete context.model.name;
|
||||||
|
delete context.model.output;
|
||||||
|
if (!context.model.ttl_seconds) {
|
||||||
|
delete context.model.ttl_seconds;
|
||||||
|
}
|
||||||
|
waitSpinner.showModalSpinner(gettext('Creating Signed URL'));
|
||||||
|
return zaqar.signedUrl(name, context.model).then(function(response) {
|
||||||
|
config.model = {
|
||||||
|
paths: context.model.paths,
|
||||||
|
ttl_seconds: context.model.ttl_seconds,
|
||||||
|
methods: context.model.methods
|
||||||
|
};
|
||||||
|
config.form = angular.copy(form);
|
||||||
|
|
||||||
|
// for result message
|
||||||
|
config.form[0].items[0].helpvalue = "<div class='alert alert-success'>" +
|
||||||
|
interpolate(message.success,
|
||||||
|
[name, response.data.expires, response.data.signature]
|
||||||
|
) + "</div>";
|
||||||
|
config.form[0].items[0].condition = false;
|
||||||
|
|
||||||
|
// display new dialog
|
||||||
|
waitSpinner.hideModalSpinner();
|
||||||
|
modal.open(config).then(submit);
|
||||||
|
|
||||||
|
var result = actionResult.getActionResult().updated(resourceType, name);
|
||||||
|
return result.results;
|
||||||
|
}, function(response) {
|
||||||
|
// close spinner and display toast
|
||||||
|
waitSpinner.hideModalSpinner();
|
||||||
|
toast.add('error', response.data.split("(")[0].trim() + ".");
|
||||||
|
var result = actionResult.getActionResult().failed(resourceType, name);
|
||||||
|
return result.results;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})();
|
@ -6,3 +6,8 @@
|
|||||||
textarea#messages {
|
textarea#messages {
|
||||||
height: 28em;
|
height: 28em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.horizontal-checkboxes div {
|
||||||
|
display: table-cell;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user