| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package alibaba
- import (
- "fmt"
- "github.com/opencost/opencost/core/pkg/opencost"
- "github.com/opencost/opencost/core/pkg/util/json"
- "github.com/opencost/opencost/pkg/cloud"
- )
- // BOAConfiguration is the BSS open API configuration for Alibaba's Billing information
- type BOAConfiguration struct {
- Account string `json:"account"`
- Region string `json:"region"`
- Authorizer Authorizer `json:"authorizer"`
- }
- func (bc *BOAConfiguration) Validate() error {
- // Validate Authorizer
- if bc.Authorizer == nil {
- return fmt.Errorf("BOAConfiguration: missing authorizer")
- }
- err := bc.Authorizer.Validate()
- if err != nil {
- return err
- }
- // Validate base properties
- if bc.Region == "" {
- return fmt.Errorf("BOAConfiguration: missing region")
- }
- if bc.Account == "" {
- return fmt.Errorf("BOAConfiguration: missing account")
- }
- return nil
- }
- func (bc *BOAConfiguration) Equals(config cloud.Config) bool {
- if config == nil {
- return false
- }
- thatConfig, ok := config.(*BOAConfiguration)
- if !ok {
- return false
- }
- if bc.Authorizer != nil {
- if !bc.Authorizer.Equals(thatConfig.Authorizer) {
- return false
- }
- } else {
- if thatConfig.Authorizer != nil {
- return false
- }
- }
- if bc.Account != thatConfig.Account {
- return false
- }
- if bc.Region != thatConfig.Region {
- return false
- }
- return true
- }
- func (bc *BOAConfiguration) Sanitize() cloud.Config {
- return &BOAConfiguration{
- Account: bc.Account,
- Region: bc.Region,
- Authorizer: bc.Authorizer.Sanitize().(Authorizer),
- }
- }
- func (bc *BOAConfiguration) Key() string {
- return fmt.Sprintf("%s/%s", bc.Account, bc.Region)
- }
- func (bc *BOAConfiguration) Provider() string {
- return opencost.AlibabaProvider
- }
- func (bc *BOAConfiguration) UnmarshalJSON(b []byte) error {
- var f interface{}
- err := json.Unmarshal(b, &f)
- if err != nil {
- return err
- }
- fmap := f.(map[string]interface{})
- account, err := cloud.GetInterfaceValue[string](fmap, "account")
- if err != nil {
- return fmt.Errorf("BOAConfiguration: UnmarshalJSON: %s", err.Error())
- }
- bc.Account = account
- region, err := cloud.GetInterfaceValue[string](fmap, "region")
- if err != nil {
- return fmt.Errorf("BOAConfiguration: UnmarshalJSON: %s", err.Error())
- }
- bc.Region = region
- authAny, ok := fmap["authorizer"]
- if !ok {
- return fmt.Errorf("BOAConfiguration: UnmarshalJSON: missing authorizer")
- }
- authorizer, err := cloud.AuthorizerFromInterface(authAny, SelectAuthorizerByType)
- if err != nil {
- return fmt.Errorf("BOAConfiguration: UnmarshalJSON: %s", err.Error())
- }
- bc.Authorizer = authorizer
- return nil
- }
- func ConvertAlibabaInfoToConfig(acc AlibabaInfo) cloud.KeyedConfig {
- if acc.IsEmpty() {
- return nil
- }
- var configurer Authorizer
- configurer = &AccessKey{
- AccessKeyID: acc.AlibabaServiceKeyName,
- AccessKeySecret: acc.AlibabaServiceKeySecret,
- }
- return &BOAConfiguration{
- Account: acc.AlibabaAccountID,
- Region: acc.AlibabaClusterRegion,
- Authorizer: configurer,
- }
- }
|