a06f043c14fdd6e162af7671d1c54e3d7803e301
[ric-plt/ricdms.git] / pkg / onboard / onboarder.go
1 //==================================================================================
2 //  Copyright (c) 2022 Samsung
3 //
4 //   Licensed under the Apache License, Version 2.0 (the "License");
5 //   you may not use this file except in compliance with the License.
6 //   You may obtain a copy of the License at
7 //
8 //       http://www.apache.org/licenses/LICENSE-2.0
9 //
10 //   Unless required by applicable law or agreed to in writing, software
11 //   distributed under the License is distributed on an "AS IS" BASIS,
12 //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 //   See the License for the specific language governing permissions and
14 //   limitations under the License.
15 //
16 //   This source code is part of the near-RT RIC (RAN Intelligent Controller)
17 //   platform project (RICP).
18 //==================================================================================
19 //
20 package onboard
21
22 import (
23         "bytes"
24         "encoding/json"
25         "net/http"
26
27         "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/models"
28         "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/restapi/operations/onboard"
29         "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/ricdms"
30         "github.com/go-openapi/runtime/middleware"
31 )
32
33 type IOnboarder interface {
34         Onboard(descriptor *models.Descriptor) middleware.Responder
35 }
36
37 type Onboarder struct {
38 }
39
40 func NewOnboarder() IOnboarder {
41         return &Onboarder{}
42 }
43
44 func (o *Onboarder) Onboard(descriptor *models.Descriptor) middleware.Responder {
45         ricdms.Logger.Debug("onboarder invoked : %+v", descriptor)
46
47         // validate if the required patameter is available
48         if descriptor.Schema == nil || descriptor.Config == nil {
49                 return onboard.NewPostOnboardxAppsBadRequest()
50         }
51
52         body := map[string]interface{}{
53                 "config-file.json":     descriptor.Config,
54                 "controls-schema.json": descriptor.Schema,
55         }
56
57         bodyBytes, _ := json.Marshal(body)
58
59         // resp, err := http.Post("http://172.17.0.1:8888/api/v1/onboard", "application/json", bytes.NewReader(bodyBytes))
60         ricdms.Logger.Info("config : %+v", ricdms.Config)
61         resp, err := http.Post(ricdms.Config.OnboardURL, "application/json", bytes.NewReader(bodyBytes))
62
63         if err == nil {
64                 ricdms.Logger.Info("no error response: %+v", resp)
65         } else {
66                 ricdms.Logger.Error("err : (%v)", err)
67         }
68         return onboard.NewPostOnboardxAppsCreated()
69 }