9b384bb3b891f436c5fbb268d247b5ebaa815bb9
[ealt-edge.git] / mecm / mepm / applcm / broker / pkg / handlers / common / common.go
1 /*
2  * Copyright 2020 Huawei Technologies Co., Ltd.
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 package common
17
18 import (
19         "encoding/json"
20         "net/http"
21 )
22
23 func RespondJSON(w http.ResponseWriter, status int, payload interface{}) {
24         response, err := json.Marshal(payload)
25         if err != nil {
26                 w.WriteHeader(http.StatusInternalServerError)
27                 w.Write([]byte(err.Error()))
28                 return
29         }
30         w.Header().Set("Content-Type", "application/json")
31         w.WriteHeader(status)
32         w.Write([]byte(response))
33 }
34
35 // respondError makes the error response with payload as json format
36 func RespondError(w http.ResponseWriter, code int, message string) {
37         RespondJSON(w, code, map[string]string{"error": message})
38 }