/*! umbraco * https://github.com/umbraco/umbraco-cms/ * Copyright (c) 2016 Umbraco HQ; * Licensed */ (function() { angular.module("umbraco.resources", []); /** * @ngdoc service * @name umbraco.resources.authResource * @description * This Resource perfomrs actions to common authentication tasks for the Umbraco backoffice user * * @requires $q * @requires $http * @requires umbRequestHelper * @requires angularHelper */ function authResource($q, $http, umbRequestHelper, angularHelper) { return { /** * @ngdoc method * @name umbraco.resources.authResource#performLogin * @methodOf umbraco.resources.authResource * * @description * Logs the Umbraco backoffice user in if the credentials are good * * ##usage *
         * authResource.performLogin(login, password)
         *    .then(function(data) {
         *        //Do stuff for login...
         *    });
         * 
* @param {string} login Username of backoffice user * @param {string} password Password of backoffice user * @returns {Promise} resourcePromise object * */ performLogin: function (username, password) { if (!username || !password) { return angularHelper.rejectedPromise({ errorMsg: 'Username or password cannot be empty' }); } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "PostLogin"), { username: username, password: password }), 'Login failed for user ' + username); }, /** * @ngdoc method * @name umbraco.resources.authResource#performRequestPasswordReset * @methodOf umbraco.resources.authResource * * @description * Checks to see if the provided email address is a valid user account and sends a link * to allow them to reset their password * * ##usage *
         * authResource.performRequestPasswordReset(email)
         *    .then(function(data) {
         *        //Do stuff for password reset request...
         *    });
         * 
* @param {string} email Email address of backoffice user * @returns {Promise} resourcePromise object * */ performRequestPasswordReset: function (email) { if (!email) { return angularHelper.rejectedPromise({ errorMsg: 'Email address cannot be empty' }); } //TODO: This validation shouldn't really be done here, the validation on the login dialog // is pretty hacky which is why this is here, ideally validation on the login dialog would // be done properly. var emailRegex = /\S+@\S+\.\S+/; if (!emailRegex.test(email)) { return angularHelper.rejectedPromise({ errorMsg: 'Email address is not valid' }); } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "PostRequestPasswordReset"), { email: email }), 'Request password reset failed for email ' + email); }, /** * @ngdoc method * @name umbraco.resources.authResource#performValidatePasswordResetCode * @methodOf umbraco.resources.authResource * * @description * Checks to see if the provided password reset code is valid * * ##usage *
         * authResource.performValidatePasswordResetCode(resetCode)
         *    .then(function(data) {
         *        //Allow reset of password
         *    });
         * 
* @param {integer} userId User Id * @param {string} resetCode Password reset code * @returns {Promise} resourcePromise object * */ performValidatePasswordResetCode: function (userId, resetCode) { if (!userId) { return angularHelper.rejectedPromise({ errorMsg: 'User Id cannot be empty' }); } if (!resetCode) { return angularHelper.rejectedPromise({ errorMsg: 'Reset code cannot be empty' }); } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "PostValidatePasswordResetCode"), { userId: userId, resetCode: resetCode }), 'Password reset code validation failed for userId ' + userId + ', code' + resetCode); }, /** * @ngdoc method * @name umbraco.resources.authResource#performSetPassword * @methodOf umbraco.resources.authResource * * @description * Checks to see if the provided password reset code is valid and sets the user's password * * ##usage *
         * authResource.performSetPassword(userId, password, confirmPassword, resetCode)
         *    .then(function(data) {
         *        //Password set
         *    });
         * 
* @param {integer} userId User Id * @param {string} password New password * @param {string} confirmPassword Confirmation of new password * @param {string} resetCode Password reset code * @returns {Promise} resourcePromise object * */ performSetPassword: function (userId, password, confirmPassword, resetCode) { if (userId === undefined || userId === null) { return angularHelper.rejectedPromise({ errorMsg: 'User Id cannot be empty' }); } if (!password) { return angularHelper.rejectedPromise({ errorMsg: 'Password cannot be empty' }); } if (password !== confirmPassword) { return angularHelper.rejectedPromise({ errorMsg: 'Password and confirmation do not match' }); } if (!resetCode) { return angularHelper.rejectedPromise({ errorMsg: 'Reset code cannot be empty' }); } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "PostSetPassword"), { userId: userId, password: password, resetCode: resetCode }), 'Password reset code validation failed for userId ' + userId); }, unlinkLogin: function (loginProvider, providerKey) { if (!loginProvider || !providerKey) { return angularHelper.rejectedPromise({ errorMsg: 'loginProvider or providerKey cannot be empty' }); } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "PostUnLinkLogin"), { loginProvider: loginProvider, providerKey: providerKey }), 'Unlinking login provider failed'); }, /** * @ngdoc method * @name umbraco.resources.authResource#performLogout * @methodOf umbraco.resources.authResource * * @description * Logs out the Umbraco backoffice user * * ##usage *
         * authResource.performLogout()
         *    .then(function(data) {
         *        //Do stuff for logging out...
         *    });
         * 
* @returns {Promise} resourcePromise object * */ performLogout: function() { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "PostLogout"))); }, /** * @ngdoc method * @name umbraco.resources.authResource#getCurrentUser * @methodOf umbraco.resources.authResource * * @description * Sends a request to the server to get the current user details, will return a 401 if the user is not logged in * * ##usage *
         * authResource.getCurrentUser()
         *    .then(function(data) {
         *        //Do stuff for fetching the current logged in Umbraco backoffice user
         *    });
         * 
* @returns {Promise} resourcePromise object * */ getCurrentUser: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "GetCurrentUser")), 'Server call failed for getting current user'); }, getCurrentUserLinkedLogins: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "GetCurrentUserLinkedLogins")), 'Server call failed for getting current users linked logins'); }, /** * @ngdoc method * @name umbraco.resources.authResource#isAuthenticated * @methodOf umbraco.resources.authResource * * @description * Checks if the user is logged in or not - does not return 401 or 403 * * ##usage *
         * authResource.isAuthenticated()
         *    .then(function(data) {
         *        //Do stuff to check if user is authenticated
         *    });
         * 
* @returns {Promise} resourcePromise object * */ isAuthenticated: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "IsAuthenticated")), { success: function (data, status, headers, config) { //if the response is false, they are not logged in so return a rejection if (data === false || data === "false") { return $q.reject('User is not logged in'); } return data; }, error: function (data, status, headers, config) { return { errorMsg: 'Server call failed for checking authentication', data: data, status: status }; } }); }, /** * @ngdoc method * @name umbraco.resources.authResource#getRemainingTimeoutSeconds * @methodOf umbraco.resources.authResource * * @description * Gets the user's remaining seconds before their login times out * * ##usage *
         * authResource.getRemainingTimeoutSeconds()
         *    .then(function(data) {
         *        //Number of seconds is returned
         *    });
         * 
* @returns {Promise} resourcePromise object * */ getRemainingTimeoutSeconds: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "authenticationApiBaseUrl", "GetRemainingTimeoutSeconds")), 'Server call failed for checking remaining seconds'); } }; } angular.module('umbraco.resources').factory('authResource', authResource); /** * @ngdoc service * @name umbraco.resources.contentResource * @description Handles all transactions of content data * from the angular application to the Umbraco database, using the Content WebApi controller * * all methods returns a resource promise async, so all operations won't complete untill .then() is completed. * * @requires $q * @requires $http * @requires umbDataFormatter * @requires umbRequestHelper * * ##usage * To use, simply inject the contentResource into any controller or service that needs it, and make * sure the umbraco.resources module is accesible - which it should be by default. * *
  *    contentResource.getById(1234)
  *          .then(function(data) {
  *              $scope.content = data;
  *          });    
  * 
**/ function contentResource($q, $http, umbDataFormatter, umbRequestHelper) { /** internal method process the saving of data and post processing the result */ function saveContentItem(content, action, files) { return umbRequestHelper.postSaveContent({ restApiUrl: umbRequestHelper.getApiUrl( "contentApiBaseUrl", "PostSave"), content: content, action: action, files: files, dataFormatter: function (c, a) { return umbDataFormatter.formatContentPostData(c, a); } }); } return { getRecycleBin: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "GetRecycleBin")), 'Failed to retrieve data for content recycle bin'); }, /** * @ngdoc method * @name umbraco.resources.contentResource#sort * @methodOf umbraco.resources.contentResource * * @description * Sorts all children below a given parent node id, based on a collection of node-ids * * ##usage *
          * var ids = [123,34533,2334,23434];
          * contentResource.sort({ parentId: 1244, sortedIds: ids })
          *    .then(function() {
          *        $scope.complete = true;
          *    });
          * 
* @param {Object} args arguments object * @param {Int} args.parentId the ID of the parent node * @param {Array} options.sortedIds array of node IDs as they should be sorted * @returns {Promise} resourcePromise object. * */ sort: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.sortedIds) { throw "args.sortedIds cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("contentApiBaseUrl", "PostSort"), { parentId: args.parentId, idSortOrder: args.sortedIds }), 'Failed to sort content'); }, /** * @ngdoc method * @name umbraco.resources.contentResource#move * @methodOf umbraco.resources.contentResource * * @description * Moves a node underneath a new parentId * * ##usage *
          * contentResource.move({ parentId: 1244, id: 123 })
          *    .then(function() {
          *        alert("node was moved");
          *    }, function(err){
          *      alert("node didnt move:" + err.data.Message); 
          *    });
          * 
* @param {Object} args arguments object * @param {Int} args.idd the ID of the node to move * @param {Int} args.parentId the ID of the parent node to move to * @returns {Promise} resourcePromise object. * */ move: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.id) { throw "args.id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("contentApiBaseUrl", "PostMove"), { parentId: args.parentId, id: args.id }), 'Failed to move content'); }, /** * @ngdoc method * @name umbraco.resources.contentResource#copy * @methodOf umbraco.resources.contentResource * * @description * Copies a node underneath a new parentId * * ##usage *
          * contentResource.copy({ parentId: 1244, id: 123 })
          *    .then(function() {
          *        alert("node was copied");
          *    }, function(err){
          *      alert("node wasnt copy:" + err.data.Message); 
          *    });
          * 
* @param {Object} args arguments object * @param {Int} args.id the ID of the node to copy * @param {Int} args.parentId the ID of the parent node to copy to * @param {Boolean} args.relateToOriginal if true, relates the copy to the original through the relation api * @returns {Promise} resourcePromise object. * */ copy: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.id) { throw "args.id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("contentApiBaseUrl", "PostCopy"), args), 'Failed to copy content'); }, /** * @ngdoc method * @name umbraco.resources.contentResource#unPublish * @methodOf umbraco.resources.contentResource * * @description * Unpublishes a content item with a given Id * * ##usage *
          * contentResource.unPublish(1234)
          *    .then(function() {
          *        alert("node was unpulished");
          *    }, function(err){
          *      alert("node wasnt unpublished:" + err.data.Message); 
          *    });
          * 
* @param {Int} id the ID of the node to unpublish * @returns {Promise} resourcePromise object. * */ unPublish: function (id) { if (!id) { throw "id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "PostUnPublish", [{ id: id }])), 'Failed to publish content with id ' + id); }, /** * @ngdoc method * @name umbraco.resources.contentResource#emptyRecycleBin * @methodOf umbraco.resources.contentResource * * @description * Empties the content recycle bin * * ##usage *
          * contentResource.emptyRecycleBin()
          *    .then(function() {
          *        alert('its empty!');
          *    });
          * 
* * @returns {Promise} resourcePromise object. * */ emptyRecycleBin: function () { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "EmptyRecycleBin")), 'Failed to empty the recycle bin'); }, /** * @ngdoc method * @name umbraco.resources.contentResource#deleteById * @methodOf umbraco.resources.contentResource * * @description * Deletes a content item with a given id * * ##usage *
          * contentResource.deleteById(1234)
          *    .then(function() {
          *        alert('its gone!');
          *    });
          * 
* * @param {Int} id id of content item to delete * @returns {Promise} resourcePromise object. * */ deleteById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "DeleteById", [{ id: id }])), 'Failed to delete item ' + id); }, /** * @ngdoc method * @name umbraco.resources.contentResource#getById * @methodOf umbraco.resources.contentResource * * @description * Gets a content item with a given id * * ##usage *
          * contentResource.getById(1234)
          *    .then(function(content) {
          *        var myDoc = content; 
          *        alert('its here!');
          *    });
          * 
* * @param {Int} id id of content item to return * @returns {Promise} resourcePromise object containing the content item. * */ getById: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "GetById", [{ id: id }])), 'Failed to retrieve data for content id ' + id); }, /** * @ngdoc method * @name umbraco.resources.contentResource#getByIds * @methodOf umbraco.resources.contentResource * * @description * Gets an array of content items, given a collection of ids * * ##usage *
          * contentResource.getByIds( [1234,2526,28262])
          *    .then(function(contentArray) {
          *        var myDoc = contentArray; 
          *        alert('they are here!');
          *    });
          * 
* * @param {Array} ids ids of content items to return as an array * @returns {Promise} resourcePromise object containing the content items array. * */ getByIds: function (ids) { var idQuery = ""; _.each(ids, function (item) { idQuery += "ids=" + item + "&"; }); return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "GetByIds", idQuery)), 'Failed to retrieve data for content with multiple ids'); }, /** * @ngdoc method * @name umbraco.resources.contentResource#getScaffold * @methodOf umbraco.resources.contentResource * * @description * Returns a scaffold of an empty content item, given the id of the content item to place it underneath and the content type alias. * * - Parent Id must be provided so umbraco knows where to store the content * - Content Type alias must be provided so umbraco knows which properties to put on the content scaffold * * The scaffold is used to build editors for content that has not yet been populated with data. * * ##usage *
          * contentResource.getScaffold(1234, 'homepage')
          *    .then(function(scaffold) {
          *        var myDoc = scaffold;
          *        myDoc.name = "My new document"; 
          *
          *        contentResource.publish(myDoc, true)
          *            .then(function(content){
          *                alert("Retrieved, updated and published again");
          *            });
          *    });
          * 
* * @param {Int} parentId id of content item to return * @param {String} alias contenttype alias to base the scaffold on * @returns {Promise} resourcePromise object containing the content scaffold. * */ getScaffold: function (parentId, alias) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "GetEmpty", [{ contentTypeAlias: alias }, { parentId: parentId }])), 'Failed to retrieve data for empty content item type ' + alias); }, /** * @ngdoc method * @name umbraco.resources.contentResource#getNiceUrl * @methodOf umbraco.resources.contentResource * * @description * Returns a url, given a node ID * * ##usage *
          * contentResource.getNiceUrl(id)
          *    .then(function(url) {
          *        alert('its here!');
          *    });
          * 
* * @param {Int} id Id of node to return the public url to * @returns {Promise} resourcePromise object containing the url. * */ getNiceUrl: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "GetNiceUrl", [{ id: id }])), 'Failed to retrieve url for id:' + id); }, /** * @ngdoc method * @name umbraco.resources.contentResource#getChildren * @methodOf umbraco.resources.contentResource * * @description * Gets children of a content item with a given id * * ##usage *
          * contentResource.getChildren(1234, {pageSize: 10, pageNumber: 2})
          *    .then(function(contentArray) {
          *        var children = contentArray; 
          *        alert('they are here!');
          *    });
          * 
* * @param {Int} parentid id of content item to return children of * @param {Object} options optional options object * @param {Int} options.pageSize if paging data, number of nodes per page, default = 0 * @param {Int} options.pageNumber if paging data, current page index, default = 0 * @param {String} options.filter if provided, query will only return those with names matching the filter * @param {String} options.orderDirection can be `Ascending` or `Descending` - Default: `Ascending` * @param {String} options.orderBy property to order items by, default: `SortOrder` * @returns {Promise} resourcePromise object containing an array of content items. * */ getChildren: function (parentId, options) { var defaults = { pageSize: 0, pageNumber: 0, filter: '', orderDirection: "Ascending", orderBy: "SortOrder", orderBySystemField: true }; if (options === undefined) { options = {}; } //overwrite the defaults if there are any specified angular.extend(defaults, options); //now copy back to the options we will use options = defaults; //change asc/desct if (options.orderDirection === "asc") { options.orderDirection = "Ascending"; } else if (options.orderDirection === "desc") { options.orderDirection = "Descending"; } //converts the value to a js bool function toBool(v) { if (angular.isNumber(v)) { return v > 0; } if (angular.isString(v)) { return v === "true"; } if (typeof v === "boolean") { return v; } return false; } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "GetChildren", [ { id: parentId }, { pageNumber: options.pageNumber }, { pageSize: options.pageSize }, { orderBy: options.orderBy }, { orderDirection: options.orderDirection }, { orderBySystemField: toBool(options.orderBySystemField) }, { filter: options.filter } ])), 'Failed to retrieve children for content item ' + parentId); }, /** * @ngdoc method * @name umbraco.resources.contentResource#hasPermission * @methodOf umbraco.resources.contentResource * * @description * Returns true/false given a permission char to check against a nodeID * for the current user * * ##usage *
          * contentResource.hasPermission('p',1234)
          *    .then(function() {
          *        alert('You are allowed to publish this item');
          *    });
          * 
* * @param {String} permission char representing the permission to check * @param {Int} id id of content item to delete * @returns {Promise} resourcePromise object. * */ checkPermission: function (permission, id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "HasPermission", [{ permissionToCheck: permission }, { nodeId: id }])), 'Failed to check permission for item ' + id); }, getPermissions: function (nodeIds) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "GetPermissions"), nodeIds), 'Failed to get permissions'); }, /** * @ngdoc method * @name umbraco.resources.contentResource#save * @methodOf umbraco.resources.contentResource * * @description * Saves changes made to a content item to its current version, if the content item is new, the isNew paramater must be passed to force creation * if the content item needs to have files attached, they must be provided as the files param and passed separately * * * ##usage *
          * contentResource.getById(1234)
          *    .then(function(content) {
          *          content.name = "I want a new name!";
          *          contentResource.save(content, false)
          *            .then(function(content){
          *                alert("Retrieved, updated and saved again");
          *            });
          *    });
          * 
* * @param {Object} content The content item object with changes applied * @param {Bool} isNew set to true to create a new item or to update an existing * @param {Array} files collection of files for the document * @returns {Promise} resourcePromise object containing the saved content item. * */ save: function (content, isNew, files) { return saveContentItem(content, "save" + (isNew ? "New" : ""), files); }, /** * @ngdoc method * @name umbraco.resources.contentResource#publish * @methodOf umbraco.resources.contentResource * * @description * Saves and publishes changes made to a content item to a new version, if the content item is new, the isNew paramater must be passed to force creation * if the content item needs to have files attached, they must be provided as the files param and passed separately * * * ##usage *
          * contentResource.getById(1234)
          *    .then(function(content) {
          *          content.name = "I want a new name, and be published!";
          *          contentResource.publish(content, false)
          *            .then(function(content){
          *                alert("Retrieved, updated and published again");
          *            });
          *    });
          * 
* * @param {Object} content The content item object with changes applied * @param {Bool} isNew set to true to create a new item or to update an existing * @param {Array} files collection of files for the document * @returns {Promise} resourcePromise object containing the saved content item. * */ publish: function (content, isNew, files) { return saveContentItem(content, "publish" + (isNew ? "New" : ""), files); }, /** * @ngdoc method * @name umbraco.resources.contentResource#sendToPublish * @methodOf umbraco.resources.contentResource * * @description * Saves changes made to a content item, and notifies any subscribers about a pending publication * * ##usage *
          * contentResource.getById(1234)
          *    .then(function(content) {
          *          content.name = "I want a new name, and be published!";
          *          contentResource.sendToPublish(content, false)
          *            .then(function(content){
          *                alert("Retrieved, updated and notication send off");
          *            });
          *    });
          * 
* * @param {Object} content The content item object with changes applied * @param {Bool} isNew set to true to create a new item or to update an existing * @param {Array} files collection of files for the document * @returns {Promise} resourcePromise object containing the saved content item. * */ sendToPublish: function (content, isNew, files) { return saveContentItem(content, "sendPublish" + (isNew ? "New" : ""), files); }, /** * @ngdoc method * @name umbraco.resources.contentResource#publishByid * @methodOf umbraco.resources.contentResource * * @description * Publishes a content item with a given ID * * ##usage *
          * contentResource.publishById(1234)
          *    .then(function(content) {
          *        alert("published");
          *    });
          * 
* * @param {Int} id The ID of the conten to publish * @returns {Promise} resourcePromise object containing the published content item. * */ publishById: function (id) { if (!id) { throw "id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "contentApiBaseUrl", "PostPublishById", [{ id: id }])), 'Failed to publish content with id ' + id); } }; } angular.module('umbraco.resources').factory('contentResource', contentResource); /** * @ngdoc service * @name umbraco.resources.contentTypeResource * @description Loads in data for content types **/ function contentTypeResource($q, $http, umbRequestHelper, umbDataFormatter) { return { getCount: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "GetCount")), 'Failed to retrieve count'); }, getAvailableCompositeContentTypes: function (contentTypeId, filterContentTypes, filterPropertyTypes) { if (!filterContentTypes) { filterContentTypes = []; } if (!filterPropertyTypes) { filterPropertyTypes = []; } var query = { contentTypeId: contentTypeId, filterContentTypes: filterContentTypes, filterPropertyTypes: filterPropertyTypes }; return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "GetAvailableCompositeContentTypes"), query), 'Failed to retrieve data for content type id ' + contentTypeId); }, /** * @ngdoc method * @name umbraco.resources.contentTypeResource#getAllowedTypes * @methodOf umbraco.resources.contentTypeResource * * @description * Returns a list of allowed content types underneath a content item with a given ID * * ##usage *
         * contentTypeResource.getAllowedTypes(1234)
         *    .then(function(array) {
         *        $scope.type = type;
         *    });
         * 
* @param {Int} contentTypeId id of the content item to retrive allowed child types for * @returns {Promise} resourcePromise object. * */ getAllowedTypes: function (contentTypeId) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "GetAllowedChildren", [{ contentId: contentTypeId }])), 'Failed to retrieve data for content id ' + contentTypeId); }, /** * @ngdoc method * @name umbraco.resources.contentTypeResource#getAllPropertyTypeAliases * @methodOf umbraco.resources.contentTypeResource * * @description * Returns a list of defined property type aliases * * @returns {Promise} resourcePromise object. * */ getAllPropertyTypeAliases: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "GetAllPropertyTypeAliases")), 'Failed to retrieve property type aliases'); }, getPropertyTypeScaffold : function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "GetPropertyTypeScaffold", [{ id: id }])), 'Failed to retrieve property type scaffold'); }, getById: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "GetById", [{ id: id }])), 'Failed to retrieve content type'); }, deleteById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "DeleteById", [{ id: id }])), 'Failed to delete content type'); }, deleteContainerById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "DeleteContainer", [{ id: id }])), 'Failed to delete content type contaier'); }, /** * @ngdoc method * @name umbraco.resources.contentTypeResource#getAll * @methodOf umbraco.resources.contentTypeResource * * @description * Returns a list of all content types * * @returns {Promise} resourcePromise object. * */ getAll: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "GetAll")), 'Failed to retrieve all content types'); }, getScaffold: function (parentId) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "contentTypeApiBaseUrl", "GetEmpty", { parentId: parentId })), 'Failed to retrieve content type scaffold'); }, /** * @ngdoc method * @name umbraco.resources.contentTypeResource#save * @methodOf umbraco.resources.contentTypeResource * * @description * Saves or update a content type * * @param {Object} content data type object to create/update * @returns {Promise} resourcePromise object. * */ save: function (contentType) { var saveModel = umbDataFormatter.formatContentTypePostData(contentType); return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("contentTypeApiBaseUrl", "PostSave"), saveModel), 'Failed to save data for content type id ' + contentType.id); }, /** * @ngdoc method * @name umbraco.resources.contentTypeResource#move * @methodOf umbraco.resources.contentTypeResource * * @description * Moves a node underneath a new parentId * * ##usage *
         * contentTypeResource.move({ parentId: 1244, id: 123 })
         *    .then(function() {
         *        alert("node was moved");
         *    }, function(err){
         *      alert("node didnt move:" + err.data.Message);
         *    });
         * 
* @param {Object} args arguments object * @param {Int} args.idd the ID of the node to move * @param {Int} args.parentId the ID of the parent node to move to * @returns {Promise} resourcePromise object. * */ move: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.id) { throw "args.id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("contentTypeApiBaseUrl", "PostMove"), { parentId: args.parentId, id: args.id }), 'Failed to move content'); }, copy: function(args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.id) { throw "args.id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("contentTypeApiBaseUrl", "PostCopy"), { parentId: args.parentId, id: args.id }), 'Failed to copy content'); }, createContainer: function(parentId, name) { return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("contentTypeApiBaseUrl", "PostCreateContainer", { parentId: parentId, name: name })), 'Failed to create a folder under parent id ' + parentId); } }; } angular.module('umbraco.resources').factory('contentTypeResource', contentTypeResource); /** * @ngdoc service * @name umbraco.resources.currentUserResource * @description Used for read/updates for the currently logged in user * * **/ function currentUserResource($q, $http, umbRequestHelper) { //the factory object returned return { /** * @ngdoc method * @name umbraco.resources.currentUserResource#changePassword * @methodOf umbraco.resources.currentUserResource * * @description * Changes the current users password * * @returns {Promise} resourcePromise object containing the user array. * */ changePassword: function (changePasswordArgs) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "currentUserApiBaseUrl", "PostChangePassword"), changePasswordArgs), 'Failed to change password'); }, /** * @ngdoc method * @name umbraco.resources.currentUserResource#getMembershipProviderConfig * @methodOf umbraco.resources.currentUserResource * * @description * Gets the configuration of the user membership provider which is used to configure the change password form */ getMembershipProviderConfig: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "currentUserApiBaseUrl", "GetMembershipProviderConfig")), 'Failed to retrieve membership provider config'); }, }; } angular.module('umbraco.resources').factory('currentUserResource', currentUserResource); /** * @ngdoc service * @name umbraco.resources.dashboardResource * @description Handles loading the dashboard manifest **/ function dashboardResource($q, $http, umbRequestHelper) { //the factory object returned return { /** * @ngdoc method * @name umbraco.resources.dashboardResource#getDashboard * @methodOf umbraco.resources.dashboardResource * * @description * Retrieves the dashboard configuration for a given section * * @param {string} section Alias of section to retrieve dashboard configuraton for * @returns {Promise} resourcePromise object containing the user array. * */ getDashboard: function (section) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dashboardApiBaseUrl", "GetDashboard", [{ section: section }])), 'Failed to get dashboard ' + section); }, /** * @ngdoc method * @name umbraco.resources.dashboardResource#getRemoteDashboardContent * @methodOf umbraco.resources.dashboardResource * * @description * Retrieves dashboard content from a remote source for a given section * * @param {string} section Alias of section to retrieve dashboard content for * @returns {Promise} resourcePromise object containing the user array. * */ getRemoteDashboardContent: function (section, baseurl) { //build request values with optional params var values = [{ section: section }]; if (baseurl) { values.push({ baseurl: baseurl }); } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dashboardApiBaseUrl", "GetRemoteDashboardContent", values)), "Failed to get dashboard content"); }, getRemoteDashboardCssUrl: function (section, baseurl) { //build request values with optional params var values = [{ section: section }]; if (baseurl) { values.push({ baseurl: baseurl }); } return umbRequestHelper.getApiUrl( "dashboardApiBaseUrl", "GetRemoteDashboardCss", values); } }; } angular.module('umbraco.resources').factory('dashboardResource', dashboardResource); /** * @ngdoc service * @name umbraco.resources.dataTypeResource * @description Loads in data for data types **/ function dataTypeResource($q, $http, umbDataFormatter, umbRequestHelper) { return { /** * @ngdoc method * @name umbraco.resources.dataTypeResource#getPreValues * @methodOf umbraco.resources.dataTypeResource * * @description * Retrieves available prevalues for a given data type + editor * * ##usage *
         * dataTypeResource.getPreValues("Umbraco.MediaPicker", 1234)
         *    .then(function(prevalues) {
         *        alert('its gone!');
         *    });
         * 
* * @param {String} editorAlias string alias of editor type to retrive prevalues configuration for * @param {Int} id id of datatype to retrieve prevalues for * @returns {Promise} resourcePromise object. * */ getPreValues: function (editorAlias, dataTypeId) { if (!dataTypeId) { dataTypeId = -1; } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetPreValues", [{ editorAlias: editorAlias }, { dataTypeId: dataTypeId }])), "Failed to retrieve pre values for editor alias " + editorAlias); }, /** * @ngdoc method * @name umbraco.resources.dataTypeResource#getById * @methodOf umbraco.resources.dataTypeResource * * @description * Gets a data type item with a given id * * ##usage *
         * dataTypeResource.getById(1234)
         *    .then(function(datatype) {
         *        alert('its here!');
         *    });
         * 
* * @param {Int} id id of data type to retrieve * @returns {Promise} resourcePromise object. * */ getById: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetById", [{ id: id }])), "Failed to retrieve data for data type id " + id); }, /** * @ngdoc method * @name umbraco.resources.dataTypeResource#getByName * @methodOf umbraco.resources.dataTypeResource * * @description * Gets a data type item with a given name * * ##usage *
         * dataTypeResource.getByName("upload")
         *    .then(function(datatype) {
         *        alert('its here!');
         *    });
         * 
* * @param {String} name Name of data type to retrieve * @returns {Promise} resourcePromise object. * */ getByName: function (name) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetByName", [{ name: name }])), "Failed to retrieve data for data type with name: " + name); }, getAll: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetAll")), "Failed to retrieve data"); }, getGroupedDataTypes: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetGroupedDataTypes")), "Failed to retrieve data"); }, getGroupedPropertyEditors : function(){ return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetGroupedPropertyEditors")), "Failed to retrieve data"); }, getAllPropertyEditors: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetAllPropertyEditors")), "Failed to retrieve data"); }, /** * @ngdoc method * @name umbraco.resources.contentResource#getScaffold * @methodOf umbraco.resources.contentResource * * @description * Returns a scaffold of an empty data type item * * The scaffold is used to build editors for data types that has not yet been populated with data. * * ##usage *
         * dataTypeResource.getScaffold()
         *    .then(function(scaffold) {
         *        var myType = scaffold;
         *        myType.name = "My new data type";
         *
         *        dataTypeResource.save(myType, myType.preValues, true)
         *            .then(function(type){
         *                alert("Retrieved, updated and saved again");
         *            });
         *    });
         * 
