X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=skyquake%2Fplugins%2Faccounts%2Fsrc%2Faccount%2FaccountSource.js;h=c2aa4d495cd0cc62ec9a3dff578cd9d66cf19ffa;hb=a6bd6f8c6d9c17c647b1c9f6e04b51676d14b53a;hp=5fa7869f3a3dca576a07307db5aa8a95816c8a70;hpb=e29efc315df33d546237e270470916e26df391d6;p=osm%2FUI.git diff --git a/skyquake/plugins/accounts/src/account/accountSource.js b/skyquake/plugins/accounts/src/account/accountSource.js index 5fa7869f3..c2aa4d495 100644 --- a/skyquake/plugins/accounts/src/account/accountSource.js +++ b/skyquake/plugins/accounts/src/account/accountSource.js @@ -1,5 +1,5 @@ /* - * + * * Copyright 2016 RIFT.IO Inc * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -212,7 +212,36 @@ module.exports = function(Alt) { success: Alt.actions.global.deleteAccountSuccess, loading: Alt.actions.global.deleteAccountLoading, error: Alt.actions.global.showNotification - } + }, + getResourceOrchestrator: { + remote: function() { + return new Promise(function(resolve, reject) { + $.ajax({ + url: 'passthrough/data/api/running/resource-orchestrator' + '?api_server=' + API_SERVER, + type: 'GET', + beforeSend: Utils.addAuthorizationStub, + contentType: "application/json", + success: function(data) { + resolve(data["rw-launchpad:resource-orchestrator"]); + }, + error: function(error) { + console.log("There was an error updating the account: ", arguments); + + } + }).fail(function(xhr){ + //Authentication and the handling of fail states should be wrapped up into a connection class. + Utils.checkAuthentication(xhr.status); + return reject('error'); + }); + }); + }, + interceptResponse: interceptResponse({ + 'error': 'There was an error retrieving the resource orchestrator information.' + }), + success: Alt.actions.global.getResourceOrchestratorSuccess, + loading: Alt.actions.global.showScreenLoader, + error: Alt.actions.global.showNotification + }, } }