mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-14 05:16:49 +00:00
* Feat: add login handle for apiserver Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * fix go lint Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * Fix: clean up code and add user in ctx Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * Fix: fix swagger conflict Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * Feat: add auth in apiserver e2e test Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com> * Fix: nit fix for apiserver e2e test Signed-off-by: FogDong <dongtianxin.tx@alibaba-inc.com>
61 lines
1.5 KiB
Go
61 lines
1.5 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
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 model
|
|
|
|
func init() {
|
|
RegisterModel(&SystemInfo{})
|
|
}
|
|
|
|
const (
|
|
// LoginTypeDex is the dex login type
|
|
LoginTypeDex string = "dex"
|
|
// LoginTypeLocal is the local login type
|
|
LoginTypeLocal string = "local"
|
|
)
|
|
|
|
// SystemInfo systemInfo model
|
|
type SystemInfo struct {
|
|
BaseModel
|
|
InstallID string `json:"installID"`
|
|
EnableCollection bool `json:"enableCollection"`
|
|
LoginType string `json:"loginType"`
|
|
}
|
|
|
|
// TableName return custom table name
|
|
func (u *SystemInfo) TableName() string {
|
|
return tableNamePrefix + "system_info"
|
|
}
|
|
|
|
// ShortTableName is the compressed version of table name for kubeapi storage and others
|
|
func (u *SystemInfo) ShortTableName() string {
|
|
return "sysi"
|
|
}
|
|
|
|
// PrimaryKey return custom primary key
|
|
func (u *SystemInfo) PrimaryKey() string {
|
|
return u.InstallID
|
|
}
|
|
|
|
// Index return custom index
|
|
func (u *SystemInfo) Index() map[string]string {
|
|
index := make(map[string]string)
|
|
if u.InstallID != "" {
|
|
index["installID"] = u.InstallID
|
|
}
|
|
return index
|
|
}
|