* * @returns {Promise} resourcePromise object containing the data type scaffold. * */ getScaffold: function (parentId) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetEmpty", { parentId: parentId })), "Failed to retrieve data for empty datatype"); }, /** * @ngdoc method * @name umbraco.resources.dataTypeResource#deleteById * @methodOf umbraco.resources.dataTypeResource * * @description * Deletes a data type with a given id * * ##usage *
         * dataTypeResource.deleteById(1234)
         *    .then(function() {
         *        alert('its gone!');
         *    });
         * 
* * @param {Int} id id of content item to delete * @returns {Promise} resourcePromise object. * */ deleteById: function(id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "DeleteById", [{ id: id }])), "Failed to delete item " + id); }, deleteContainerById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "DeleteContainer", [{ id: id }])), 'Failed to delete content type contaier'); }, /** * @ngdoc method * @name umbraco.resources.dataTypeResource#getCustomListView * @methodOf umbraco.resources.dataTypeResource * * @description * Returns a custom listview, given a content types alias * * * ##usage *
         * dataTypeResource.getCustomListView("home")
         *    .then(function(listview) {
         *    });
         * 
* * @returns {Promise} resourcePromise object containing the listview datatype. * */ getCustomListView: function (contentTypeAlias) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "GetCustomListView", { contentTypeAlias: contentTypeAlias } )), "Failed to retrieve data for custom listview datatype"); }, /** * @ngdoc method * @name umbraco.resources.dataTypeResource#createCustomListView * @methodOf umbraco.resources.dataTypeResource * * @description * Creates and returns a custom listview, given a content types alias * * ##usage *
        * dataTypeResource.createCustomListView("home")
        *    .then(function(listview) {
        *    });
        * 
* * @returns {Promise} resourcePromise object containing the listview datatype. * */ createCustomListView: function (contentTypeAlias) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "PostCreateCustomListView", { contentTypeAlias: contentTypeAlias } )), "Failed to create a custom listview datatype"); }, /** * @ngdoc method * @name umbraco.resources.dataTypeResource#save * @methodOf umbraco.resources.dataTypeResource * * @description * Saves or update a data type * * @param {Object} dataType data type object to create/update * @param {Array} preValues collection of prevalues on the datatype * @param {Bool} isNew set to true if type should be create instead of updated * @returns {Promise} resourcePromise object. * */ save: function (dataType, preValues, isNew) { var saveModel = umbDataFormatter.formatDataTypePostData(dataType, preValues, "save" + (isNew ? "New" : "")); return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("dataTypeApiBaseUrl", "PostSave"), saveModel), "Failed to save data for data type id " + dataType.id); }, /** * @ngdoc method * @name umbraco.resources.dataTypeResource#move * @methodOf umbraco.resources.dataTypeResource * * @description * Moves a node underneath a new parentId * * ##usage *
         * dataTypeResource.move({ parentId: 1244, id: 123 })
         *    .then(function() {
         *        alert("node was moved");
         *    }, function(err){
         *      alert("node didnt move:" + err.data.Message); 
         *    });
         * 
* @param {Object} args arguments object * @param {Int} args.idd the ID of the node to move * @param {Int} args.parentId the ID of the parent node to move to * @returns {Promise} resourcePromise object. * */ move: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.id) { throw "args.id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("dataTypeApiBaseUrl", "PostMove"), { parentId: args.parentId, id: args.id }), 'Failed to move content'); }, createContainer: function (parentId, name) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "dataTypeApiBaseUrl", "PostCreateContainer", { parentId: parentId, name: name })), 'Failed to create a folder under parent id ' + parentId); } }; } angular.module("umbraco.resources").factory("dataTypeResource", dataTypeResource); /** * @ngdoc service * @name umbraco.resources.entityResource * @description Loads in basic data for all entities * * ##What is an entity? * An entity is a basic **read-only** representation of an Umbraco node. It contains only the most * basic properties used to display the item in trees, lists and navigation. * * ##What is the difference between entity and content/media/etc...? * the entity only contains the basic node data, name, id and guid, whereas content * nodes fetched through the content service also contains additional all of the content property data, etc.. * This is the same principal for all entity types. Any user that is logged in to the back office will have access * to view the basic entity information for all entities since the basic entity information does not contain sensitive information. * * ##Entity object types? * You need to specify the type of object you want returned. * * The core object types are: * * - Document * - Media * - Member * - Template * - DocumentType * - MediaType * - MemberType * - Macro * - User * - Language * - Domain * - DataType **/ function entityResource($q, $http, umbRequestHelper) { //the factory object returned return { getSafeAlias: function (value, camelCase) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "GetSafeAlias", { value: value, camelCase: camelCase })), 'Failed to retrieve content type scaffold'); }, /** * @ngdoc method * @name umbraco.resources.entityResource#getPath * @methodOf umbraco.resources.entityResource * * @description * Returns a path, given a node ID and type * * ##usage *
         * entityResource.getPath(id)
         *    .then(function(pathArray) {
         *        alert('its here!');
         *    });
         * 
* * @param {Int} id Id of node to return the public url to * @param {string} type Object type name * @returns {Promise} resourcePromise object containing the url. * */ getPath: function (id, type) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "GetPath", [{ id: id }, {type: type }])), 'Failed to retrieve path for id:' + id); }, /** * @ngdoc method * @name umbraco.resources.entityResource#getById * @methodOf umbraco.resources.entityResource * * @description * Gets an entity with a given id * * ##usage *
         * //get media by id
         * entityResource.getEntityById(0, "Media")
         *    .then(function(ent) {
         *        var myDoc = ent; 
         *        alert('its here!');
         *    });
         * 
* * @param {Int} id id of entity to return * @param {string} type Object type name * @returns {Promise} resourcePromise object containing the entity. * */ getById: function (id, type) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "GetById", [{ id: id}, {type: type }])), 'Failed to retrieve entity data for id ' + id); }, /** * @ngdoc method * @name umbraco.resources.entityResource#getByIds * @methodOf umbraco.resources.entityResource * * @description * Gets an array of entities, given a collection of ids * * ##usage *
         * //Get templates for ids
         * entityResource.getEntitiesByIds( [1234,2526,28262], "Template")
         *    .then(function(templateArray) {
         *        var myDoc = contentArray; 
         *        alert('they are here!');
         *    });
         * 
* * @param {Array} ids ids of entities to return as an array * @param {string} type type name * @returns {Promise} resourcePromise object containing the entity array. * */ getByIds: function (ids, type) { var query = ""; _.each(ids, function(item) { query += "ids=" + item + "&"; }); // if ids array is empty we need a empty variable in the querystring otherwise the service returns a error if (ids.length === 0) { query += "ids=&"; } query += "type=" + type; return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "GetByIds", query)), 'Failed to retrieve entity data for ids ' + ids); }, /** * @ngdoc method * @name umbraco.resources.entityResource#getByQuery * @methodOf umbraco.resources.entityResource * * @description * Gets an entity from a given xpath * * ##usage *
         * //get content by xpath
         * entityResource.getByQuery("$current", -1, "Document")
         *    .then(function(ent) {
         *        var myDoc = ent; 
         *        alert('its here!');
         *    });
         * 
* * @param {string} query xpath to use in query * @param {Int} nodeContextId id id to start from * @param {string} type Object type name * @returns {Promise} resourcePromise object containing the entity. * */ getByQuery: function (query, nodeContextId, type) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "GetByQuery", [{ query: query }, { nodeContextId: nodeContextId }, { type: type }])), 'Failed to retrieve entity data for query ' + query); }, /** * @ngdoc method * @name umbraco.resources.entityResource#getAll * @methodOf umbraco.resources.entityResource * * @description * Gets an entity with a given id * * ##usage *
         *
         * //Only return media
         * entityResource.getAll("Media")
         *    .then(function(ent) {
         *        var myDoc = ent; 
         *        alert('its here!');
         *    });
         * 
* * @param {string} type Object type name * @param {string} postFilter optional filter expression which will execute a dynamic where clause on the server * @param {string} postFilterParams optional parameters for the postFilter expression * @returns {Promise} resourcePromise object containing the entity. * */ getAll: function (type, postFilter, postFilterParams) { //need to build the query string manually var query = "type=" + type + "&postFilter=" + (postFilter ? postFilter : ""); if (postFilter && postFilterParams) { var counter = 0; _.each(postFilterParams, function(val, key) { query += "&postFilterParams[" + counter + "].key=" + key + "&postFilterParams[" + counter + "].value=" + val; counter++; }); } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "GetAll", query)), 'Failed to retrieve entity data for type ' + type); }, /** * @ngdoc method * @name umbraco.resources.entityResource#getAncestors * @methodOf umbraco.resources.entityResource * * @description * Gets ancestor entities for a given item * * * @param {string} type Object type name * @returns {Promise} resourcePromise object containing the entity. * */ getAncestors: function (id, type) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "GetAncestors", [{id: id}, {type: type}])), 'Failed to retrieve ancestor data for id ' + id); }, /** * @ngdoc method * @name umbraco.resources.entityResource#getAncestors * @methodOf umbraco.resources.entityResource * * @description * Gets children entities for a given item * * * @param {string} type Object type name * @returns {Promise} resourcePromise object containing the entity. * */ getChildren: function (id, type) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "GetChildren", [{ id: id }, { type: type }])), 'Failed to retrieve child data for id ' + id); }, /** * @ngdoc method * @name umbraco.resources.entityResource#search * @methodOf umbraco.resources.entityResource * * @description * Gets an array of entities, given a lucene query and a type * * ##usage *
         * entityResource.search("news", "Media")
         *    .then(function(mediaArray) {
         *        var myDoc = mediaArray; 
         *        alert('they are here!');
         *    });
         * 
* * @param {String} Query search query * @param {String} Type type of conten to search * @returns {Promise} resourcePromise object containing the entity array. * */ search: function (query, type, searchFrom, canceler) { var args = [{ query: query }, { type: type }]; if (searchFrom) { args.push({ searchFrom: searchFrom }); } var httpConfig = {}; if (canceler) { httpConfig["timeout"] = canceler; } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "Search", args), httpConfig), 'Failed to retrieve entity data for query ' + query); }, /** * @ngdoc method * @name umbraco.resources.entityResource#searchAll * @methodOf umbraco.resources.entityResource * * @description * Gets an array of entities from all available search indexes, given a lucene query * * ##usage *
         * entityResource.searchAll("bob")
         *    .then(function(array) {
         *        var myDoc = array; 
         *        alert('they are here!');
         *    });
         * 
* * @param {String} Query search query * @returns {Promise} resourcePromise object containing the entity array. * */ searchAll: function (query, canceler) { var httpConfig = {}; if (canceler) { httpConfig["timeout"] = canceler; } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "entityApiBaseUrl", "SearchAll", [{ query: query }]), httpConfig), 'Failed to retrieve entity data for query ' + query); } }; } angular.module('umbraco.resources').factory('entityResource', entityResource); /** * @ngdoc service * @name umbraco.resources.healthCheckResource * @function * * @description * Used by the health check dashboard to get checks and send requests to fix checks. */ (function () { 'use strict'; function healthCheckResource($http, umbRequestHelper) { /** * @ngdoc function * @name umbraco.resources.healthCheckService#getAllChecks * @methodOf umbraco.resources.healthCheckResource * @function * * @description * Called to get all available health checks */ function getAllChecks() { return umbRequestHelper.resourcePromise( $http.get(Umbraco.Sys.ServerVariables.umbracoUrls.healthCheckBaseUrl + "GetAllHealthChecks"), "Failed to retrieve health checks" ); } /** * @ngdoc function * @name umbraco.resources.healthCheckService#getStatus * @methodOf umbraco.resources.healthCheckResource * @function * * @description * Called to get execute a health check and return the check status */ function getStatus(id) { return umbRequestHelper.resourcePromise( $http.get(Umbraco.Sys.ServerVariables.umbracoUrls.healthCheckBaseUrl + 'GetStatus?id=' + id), 'Failed to retrieve status for health check with ID ' + id ); } /** * @ngdoc function * @name umbraco.resources.healthCheckService#executeAction * @methodOf umbraco.resources.healthCheckResource * @function * * @description * Called to execute a health check action (rectifying an issue) */ function executeAction(action) { return umbRequestHelper.resourcePromise( $http.post(Umbraco.Sys.ServerVariables.umbracoUrls.healthCheckBaseUrl + 'ExecuteAction', action), 'Failed to execute action with alias ' + action.alias + ' and healthCheckId + ' + action.healthCheckId ); } var resource = { getAllChecks: getAllChecks, getStatus: getStatus, executeAction: executeAction }; return resource; } angular.module('umbraco.resources').factory('healthCheckResource', healthCheckResource); })(); /** * @ngdoc service * @name umbraco.resources.legacyResource * @description Handles legacy dialog requests **/ function legacyResource($q, $http, umbRequestHelper) { //the factory object returned return { /** Loads in the data to display the section list */ deleteItem: function (args) { if (!args.nodeId || !args.nodeType || !args.alias) { throw "The args parameter is not formatted correct, it requires properties: nodeId, nodeType, alias"; } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "legacyApiBaseUrl", "DeleteLegacyItem", [{ nodeId: args.nodeId }, { nodeType: args.nodeType }, { alias: args.alias }])), 'Failed to delete item ' + args.nodeId); } }; } angular.module('umbraco.resources').factory('legacyResource', legacyResource); /** * @ngdoc service * @name umbraco.resources.logResource * @description Retrives log history from umbraco * * **/ function logResource($q, $http, umbRequestHelper) { //the factory object returned return { /** * @ngdoc method * @name umbraco.resources.logResource#getEntityLog * @methodOf umbraco.resources.logResource * * @description * Gets the log history for a give entity id * * ##usage *
         * logResource.getEntityLog(1234)
         *    .then(function(log) {
         *        alert('its here!');
         *    });
         * 
* * @param {Int} id id of entity to return log history * @returns {Promise} resourcePromise object containing the log. * */ getEntityLog: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "logApiBaseUrl", "GetEntityLog", [{ id: id }])), 'Failed to retrieve user data for id ' + id); }, /** * @ngdoc method * @name umbraco.resources.logResource#getUserLog * @methodOf umbraco.resources.logResource * * @description * Gets the current users' log history for a given type of log entry * * ##usage *
         * logResource.getUserLog("save", new Date())
         *    .then(function(log) {
         *        alert('its here!');
         *    });
         * 
* * @param {String} type logtype to query for * @param {DateTime} since query the log back to this date, by defalt 7 days ago * @returns {Promise} resourcePromise object containing the log. * */ getUserLog: function (type, since) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "logApiBaseUrl", "GetCurrentUserLog", [{ logtype: type, sinceDate: since }])), 'Failed to retrieve user data for id ' + id); }, /** * @ngdoc method * @name umbraco.resources.logResource#getLog * @methodOf umbraco.resources.logResource * * @description * Gets the log history for a given type of log entry * * ##usage *
         * logResource.getLog("save", new Date())
         *    .then(function(log) {
         *        alert('its here!');
         *    });
         * 
* * @param {String} type logtype to query for * @param {DateTime} since query the log back to this date, by defalt 7 days ago * @returns {Promise} resourcePromise object containing the log. * */ getLog: function (type, since) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "logApiBaseUrl", "GetLog", [{ logtype: type, sinceDate: since }])), 'Failed to retrieve user data for id ' + id); } }; } angular.module('umbraco.resources').factory('logResource', logResource); /** * @ngdoc service * @name umbraco.resources.macroResource * @description Deals with data for macros * **/ function macroResource($q, $http, umbRequestHelper) { //the factory object returned return { /** * @ngdoc method * @name umbraco.resources.macroResource#getMacroParameters * @methodOf umbraco.resources.macroResource * * @description * Gets the editable macro parameters for the specified macro alias * * @param {int} macroId The macro id to get parameters for * */ getMacroParameters: function (macroId) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "macroApiBaseUrl", "GetMacroParameters", [{ macroId: macroId }])), 'Failed to retrieve macro parameters for macro with id ' + macroId); }, /** * @ngdoc method * @name umbraco.resources.macroResource#getMacroResult * @methodOf umbraco.resources.macroResource * * @description * Gets the result of a macro as html to display in the rich text editor or in the Grid * * @param {int} macroId The macro id to get parameters for * @param {int} pageId The current page id * @param {Array} macroParamDictionary A dictionary of macro parameters * */ getMacroResultAsHtmlForEditor: function (macroAlias, pageId, macroParamDictionary) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "macroApiBaseUrl", "GetMacroResultAsHtmlForEditor"), { macroAlias: macroAlias, pageId: pageId, macroParams: macroParamDictionary }), 'Failed to retrieve macro result for macro with alias ' + macroAlias); } }; } angular.module('umbraco.resources').factory('macroResource', macroResource); /** * @ngdoc service * @name umbraco.resources.mediaResource * @description Loads in data for media **/ function mediaResource($q, $http, umbDataFormatter, umbRequestHelper) { /** internal method process the saving of data and post processing the result */ function saveMediaItem(content, action, files) { return umbRequestHelper.postSaveContent({ restApiUrl: umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "PostSave"), content: content, action: action, files: files, dataFormatter: function (c, a) { return umbDataFormatter.formatMediaPostData(c, a); } }); } return { getRecycleBin: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "GetRecycleBin")), 'Failed to retrieve data for media recycle bin'); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#sort * @methodOf umbraco.resources.mediaResource * * @description * Sorts all children below a given parent node id, based on a collection of node-ids * * ##usage *
          * var ids = [123,34533,2334,23434];
          * mediaResource.sort({ sortedIds: ids })
          *    .then(function() {
          *        $scope.complete = true;
          *    });
          * 
* @param {Object} args arguments object * @param {Int} args.parentId the ID of the parent node * @param {Array} options.sortedIds array of node IDs as they should be sorted * @returns {Promise} resourcePromise object. * */ sort: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.sortedIds) { throw "args.sortedIds cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("mediaApiBaseUrl", "PostSort"), { parentId: args.parentId, idSortOrder: args.sortedIds }), 'Failed to sort media'); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#move * @methodOf umbraco.resources.mediaResource * * @description * Moves a node underneath a new parentId * * ##usage *
          * mediaResource.move({ parentId: 1244, id: 123 })
          *    .then(function() {
          *        alert("node was moved");
          *    }, function(err){
          *      alert("node didnt move:" + err.data.Message); 
          *    });
          * 
* @param {Object} args arguments object * @param {Int} args.idd the ID of the node to move * @param {Int} args.parentId the ID of the parent node to move to * @returns {Promise} resourcePromise object. * */ move: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.id) { throw "args.id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("mediaApiBaseUrl", "PostMove"), { parentId: args.parentId, id: args.id }), 'Failed to move media'); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#getById * @methodOf umbraco.resources.mediaResource * * @description * Gets a media item with a given id * * ##usage *
          * mediaResource.getById(1234)
          *    .then(function(media) {
          *        var myMedia = media; 
          *        alert('its here!');
          *    });
          * 
* * @param {Int} id id of media item to return * @returns {Promise} resourcePromise object containing the media item. * */ getById: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "GetById", [{ id: id }])), 'Failed to retrieve data for media id ' + id); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#deleteById * @methodOf umbraco.resources.mediaResource * * @description * Deletes a media item with a given id * * ##usage *
          * mediaResource.deleteById(1234)
          *    .then(function() {
          *        alert('its gone!');
          *    });
          * 
