-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathresource_postgresql_user_mapping.go
278 lines (238 loc) · 8.72 KB
/
resource_postgresql_user_mapping.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
package postgresql
import (
"bytes"
"database/sql"
"fmt"
"log"
"strings"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/lib/pq"
)
const (
userMappingUserNameAttr = "user_name"
userMappingServerNameAttr = "server_name"
userMappingOptionsAttr = "options"
userMappingDatabaseAttr = "database"
)
func resourcePostgreSQLUserMapping() *schema.Resource {
return &schema.Resource{
Create: PGResourceFunc(resourcePostgreSQLUserMappingCreate),
Read: PGResourceFunc(resourcePostgreSQLUserMappingRead),
Update: PGResourceFunc(resourcePostgreSQLUserMappingUpdate),
Delete: PGResourceFunc(resourcePostgreSQLUserMappingDelete),
Importer: &schema.ResourceImporter{
StateContext: schema.ImportStatePassthroughContext,
},
Schema: map[string]*schema.Schema{
userMappingUserNameAttr: {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "The name of an existing user that is mapped to foreign server. CURRENT_ROLE, CURRENT_USER, and USER match the name of the current user. When PUBLIC is specified, a so-called public mapping is created that is used when no user-specific mapping is applicable",
},
userMappingServerNameAttr: {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "The name of an existing server for which the user mapping is to be created",
},
userMappingOptionsAttr: {
Type: schema.TypeMap,
Elem: &schema.Schema{
Type: schema.TypeString,
},
Optional: true,
Description: "This clause specifies the options of the user mapping. The options typically define the actual user name and password of the mapping. Option names must be unique. The allowed option names and values are specific to the server's foreign-data wrapper",
},
userMappingDatabaseAttr: {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "Specifies the database in which the server will be created",
},
},
}
}
func resourcePostgreSQLUserMappingCreate(db *DBConnection, d *schema.ResourceData) error {
if !db.featureSupported(featureServer) {
return fmt.Errorf(
"Foreign Server resource is not supported for this Postgres version (%s)",
db.version,
)
}
username := d.Get(userMappingUserNameAttr).(string)
serverName := d.Get(userMappingServerNameAttr).(string)
databaseName := getDatabaseForUserMapping(d, db.client.databaseName)
txn, err := startTransaction(db.client, databaseName)
if err != nil {
return err
}
defer deferredRollback(txn)
log.Printf("[WARN] PostgreSQL create function username: (%s), servername: (%s), databaseName: (%s)", username, serverName, databaseName)
b := bytes.NewBufferString("CREATE USER MAPPING ")
fmt.Fprint(b, " FOR ", pq.QuoteIdentifier(username))
fmt.Fprint(b, " SERVER ", pq.QuoteIdentifier(serverName))
if options, ok := d.GetOk(userMappingOptionsAttr); ok {
fmt.Fprint(b, " OPTIONS ( ")
cnt := 0
len := len(options.(map[string]interface{}))
for k, v := range options.(map[string]interface{}) {
fmt.Fprint(b, " ", pq.QuoteIdentifier(k), " ", pq.QuoteLiteral(v.(string)))
if cnt < len-1 {
fmt.Fprint(b, ", ")
}
cnt++
}
fmt.Fprint(b, " ) ")
}
if _, err := txn.Exec(b.String()); err != nil {
return fmt.Errorf("Could not create user mapping: %w", err)
}
if err = txn.Commit(); err != nil {
return fmt.Errorf("Could commit user mapping: %w", err)
}
d.SetId(generateUserMappingID(d, databaseName))
log.Printf("[WARN] PostgreSQL create function SetId: (%s)", d.SetId)
return resourcePostgreSQLUserMappingReadImpl(db, d)
}
func resourcePostgreSQLUserMappingRead(db *DBConnection, d *schema.ResourceData) error {
if !db.featureSupported(featureServer) {
return fmt.Errorf(
"Foreign Server resource is not supported for this Postgres version (%s)",
db.version,
)
}
return resourcePostgreSQLUserMappingReadImpl(db, d)
}
func resourcePostgreSQLUserMappingReadImpl(db *DBConnection, d *schema.ResourceData) error {
username := d.Get(userMappingUserNameAttr).(string)
serverName := d.Get(userMappingServerNameAttr).(string)
databaseName := getDatabaseForUserMapping(d, db.client.databaseName)
txn, err := startTransaction(db.client, databaseName)
if err != nil {
return err
}
defer deferredRollback(txn)
log.Printf("[WARN] PostgreSQL ReadImpl function username: (%s), servername: (%s), databaseName: (%s)", username, serverName, databaseName)
var userMappingOptions []string
query := "SELECT umoptions FROM information_schema._pg_user_mappings WHERE authorization_identifier = $1 and foreign_server_name = $2"
err = txn.QueryRow(query, username, serverName).Scan(pq.Array(&userMappingOptions))
if err != sql.ErrNoRows && err != nil {
// Fallback to pg_user_mappings table if information_schema._pg_user_mappings is not available
query := "SELECT umoptions FROM pg_user_mappings WHERE usename = $1 and srvname = $2"
err = txn.QueryRow(query, username, serverName).Scan(pq.Array(&userMappingOptions))
}
switch {
case err == sql.ErrNoRows:
log.Printf("[WARN] PostgreSQL user mapping (%s) for server (%s) not found", username, serverName)
d.SetId("")
return nil
case err != nil:
return fmt.Errorf("Error reading user mapping: %w", err)
}
mappedOptions := make(map[string]interface{})
for _, v := range userMappingOptions {
pair := strings.SplitN(v, "=", 2)
mappedOptions[pair[0]] = pair[1]
}
d.Set(userMappingUserNameAttr, username)
d.Set(userMappingServerNameAttr, serverName)
d.Set(userMappingOptionsAttr, mappedOptions)
d.Set(userMappingDatabaseAttr, databaseName)
d.SetId(generateUserMappingID(d, databaseName))
log.Printf("[WARN] PostgreSQL ReadImpl function d.SetId: (%s)", d.SetId)
return nil
}
func resourcePostgreSQLUserMappingDelete(db *DBConnection, d *schema.ResourceData) error {
if !db.featureSupported(featureServer) {
return fmt.Errorf(
"Foreign Server resource is not supported for this Postgres version (%s)",
db.version,
)
}
username := d.Get(userMappingUserNameAttr).(string)
serverName := d.Get(userMappingServerNameAttr).(string)
databaseName := getDatabaseForUserMapping(d, db.client.databaseName)
txn, err := startTransaction(db.client, databaseName)
if err != nil {
return err
}
defer deferredRollback(txn)
sql := fmt.Sprintf("DROP USER MAPPING FOR %s SERVER %s ", pq.QuoteIdentifier(username), pq.QuoteIdentifier(serverName))
if _, err := txn.Exec(sql); err != nil {
return err
}
if err = txn.Commit(); err != nil {
return fmt.Errorf("Error deleting user mapping: %w", err)
}
d.SetId("")
return nil
}
func resourcePostgreSQLUserMappingUpdate(db *DBConnection, d *schema.ResourceData) error {
if !db.featureSupported(featureServer) {
return fmt.Errorf(
"Foreign Server resource is not supported for this Postgres version (%s)",
db.version,
)
}
if err := setUserMappingOptionsIfChanged(db, d); err != nil {
return err
}
return resourcePostgreSQLUserMappingReadImpl(db, d)
}
func setUserMappingOptionsIfChanged(db *DBConnection, d *schema.ResourceData) error {
if !d.HasChange(userMappingOptionsAttr) {
return nil
}
username := d.Get(userMappingUserNameAttr).(string)
serverName := d.Get(userMappingServerNameAttr).(string)
databaseName := getDatabaseForUserMapping(d, db.client.databaseName)
txn, err := startTransaction(db.client, databaseName)
if err != nil {
return err
}
b := bytes.NewBufferString("ALTER USER MAPPING ")
fmt.Fprintf(b, " FOR %s SERVER %s ", pq.QuoteIdentifier(username), pq.QuoteIdentifier(serverName))
oldOptions, newOptions := d.GetChange(userMappingOptionsAttr)
fmt.Fprint(b, " OPTIONS ( ")
cnt := 0
len := len(newOptions.(map[string]interface{}))
toRemove := oldOptions.(map[string]interface{})
for k, v := range newOptions.(map[string]interface{}) {
operation := "ADD"
if oldOptions.(map[string]interface{})[k] != nil {
operation = "SET"
delete(toRemove, k)
}
fmt.Fprintf(b, " %s %s %s ", operation, pq.QuoteIdentifier(k), pq.QuoteLiteral(v.(string)))
if cnt < len-1 {
fmt.Fprint(b, ", ")
}
cnt++
}
for k := range toRemove {
if cnt != 0 { // starting with 0 means to drop all the options. Cannot start with comma
fmt.Fprint(b, " , ")
}
fmt.Fprintf(b, " DROP %s ", pq.QuoteIdentifier(k))
cnt++
}
fmt.Fprint(b, " ) ")
if _, err := txn.Exec(b.String()); err != nil {
return fmt.Errorf("Error updating user mapping options: %w", err)
}
return nil
}
func generateUserMappingID(d *schema.ResourceData, databaseName string) string {
return strings.Join([]string{
d.Get(userMappingUserNameAttr).(string),
databaseName,
d.Get(userMappingDatabaseAttr).(string),
}, ".")
}
func getDatabaseForUserMapping(d *schema.ResourceData, defaultDatabase string) string {
if v, ok := d.GetOk(userMappingDatabaseAttr); ok {
return v.(string)
}
return defaultDatabase
}