Add status check to REST API of Go products
[nonrtric.git] / dmaap-mediator-producer / stub / ics / ics.go
1 // -
2 //   ========================LICENSE_START=================================
3 //   O-RAN-SC
4 //   %%
5 //   Copyright (C) 2021: Nordix Foundation
6 //   %%
7 //   Licensed under the Apache License, Version 2.0 (the "License");
8 //   you may not use this file except in compliance with the License.
9 //   You may obtain a copy of the License at
10 //
11 //        http://www.apache.org/licenses/LICENSE-2.0
12 //
13 //   Unless required by applicable law or agreed to in writing, software
14 //   distributed under the License is distributed on an "AS IS" BASIS,
15 //   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 //   See the License for the specific language governing permissions and
17 //   limitations under the License.
18 //   ========================LICENSE_END===================================
19 //
20
21 package main
22
23 import (
24         "flag"
25         "fmt"
26         "net/http"
27
28         "github.com/gorilla/mux"
29 )
30
31 func main() {
32         port := flag.Int("port", 8434, "The port this stub will listen on")
33         flag.Parse()
34         fmt.Println("Starting ICS stub on port ", *port)
35
36         r := mux.NewRouter()
37         r.HandleFunc("/data-producer/v1/info-types/{typeId}", handleTypeRegistration).Methods(http.MethodPut, http.MethodPut)
38         r.HandleFunc("/data-producer/v1/info-producers/{producerId}", handleProducerRegistration).Methods(http.MethodPut, http.MethodPut)
39         fmt.Println(http.ListenAndServe(fmt.Sprintf(":%v", *port), r))
40 }
41
42 func handleTypeRegistration(w http.ResponseWriter, r *http.Request) {
43         vars := mux.Vars(r)
44         id, ok := vars["typeId"]
45         if ok {
46                 fmt.Println("Registered type ", id)
47         }
48 }
49
50 func handleProducerRegistration(w http.ResponseWriter, r *http.Request) {
51         vars := mux.Vars(r)
52         id, ok := vars["producerId"]
53         if ok {
54                 fmt.Println("Registered producer ", id)
55         }
56 }