forked from simonfree/cfAWSWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathamazonSimpleDB.cfc
420 lines (336 loc) · 19.9 KB
/
amazonSimpleDB.cfc
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
<cfcomponent output="false" extends="amazonAWS" >
<cffunction name="init" access="public" returntype="amazonSimpleDB" >
<cfargument name="awsAccessKeyId" type="string" required="true"/>
<cfargument name="secretAccessKey" type="string" required="true"/>
<cfargument name="endPoint" type="string" required="true" default="sdb.amazonaws.com"/>
<cfset variables.awsAccessKeyId = arguments.awsAccessKeyId />
<cfset variables.secretAccesskey = arguments.secretAccessKey />
<cfset variables.endPoint = arguments.endPoint />
<cfset variables.requestMethod = 'no-header' />
<cfset variables.version = '2009-04-15' />
<cfreturn this />
</cffunction>
<cffunction name="ListDomains" access="public" returntype="struct" hint="The ListDomains operation lists all domains associated with the Access Key ID. It returns domain names up to the limit set by MaxNumberOfDomains.">
<cfargument name="MaxNumberOfDomains" type="numeric" required="false" default="0" hint="The maximum number of domain names you want returned.">
<cfargument name="NextToken" type="string" required="false" default="" hint="String that tells Amazon SimpleDB where to start the next list of domain names.">
<cfset var stResponse = createResponse() />
<cfset var body = "Action=ListDomains" />
<cfif val(arguments.MaxNumberOfDomains)>
<cfset body &= '&MaxNumberOfDomains=' & trim(arguments.MaxNumberOfDomains) />
</cfif>
<cfif len(trim(arguments.NextToken))>
<cfset body &= '&NextToken=' & trim(arguments.NextToken) />
</cfif>
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
<cfelse>
<cfset dataResult = getResultNodes(xmlParse(rawResult.filecontent),'DomainName') />
<cfset stResponse.result=[] />
<cfloop array="#dataResult#" index="item">
<cfset arrayAppend(stResponse.result,item.xmlText) />
</cfloop>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="CreateDomain" access="public" returntype="Struct" hint="The CreateDomain operation creates a new domain. The domain name must be unique among the domains associated with the Access Key ID provided in the request. The CreateDomain operation might take 10 or more seconds to complete.">
<cfargument name="DomainName" type="string" required="true" hint="The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.">
<cfset var stResponse = createResponse() />
<cfset var body = "Action=CreateDomain&DomainName=" & trim(arguments.DomainName) />
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="DomainMetadata" access="public" returntype="Struct" hint="Returns information about the domain, including when the domain was created, the number of items and attributes, and the size of attribute names and values.">
<cfargument name="DomainName" type="string" required="true" hint="The name of the domain for which to display metadata.">
<cfset var stResponse = createResponse() />
<cfset var body = "Action=DomainMetadata&DomainName=" & trim(arguments.DomainName) />
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
<cfelse>
<cfset dataResult = getResultNodes(xmlParse(rawResult.filecontent),'DomainMetadataResult')[1] />
<cfset stResponse.result = {
ItemCount=getValue(dataResult,'ItemCount'),
ItemNamesSizeBytes=getValue(dataResult,'ItemNamesSizeBytes'),
AttributeNameCount=getValue(dataResult,'AttributeNameCount'),
AttributeNamesSizeBytes=getValue(dataResult,'AttributeNamesSizeBytes'),
AttributeValueCount=getValue(dataResult,'AttributeValueCount'),
AttributeValuesSizeBytes=getValue(dataResult,'AttributeValuesSizeBytes'),
Timestamp=getValue(dataResult,'Timestamp')
} />
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="PutAttributes" access="public" returntype="Struct" >
<cfargument name="DomainName" type="string" required="true" hint="The name of the domain in which to perform the operation"/>
<cfargument name="itemName" type="string" required="true" hint="The name of the item"/>
<cfargument name="attributes" type="array" required="true" />
<cfset var stResponse = createResponse() />
<cfset var body = "Action=PutAttributes&DomainName=" & trim(arguments.DomainName) & "&ItemName=" & trim(arguments.ItemName) />
<cfloop from="1" to="#arrayLen(arguments.attributes)#" index="i">
<cfset body &= "&Attribute." & i & ".Name=" & trim(arguments.attributes[i].name) &
"&Attribute." & i & ".Value=" & trim(arguments.attributes[i].value) />
<cfif structKeyExists(arguments.attributes[i],'replace') && len(trim(arguments.attributes[i].replace))>
<cfset body &= "&Attribute." & i & ".Replace=" & trim(arguments.attributes[i].replace) />
</cfif>
</cfloop>
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="BatchPutAttributes" access="public" returntype="Struct" >
<cfargument name="DomainName" type="string" required="true" />
<cfargument name="items" type="array" required="true" />
<cfset var stResponse = createResponse() />
<cfset var body = "Action=BatchPutAttributes&DomainName=" & trim(arguments.DomainName) />
<cfloop from="1" to="#arrayLen(arguments.items)#" index="j">
<cfset body &= "&Item." & j & ".ItemName=" & arguments.items[j].ItemName />
<cfloop from="1" to="#arrayLen(arguments.items[j].attributes)#" index="i">
<cfset body &= "&Item." & j & ".Attribute." & i & ".Name=" & trim(arguments.items[j].attributes[i].name) &
"&Item." & j & ".Attribute." & i & ".Value=" & trim(arguments.items[j].attributes[i].value) />
<cfif structKeyExists(arguments.items[j].attributes[i],'replace') && len(trim(arguments.items[j].attributes[i].replace))>
<cfset body &= "&Item." & j & ".Attribute." & i & ".Replace=" & trim(arguments.items[j].attributes[i].replace) />
</cfif>
</cfloop>
</cfloop>
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="GetAttributes" access="public" returntype="Struct" hint="Returns all of the attributes associated with the item. Optionally, the attributes returned can be limited to one or more specified attribute name parameters.">
<cfargument name="DomainName" type="string" required="true" hint="The name of the domain in which to perform the operation."/>
<cfargument name="itemName" type="string" required="true" hint="The name of the item"/>
<cfargument name="AttributeName" type="String" required="false" default="" hint="The name of the attribute."/>
<cfargument name="ConsistentRead" type="Boolean" required="false" default="false" hint="When set to true, ensures that the most recent data is returned."/>
<cfset var stResponse = createResponse() />
<cfset var body = "Action=GetAttributes&DomainName=" & trim(arguments.DomainName) & "&ItemName=" & trim(arguments.ItemName) />
<cfif len(trim(arguments.attributeName))>
<cfset body &= "&AttributeName=" & trim(arguments.AttributeName) />
</cfif>
<cfif arguments.ConsistentRead>
<cfset body &= "&ConsistentRead=true" />
</cfif>
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
<cfelse>
<cfset dataResult = getResultNodes(xmlParse(rawResult.filecontent),'Attribute') />
<cfset stResponse.result = [] />
<cfloop array="#dataResult#" index="result">
<cfset arrayAppend(stResponse.result,{name=getValue(result,'name'),value=getValue(result,'value')}) />
</cfloop>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="Select" access="public" returntype="Struct" hint="The Select operation returns a set of Attributes for ItemNames that match the select expression. Select is similar to the standard SQL SELECT statement.">
<cfargument name="SelectExpression" type="string" required="true" hint="The expression used to query the domain."/>
<cfargument name="NextToken" type="String" required="false" default="" hint="String that tells Amazon SimpleDB where to start the next list of ItemNames."/>
<cfargument name="ConsistentRead" type="Boolean" required="false" default="false" hint="When set to true, ensures that the most recent data is returned. "/>
<cfset var stResponse = createResponse() />
<cfset var body = "Action=Select&SelectExpression=" & trim(arguments.SelectExpression) />
<cfif len(trim(arguments.NextToken))>
<cfset body &= "&NextToken=" & trim(arguments.NextToken) />
</cfif>
<cfif arguments.ConsistentRead>
<cfset body &= "&ConsistentRead=true" />
</cfif>
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
<cfelse>
<cfset dataResult = getResultNodes(xmlParse(rawResult.fileContent),'Item') />
<cfset stResponse.result = [] />
<cfloop array="#dataResult#" index="result">
<cfset stItem = {} />
<cfset stItem['itemName'] = getValue(result,'name') />
<cfset stItem['attributes'] = {} />
<cfloop array="#result.xmlChildren#" index="node">
<cfif node.xmlName eq 'Attribute'>
<cfset stItem['attributes'][node.name.xmltext] = getValue(node,'value') />
</cfif>
</cfloop>
<cfset arrayAppend(stResponse.result,stResponse) />
</cfloop>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="DeleteAttributes" access="public" returntype="Struct" hint="Deletes one or more attributes associated with the item. If all attributes of an item are deleted, the item is deleted." >
<cfargument name="DomainName" type="string" required="true" hint="The name of the domain in which to perform the operation."/>
<cfargument name="itemName" type="string" required="true" hint="The name of the item."/>
<cfargument name="attributes" type="array" required="false" default="#[]#" />
<cfset var stResponse = createResponse() />
<cfset var body = "Action=DeleteAttributes&DomainName=" & trim(arguments.DomainName) & "&ItemName=" & trim(arguments.ItemName) />
<cfloop from="1" to="#arrayLen(arguments.attributes)#" index="i">
<cfset body &= "&Attribute." & i & ".Name=" & trim(arguments.attributes[i].name) &
"&Attribute." & i & ".Value=" & trim(arguments.attributes[i].value) />
<cfif structKeyExists(arguments.attributes[i],'replace') && len(trim(arguments.attributes[i].replace))>
<cfset body &= "&Attribute." & i & ".Replace=" & trim(arguments.attributes[i].replace) />
</cfif>
</cfloop>
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="BatchDeleteAttributes" access="public" returntype="Struct" hint="Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies. variables enables Amazon SimpleDB to optimize requests, which generally yields better throughput." >
<cfargument name="DomainName" type="string" required="true" hint="The name of the domain in which to perform the operation."/>
<cfargument name="items" type="array" required="true" />
<cfset var stResponse = createResponse() />
<cfset var body = "Action=BatchDeleteAttributes&DomainName=" & trim(arguments.DomainName) />
<cfloop from="1" to="#arrayLen(arguments.items)#" index="j">
<cfset body &= "&Item." & j & ".ItemName=" & trim(arguments.items[j].ItemName) />
<cfif structKeyExists(arguments.items[j],'attributes')>
<cfloop from="1" to="#arrayLen(arguments.items[j].attributes)#" index="i">
<cfset body &= "&Item." & j & ".Attribute." & i & ".Name=" & trim(arguments.items[j].attributes[i].name) &
"&Item." & j & ".Attribute." & i & ".Value=" & trim(arguments.items[j].attributes[i].value) />
<cfif structKeyExists(arguments.items[j].attributes[i],'replace') && len(trim(arguments.items[j].attributes[i].replace))>
<cfset body &= "&Item." & j & ".Attribute." & i & ".Replace=" & trim(arguments.items[j].attributes[i].replace) />
</cfif>
</cfloop>
</cfif>
</cfloop>
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
<cffunction name="DeleteDomain" access="public" returntype="Struct" hint="he DeleteDomain operation deletes a domain. Any items (and their attributes) in the domain are deleted as well. The DeleteDomain operation might take 10 or more seconds to complete.">
<cfargument name="DomainName" type="string" required="true" hint="The name of the domain to delete.">
<cfset var stResponse = createResponse() />
<cfset var body = "Action=DeleteDomain&DomainName=" & trim(arguments.DomainName) />
<cfset var rawResult = makeRequestFull(
endPoint = variables.endPoint,
awsAccessKeyId = variables.awsAccessKeyId,
secretAccesskey = variables.secretAccesskey,
body=body,
requestMethod = variables.requestMethod,
version = variables.version ) />
<cfif rawResult.statusCode neq 200>
<cfset error = getResultNodes(xmlParse(rawResult.fileContent),'Error')[1] />
<cfset stResponse.success=false />
<cfset stResponse.statusCode=rawResult.statusCode />
<cfset stResponse.error=error.Code.xmlText/>
<cfset stResponse.errorType=error.Type.xmlText/>
<cfset stResponse.errorMessage=error.Message.xmlText/>
</cfif>
<cfset stResponse.requestID = getResultNodes(xmlParse(rawResult.fileContent),'RequestId')[1].xmltext />
<cfreturn stResponse />
</cffunction>
</cfcomponent>