* * @param {Int} id id of media item to delete * @returns {Promise} resourcePromise object. * */ deleteById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "DeleteById", [{ id: id }])), 'Failed to delete item ' + id); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#getByIds * @methodOf umbraco.resources.mediaResource * * @description * Gets an array of media items, given a collection of ids * * ##usage *
          * mediaResource.getByIds( [1234,2526,28262])
          *    .then(function(mediaArray) {
          *        var myDoc = contentArray; 
          *        alert('they are here!');
          *    });
          * 
* * @param {Array} ids ids of media items to return as an array * @returns {Promise} resourcePromise object containing the media items array. * */ getByIds: function (ids) { var idQuery = ""; _.each(ids, function (item) { idQuery += "ids=" + item + "&"; }); return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "GetByIds", idQuery)), 'Failed to retrieve data for media ids ' + ids); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#getScaffold * @methodOf umbraco.resources.mediaResource * * @description * Returns a scaffold of an empty media item, given the id of the media item to place it underneath and the media type alias. * * - Parent Id must be provided so umbraco knows where to store the media * - Media Type alias must be provided so umbraco knows which properties to put on the media scaffold * * The scaffold is used to build editors for media that has not yet been populated with data. * * ##usage *
          * mediaResource.getScaffold(1234, 'folder')
          *    .then(function(scaffold) {
          *        var myDoc = scaffold;
          *        myDoc.name = "My new media item"; 
          *
          *        mediaResource.save(myDoc, true)
          *            .then(function(media){
          *                alert("Retrieved, updated and saved again");
          *            });
          *    });
          * 
