aboutsummaryrefslogtreecommitdiffstats
path: root/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js
diff options
context:
space:
mode:
Diffstat (limited to 'openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js')
-rw-r--r--openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js275
1 files changed, 0 insertions, 275 deletions
diff --git a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js b/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js
deleted file mode 100644
index 8c6fecdd..00000000
--- a/openo-portal/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/rest.js
+++ /dev/null
@@ -1,275 +0,0 @@
-/* Copyright 2016-2017, Huawei Technologies Co., Ltd.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-var url = "";
-$(function () {
-
- $.getJSON("./conf/dataconfig.json", function (jsonData){
- url = jsonData.url +":"+ jsonData.port;
- console.log("URL = " + url);
- });
-
- $('.creat-btn').click(function () {
- /*$('#vmAppDialog').addClass('in').css({'display': 'block'});*/
- $('#vmAppDialog').modal();
-
- });
- $('.close,.button-previous').click(function () {
- $('#vmAppDialog').removeClass('in').css('display', 'none');
- });
- $('.detail-top ul li').click(function () {
- $(this).addClass('current').siblings().removeClass('current');
- });
- $('.para').click(function () {
- if ($('#serviceTemplateName').val() == '') {
- alert('Please choose the service templateļ¼');
- $('#flavorTab').css('display', 'none');
- } else {
- $('#flavorTab').css('display', 'block');
- }
- $('#basicTab').css('display', 'block');
- });
- $('.basic').click(function () {
- $('#flavorTab').css('display', 'none');
- });
-/*
- $('.table tbody tr').click(function(){
- $(this).addClass('openoTable_row_selected').siblings().removeClass('openoTable_row_selected');
- });*/
- $('.table tr:odd').addClass('active');
- $('#false').click(function () {
- /*$('#vmAppDialog').addClass('in').css({'display': 'block'});*/
- $('#vmAppDialog').modal();
- });
- $('.close,.button-previous').click(function () {
- $('#vmAppDialog').removeClass('in').css('display', 'none');
- });
- $('#filterTpLogicalType').click(function () {
- $('#filterTpLogicalType_select_popupcontainer').toggleClass('openo-hide');
- $('#filterTpLogicalType').toggleClass('openo-focus');
- var oLeft = $('#open_base_tpL_td6').offset().left;
- var oTop = $('#open_base_tpL_td6').offset().top;
- var oHeight = $('#open_base_tpL_td6').height();
- $('#filterTpLogicalType_select_popupcontainer').css({'left': oLeft, 'top': oTop + oHeight + 10});
- });
- $('div.openo-select-popup-container>div.openo-select-item>label').click(function () {
- var Lvalue = $(this).html();
- $('#filterTpLogicalType_select_input').attr('value', Lvalue);
- $('#filterTpLogicalType_select_popupcontainer').addClass('openo-hide');
- $('#filterTpLogicalType').removeClass('openo-focus');
- });
- $.fn.serializeObject = function () {
- var o = {};
- var a = this.serializeArray();
- $.each(a, function () {
- if (o[this.name] !== undefined) {
- if (!o[this.name].push) {
- o[this.name] = [o[this.name]];
- }
- o[this.name].push(this.value || '');
- } else {
- o[this.name] = this.value || '';
- }
- });
- return o;
- };
- /*
- $('#createNS').click(function(){
- var formData = JSON.stringify($("#neForm").serializeObject());
- var jsonobj = JSON.parse(formData);
- var newJson = {"managedElement": jsonobj};
- formData = JSON.stringify(newJson);
- var requestUrl = url + "/openoapi/sdnobrs/v1/managed-elements";
- $
- .ajax({
- type : "POST",
- url : requestUrl,
- contentType : "application/json",
- dataType : "json",
- data : formData,
- success : function(jsonResp) {
- alert("NS saved successfully!!!");
- jsonobj["id"]= jsonResp.managedElement.id;
- $('#ne').bootstrapTable("append", jsonobj);
- $('#vmAppDialog').removeClass('in').css('display','none');
-
- },
- error : function(xhr, ajaxOptions, thrownError) {
- alert("Error on page : " + xhr.responseText);
- }
- });
- });*/
- //init the templates combo
- $.when(
- generateTemplatesComponent()
- ).then(
- function (templates) {
- document.getElementById("svcTempl").innerHTML = templates;
- }
- );
-})
-
-/**
- * generate the templates Component
- * @returns
- */
-function generateTemplatesComponent(){
- var defer = $.Deferred();
- $.when(
- queryTemplates()
- ).then(
- function (tmplatesResponse) {
- var templatesInfo = translateToTemplatesInfo(tmplatesResponse);
- defer.resolve(templatesInfo);
- }
- )
- return defer;
-}
-
-/**
- * query templates
- * @returns
- */
-function queryTemplates() {
- var queryTemplatesUrl = '/openoapi/catalog/v1/servicetemplates';
- return $.ajax({
- type : "GET",
- url : queryTemplatesUrl
- });
-}
-
-/**
- * generate templates html string
- * @param templates
- * @returns
- */
-function translateToTemplatesInfo(templates) {
- var options = '<option value="select">--select--</option>';
- var i;
- for (i = 0; i < templates.length; i += 1) {
- var option = '<option value="' + templates[i].serviceTemplateId + '">' + templates[i].templateName
- + '</option>';
- options = options + option;
- }
- return options;
-}
-
-/*******************************************Get Service**********************************************/
-function loadGetServiceData(){
-
- var returnVal;
- var requestUrl = "/openoapi/inventory/v1/services";
- var parameter = {
- 'sort': [],
- 'pagination': 0,
- 'pagesize': 10000,
- 'condition': {},
- 'serviceId': ""
- };
- $
- .ajax({
- type : "POST",
- url : requestUrl,
- async: false,
- contentType : "application/json",
- dataType: "json",
- data: JSON.stringify(parameter),
- success : function(jsonobj) {
- // TODO return according to the json data received.
- returnVal = jsonobj;
- },
- error : function(xhr, ajaxOptions, thrownError) {
- alert("Error on getting link data : " + xhr.responseText);
- }
- });
- return returnVal;
-}
-
-/*********************************************Get Service Details********************************************/
-function loadServiceDetails(serviceId){
-
- // TODO re-confirm the latest url.
- var requestUrl ="/openoapi/gso/v1/services/toposequence/" + serviceId;
- var returnObj;
- $
- .ajax({
- type : "GET",
- async: false,
- url : requestUrl,
- contentType : "application/json",
- success : function(jsonobj) {
- // TODO return according to the json data received.
- returnObj = jsonobj;
- },
- error : function(xhr, ajaxOptions, thrownError) {
- alert("Error on getting link data : " + xhr.responseText);
- }
- });
- return returnObj;
-}
-
-//get the vim name by id.
-function getVimNameById(vimId){
-
- // TODO re-confirm the latest url.
- var requestUrl ="/openoapi/extsys/v1/vims/" + vimId;
- var returnObj;
- $
- .ajax({
- type : "GET",
- async: false,
- url : requestUrl,
- contentType : "application/json",
- success : function(jsonobj) {
- // TODO return according to the json data received.
- returnObj = jsonobj;
- },
- error : function(xhr, ajaxOptions, thrownError) {
- alert("Error on getting link data : " + xhr.responseText);
- }
- });
- return returnObj;
-}
-
-// get the sdn controller name by id.
-function getSdnControllerNameById(sdnControllerId){
-
- // TODO re-confirm the latest url.
- var requestUrl ="/openoapi/extsys/v1/sdncontrollers/" + sdnControllerId;
- var returnObj;
- $
- .ajax({
- type : "GET",
- async: false,
- url : requestUrl,
- contentType : "application/json",
- success : function(jsonobj) {
- // TODO return according to the json data received.
- returnObj = jsonobj;
- },
- error : function(xhr, ajaxOptions, thrownError) {
- alert("Error on getting link data : " + xhr.responseText);
- }
- });
- return returnObj;
-}
-
-
-
-function anchorClick(serviceId){
- var jsonData = loadServiceDetails(serviceId);
- //TODO populate the modal according to json response
- return true;
-}