Skip to content

Commit c3f345c

Browse files
Refactor custom error diag
1 parent 45e600d commit c3f345c

5 files changed

+69
-69
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
package customdiags
2+
3+
import (
4+
"net/http"
5+
6+
"github.com/hashicorp/terraform-plugin-framework/diag"
7+
)
8+
9+
// ErrorHTTPStatusCode is an error diagnostic that stored the error code.
10+
type ErrorHTTPStatusCode struct {
11+
detail string
12+
summary string
13+
HTTPStatusCode int
14+
}
15+
16+
// Detail returns the diagnostic detail.
17+
func (d ErrorHTTPStatusCode) Detail() string {
18+
return d.detail
19+
}
20+
21+
// Equal returns true if the other diagnostic is equivalent.
22+
func (d ErrorHTTPStatusCode) Equal(o diag.Diagnostic) bool {
23+
ed, ok := o.(ErrorHTTPStatusCode)
24+
25+
if !ok {
26+
return false
27+
}
28+
29+
return ed.Summary() == d.Summary() && ed.Detail() == d.Detail() && ed.HTTPStatusCode == d.HTTPStatusCode
30+
}
31+
32+
// Summary returns the diagnostic summary.
33+
func (d ErrorHTTPStatusCode) Summary() string {
34+
return d.summary
35+
}
36+
37+
// Severity returns the diagnostic severity.
38+
func (d ErrorHTTPStatusCode) Severity() diag.Severity {
39+
return diag.SeverityError
40+
}
41+
42+
// NewErrorHTTPStatusCode returns a new error severity diagnostic with the given summary, detail and error code.
43+
func NewErrorHTTPStatusCode(summary string, detail string, statusCode int) ErrorHTTPStatusCode {
44+
return ErrorHTTPStatusCode{
45+
detail: detail,
46+
summary: summary,
47+
HTTPStatusCode: statusCode,
48+
}
49+
}
50+
51+
// HasConflictError checks if a diagnostic has a specific error code.
52+
func HasConflictError(diags diag.Diagnostics) bool {
53+
for _, d := range diags {
54+
diag, ok := d.(*ErrorHTTPStatusCode)
55+
if !ok {
56+
return false
57+
}
58+
if diag.HTTPStatusCode == http.StatusConflict {
59+
return true
60+
}
61+
}
62+
return false
63+
}

internal/customdiags/with_error_code.go

-63
This file was deleted.

internal/provider/resourcemanager/resource_organization_iam_policy.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ func (u *orgIAMPolicyUpdater) GetResourceIamPolicy(ctx context.Context) (*models
7070
diags.AddError("failed to cast organization IAM policy error", err.Error())
7171
return nil, diags
7272
}
73-
diags.Append(customdiags.NewErrorDiagnosticWithErrorCode("failed to retrieve organization IAM policy", err.Error(), serviceErr.Code()))
73+
diags.Append(customdiags.NewErrorHTTPStatusCode("failed to retrieve organization IAM policy", err.Error(), serviceErr.Code()))
7474
return nil, diags
7575
}
7676

@@ -93,7 +93,7 @@ func (u *orgIAMPolicyUpdater) SetResourceIamPolicy(ctx context.Context, policy *
9393
diags.AddError("failed to cast organization IAM policy error", err.Error())
9494
return nil, diags
9595
}
96-
diags.Append(customdiags.NewErrorDiagnosticWithErrorCode("failed to update organization IAM policy", err.Error(), serviceErr.Code()))
96+
diags.Append(customdiags.NewErrorHTTPStatusCode("failed to update organization IAM policy", err.Error(), serviceErr.Code()))
9797
return nil, diags
9898
}
9999

internal/provider/resourcemanager/resource_project_iam_policy.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func (u *projectIAMPolicyUpdater) GetResourceIamPolicy(ctx context.Context) (*mo
9292
diags.AddError("failed to cast project IAM policy error", err.Error())
9393
return nil, diags
9494
}
95-
diags.Append(customdiags.NewErrorDiagnosticWithErrorCode("failed to retrieve project IAM policy", err.Error(), serviceErr.Code()))
95+
diags.Append(customdiags.NewErrorHTTPStatusCode("failed to retrieve project IAM policy", err.Error(), serviceErr.Code()))
9696
return nil, diags
9797
}
9898

@@ -115,7 +115,7 @@ func (u *projectIAMPolicyUpdater) SetResourceIamPolicy(ctx context.Context, poli
115115
diags.AddError("failed to cast project IAM policy error", err.Error())
116116
return nil, diags
117117
}
118-
diags.Append(customdiags.NewErrorDiagnosticWithErrorCode("failed to update project IAM policy", err.Error(), serviceErr.Code()))
118+
diags.Append(customdiags.NewErrorHTTPStatusCode("failed to update project IAM policy", err.Error(), serviceErr.Code()))
119119
return nil, diags
120120
}
121121

internal/provider/vaultsecrets/resource_vault_secrets_app_iam_policy.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func (u *vaultSecretsAppResourceIAMPolicyUpdater) GetResourceIamPolicy(ctx conte
9393
if serviceErr.Code() == http.StatusNotFound {
9494
return &models.HashicorpCloudResourcemanagerPolicy{}, diags
9595
}
96-
diags.Append(customdiags.NewErrorDiagnosticWithErrorCode("failed to retrieve resource IAM policy", err.Error(), serviceErr.Code()))
96+
diags.Append(customdiags.NewErrorHTTPStatusCode("failed to retrieve resource IAM policy", err.Error(), serviceErr.Code()))
9797
return nil, diags
9898
}
9999

@@ -117,7 +117,7 @@ func (u *vaultSecretsAppResourceIAMPolicyUpdater) SetResourceIamPolicy(ctx conte
117117
diags.AddError("failed to cast resource IAM policy error", err.Error())
118118
return nil, diags
119119
}
120-
diags.Append(customdiags.NewErrorDiagnosticWithErrorCode("failed to update resource IAM policy", err.Error(), serviceErr.Code()))
120+
diags.Append(customdiags.NewErrorHTTPStatusCode("failed to update resource IAM policy", err.Error(), serviceErr.Code()))
121121
return nil, diags
122122
}
123123

0 commit comments

Comments
 (0)