storageclasses.go 3.1 KB
Newer Older
J
jeff 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*

 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.

*/
Z
zryfish 已提交
18
package storageclass
J
jeff 已提交
19 20

import (
Z
zryfish 已提交
21
	corev1 "k8s.io/api/core/v1"
H
hongming 已提交
22 23
	"k8s.io/api/storage/v1"
	"k8s.io/apimachinery/pkg/labels"
Z
zryfish 已提交
24 25
	"k8s.io/client-go/informers"
	"kubesphere.io/kubesphere/pkg/models/resources/v1alpha2"
J
Jeff 已提交
26
	"kubesphere.io/kubesphere/pkg/server/params"
J
jeff 已提交
27 28 29 30
	"sort"
)

type storageClassesSearcher struct {
Z
zryfish 已提交
31
	informers informers.SharedInformerFactory
J
jeff 已提交
32 33
}

Z
zryfish 已提交
34 35 36 37 38 39
func NewStorageClassesSearcher(informers informers.SharedInformerFactory) v1alpha2.Interface {
	return &storageClassesSearcher{informers: informers}
}

func (s *storageClassesSearcher) Get(namespace, name string) (interface{}, error) {
	return s.informers.Storage().V1().StorageClasses().Lister().Get(name)
H
hongming 已提交
40 41
}

J
jeff 已提交
42 43
func (*storageClassesSearcher) match(match map[string]string, item *v1.StorageClass) bool {
	for k, v := range match {
H
hongming 已提交
44 45
		if !v1alpha2.ObjectMetaExactlyMath(k, v, item.ObjectMeta) {
			return false
J
jeff 已提交
46 47 48 49 50 51 52
		}
	}
	return true
}

func (*storageClassesSearcher) fuzzy(fuzzy map[string]string, item *v1.StorageClass) bool {
	for k, v := range fuzzy {
H
hongming 已提交
53
		if !v1alpha2.ObjectMetaFuzzyMath(k, v, item.ObjectMeta) {
J
jeff 已提交
54 55 56 57 58 59
			return false
		}
	}
	return true
}

Z
zryfish 已提交
60 61
func (s *storageClassesSearcher) Search(namespace string, conditions *params.Conditions, orderBy string, reverse bool) ([]interface{}, error) {
	storageClasses, err := s.informers.Storage().V1().StorageClasses().Lister().List(labels.Everything())
J
jeff 已提交
62 63 64 65 66 67 68

	if err != nil {
		return nil, err
	}

	result := make([]*v1.StorageClass, 0)

H
hongming 已提交
69
	if len(conditions.Match) == 0 && len(conditions.Fuzzy) == 0 {
J
jeff 已提交
70 71 72
		result = storageClasses
	} else {
		for _, item := range storageClasses {
H
hongming 已提交
73
			if s.match(conditions.Match, item) && s.fuzzy(conditions.Fuzzy, item) {
J
jeff 已提交
74 75 76 77 78 79
				result = append(result, item)
			}
		}
	}
	sort.Slice(result, func(i, j int) bool {
		if reverse {
Z
zryfish 已提交
80
			i, j = j, i
J
jeff 已提交
81
		}
H
hongming 已提交
82
		return v1alpha2.ObjectMetaCompare(result[i].ObjectMeta, result[j].ObjectMeta, orderBy)
J
jeff 已提交
83 84 85 86
	})

	r := make([]interface{}, 0)
	for _, i := range result {
Z
zryfish 已提交
87 88 89 90 91 92
		count := s.countPersistentVolumeClaims(i.Name)
		if i.Annotations == nil {
			i.Annotations = make(map[string]string)
			i.Annotations["kubesphere.io/pvc-count"] = string(count)
		}

J
jeff 已提交
93 94 95 96
		r = append(r, i)
	}
	return r, nil
}
Z
zryfish 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112

func (s *storageClassesSearcher) countPersistentVolumeClaims(name string) int {
	pvcs, err := s.informers.Core().V1().PersistentVolumeClaims().Lister().List(labels.Everything())
	if err != nil {
		return 0
	}
	var count int

	for _, pvc := range pvcs {
		if *pvc.Spec.StorageClassName == name || (pvc.Annotations != nil && pvc.Annotations[corev1.BetaStorageClassAnnotation] == name) {
			count++
		}
	}

	return count
}