init kubernetes sdk (#1525)

Signed-off-by: zzjin <tczzjin@gmail.com>
This commit is contained in:
zzjin
2022-08-17 18:55:54 +08:00
committed by GitHub
parent d3b74d7c21
commit 1aa8fabd18
26 changed files with 2029 additions and 388 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ func Cors(wsContainer *restful.Container) {
// Add container filter to enable CORS
cors := restful.CrossOriginResourceSharing{
// ExposeHeaders: []string{"X-My-Header"},
AllowedHeaders: []string{"Content-Type", "Accept"},
AllowedHeaders: []string{"Content-Type", "Accept", "Authorization"},
AllowedMethods: []string{"GET", "POST", "PUT", "DELETE"},
CookiesAllowed: true,
Container: wsContainer}
+64
View File
@@ -0,0 +1,64 @@
// Copyright © 2022 sealos.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package httpserver
import (
"net/http"
restful "github.com/emicklei/go-restful/v3"
)
type Response struct {
Code int `json:"code"`
Message string `json:"message"`
Data interface{} `json:"data,omitempty"`
}
// RespError write error to response
func RespError(resp *restful.Response, err error) error {
// Set response status code
code := http.StatusInternalServerError
// String error
message := err.Error()
if message == "not found" || len(message) > 7 && message[:7] == "Unknown" {
code = http.StatusNotFound
} else if message == "unauthorized" || len(message) > 14 && message[:14] == "not authorized" {
code = http.StatusUnauthorized
}
// Write error response
return resp.WriteHeaderAndEntity(code, &Response{
Code: code,
Message: message,
})
}
// RespRedirect redirect url
func RespRedirect(resp *restful.Response, redirectURL string) {
resp.Header().Set("Location", redirectURL)
resp.WriteHeader(http.StatusTemporaryRedirect)
}
// RespData write error to response
func RespData(resp *restful.Response, data any) error {
// Write error response
return resp.WriteHeaderAndEntity(http.StatusOK, &Response{
Code: http.StatusOK,
Message: "",
Data: data,
})
}