mirror of
https://github.com/outbackdingo/proxmox-cloud-controller-manager.git
synced 2026-01-27 10:20:13 +00:00
New proxmox api modules * luthermonson/go-proxmox * sergelogvinov/go-proxmox Signed-off-by: Serge Logvinov <serge.logvinov@sinextra.dev>
81 lines
2.5 KiB
Go
81 lines
2.5 KiB
Go
/*
|
|
Copyright 2023 The Kubernetes 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 provider implements the providerID interface for Proxmox.
|
|
package provider
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
// ProviderName is the name of the Proxmox provider.
|
|
ProviderName = "proxmox"
|
|
)
|
|
|
|
var providerIDRegexp = regexp.MustCompile(`^` + ProviderName + `://([^/]*)/([^/]+)$`)
|
|
|
|
// GetProviderIDFromID returns the magic providerID for kubernetes node.
|
|
func GetProviderIDFromID(region string, vmID int) string {
|
|
return fmt.Sprintf("%s://%s/%d", ProviderName, region, vmID)
|
|
}
|
|
|
|
// GetProviderIDFromUUID returns the magic providerID for kubernetes node.
|
|
func GetProviderIDFromUUID(uuid string) string {
|
|
return fmt.Sprintf("%s://%s", ProviderName, uuid)
|
|
}
|
|
|
|
// GetVMID returns the VM ID from the providerID.
|
|
func GetVMID(providerID string) (int, error) {
|
|
if !strings.HasPrefix(providerID, ProviderName) {
|
|
return 0, fmt.Errorf("foreign providerID or empty \"%s\"", providerID)
|
|
}
|
|
|
|
matches := providerIDRegexp.FindStringSubmatch(providerID)
|
|
if len(matches) != 3 {
|
|
return 0, fmt.Errorf("providerID \"%s\" didn't match expected format \"%s://region/InstanceID\"", providerID, ProviderName)
|
|
}
|
|
|
|
vmID, err := strconv.Atoi(matches[2])
|
|
if err != nil {
|
|
return 0, fmt.Errorf("InstanceID have to be a number, but got \"%s\"", matches[2])
|
|
}
|
|
|
|
return vmID, nil
|
|
}
|
|
|
|
// ParseProviderID returns the VmRef and region from the providerID.
|
|
func ParseProviderID(providerID string) (int, string, error) {
|
|
if !strings.HasPrefix(providerID, ProviderName) {
|
|
return 0, "", fmt.Errorf("foreign providerID or empty \"%s\"", providerID)
|
|
}
|
|
|
|
matches := providerIDRegexp.FindStringSubmatch(providerID)
|
|
if len(matches) != 3 {
|
|
return 0, "", fmt.Errorf("providerID \"%s\" didn't match expected format \"%s://region/InstanceID\"", providerID, ProviderName)
|
|
}
|
|
|
|
vmID, err := strconv.Atoi(matches[2])
|
|
if err != nil {
|
|
return 0, "", fmt.Errorf("InstanceID have to be a number, but got \"%s\"", matches[2])
|
|
}
|
|
|
|
return vmID, matches[1], nil
|
|
}
|