mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-05 05:20:34 +00:00
f0a370db24
Apply retries as global, config-level option `downloadRetries` so that it can be applied to any aptly command which downloads objects. Unwrap `errors.Wrap` which is used in downloader. Unwrap `*url.Error` which should be the actual error returned from the HTTP client, catch more cases, be more specific around failures.
124 lines
4.7 KiB
Go
124 lines
4.7 KiB
Go
package utils
|
|
|
|
import (
|
|
"encoding/json"
|
|
"os"
|
|
"path/filepath"
|
|
)
|
|
|
|
// ConfigStructure is structure of main configuration
|
|
type ConfigStructure struct { // nolint: maligned
|
|
RootDir string `json:"rootDir"`
|
|
DownloadConcurrency int `json:"downloadConcurrency"`
|
|
DownloadLimit int64 `json:"downloadSpeedLimit"`
|
|
DownloadRetries int `json:"downloadRetries"`
|
|
Architectures []string `json:"architectures"`
|
|
DepFollowSuggests bool `json:"dependencyFollowSuggests"`
|
|
DepFollowRecommends bool `json:"dependencyFollowRecommends"`
|
|
DepFollowAllVariants bool `json:"dependencyFollowAllVariants"`
|
|
DepFollowSource bool `json:"dependencyFollowSource"`
|
|
DepVerboseResolve bool `json:"dependencyVerboseResolve"`
|
|
GpgDisableSign bool `json:"gpgDisableSign"`
|
|
GpgDisableVerify bool `json:"gpgDisableVerify"`
|
|
GpgProvider string `json:"gpgProvider"`
|
|
DownloadSourcePackages bool `json:"downloadSourcePackages"`
|
|
SkipLegacyPool bool `json:"skipLegacyPool"`
|
|
PpaDistributorID string `json:"ppaDistributorID"`
|
|
PpaCodename string `json:"ppaCodename"`
|
|
SkipContentsPublishing bool `json:"skipContentsPublishing"`
|
|
FileSystemPublishRoots map[string]FileSystemPublishRoot `json:"FileSystemPublishEndpoints"`
|
|
S3PublishRoots map[string]S3PublishRoot `json:"S3PublishEndpoints"`
|
|
SwiftPublishRoots map[string]SwiftPublishRoot `json:"SwiftPublishEndpoints"`
|
|
}
|
|
|
|
// FileSystemPublishRoot describes single filesystem publishing entry point
|
|
type FileSystemPublishRoot struct {
|
|
RootDir string `json:"rootDir"`
|
|
LinkMethod string `json:"linkMethod"`
|
|
VerifyMethod string `json:"verifyMethod"`
|
|
}
|
|
|
|
// S3PublishRoot describes single S3 publishing entry point
|
|
type S3PublishRoot struct {
|
|
Region string `json:"region"`
|
|
Bucket string `json:"bucket"`
|
|
Endpoint string `json:"endpoint"`
|
|
AccessKeyID string `json:"awsAccessKeyID"`
|
|
SecretAccessKey string `json:"awsSecretAccessKey"`
|
|
SessionToken string `json:"awsSessionToken"`
|
|
Prefix string `json:"prefix"`
|
|
ACL string `json:"acl"`
|
|
StorageClass string `json:"storageClass"`
|
|
EncryptionMethod string `json:"encryptionMethod"`
|
|
PlusWorkaround bool `json:"plusWorkaround"`
|
|
DisableMultiDel bool `json:"disableMultiDel"`
|
|
ForceSigV2 bool `json:"forceSigV2"`
|
|
Debug bool `json:"debug"`
|
|
}
|
|
|
|
// SwiftPublishRoot describes single OpenStack Swift publishing entry point
|
|
type SwiftPublishRoot struct {
|
|
UserName string `json:"osname"`
|
|
Password string `json:"password"`
|
|
AuthURL string `json:"authurl"`
|
|
Tenant string `json:"tenant"`
|
|
TenantID string `json:"tenantid"`
|
|
Domain string `json:"domain"`
|
|
DomainID string `json:"domainid"`
|
|
TenantDomain string `json:"tenantdomain"`
|
|
TenantDomainID string `json:"tenantdomainid"`
|
|
Prefix string `json:"prefix"`
|
|
Container string `json:"container"`
|
|
}
|
|
|
|
// Config is configuration for aptly, shared by all modules
|
|
var Config = ConfigStructure{
|
|
RootDir: filepath.Join(os.Getenv("HOME"), ".aptly"),
|
|
DownloadConcurrency: 4,
|
|
DownloadLimit: 0,
|
|
Architectures: []string{},
|
|
DepFollowSuggests: false,
|
|
DepFollowRecommends: false,
|
|
DepFollowAllVariants: false,
|
|
DepFollowSource: false,
|
|
GpgProvider: "gpg",
|
|
GpgDisableSign: false,
|
|
GpgDisableVerify: false,
|
|
DownloadSourcePackages: false,
|
|
SkipLegacyPool: false,
|
|
PpaDistributorID: "ubuntu",
|
|
PpaCodename: "",
|
|
FileSystemPublishRoots: map[string]FileSystemPublishRoot{},
|
|
S3PublishRoots: map[string]S3PublishRoot{},
|
|
SwiftPublishRoots: map[string]SwiftPublishRoot{},
|
|
}
|
|
|
|
// LoadConfig loads configuration from json file
|
|
func LoadConfig(filename string, config *ConfigStructure) error {
|
|
f, err := os.Open(filename)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer f.Close()
|
|
|
|
dec := json.NewDecoder(f)
|
|
return dec.Decode(&config)
|
|
}
|
|
|
|
// SaveConfig write configuration to json file
|
|
func SaveConfig(filename string, config *ConfigStructure) error {
|
|
f, err := os.Create(filename)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer f.Close()
|
|
|
|
encoded, err := json.MarshalIndent(&config, "", " ")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = f.Write(encoded)
|
|
return err
|
|
}
|