Skip to content
This repository has been archived by the owner on Jul 27, 2023. It is now read-only.

Commit

Permalink
feat(bunny_storagezone): add a storagezone resource
Browse files Browse the repository at this point in the history
  • Loading branch information
jspizziri committed Jun 8, 2022
1 parent 350e06d commit 7347bac
Show file tree
Hide file tree
Showing 3 changed files with 556 additions and 0 deletions.
1 change: 1 addition & 0 deletions internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ func New() *schema.Provider {
"bunny_pullzone": resourcePullZone(),
"bunny_edgerule": resourceEdgeRule(),
"bunny_hostname": resourceHostname(),
"bunny_storagezone": resourceStorageZone(),
},
ConfigureContextFunc: newProvider,
}
Expand Down
323 changes: 323 additions & 0 deletions internal/provider/resource_storagezone.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,323 @@
package provider

import (
"context"
"fmt"
"strconv"
"time"

"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
bunny "github.com/simplesurance/bunny-go"
)

const (
keyUserID = "user_id"
keyPassword = "password"
keyDateModified = "date_modified"
keyDeleted = "deleted"
keyStorageUsed = "storage_used"
keyFilesStored = "files_stored"
keyRegion = "region"
keyReplicationRegions = "replication_regions"
keyPullZones = "pull_zones"
keyReadOnlyPassword = "read_only_password"
keyCustom404FilePath = "custom_404_file_path"
keyRewrite404To200 = "rewrite_404_to_200"
)

func resourceStorageZone() *schema.Resource {
return &schema.Resource{
CreateContext: resourceStorageZoneCreate,
ReadContext: resourceStorageZoneRead,
UpdateContext: resourceStorageZoneUpdate,
DeleteContext: resourceStorageZoneDelete,

Schema: map[string]*schema.Schema{
keyName: {
Type: schema.TypeString,
Description: "The name of the storage zone",
Required: true,
ForceNew: true,
},
keyRegion: {
Type: schema.TypeString,
Description: "The code of the main storage zone region (Possible values: DE, NY, LA, SG)",
Required: true,
ForceNew: true,
},
keyReplicationRegions: {
Type: schema.TypeSet,
Description: "The code of the main storage zone region (Possible values: DE, NY, LA, SG, SYD)",
Elem: &schema.Schema{Type: schema.TypeString},
Optional: true,
},
keyOriginURL: {
Type: schema.TypeString,
Description: "The origin URL of the storage zone",
Optional: true,
},
keyCustom404FilePath: {
Type: schema.TypeString,
Description: "The path to the custom file that will be returned in a case of 404",
Optional: true,
},
keyRewrite404To200: {
Type: schema.TypeBool,
Description: "Rewrite 404 status code to 200 for URLs without extension",
Optional: true,
},
keyUserID: {
Type: schema.TypeString,
Computed: true,
},
keyPassword: {
Type: schema.TypeString,
Description: "The password granting read/write access to the storage zone",
Computed: true,
Sensitive: true,
},
keyDateModified: {
Type: schema.TypeString,
Description: "The last modified date of the storage zone",
Computed: true,
},
keyDeleted: {
Type: schema.TypeBool,
Computed: true,
},
keyStorageUsed: {
Type: schema.TypeInt,
Description: "The amount of storage used in the storage zone in bytes",
Computed: true,
},
keyFilesStored: {
Type: schema.TypeInt,
Description: "The number of files stored in the storage zone",
Computed: true,
},
keyReadOnlyPassword: {
Type: schema.TypeString,
Description: "The password granting read-only access to the storage zone",
Computed: true,
Sensitive: true,
},

keyLastUpdated: {
Type: schema.TypeString,
Computed: true,
},
},
}
}

func resourceStorageZoneCreate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
clt := meta.(*bunny.Client)

originURL := getStrPtr(d, keyOriginURL)
if (d.HasChange(keyOriginURL) == false) {
originURL = nil
}

sz, err := clt.StorageZone.Add(ctx, &bunny.StorageZoneAddOptions{
Name: getStrPtr(d, keyName),
OriginURL: originURL,
Region: getStrPtr(d, keyRegion),
ReplicationRegions: getStrSetAsSlice(d, keyReplicationRegions),
})
if err != nil {
return diag.FromErr(fmt.Errorf("creating storage zone failed: %w", err))
}

d.SetId(strconv.FormatInt(*sz.ID, 10))
if err := d.Set(keyLastUpdated, time.Now().Format(time.RFC850)); err != nil {
return diag.FromErr(err)
}

// StorageZone.Add() only supports to set a subset of a Storage Zone object,
// call Update to set the remaining ones.
if diags := resourceStorageZoneUpdate(ctx, d, meta); diags.HasError() {
// if updating fails the sz was still created, initialize with the SZ
// returned from the Add operation
diags = append(diags, diag.Diagnostic{
Severity: diag.Error,
Summary: "setting storage zone attributes via update failed",
})

if err := storageZoneToResource(sz, d); err != nil {
diags = append(diags, diag.Diagnostic{
Severity: diag.Error,
Summary: "converting api-type to resource data failed: " + err.Error(),
})

}

return diags
}

