| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*
- 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 v1
- import (
- "fmt"
- "sync"
- )
- type MaintenanceStatus bool
- const (
- MaintenanceStatusMaintained MaintenanceStatus = true
- MaintenanceStatusNotMaintained MaintenanceStatus = false
- )
- var maintenance map[string]MaintenanceStatus
- var mlock sync.RWMutex
- func init() {
- maintenance = make(map[string]MaintenanceStatus)
- }
- func RegisterMaintenanceStatus(status MaintenanceStatus, storeSpec *SecretStoreProvider) {
- storeName, err := getProviderName(storeSpec)
- if err != nil {
- panic(fmt.Sprintf("store error registering schema: %s", err.Error()))
- }
- mlock.Lock()
- defer mlock.Unlock()
- _, exists := maintenance[storeName]
- if exists {
- panic(fmt.Sprintf("store %q already registered", storeName))
- }
- maintenance[storeName] = status
- }
- func ForceRegisterMaintenanceStatus(status MaintenanceStatus, storeSpec *SecretStoreProvider) {
- storeName, err := getProviderName(storeSpec)
- if err != nil {
- panic(fmt.Sprintf("store error registering schema: %s", err.Error()))
- }
- mlock.Lock()
- defer mlock.Unlock()
- maintenance[storeName] = status
- }
- // GetMaintenanceStatus returns the maintenance status of the provider from the generic store.
- func GetMaintenanceStatus(s GenericStore) (MaintenanceStatus, error) {
- if s == nil {
- return MaintenanceStatusNotMaintained, nil
- }
- spec := s.GetSpec()
- if spec == nil {
- // Note, this condition can never be reached, because
- // the Spec is not a pointer in Kubernetes. It will
- // always exist.
- return MaintenanceStatusNotMaintained, fmt.Errorf("no spec found in %#v", s)
- }
- storeName, err := getProviderName(spec.Provider)
- if err != nil {
- return MaintenanceStatusNotMaintained, fmt.Errorf("store error for %s: %w", s.GetName(), err)
- }
- mlock.RLock()
- status, ok := maintenance[storeName]
- mlock.RUnlock()
- if !ok {
- return MaintenanceStatusNotMaintained, fmt.Errorf("failed to find registered store backend for type: %s, name: %s", storeName, s.GetName())
- }
- return status, nil
- }
|