Update module name
[ric-plt/a1.git] / a1-go / pkg / restful / restful.go
1 /*
2 ==================================================================================
3   Copyright (c) 2021 Samsung
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16
17    This source code is part of the near-RT RIC (RAN Intelligent Controller)
18    platform project (RICP).
19 ==================================================================================
20 */
21 package restful
22
23 import (
24         "fmt"
25         "log"
26         "os"
27
28         "github.com/go-openapi/loads"
29         "github.com/go-openapi/runtime/middleware"
30        "gerrit.o-ran-sc.org/r/ric-plt/a1/pkg/restapi"
31        "gerrit.o-ran-sc.org/r/ric-plt/a1/pkg/restapi/operations"
32        "gerrit.o-ran-sc.org/r/ric-plt/a1/pkg/restapi/operations/a1_mediator"
33        "gerrit.o-ran-sc.org/r/ric-plt/a1/pkg/resthooks"
34 )
35
36 func NewRestful() *Restful {
37         r := &Restful{
38                 rh: resthooks.NewResthook(),
39         }
40         r.api = r.setupHandler()
41         return r
42 }
43
44 func (r *Restful) setupHandler() *operations.A1API {
45         swaggerSpec, err := loads.Embedded(restapi.SwaggerJSON, restapi.FlatSwaggerJSON)
46         if err != nil {
47                 os.Exit(1)
48         }
49
50         api := operations.NewA1API(swaggerSpec)
51         api.A1MediatorA1ControllerGetAllPolicyTypesHandler = a1_mediator.A1ControllerGetAllPolicyTypesHandlerFunc(func(param a1_mediator.A1ControllerGetAllPolicyTypesParams) middleware.Responder {
52                 fmt.Printf("\n---- handler for get all all policy type --- \n")
53                 return a1_mediator.NewA1ControllerGetAllPolicyTypesOK().WithPayload(r.rh.GetAllPolicyType())
54         })
55         return api
56
57 }
58
59 func (r *Restful) Run() {
60
61         server := restapi.NewServer(r.api)
62         defer server.Shutdown()
63         server.Port = 8080
64         server.Host = "0.0.0.0"
65         if err := server.Serve(); err != nil {
66                 log.Fatal(err.Error())
67         }
68 }