return nil
}

func resourceStorageZoneUpdate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
clt := meta.(*bunny.Client)

storageZone, err := storageZoneFromResource(d)
if err != nil {
return diagsErrFromErr("converting resource to API type failed", err)
}

id, err := getIDAsInt64(d)
if err != nil {
return diag.FromErr(err)
}

updateErr := clt.StorageZone.Update(ctx, id, storageZone)
if updateErr != nil {
// if our update failed then revert our values to their original
// state so that we can run an apply again.
revertUpdateValues(d)
return diagsErrFromErr("updating storage zone via API failed", updateErr)
}

updatedStorageZone, err := clt.StorageZone.Get(ctx, id)
if err != nil {
return diagsErrFromErr("fetching updated storage zone via API failed", err)
}

if err := storageZoneToResource(updatedStorageZone, d); err != nil {
return diagsErrFromErr("converting api type to resource data after successful update failed", err)
}

if err := d.Set(keyLastUpdated, time.Now().Format(time.RFC850)); err != nil {
return diagsWarnFromErr(
fmt.Sprintf("could not set %s", keyLastUpdated),
err,
)
}

return nil
}

func resourceStorageZoneRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
clt := meta.(*bunny.Client)

id, err := getIDAsInt64(d)
if err != nil {
return diag.FromErr(err)
}

sz, err := clt.StorageZone.Get(ctx, id)
if err != nil {
return diagsErrFromErr("could not retrieve storage zone", err)
}

if err := storageZoneToResource(sz, d); err != nil {
return diagsErrFromErr("converting api type to resource data after successful read failed", err)
}

return nil
}

func resourceStorageZoneDelete(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
clt := meta.(*bunny.Client)

id, err := getIDAsInt64(d)
if err != nil {
return diag.FromErr(err)
}

err = clt.StorageZone.Delete(ctx, id)
if err != nil {
return diagsErrFromErr("could not delete storage zone", err)
}

d.SetId("")

return nil
}

// storageZoneToResource sets fields in d to the values in sz.
func storageZoneToResource(sz *bunny.StorageZone, d *schema.ResourceData) error {
if sz.ID != nil {
d.SetId(strconv.FormatInt(*sz.ID, 10))
}

if err := d.Set(keyUserID, sz.UserID); err != nil {
return err
}
if err := d.Set(keyName, sz.Name); err != nil {
return err
}
if err := d.Set(keyPassword, sz.Password); err != nil {
return err
}
if err := d.Set(keyDateModified, sz.DateModified); err != nil {
return err
}
if err := d.Set(keyDeleted, sz.Deleted); err != nil {
return err
}
if err := d.Set(keyStorageUsed, sz.StorageUsed); err != nil {
return err
}
if err := d.Set(keyFilesStored, sz.FilesStored); err != nil {
return err
}
if err := d.Set(keyRegion, sz.Region); err != nil {
return err
}
if err := d.Set(keyReadOnlyPassword, sz.ReadOnlyPassword); err != nil {
return err
}
if err := setStrSet(d, keyReplicationRegions, sz.ReplicationRegions, ignoreOrderOpt, caseInsensitiveOpt); err != nil {
return err
}

return nil
}

func revertUpdateValues(d *schema.ResourceData) error {
o, _ := d.GetChange(keyOriginURL)
if err := d.Set(keyOriginURL, o); err != nil {
return err
}
o, _ = d.GetChange(keyCustom404FilePath)
if err := d.Set(keyCustom404FilePath, o); err != nil {
return err
}
o, _ = d.GetChange(keyRewrite404To200)
if err := d.Set(keyRewrite404To200, o); err != nil {
return err
}

return nil
}


// storageZoneFromResource returns a StorageZoneUpdateOptions API type that
// has fields set to the values in d.
func storageZoneFromResource(d *schema.ResourceData) (*bunny.StorageZoneUpdateOptions, error) {
var res bunny.StorageZoneUpdateOptions

originURL := getStrPtr(d, keyOriginURL)
if (d.HasChange(keyOriginURL) == false) {
originURL = nil
}

custom404FilePath := getStrPtr(d, keyCustom404FilePath)
if (d.HasChange(keyCustom404FilePath) == false) {
custom404FilePath = nil
}

rewrite404To200 := getBoolPtr(d, keyRewrite404To200)
if (d.HasChange(keyRewrite404To200) == false) {
rewrite404To200 = nil
}

res.ReplicationRegions = getStrSetAsSlice(d, keyReplicationRegions);
res.OriginURL = originURL;
res.Custom404FilePath = custom404FilePath;
res.Rewrite404To200 = rewrite404To200;

return &res, nil
}
Loading

0 comments on commit 7347bac

Please sign in to comment.