list.go 3.3 KB
Newer Older
1
// Copyright 2017 The Kubernetes Authors.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//
// 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 configmap

import (
	"log"

20
	"github.com/kubernetes/dashboard/src/app/backend/api"
21
	"github.com/kubernetes/dashboard/src/app/backend/errors"
22
	"github.com/kubernetes/dashboard/src/app/backend/resource/common"
B
Batikan Urcan 已提交
23
	"github.com/kubernetes/dashboard/src/app/backend/resource/dataselect"
24
	v1 "k8s.io/api/core/v1"
25
	metaV1 "k8s.io/apimachinery/pkg/apis/meta/v1"
26
	kubernetes "k8s.io/client-go/kubernetes"
27 28
)

F
Faye Zhang 已提交
29
// ConfigMapList contains a list of Config Maps in the cluster.
30
type ConfigMapList struct {
31
	ListMeta api.ListMeta `json:"listMeta"`
32 33 34

	// Unordered list of Config Maps
	Items []ConfigMap `json:"items"`
35 36 37

	// List of non-critical errors, that occurred during resource retrieval.
	Errors []error `json:"errors"`
38 39 40 41 42
}

// ConfigMap API resource provides mechanisms to inject containers with configuration data while keeping
// containers agnostic of Kubernetes
type ConfigMap struct {
43 44
	ObjectMeta api.ObjectMeta `json:"objectMeta"`
	TypeMeta   api.TypeMeta   `json:"typeMeta"`
45 46 47
}

// GetConfigMapList returns a list of all ConfigMaps in the cluster.
48
func GetConfigMapList(client kubernetes.Interface, nsQuery *common.NamespaceQuery, dsQuery *dataselect.DataSelectQuery) (*ConfigMapList, error) {
49 50 51 52 53
	log.Printf("Getting list config maps in the namespace %s", nsQuery.ToRequestParam())
	channels := &common.ResourceChannels{
		ConfigMapList: common.GetConfigMapListChannel(client, nsQuery, 1),
	}

54
	return GetConfigMapListFromChannels(channels, dsQuery)
55 56
}

57 58
// GetConfigMapListFromChannels returns a list of all Config Maps in the cluster reading required resource list once from the channels.
func GetConfigMapListFromChannels(channels *common.ResourceChannels, dsQuery *dataselect.DataSelectQuery) (*ConfigMapList, error) {
59
	configMaps := <-channels.ConfigMapList.List
60 61 62 63
	err := <-channels.ConfigMapList.Error
	nonCriticalErrors, criticalError := errors.HandleError(err)
	if criticalError != nil {
		return nil, criticalError
64 65
	}

66
	result := toConfigMapList(configMaps.Items, nonCriticalErrors, dsQuery)
67 68 69 70

	return result, nil
}

71 72 73 74 75 76
func toConfigMap(meta metaV1.ObjectMeta) ConfigMap {
	return ConfigMap{
		ObjectMeta: api.NewObjectMeta(meta),
		TypeMeta:   api.NewTypeMeta(api.ResourceKindConfigMap),
	}
}
77

78
func toConfigMapList(configMaps []v1.ConfigMap, nonCriticalErrors []error, dsQuery *dataselect.DataSelectQuery) *ConfigMapList {
79
	result := &ConfigMapList{
M
Marcin Maciaszczyk 已提交
80
		Items:    make([]ConfigMap, 0),
81
		ListMeta: api.ListMeta{TotalItems: len(configMaps)},
82
		Errors:   nonCriticalErrors,
83 84
	}

85 86
	configMapCells, filteredTotal := dataselect.GenericDataSelectWithFilter(toCells(configMaps), dsQuery)
	configMaps = fromCells(configMapCells)
87
	result.ListMeta = api.ListMeta{TotalItems: filteredTotal}
88

89
	for _, item := range configMaps {
90
		result.Items = append(result.Items, toConfigMap(item.ObjectMeta))
91 92 93 94
	}

	return result
}