blob: 798ceb31efa5358d70a26aa4207e9f6f9a1c2503 (
plain)
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
|
(function(){
var mefServices = function ($http, dbg) {
var _evcBasePath = "/evcmgr/webapi/evc"
var _evcUrl = "unset";
var _uniBasePath = "/restconf/operational/cl-vcpe-mef:unis/uni"
var _uniUrl = "unset";
var _evcPathBasePath = "/restconf/operational/cl-vcpe-mef:evcs"
var _evcPathUrl = "unset";
//
// Configuration services
//
var setEvcUrl = function (evcMgrCfg) {
dbg.p("in setEvcUrl");
_evcUrl = "http://"+evcMgrCfg.ip+":"+evcMgrCfg.port+_evcBasePath;
dbg.p(_evcUrl);
}
var setUniUrl = function (uniMgrCfg) {
dbg.p("in setUniUrl");
_uniUrl = "http://"+uniMgrCfg.ip+":"+uniMgrCfg.port+_uniBasePath;
dbg.p(_uniUrl);
}
var setEvcPathUrl = function (evcPathMgrCfg) {
dbg.p("in setEvcPathUrl");
_evcPathUrl = "http://"+evcPathMgrCfg.ip+":"+evcPathMgrCfg.port+_evcPathBasePath;
dbg.p(_evcPathUrl);
}
//
// REST services
//
var getEvc = function(evcId) {
dbg.p("in mefServices.getEvc()",2)
var url = _evcUrl + "/" + evcId;
dbg.p("GET: " + url, 2);
return $http.get(url)
.then(function(response){ return response.data; });
};
var getUni = function(uniId) {
dbg.p("in mefServices.getUni()",2)
var url = _uniUrl + "/" + uniId;
dbg.p("GET: " + url, 2);
// return $http.get(url)
// .then(function(response){ return response.data; });
return $http({method: 'GET', url: url,
headers: {'Authorization': 'Basic YWRtaW46YWRtaW4='}})
.then(function(response){ return response.data; });
};
return { // public API
setEvcUrl : setEvcUrl,
setUniUrl : setUniUrl,
setEvcPathUrl : setEvcPathUrl,
getEvc : getEvc,
getUni : getUni
};
};
var module = angular.module("vcpe");
module.factory("mefServices", mefServices);
}());
|