X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FUI.git;a=blobdiff_plain;f=skyquake%2Fplugins%2Faccounts%2Fsrc%2Faccount%2FaccountStore.js;h=aeb5f4817f6dab5fe58d8ff94b7d6807c210f28f;hp=f6e2ef1df33c10e7f05fca860b53bf1e7f081b00;hb=6620bca06b9874e68e8bc11ce28b7a6eeda5cc03;hpb=e29efc315df33d546237e270470916e26df391d6 diff --git a/skyquake/plugins/accounts/src/account/accountStore.js b/skyquake/plugins/accounts/src/account/accountStore.js index f6e2ef1df..aeb5f4817 100644 --- a/skyquake/plugins/accounts/src/account/accountStore.js +++ b/skyquake/plugins/accounts/src/account/accountStore.js @@ -1,5 +1,5 @@ /* - * + * * Copyright 2016 RIFT.IO Inc * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -18,7 +18,7 @@ import AccountActions from './accountActions.js'; import AccountSource from './accountSource.js'; - +var Utils = require('utils/utils.js'); var rw = require('utils/rw.js'); var altImage = rw.getSearchParams(window.location).alt_image; @@ -125,16 +125,18 @@ let AccountMeta = { label: 'Floating IP Pool', ref: 'floating-ip-pool', optional: true - }], - "openmano": [{ - label: "Host", - ref: 'host' }, { - label: "Port", - ref: 'port' + label: "User Domain", + ref: 'user-domain', + optional: true + }, { + label: "Project Domain", + ref: 'project-domain', + optional: true }, { - label: "Tenant ID", - ref: 'tenant-id' + label: "Region", + ref: 'region', + optional: true }], "openvim": [{ label: "Host", @@ -174,9 +176,6 @@ let AccountMeta = { }, { "name": "Cloudsim", "account-type": "cloudsim_proxy" - }, { - "name": "Open Mano", - "account-type": "openmano" }, { "name": "AWS", "account-type": "aws" @@ -189,7 +188,6 @@ let AccountMeta = { }, image: { "aws": require("../../images/aws.png"), - "openmano": altImage || require("../../images/openmano.png"), "openvim": require("../../images/openmano.png"), "openstack": require("../../images/openstack.png"), "cloudsim_proxy": require("../../images/riftio.png"), @@ -199,7 +197,6 @@ let AccountMeta = { }, labelByType: { "aws": "AWS", - "openmano": "OpenStack", "openvim": "Open VIM", "openstack": "OpenStack", "cloudsim_proxy": "Cloudsim" @@ -216,6 +213,7 @@ export default class AccountStore { this.refreshingAll = false; this.sdnOptions = []; this.AccountMeta = AccountMeta; + this.showVIM = true; this.bindActions(AccountActions(this.alt)); this.registerAsync(AccountSource); this.exportPublicMethods({ @@ -248,6 +246,14 @@ export default class AccountStore { } refreshCloudAccountSuccess = () => { + } + getResourceOrchestratorSuccess = (data) => { + this.alt.actions.global.hideScreenLoader.defer(); + if(data['rw-launchpad:resource-orchestrator'] && (data['rw-launchpad:resource-orchestrator']['account-type'] == 'openmano')) { + this.setState({ + showVIM: false + }) + } } deleteAccountSuccess = (response) => { this.setState({ @@ -258,7 +264,6 @@ export default class AccountStore { openAccountSocketSuccess = (connection) => { let self = this; let ws = window.multiplexer.channel(connection); - if (!connection) return; this.setState({ socket: ws.ws, @@ -267,6 +272,9 @@ export default class AccountStore { ws.onmessage = (socket) => { try { var data = JSON.parse(socket.data); + Utils.checkAuthentication(data.statusCode, function() { + self.closeSocket(); + }); let SdnOptions = [{ label: 'Select an SDN Account', value: false @@ -356,7 +364,7 @@ export default class AccountStore { } generateOptionsByName(data) { let results = []; - if (data.constructor.name == "Array") { + if (data && data.constructor.name == "Array") { data.map(function(d) { results.push({ label: d.name, @@ -413,18 +421,3 @@ export default class AccountStore { } } - -/** - *Cloud - * - * {"name":"eng2","account-type":"openstack","openstack":{"key":"lmaultsb","secret":"mypasswd","auth_url":"http://engstack.eng.riftio.com:5000/v3/","tenant":"lmaultsb","mgmt-network":"private"}} -Name -Path - - -SDN - - - * - * - */