* * @param {Int} parentId id of media item to return * @param {String} alias mediatype alias to base the scaffold on * @returns {Promise} resourcePromise object containing the media scaffold. * */ getScaffold: function (parentId, alias) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "GetEmpty", [{ contentTypeAlias: alias }, { parentId: parentId }])), 'Failed to retrieve data for empty media item type ' + alias); }, rootMedia: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "GetRootMedia")), 'Failed to retrieve data for root media'); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#getChildren * @methodOf umbraco.resources.mediaResource * * @description * Gets children of a media item with a given id * * ##usage *
          * mediaResource.getChildren(1234, {pageSize: 10, pageNumber: 2})
          *    .then(function(contentArray) {
          *        var children = contentArray; 
          *        alert('they are here!');
          *    });
          * 
* * @param {Int} parentid id of content item to return children of * @param {Object} options optional options object * @param {Int} options.pageSize if paging data, number of nodes per page, default = 0 * @param {Int} options.pageNumber if paging data, current page index, default = 0 * @param {String} options.filter if provided, query will only return those with names matching the filter * @param {String} options.orderDirection can be `Ascending` or `Descending` - Default: `Ascending` * @param {String} options.orderBy property to order items by, default: `SortOrder` * @returns {Promise} resourcePromise object containing an array of content items. * */ getChildren: function (parentId, options) { var defaults = { pageSize: 0, pageNumber: 0, filter: '', orderDirection: "Ascending", orderBy: "SortOrder", orderBySystemField: true }; if (options === undefined) { options = {}; } //overwrite the defaults if there are any specified angular.extend(defaults, options); //now copy back to the options we will use options = defaults; //change asc/desct if (options.orderDirection === "asc") { options.orderDirection = "Ascending"; } else if (options.orderDirection === "desc") { options.orderDirection = "Descending"; } //converts the value to a js bool function toBool(v) { if (angular.isNumber(v)) { return v > 0; } if (angular.isString(v)) { return v === "true"; } if (typeof v === "boolean") { return v; } return false; } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "GetChildren", [ { id: parentId }, { pageNumber: options.pageNumber }, { pageSize: options.pageSize }, { orderBy: options.orderBy }, { orderDirection: options.orderDirection }, { orderBySystemField: toBool(options.orderBySystemField) }, { filter: options.filter } ])), 'Failed to retrieve children for media item ' + parentId); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#save * @methodOf umbraco.resources.mediaResource * * @description * Saves changes made to a media item, if the media item is new, the isNew paramater must be passed to force creation * if the media item needs to have files attached, they must be provided as the files param and passed separately * * * ##usage *
          * mediaResource.getById(1234)
          *    .then(function(media) {
          *          media.name = "I want a new name!";
          *          mediaResource.save(media, false)
          *            .then(function(media){
          *                alert("Retrieved, updated and saved again");
          *            });
          *    });
          * 
* * @param {Object} media The media item object with changes applied * @param {Bool} isNew set to true to create a new item or to update an existing * @param {Array} files collection of files for the media item * @returns {Promise} resourcePromise object containing the saved media item. * */ save: function (media, isNew, files) { return saveMediaItem(media, "save" + (isNew ? "New" : ""), files); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#addFolder * @methodOf umbraco.resources.mediaResource * * @description * Shorthand for adding a media item of the type "Folder" under a given parent ID * * ##usage *
          * mediaResource.addFolder("My gallery", 1234)
          *    .then(function(folder) {
          *        alert('New folder');
          *    });
          * 
* * @param {string} name Name of the folder to create * @param {int} parentId Id of the media item to create the folder underneath * @returns {Promise} resourcePromise object. * */ addFolder: function (name, parentId) { return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper .getApiUrl("mediaApiBaseUrl", "PostAddFolder"), { name: name, parentId: parentId }), 'Failed to add folder'); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#getChildFolders * @methodOf umbraco.resources.mediaResource * * @description * Retrieves all media children with types used as folders. * Uses the convention of looking for media items with mediaTypes ending in * *Folder so will match "Folder", "bannerFolder", "secureFolder" etc, * * ##usage *
          * mediaResource.getChildFolders(1234)
          *    .then(function(data) {
          *        alert('folders');
          *    });
          * 
* * @param {int} parentId Id of the media item to query for child folders * @returns {Promise} resourcePromise object. * */ getChildFolders: function (parentId) { if (!parentId) { parentId = -1; } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "GetChildFolders", [ { id: parentId } ])), 'Failed to retrieve child folders for media item ' + parentId); }, /** * @ngdoc method * @name umbraco.resources.mediaResource#emptyRecycleBin * @methodOf umbraco.resources.mediaResource * * @description * Empties the media recycle bin * * ##usage *
          * mediaResource.emptyRecycleBin()
          *    .then(function() {
          *        alert('its empty!');
          *    });
          * 
* * @returns {Promise} resourcePromise object. * */ emptyRecycleBin: function () { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "mediaApiBaseUrl", "EmptyRecycleBin")), 'Failed to empty the recycle bin'); } }; } angular.module('umbraco.resources').factory('mediaResource', mediaResource); /** * @ngdoc service * @name umbraco.resources.mediaTypeResource * @description Loads in data for media types **/ function mediaTypeResource($q, $http, umbRequestHelper, umbDataFormatter) { return { getCount: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "GetCount")), 'Failed to retrieve count'); }, getAvailableCompositeContentTypes: function (contentTypeId, filterContentTypes, filterPropertyTypes) { if (!filterContentTypes) { filterContentTypes = []; } if (!filterPropertyTypes) { filterPropertyTypes = []; } var query = { contentTypeId: contentTypeId, filterContentTypes: filterContentTypes, filterPropertyTypes: filterPropertyTypes }; return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "GetAvailableCompositeMediaTypes"), query), 'Failed to retrieve data for content type id ' + contentTypeId); }, /** * @ngdoc method * @name umbraco.resources.mediaTypeResource#getAllowedTypes * @methodOf umbraco.resources.mediaTypeResource * * @description * Returns a list of allowed media types underneath a media item with a given ID * * ##usage *
         * mediaTypeResource.getAllowedTypes(1234)
         *    .then(function(array) {
         *        $scope.type = type;
         *    });
         * 
* @param {Int} mediaId id of the media item to retrive allowed child types for * @returns {Promise} resourcePromise object. * */ getAllowedTypes: function (mediaId) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "GetAllowedChildren", [{ contentId: mediaId }])), 'Failed to retrieve allowed types for media id ' + mediaId); }, getById: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "GetById", [{ id: id }])), 'Failed to retrieve content type'); }, getAll: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "GetAll")), 'Failed to retrieve all content types'); }, getScaffold: function (parentId) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "GetEmpty", { parentId: parentId })), 'Failed to retrieve content type scaffold'); }, deleteById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "DeleteById", [{ id: id }])), 'Failed to retrieve content type'); }, deleteContainerById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "DeleteContainer", [{ id: id }])), 'Failed to delete content type contaier'); }, save: function (contentType) { var saveModel = umbDataFormatter.formatContentTypePostData(contentType); return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("mediaTypeApiBaseUrl", "PostSave"), saveModel), 'Failed to save data for content type id ' + contentType.id); }, /** * @ngdoc method * @name umbraco.resources.mediaTypeResource#move * @methodOf umbraco.resources.mediaTypeResource * * @description * Moves a node underneath a new parentId * * ##usage *
         * mediaTypeResource.move({ parentId: 1244, id: 123 })
         *    .then(function() {
         *        alert("node was moved");
         *    }, function(err){
         *      alert("node didnt move:" + err.data.Message);
         *    });
         * 
* @param {Object} args arguments object * @param {Int} args.idd the ID of the node to move * @param {Int} args.parentId the ID of the parent node to move to * @returns {Promise} resourcePromise object. * */ move: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.id) { throw "args.id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("mediaTypeApiBaseUrl", "PostMove"), { parentId: args.parentId, id: args.id }), 'Failed to move content'); }, copy: function (args) { if (!args) { throw "args cannot be null"; } if (!args.parentId) { throw "args.parentId cannot be null"; } if (!args.id) { throw "args.id cannot be null"; } return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("mediaTypeApiBaseUrl", "PostCopy"), { parentId: args.parentId, id: args.id }), 'Failed to copy content'); }, createContainer: function(parentId, name) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "mediaTypeApiBaseUrl", "PostCreateContainer", { parentId: parentId, name: name })), 'Failed to create a folder under parent id ' + parentId); } }; } angular.module('umbraco.resources').factory('mediaTypeResource', mediaTypeResource); /** * @ngdoc service * @name umbraco.resources.memberResource * @description Loads in data for members **/ function memberResource($q, $http, umbDataFormatter, umbRequestHelper) { /** internal method process the saving of data and post processing the result */ function saveMember(content, action, files) { return umbRequestHelper.postSaveContent({ restApiUrl: umbRequestHelper.getApiUrl( "memberApiBaseUrl", "PostSave"), content: content, action: action, files: files, dataFormatter: function (c, a) { return umbDataFormatter.formatMemberPostData(c, a); } }); } return { getPagedResults: function (memberTypeAlias, options) { if (memberTypeAlias === 'all-members') { memberTypeAlias = null; } var defaults = { pageSize: 25, pageNumber: 1, filter: '', orderDirection: "Ascending", orderBy: "LoginName", orderBySystemField: true }; if (options === undefined) { options = {}; } //overwrite the defaults if there are any specified angular.extend(defaults, options); //now copy back to the options we will use options = defaults; //change asc/desct if (options.orderDirection === "asc") { options.orderDirection = "Ascending"; } else if (options.orderDirection === "desc") { options.orderDirection = "Descending"; } //converts the value to a js bool function toBool(v) { if (angular.isNumber(v)) { return v > 0; } if (angular.isString(v)) { return v === "true"; } if (typeof v === "boolean") { return v; } return false; } var params = [ { pageNumber: options.pageNumber }, { pageSize: options.pageSize }, { orderBy: options.orderBy }, { orderDirection: options.orderDirection }, { orderBySystemField: toBool(options.orderBySystemField) }, { filter: options.filter } ]; if (memberTypeAlias != null) { params.push({ memberTypeAlias: memberTypeAlias }); } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberApiBaseUrl", "GetPagedResults", params)), 'Failed to retrieve member paged result'); }, getListNode: function (listName) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberApiBaseUrl", "GetListNodeDisplay", [{ listName: listName }])), 'Failed to retrieve data for member list ' + listName); }, /** * @ngdoc method * @name umbraco.resources.memberResource#getByKey * @methodOf umbraco.resources.memberResource * * @description * Gets a member item with a given key * * ##usage *
          * memberResource.getByKey("0000-0000-000-00000-000")
          *    .then(function(member) {
          *        var mymember = member; 
          *        alert('its here!');
          *    });
          * 
