horizon/openstack_dashboard/static/app/core/images/images.service.js

194 lines
5.8 KiB
JavaScript

/*
* (c) Copyright 2016 Hewlett Packard Enterprise Development LP
*
* 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.
*/
(function() {
"use strict";
angular.module('horizon.app.core.images')
.factory('horizon.app.core.images.service', imageService);
imageService.$inject = [
'$filter',
'$location',
'horizon.app.core.openstack-service-api.glance',
'horizon.app.core.openstack-service-api.userSession',
'horizon.app.core.images.transitional-statuses',
'horizon.app.core.openstack-service-api.settings',
'horizon.app.core.detailRoute'
];
/*
* @ngdoc factory
* @name horizon.app.core.images.service
*
* @description
* This service provides functions that are used through the Images
* features. These are primarily used in the module registrations
* but do not need to be restricted to such use. Each exposed function
* is documented below.
*/
function imageService($filter,
$location,
glance,
userSession,
transitionalStatuses,
settings,
detailRoute) {
var version;
return {
getDetailsPath: getDetailsPath,
getImagePromise: getImagePromise,
getImagesPromise: getImagesPromise,
imageType: imageType,
isInTransition: isInTransition,
getFilterFirstSettingPromise: getFilterFirstSettingPromise
};
/*
* @ngdoc function
* @name getDetailsPath
* @param item {Object} - The image object
* @description
* Given an Image object, returns the relative path to the details
* view.
*/
function getDetailsPath(item) {
var detailsPath = detailRoute + 'OS::Glance::Image/' + item.id;
if ($location.url() === '/admin/images') {
detailsPath = detailsPath + "?nav=/admin/images/";
}
return detailsPath;
}
/*
* @ngdoc function
* @name imageType
* @param item {Object} - The image object
* @description
* Given an Image object, returns a name describing the type of image,
* either an 'Image' or a 'Snapshot' type.
*/
function imageType(item) {
if (null !== item &&
angular.isDefined(item) &&
angular.isDefined(item.properties) &&
(item.properties.image_type === 'snapshot' ||
angular.isDefined(item.properties.block_device_mapping))) {
return gettext('Snapshot');
} else {
return gettext('Image');
}
}
/**
* @ngdoc function
* @name isInTransition
* @param item {object} - The image object
* @description
* Given an Image object, returns a boolean representing whether the image
* is in a transitional state.
* @returns {boolean}
*/
function isInTransition(item) {
if (item && angular.isString(item.status)) {
return transitionalStatuses.indexOf(item.status.toLowerCase()) > -1;
}
return false;
}
/*
* @ngdoc function
* @name getImagesPromise
* @description
* Given filter/query parameters, returns a promise for the matching
* images. This is used in displaying lists of Images. In this case,
* we need to modify the API's response by adding a composite value called
* 'trackBy' to assist the display mechanism when updating rows.
*/
function getImagesPromise(params) {
var projectId;
return userSession.get().then(getImages);
function getImages(userSession) {
glance.getVersion().then(setVersion);
projectId = userSession.project_id;
return glance.getImages(params).then(modifyResponse);
}
function modifyResponse(response) {
return {data: {items: response.data.items.map(modifyImage)}};
function modifyImage(image) {
image.trackBy = image.id + image.updated_at + image.status;
image.apiVersion = version;
image.visibility = $filter('imageVisibility')(image, projectId);
image.name = image.name || image.id;
image.type = imageType(image);
return image;
}
}
}
/*
* @ngdoc function
* @name getImagePromise
* @description
* Given an id, returns a promise for the image data.
*/
function getImagePromise(identifier) {
glance.getVersion().then(setVersion);
return glance.getImage(identifier).then(modifyResponse);
function modifyResponse(response) {
response.data.apiVersion = version;
return {data: response.data};
}
}
/*
* @ngdoc function
* @name setVersion
* @description
* Set the image api version so it can be used in decisions about how to
* display information later.
*/
function setVersion(response) {
version = response.data.version;
}
/**
* @ngdoc function
* @name getFilterFirstSettingPromise
* @description Returns a promise for the FILTER_DATA_FIRST setting
*
*/
function getFilterFirstSettingPromise() {
return settings.getSetting('FILTER_DATA_FIRST', {'admin.images': false})
.then(resolve);
function resolve(result) {
// there should a better way to check for admin or project panel??
if ($location.url() === '/admin/images') {
return result['admin.images'];
}
return false;
}
}
}
})();