X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=pkg%2Fnbi%2Fhttpgetter.go;fp=pkg%2Fnbi%2Fhttpgetter.go;h=678040346066a067275110301de3a80fccc634ab;hb=871fa393844ce1b61b8d5218d27687d9fc05803a;hp=0000000000000000000000000000000000000000;hpb=3b790149556c8d8f3a3701c0e3c4a56e56e078d1;p=ric-plt%2Frtmgr.git diff --git a/pkg/nbi/httpgetter.go b/pkg/nbi/httpgetter.go new file mode 100644 index 0000000..6780403 --- /dev/null +++ b/pkg/nbi/httpgetter.go @@ -0,0 +1,50 @@ +/* +================================================================================== + Copyright (c) 2019 AT&T Intellectual Property. + Copyright (c) 2019 Nokia + + 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. +================================================================================== +*/ +/* + Mnemonic: httpgetter.go + Abstract: HTTPgetter NBI implementation + Simple HTTP getter solution. Only for testing purpose. + Date: 15 March 2019 +*/ + +package nbi + +import ( + "encoding/json" + "net/http" + "rtmgr" + "time" +) + +var myClient = &http.Client{Timeout: 1 * time.Second} + +func fetchXappList(url string) (*[]rtmgr.XApp, error) { + rtmgr.Logger.Debug("Invoked httpgetter.fetchXappList") + r, err := myClient.Get(url) + if err != nil { + return nil, err + } + defer r.Body.Close() + rtmgr.Logger.Debug("http client raw response: %v", r) + var xapps []rtmgr.XApp + json.NewDecoder(r.Body).Decode(&xapps) + rtmgr.Logger.Info("HTTP GET: OK") + rtmgr.Logger.Debug("httpgetter.fetchXappList returns: %v", xapps) + return &xapps, err +}