* * @param {Guid} key key of member item to return * @returns {Promise} resourcePromise object containing the member item. * */ getByKey: function (key) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberApiBaseUrl", "GetByKey", [{ key: key }])), 'Failed to retrieve data for member id ' + key); }, /** * @ngdoc method * @name umbraco.resources.memberResource#deleteByKey * @methodOf umbraco.resources.memberResource * * @description * Deletes a member item with a given key * * ##usage *
          * memberResource.deleteByKey("0000-0000-000-00000-000")
          *    .then(function() {
          *        alert('its gone!');
          *    });
          * 
* * @param {Guid} key id of member item to delete * @returns {Promise} resourcePromise object. * */ deleteByKey: function (key) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "memberApiBaseUrl", "DeleteByKey", [{ key: key }])), 'Failed to delete item ' + key); }, /** * @ngdoc method * @name umbraco.resources.memberResource#getScaffold * @methodOf umbraco.resources.memberResource * * @description * Returns a scaffold of an empty member item, given the id of the member item to place it underneath and the member type alias. * * - Member Type alias must be provided so umbraco knows which properties to put on the member scaffold * * The scaffold is used to build editors for member that has not yet been populated with data. * * ##usage *
          * memberResource.getScaffold('client')
          *    .then(function(scaffold) {
          *        var myDoc = scaffold;
          *        myDoc.name = "My new member item"; 
          *
          *        memberResource.save(myDoc, true)
          *            .then(function(member){
          *                alert("Retrieved, updated and saved again");
          *            });
          *    });
          * 
* * @param {String} alias membertype alias to base the scaffold on * @returns {Promise} resourcePromise object containing the member scaffold. * */ getScaffold: function (alias) { if (alias) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberApiBaseUrl", "GetEmpty", [{ contentTypeAlias: alias }])), 'Failed to retrieve data for empty member item type ' + alias); } else { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberApiBaseUrl", "GetEmpty")), 'Failed to retrieve data for empty member item type ' + alias); } }, /** * @ngdoc method * @name umbraco.resources.memberResource#save * @methodOf umbraco.resources.memberResource * * @description * Saves changes made to a member, if the member is new, the isNew paramater must be passed to force creation * if the member needs to have files attached, they must be provided as the files param and passed separately * * * ##usage *
          * memberResource.getBykey("23234-sd8djsd-3h8d3j-sdh8d")
          *    .then(function(member) {
          *          member.name = "Bob";
          *          memberResource.save(member, false)
          *            .then(function(member){
          *                alert("Retrieved, updated and saved again");
          *            });
          *    });
          * 
* * @param {Object} media The member item object with changes applied * @param {Bool} isNew set to true to create a new item or to update an existing * @param {Array} files collection of files for the media item * @returns {Promise} resourcePromise object containing the saved media item. * */ save: function (member, isNew, files) { return saveMember(member, "save" + (isNew ? "New" : ""), files); } }; } angular.module('umbraco.resources').factory('memberResource', memberResource); /** * @ngdoc service * @name umbraco.resources.memberTypeResource * @description Loads in data for member types **/ function memberTypeResource($q, $http, umbRequestHelper, umbDataFormatter) { return { getAvailableCompositeContentTypes: function (contentTypeId, filterContentTypes, filterPropertyTypes) { if (!filterContentTypes) { filterContentTypes = []; } if (!filterPropertyTypes) { filterPropertyTypes = []; } var query = ""; _.each(filterContentTypes, function (item) { query += "filterContentTypes=" + item + "&"; }); // if filterContentTypes array is empty we need a empty variable in the querystring otherwise the service returns a error if (filterContentTypes.length === 0) { query += "filterContentTypes=&"; } _.each(filterPropertyTypes, function (item) { query += "filterPropertyTypes=" + item + "&"; }); // if filterPropertyTypes array is empty we need a empty variable in the querystring otherwise the service returns a error if (filterPropertyTypes.length === 0) { query += "filterPropertyTypes=&"; } query += "contentTypeId=" + contentTypeId; return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberTypeApiBaseUrl", "GetAvailableCompositeMemberTypes", query)), 'Failed to retrieve data for content type id ' + contentTypeId); }, //return all member types getTypes: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberTypeApiBaseUrl", "GetAllTypes")), 'Failed to retrieve data for member types id'); }, getById: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberTypeApiBaseUrl", "GetById", [{ id: id }])), 'Failed to retrieve content type'); }, deleteById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "memberTypeApiBaseUrl", "DeleteById", [{ id: id }])), 'Failed to delete member type'); }, getScaffold: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "memberTypeApiBaseUrl", "GetEmpty")), 'Failed to retrieve content type scaffold'); }, /** * @ngdoc method * @name umbraco.resources.contentTypeResource#save * @methodOf umbraco.resources.contentTypeResource * * @description * Saves or update a member type * * @param {Object} content data type object to create/update * @returns {Promise} resourcePromise object. * */ save: function (contentType) { var saveModel = umbDataFormatter.formatContentTypePostData(contentType); return umbRequestHelper.resourcePromise( $http.post(umbRequestHelper.getApiUrl("memberTypeApiBaseUrl", "PostSave"), saveModel), 'Failed to save data for member type id ' + contentType.id); } }; } angular.module('umbraco.resources').factory('memberTypeResource', memberTypeResource); /** * @ngdoc service * @name umbraco.resources.ourPackageRepositoryResource * @description handles data for package installations **/ function ourPackageRepositoryResource($q, $http, umbDataFormatter, umbRequestHelper) { //var baseurl = "http://localhost:24292/webapi/packages/v1"; var baseurl = "https://our.umbraco.org/webapi/packages/v1"; return { getDetails: function (packageId) { return umbRequestHelper.resourcePromise( $http.get(baseurl + "/" + packageId), 'Failed to get package details'); }, getCategories: function () { return umbRequestHelper.resourcePromise( $http.get(baseurl), 'Failed to query packages'); }, getPopular: function (maxResults, category) { if (maxResults === undefined) { maxResults = 10; } if (category === undefined) { category = ""; } return umbRequestHelper.resourcePromise( $http.get(baseurl + "?pageIndex=0&pageSize=" + maxResults + "&category=" + category + "&order=Popular&version=" + Umbraco.Sys.ServerVariables.application.version), 'Failed to query packages'); }, search: function (pageIndex, pageSize, orderBy, category, query, canceler) { var httpConfig = {}; if (canceler) { httpConfig["timeout"] = canceler; } if (category === undefined) { category = ""; } if (query === undefined) { query = ""; } //order by score if there is nothing set var order = !orderBy ? "&order=Default" : ("&order=" + orderBy); return umbRequestHelper.resourcePromise( $http.get(baseurl + "?pageIndex=" + pageIndex + "&pageSize=" + pageSize + "&category=" + category + "&query=" + query + order + "&version=" + Umbraco.Sys.ServerVariables.application.version), httpConfig, 'Failed to query packages'); } }; } angular.module('umbraco.resources').factory('ourPackageRepositoryResource', ourPackageRepositoryResource); /** * @ngdoc service * @name umbraco.resources.packageInstallResource * @description handles data for package installations **/ function packageResource($q, $http, umbDataFormatter, umbRequestHelper) { return { /** * @ngdoc method * @name umbraco.resources.packageInstallResource#getInstalled * @methodOf umbraco.resources.packageInstallResource * * @description * Gets a list of installed packages */ getInstalled: function() { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "GetInstalled")), 'Failed to get installed packages'); }, validateInstalled: function (name, version) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "ValidateInstalled", { name: name, version: version })), 'Failed to validate package ' + name); }, deleteCreatedPackage: function (packageId) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "DeleteCreatedPackage", { packageId: packageId })), 'Failed to delete package ' + packageId); }, uninstall: function(packageId) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "Uninstall", { packageId: packageId })), 'Failed to uninstall package'); }, /** * @ngdoc method * @name umbraco.resources.packageInstallResource#fetchPackage * @methodOf umbraco.resources.packageInstallResource * * @description * Downloads a package file from our.umbraco.org to the website server. * * ##usage *
         * packageResource.download("guid-guid-guid-guid")
         *    .then(function(path) {
         *        alert('downloaded');
         *    });
         * 
* * @param {String} the unique package ID * @returns {String} path to the downloaded zip file. * */ fetch: function (id) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "Fetch", [{ packageGuid: id }])), 'Failed to download package with guid ' + id); }, /** * @ngdoc method * @name umbraco.resources.packageInstallResource#createmanifest * @methodOf umbraco.resources.packageInstallResource * * @description * Creates a package manifest for a given folder of files. * This manifest keeps track of all installed files and data items * so a package can be uninstalled at a later time. * After creating a manifest, you can use the ID to install files and data. * * ##usage *
         * packageResource.createManifest("packages/id-of-install-file")
         *    .then(function(summary) {
         *        alert('unzipped');
         *    });
         * 
* * @param {String} folder the path to the temporary folder containing files * @returns {Int} the ID assigned to the saved package manifest * */ import: function (package) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "Import"), package), 'Failed to install package. Error during the step "Import" '); }, installFiles: function (package) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "InstallFiles"), package), 'Failed to install package. Error during the step "InstallFiles" '); }, installData: function (package) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "InstallData"), package), 'Failed to install package. Error during the step "InstallData" '); }, cleanUp: function (package) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "packageInstallApiBaseUrl", "CleanUp"), package), 'Failed to install package. Error during the step "CleanUp" '); } }; } angular.module('umbraco.resources').factory('packageResource', packageResource); /** * @ngdoc service * @name umbraco.resources.redirectUrlResource * @function * * @description * Used by the redirect url dashboard to get urls and send requests to remove redirects. */ (function() { 'use strict'; function redirectUrlsResource($http, umbRequestHelper) { /** * @ngdoc function * @name umbraco.resources.redirectUrlResource#searchRedirectUrls * @methodOf umbraco.resources.redirectUrlResource * @function * * @description * Called to search redirects * ##usage *
         * redirectUrlsResource.searchRedirectUrls("", 0, 20)
         *    .then(function(response) {
         *
         *    });
         * 
* @param {String} searchTerm Searh term * @param {Int} pageIndex index of the page to retrive items from * @param {Int} pageSize The number of items on a page */ function searchRedirectUrls(searchTerm, pageIndex, pageSize) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "redirectUrlManagementApiBaseUrl", "SearchRedirectUrls", { searchTerm: searchTerm, page: pageIndex, pageSize: pageSize })), 'Failed to retrieve data for searching redirect urls'); } function getEnableState() { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "redirectUrlManagementApiBaseUrl", "GetEnableState")), 'Failed to retrieve data to check if the 301 redirect is enabled'); } /** * @ngdoc function * @name umbraco.resources.redirectUrlResource#deleteRedirectUrl * @methodOf umbraco.resources.redirectUrlResource * @function * * @description * Called to delete a redirect * ##usage *
         * redirectUrlsResource.deleteRedirectUrl(1234)
         *    .then(function() {
         *
         *    });
         * 
* @param {Int} id Id of the redirect */ function deleteRedirectUrl(id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "redirectUrlManagementApiBaseUrl", "DeleteRedirectUrl", { id: id })), 'Failed to remove redirect'); } /** * @ngdoc function * @name umbraco.resources.redirectUrlResource#toggleUrlTracker * @methodOf umbraco.resources.redirectUrlResource * @function * * @description * Called to enable or disable redirect url tracker * ##usage *
         * redirectUrlsResource.toggleUrlTracker(true)
         *    .then(function() {
         *
         *    });
         * 
* @param {Bool} disable true/false to disable/enable the url tracker */ function toggleUrlTracker(disable) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "redirectUrlManagementApiBaseUrl", "ToggleUrlTracker", { disable: disable })), 'Failed to toggle redirect url tracker'); } var resource = { searchRedirectUrls: searchRedirectUrls, deleteRedirectUrl: deleteRedirectUrl, toggleUrlTracker: toggleUrlTracker, getEnableState: getEnableState }; return resource; } angular.module('umbraco.resources').factory('redirectUrlsResource', redirectUrlsResource); })(); /** * @ngdoc service * @name umbraco.resources.relationResource * @description Handles loading of relation data **/ function relationResource($q, $http, umbRequestHelper) { return { /** * @ngdoc method * @name umbraco.resources.relationResource#getByChildId * @methodOf umbraco.resources.relationResource * * @description * Retrieves the relation data for a given child ID * * @param {int} id of the child item * @param {string} alias of the relation type * @returns {Promise} resourcePromise object containing the relations array. * */ getByChildId: function (id, alias) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "relationApiBaseUrl", "GetByChildId", [{ childId: id, relationTypeAlias: alias }])), "Failed to get relation by child ID " + id + " and type of " + alias); }, /** * @ngdoc method * @name umbraco.resources.relationResource#deleteById * @methodOf umbraco.resources.relationResource * * @description * Deletes a relation item with a given id * * ##usage *
         * relationResource.deleteById(1234)
         *    .then(function() {
         *        alert('its gone!');
         *    });
         * 
* * @param {Int} id id of relation item to delete * @returns {Promise} resourcePromise object. * */ deleteById: function (id) { return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "relationApiBaseUrl", "DeleteById", [{ id: id }])), 'Failed to delete item ' + id); } }; } angular.module('umbraco.resources').factory('relationResource', relationResource); /** * @ngdoc service * @name umbraco.resources.sectionResource * @description Loads in data for section **/ function sectionResource($q, $http, umbRequestHelper) { /** internal method to get the tree app url */ function getSectionsUrl(section) { return Umbraco.Sys.ServerVariables.sectionApiBaseUrl + "GetSections"; } //the factory object returned return { /** Loads in the data to display the section list */ getSections: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "sectionApiBaseUrl", "GetSections")), 'Failed to retrieve data for sections'); } }; } angular.module('umbraco.resources').factory('sectionResource', sectionResource); /** * @ngdoc service * @name umbraco.resources.stylesheetResource * @description service to retrieve available stylesheets * * **/ function stylesheetResource($q, $http, umbRequestHelper) { //the factory object returned return { /** * @ngdoc method * @name umbraco.resources.stylesheetResource#getAll * @methodOf umbraco.resources.stylesheetResource * * @description * Gets all registered stylesheets * * ##usage *
         * stylesheetResource.getAll()
         *    .then(function(stylesheets) {
         *        alert('its here!');
         *    });
         * 
* * @returns {Promise} resourcePromise object containing the stylesheets. * */ getAll: function () { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "stylesheetApiBaseUrl", "GetAll")), 'Failed to retrieve stylesheets '); }, /** * @ngdoc method * @name umbraco.resources.stylesheetResource#getRulesByName * @methodOf umbraco.resources.stylesheetResource * * @description * Returns all defined child rules for a stylesheet with a given name * * ##usage *
         * stylesheetResource.getRulesByName("ie7stylesheet")
         *    .then(function(rules) {
         *        alert('its here!');
         *    });
         * 
* * @returns {Promise} resourcePromise object containing the rules. * */ getRulesByName: function (name) { return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "stylesheetApiBaseUrl", "GetRulesByName", [{ name: name }])), 'Failed to retrieve stylesheets '); } }; } angular.module('umbraco.resources').factory('stylesheetResource', stylesheetResource); /** * @ngdoc service * @name umbraco.resources.treeResource * @description Loads in data for trees **/ function treeResource($q, $http, umbRequestHelper) { /** internal method to get the tree node's children url */ function getTreeNodesUrl(node) { if (!node.childNodesUrl) { throw "No childNodesUrl property found on the tree node, cannot load child nodes"; } return node.childNodesUrl; } /** internal method to get the tree menu url */ function getTreeMenuUrl(node) { if (!node.menuUrl) { return null; } return node.menuUrl; } //the factory object returned return { /** Loads in the data to display the nodes menu */ loadMenu: function (node) { var treeMenuUrl = getTreeMenuUrl(node); if (treeMenuUrl !== undefined && treeMenuUrl !== null && treeMenuUrl.length > 0) { return umbRequestHelper.resourcePromise( $http.get(getTreeMenuUrl(node)), "Failed to retrieve data for a node's menu " + node.id); } else { return $q.reject({ errorMsg: "No tree menu url defined for node " + node.id }); } }, /** Loads in the data to display the nodes for an application */ loadApplication: function (options) { if (!options || !options.section) { throw "The object specified for does not contain a 'section' property"; } if(!options.tree){ options.tree = ""; } if (!options.isDialog) { options.isDialog = false; } //create the query string for the tree request, these are the mandatory options: var query = "application=" + options.section + "&tree=" + options.tree + "&isDialog=" + options.isDialog; //the options can contain extra query string parameters if (options.queryString) { query += "&" + options.queryString; } return umbRequestHelper.resourcePromise( $http.get( umbRequestHelper.getApiUrl( "treeApplicationApiBaseUrl", "GetApplicationTrees", query)), 'Failed to retrieve data for application tree ' + options.section); }, /** Loads in the data to display the child nodes for a given node */ loadNodes: function (options) { if (!options || !options.node) { throw "The options parameter object does not contain the required properties: 'node'"; } return umbRequestHelper.resourcePromise( $http.get(getTreeNodesUrl(options.node)), 'Failed to retrieve data for child nodes ' + options.node.nodeId); } }; } angular.module('umbraco.resources').factory('treeResource', treeResource); /** * @ngdoc service * @name umbraco.resources.userResource **/ function userResource($q, $http, umbDataFormatter, umbRequestHelper) { return { disableUser: function (userId) { if (!userId) { throw "userId not specified"; } return umbRequestHelper.resourcePromise( $http.post( umbRequestHelper.getApiUrl( "userApiBaseUrl", "PostDisableUser", [{ userId: userId }])), 'Failed to disable the user ' + userId); } }; } angular.module('umbraco.resources').factory('userResource', userResource); })();