79 lines
2.3 KiB
Go
79 lines
2.3 KiB
Go
/*
|
|
Copyright 2019 The KubeSphere 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 workspace
|
|
|
|
import (
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"kubesphere.io/kubesphere/pkg/api"
|
|
tenantv1alpha1 "kubesphere.io/kubesphere/pkg/apis/tenant/v1alpha1"
|
|
"kubesphere.io/kubesphere/pkg/apiserver/query"
|
|
informers "kubesphere.io/kubesphere/pkg/client/informers/externalversions"
|
|
"kubesphere.io/kubesphere/pkg/models/resources/v1alpha3"
|
|
)
|
|
|
|
type workspaceGetter struct {
|
|
sharedInformers informers.SharedInformerFactory
|
|
}
|
|
|
|
func New(sharedInformers informers.SharedInformerFactory) v1alpha3.Interface {
|
|
return &workspaceGetter{sharedInformers: sharedInformers}
|
|
}
|
|
|
|
func (d *workspaceGetter) Get(_, name string) (runtime.Object, error) {
|
|
return d.sharedInformers.Tenant().V1alpha1().Workspaces().Lister().Get(name)
|
|
}
|
|
|
|
func (d *workspaceGetter) List(_ string, query *query.Query) (*api.ListResult, error) {
|
|
|
|
workspaces, err := d.sharedInformers.Tenant().V1alpha1().Workspaces().Lister().List(query.Selector())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var result []runtime.Object
|
|
for _, workspace := range workspaces {
|
|
result = append(result, workspace)
|
|
}
|
|
|
|
return v1alpha3.DefaultList(result, query, d.compare, d.filter), nil
|
|
}
|
|
|
|
func (d *workspaceGetter) compare(left runtime.Object, right runtime.Object, field query.Field) bool {
|
|
|
|
leftWorkspace, ok := left.(*tenantv1alpha1.Workspace)
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
rightWorkspace, ok := right.(*tenantv1alpha1.Workspace)
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
return v1alpha3.DefaultObjectMetaCompare(leftWorkspace.ObjectMeta, rightWorkspace.ObjectMeta, field)
|
|
}
|
|
|
|
func (d *workspaceGetter) filter(object runtime.Object, filter query.Filter) bool {
|
|
role, ok := object.(*tenantv1alpha1.Workspace)
|
|
|
|
if !ok {
|
|
return false
|
|
}
|
|
|
|
return v1alpha3.DefaultObjectMetaFilter(role.ObjectMeta, filter)
|
|
}
|