37 Star 403 Fork 75

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
lookup.go 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
Darren Shepherd 提交于 2018-02-22 22:10 . Local cluster support
package k8slookup
import (
"net/http"
"github.com/rancher/norman/api/access"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/rancher/pkg/clusterrouter"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/apis/management.cattle.io/v3/schema"
"github.com/rancher/types/client/management/v3"
"github.com/rancher/types/config"
)
func New(context *config.ScaledContext, validate bool) clusterrouter.ClusterLookup {
return &lookup{
clusterLister: context.Management.Clusters("").Controller().Lister(),
schemas: context.Schemas,
validate: validate,
}
}
type lookup struct {
clusterLister v3.ClusterLister
schemas *types.Schemas
validate bool
}
func (l *lookup) Lookup(req *http.Request) (*v3.Cluster, error) {
apiContext := types.NewAPIContext(req, nil, l.schemas)
clusterID := clusterrouter.GetClusterID(req)
if clusterID == "" {
return nil, httperror.NewAPIError(httperror.NotFound, "failed to find cluster")
}
if l.validate {
// check access
if err := access.ByID(apiContext, &schema.Version, client.ClusterType, clusterID, &client.Cluster{}); err != nil {
return nil, err
}
}
return l.clusterLister.Get("", clusterID)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.1.2-rc4

搜索帮助