1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/*******************************************************************************
* Copyright (c) 2015 CableLabs Inc. and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License, Version 2.0
* which accompanies this distribution, and is available at
* http://www.apache.org/licenses/LICENSE-2.0
*******************************************************************************/
(function(){
var cosServices = function ($http, dbg) {
var _cosBasePath = "/cosmgr/webapi/cos"
var _cosUrl = "unset";
var setCosUrl = function (cosMgrCfg) {
dbg.p("in setCosUrl");
_cosUrl = "http://"+cosMgrCfg.ip+":"+cosMgrCfg.port+_cosBasePath;
dbg.p(_cosUrl);
}
var getCosUrl = function () {
dbg.p("in getCosUrl");
return _cosUrl;
}
var getCosList = function() {
dbg.p("in cosServices.getCosList()",2);
var url = _cosUrl+ "/list;"
dbg.p("GET: " + url , 2);
return $http.get(url)
.then(function(response){ return response.data; });
};
var createCos = function(cos) {
dbg.p("in cosServices.createCos()",2)
var url = _cosUrl;
dbg.p("POST: " + url, 2);
dbg.pj(cos);
return $http.post(url, cos)
.then(function(response){ return response.data; });
};
var updateCos = function(cos) {
dbg.p("in cosServices.updateCos()",2)
var url = _cosUrl + "/" + cos.id;
dbg.p("PUT: " + url, 2);
dbg.pj(cos);
return $http.put(url, cos)
.then(function(response){ return response.data; });
};
var deleteCos = function(cos) {
dbg.p("in cosServices.deleteCos()",2)
var url = _cosUrl + "/" + cos.id;
dbg.p("DELELE: " + url, 2);
dbg.pj(cos);
return $http.delete(url)
.then(function(response){ return response.data; });
};
return { // public API
setCosUrl : setCosUrl,
getCosUrl : getCosUrl,
createCos : createCos,
getCosList : getCosList,
deleteCos : deleteCos,
updateCos : updateCos
};
};
var module = angular.module("vcpe");
module.factory("cosServices", cosServices);
}());
|