blob: 9efcc6dd733ad9d0edd52b3827c008b73f9ce83a [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 searchGroup struct {
searchController *controllers.SearchController
}
var SearchGroup = &searchGroup{
searchController: controllers.NewSearchController(),
}
func (group *searchGroup) SearchUser(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.SearchUserRequest{}
bindErr := c.ShouldBindJSON(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.searchController.SearchUser(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}
func (group *searchGroup) SearchRepository(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.SearchRepositoryRequest{}
bindErr := c.ShouldBindJSON(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.searchController.SearchRepository(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}
func (group *searchGroup) SearchLastCommitByContent(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.SearchLastCommitByContentRequest{}
bindErr := c.ShouldBindJSON(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.searchController.SearchLastCommitByContent(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}
func (group *searchGroup) SearchTag(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.SearchTagRequest{}
bindErr := c.ShouldBindJSON(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.searchController.SearchTag(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}
func (group *searchGroup) SearchDraft(c *gin.Context) {
// 绑定参数
req := &registryv1alpha1.SearchDraftRequest{}
bindErr := c.ShouldBindJSON(req)
if bindErr != nil {
c.JSON(http.StatusBadRequest, NewHTTPResponse(bindErr))
return
}
resp, err := group.searchController.SearchDraft(c, req)
if err != nil {
c.JSON(http.StatusInternalServerError, NewHTTPResponse(err))
}
// 正常返回
c.JSON(http.StatusOK, NewHTTPResponse(resp))
}