Add logger to RICDMS
[ric-plt/ricdms.git] / pkg / restful / restful.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 restful
21
22 import (
23         "log"
24         "os"
25
26         "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/restapi"
27         "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/restapi/operations"
28         "gerrit.o-ran-sc.org/r/ric-plt/ricdms/pkg/ricdms"
29         "github.com/go-openapi/loads"
30 )
31
32 func NewRestful() *Restful {
33         r := &Restful{}
34         r.setupHandler()
35         return r
36 }
37
38 func (r *Restful) setupHandler() {
39         swaggerSpec, err := loads.Embedded(restapi.SwaggerJSON, restapi.FlatSwaggerJSON)
40         if err != nil {
41                 os.Exit(1)
42         }
43
44         api := operations.NewRICDMSAPI(swaggerSpec)
45         r.api = api
46 }
47
48 func (r *Restful) Run() {
49         server := restapi.NewServer(r.api)
50         defer server.Shutdown()
51         server.Port = 8000
52         server.Host = "0.0.0.0"
53         ricdms.Logger.Info("Starting server at : %s:%d", server.Host, server.Port)
54         if err := server.Serve(); err != nil {
55                 log.Fatal(err.Error())
56         }
57 }