mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-16 11:58:43 -04:00
47 lines
1.7 KiB
Go
47 lines
1.7 KiB
Go
package fetcher
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/api/configapi"
|
|
)
|
|
|
|
// ConfigAPIFetcher fetches config API resources without authentication.
|
|
type ConfigAPIFetcher struct {
|
|
*fetcher
|
|
}
|
|
|
|
// NewConfigAPIFetcher returns a new Fetcher.
|
|
func NewConfigAPIFetcher() *ConfigAPIFetcher {
|
|
return &ConfigAPIFetcher{newFetcher()}
|
|
}
|
|
|
|
// FetchAzureSEVSNPVersionList fetches the version list information from the config API.
|
|
func (f *ConfigAPIFetcher) FetchAzureSEVSNPVersionList(ctx context.Context, attestation configapi.AzureSEVSNPVersionList) (configapi.AzureSEVSNPVersionList, error) {
|
|
return fetch(ctx, f.httpc, attestation)
|
|
}
|
|
|
|
// FetchAzureSEVSNPVersion fetches the version information from the config API.
|
|
func (f *ConfigAPIFetcher) FetchAzureSEVSNPVersion(ctx context.Context, attestation configapi.AzureSEVSNPVersionGet) (configapi.AzureSEVSNPVersionGet, error) {
|
|
return fetch(ctx, f.httpc, attestation)
|
|
}
|
|
|
|
// FetchLatestAzureSEVSNPVersion returns the latest versions of the given type.
|
|
func (f *ConfigAPIFetcher) FetchLatestAzureSEVSNPVersion(ctx context.Context) (res configapi.AzureSEVSNPVersion, err error) {
|
|
var versions configapi.AzureSEVSNPVersionList
|
|
versions, err = f.FetchAzureSEVSNPVersionList(ctx, versions)
|
|
if err != nil {
|
|
return res, fmt.Errorf("failed fetching versions list: %w", err)
|
|
}
|
|
if len(versions) < 1 {
|
|
return res, errors.New("no versions found in /list")
|
|
}
|
|
get := configapi.AzureSEVSNPVersionGet{Version: versions[0]} // get latest version (as sorted reversely alphanumerically)
|
|
get, err = f.FetchAzureSEVSNPVersion(ctx, get)
|
|
if err != nil {
|
|
return res, fmt.Errorf("failed fetching version: %w", err)
|
|
}
|
|
return get.AzureSEVSNPVersion, nil
|
|
}
|