Initial code for dms server
[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         "github.com/go-openapi/loads"
29 )
30
31 func NewRestful() *Restful {
32         r := &Restful{}
33         r.setupHandler()
34         return r
35 }
36
37 func (r *Restful) setupHandler() {
38         swaggerSpec, err := loads.Embedded(restapi.SwaggerJSON, restapi.FlatSwaggerJSON)
39         if err != nil {
40                 os.Exit(1)
41         }
42
43         api := operations.NewRICDMSAPI(swaggerSpec)
44         r.api = api
45 }
46
47 func (r *Restful) Run() {
48         server := restapi.NewServer(r.api)
49         defer server.Shutdown()
50         server.Port = 8000
51         server.Host = "0.0.0.0"
52         if err := server.Serve(); err != nil {
53                 log.Fatal(err.Error())
54         }
55 }