blob: 46e9629835d7e5a2cf0e59955634421c033777c6 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You 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 http_handlers
import (
"net/http"
)
import (
"github.com/gin-gonic/gin"
)
import (
"github.com/apache/dubbo-kubernetes/pkg/bufman/controllers"
registryv1alpha1 "github.com/apache/dubbo-kubernetes/pkg/bufman/gen/proto/go/registry/v1alpha1"
)
type tokenGroup struct {
tokenController *controllers.TokenController
}
var TokenGroup = &tokenGroup{
tokenController: controllers.NewTokenController(),
}
func (group *tokenGroup) CreateToken(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.CreateTokenRequest{}
bindErr := c.ShouldBindJSON(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.tokenController.CreateToken(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}
func (group *tokenGroup) GetToken(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.GetTokenRequest{}
bindErr := c.ShouldBindUri(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.tokenController.GetToken(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}
func (group *tokenGroup) ListTokens(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.ListTokensRequest{}
bindErr := c.ShouldBindJSON(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.tokenController.ListTokens(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}
func (group *tokenGroup) DeleteToken(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.DeleteTokenRequest{}
bindErr := c.ShouldBindUri(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.tokenController.DeleteToken(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}