This repository was archived by the owner on Sep 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdynamodb.go
481 lines (439 loc) · 12.3 KB
/
dynamodb.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
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
// Public Domain (-) 2012-2013 The Go DynamoDB Authors.
// See the Go DynamoDB UNLICENSE file for details.
// Package dynamodb implements a client library for
// interfacing with DynamoDB, Amazon's NoSQL Database
// Service.
//
// To start with, make sure that you have the appropriate
// AWS keys to instantiate an auth object:
//
// auth := dynamodb.Auth("your-access-key", "your-secret-key")
//
// Next, assuming you are connecting directly to Amazon's
// servers, choose one of the predefined endpoints like
// USEast1, EUWest1, etc.
//
// endpoint := dynamodb.USWest2
//
// If you happen to be connecting to a region which hasn't
// been defined yet or want to connect to a DynamoDB Local
// instance for development, define your own custom
// endpoint, e.g.
//
// endpoint := dynamodb.EndPoint("DynamoDB Local", "home", "localhost:8000", false)
//
// You are now ready to Dial the endpoint and instantiate a client:
//
// client := dynamodb.Dial(endpoint, auth, nil)
//
// The third parameter is normally nil to Dial lets you specify a custom
// http.Transport should you need one. This is particularly
// useful in PaaS environments like Google App Engine where
// you might not be able use the standard transport. If you
// specify nil
//
// For example, on a restricted environment like Google App
// Engine, where the standard transport isn't available, you
// can use the transport they expose via the
// appengine/urlfetch package:
//
// transport := &urlfetch.Transport{
// Context: appengine.NewContext(req),
// Deadline: 10 * time.Second,
// }
//
// client := dynamodb.Dial(endpoint, auth, transport)
//
// The heart of the package revolves around the Client. You
// instantiate it by calling Dial with an endpoint and
// authentication details, e.g.
//
//
// import "dynamodb"
//
// auth := dynamodb.Auth("your-access-key", "your-secret-key")
// client := dynamodb.Dial(dynamodb.USWest1, secret, nil)
//
// query := table.Query()
// query.Sort('-').Limit(20)
//
// resp, err := client.Call("CreateTable", dynamodb.Map{
// "TableName": "mytable",
// "ProvisionedThroughput": dynamodb.Map{
// "ReadCapacityUnits": 5,
// "WriteCapacityUnits": 5,
// },
// })
package dynamodb
import (
"bytes"
"crypto/hmac"
"crypto/sha256"
"encoding/hex"
"encoding/json"
"fmt"
"github.com/tav/golly/tlsconf"
"io/ioutil"
"net/http"
"strings"
"time"
)
const (
iso8601 = "20060102T150405Z"
)
type endpoint struct {
name string
region string
host string
tls bool
url string
}
func (e endpoint) String() string {
return fmt.Sprintf("<%s: %s>", e.name, e.host)
}
// EndPoint creates an endpoint struct for use with Dial.
// It's useful when using a local mock DynamoDB server, e.g.
//
// dev := EndPoint("dev", "eu-west-1", "localhost:9091", false)
//
// Otherwise, unless Amazon upgrade their infrastructure,
// the predefined endpoints like USEast1 should suffice.
func EndPoint(name, region, host string, tls bool) endpoint {
var url string
if tls {
url = "https://" + host + "/"
} else {
url = "http://" + host + "/"
}
return endpoint{
name: name,
region: region,
host: host,
tls: tls,
url: url,
}
}
// Current DynamoDB endpoints within Amazon's
// infrastructure.
var (
APNorthEast1 = EndPoint("Tokyo", "ap-northeast-1", "dynamodb.ap-northeast-1.amazonaws.com", true)
APSouthEast1 = EndPoint("Singapore", "ap-southeast-1", "dynamodb.ap-southeast-1.amazonaws.com", true)
APSouthEast2 = EndPoint("Sydney", "ap-southeast-2", "dynamodb.ap-southeast-2.amazonaws.com", true)
EUWest1 = EndPoint("Ireland", "eu-west-1", "dynamodb.eu-west-1.amazonaws.com", true)
SAEast1 = EndPoint("Sao Paulo", "sa-east-1", "dynamodb.sa-east-1.amazonaws.com", true)
USEast1 = EndPoint("N. Virginia", "us-east-1", "dynamodb.us-east-1.amazonaws.com", true)
USWest1 = EndPoint("Oregon", "us-west-1", "dynamodb.us-west-1.amazonaws.com", true)
USWest2 = EndPoint("Northern California", "us-west-2", "dynamodb.us-west-2.amazonaws.com", true)
)
type auth struct {
accessKey string
secretKey []byte
}
func Auth(accessKey, secretKey string) auth {
return auth{
accessKey: accessKey,
secretKey: []byte("AWS4" + secretKey),
}
}
// Error represents all responses to DynamoDB API calls with
// an HTTP status code other than 200.
type Error struct {
Body []byte
StatusCode int
}
// Error satisfies the default error interface and
// automatically tries to parse any JSON response that
// DynamoDB may have sent in order to provide a useful error
// message.
func (e Error) Error() string {
errtype, message := e.Info()
if errtype == "" || message == "" {
return fmt.Sprintf("dynamodb: error with http status code %d", e.StatusCode)
}
return fmt.Sprintf("dynamodb: %s: %s", errtype, message)
}
// Info tries to parse the error type and message from the
// JSON body that DynamoDB may have responded with.
func (e Error) Info() (errtype string, message string) {
if e.Body == nil {
return
}
info := map[string]string{}
if json.Unmarshal(e.Body, &info) != nil {
return
}
errtype = info["__type"]
idx := strings.Index(errtype, "#")
if idx > 0 {
errtype = errtype[idx+1:]
}
return errtype, info["message"]
}
// Item specifies an interface for encoding and decoding a
// struct into the custom JSON format required by DynamoDB.
// The dynamodb-marshal tool, that accompanies this package
// in the cmd directory, is capable of auto-generating
// optimised code to satisfy this interface.
//
// To make use of it, put the structs you want to optimise
// in a file, e.g. model.go
//
// package campaign
//
// type Contribution struct {
// Email string
// On time.Time
// Tags []string
// }
//
// Then run the tool from the command line, e.g.
//
// $ dynamodb-marshal model.go
//
// This will generate a model_marshal.go file which would
// contain implementations for the Encode() and Decode()
// methods that satisfy the Item interface, e.g.
//
// package campaign
//
// func (c *Contribution) Encode(buf *bytes.Buffer) {
// // optimised implementation ...
// }
//
// func (c *Contribution) Decode(data map[string]map[string]interface{}) {
// // optimised implementation ...
// }
//
// You can expect the performance of the optimised version
// to be somewhere between 1.5x to 10x the reflection-based
// default implementation.
type Item interface {
Encode(buf *bytes.Buffer)
Decode(data map[string]map[string]interface{})
}
type Key struct {
}
// Map provides a shortcut for the abstract data type used
// in all DynamoDB API calls.
type Map map[string]interface{}
type Query struct {
table *Table
cursor Key
descending bool
eventually bool
index string
limit int
selector string
}
func (q *Query) Sort(order byte) *Query {
if order == '+' {
q.descending = false
} else if order == '-' {
q.descending = true
}
return q
}
// func (q *Query) EventuallyConsistent() *Query {
// q.eventually = true
// return q
// }
func (q *Query) Index(name string) *Query {
q.index = name
return q
}
func (q *Query) Only(attrs ...string) *Query {
return q
}
func (q *Query) Limit(n int) *Query {
q.limit = n
return q
}
func (q *Query) Run(consistent bool) error {
// q.table.client.RawRequest("Query", payload)
return nil
}
func (q *Query) Select(mechanism string) *Query {
q.selector = mechanism
return q
}
func (q *Query) WithCursor(key Key) *Query {
q.cursor = key
return q
}
type Table struct {
client *Client
name string
}
// Get fetches and populates the item.
func (t *Table) Get(item interface{}, consistent bool) error {
// return c.RawRequest("GetItem", payload)
return nil
}
func (t *Table) Delete(item interface{}) error {
// return c.RawRequest("DeleteItem", payload)
return nil
}
func (t *Table) Put(item interface{}) error {
// return c.RawRequest("PutItem", payload)
return nil
}
func (t *Table) PutIf(key Key) error {
// return c.RawRequest("PutItem", payload)
return nil
}
func (t *Table) Query() *Query {
return &Query{}
}
func (t *Table) Update(key Key) error {
// return c.RawRequest("UpdateItem", payload)
return nil
}
type Client struct {
auth auth
endpoint endpoint
web *http.Client
}
// Call does the heavy-lifting of initiating a DynamoDB API
// call and parsing the JSON response into a map.
//
// It's best to call certain API methods directly using this
// method:
//
// - CreateTable
// - DescribeTable
// - DeleteTable
// - ListTables
// - UpdateTable
//
func (c *Client) Call(method string, params Map) (resp Map, err error) {
var payload []byte
if params == nil {
payload = []byte{'{', '}'}
} else {
payload, err = json.Marshal(params)
if err != nil {
return
}
}
// fmt.Println("PAYLOAD: ", string(payload))
payload, err = c.RawRequest(method, payload)
// fmt.Println("RESP PAYLOAD: ", string(payload))
if err != nil {
return
}
resp = Map{}
err = json.Unmarshal(payload, &resp)
return
}
func (c *Client) Table(name string) *Table {
return &Table{
client: c,
name: name,
}
}
func (c *Client) CreateTable(name string, itemSchema interface{}, readCapacity, writeCapacity int) error {
return nil
}
func (c *Client) DeleteTable(name string) error {
// d := &TableDescription{}
// Map{"TableDescription": d}
return nil
}
func (c *Client) DescribeTable(name string) (table *TableDescription, err error) {
d := &TableDescription{}
// Map{"Table": d}
return d, nil
}
func (c *Client) ListTables(cursor string) (tables []string, nextCursor string, err error) {
return
}
type TableDescription struct {
AttributeDefinitions []struct {
AttributeName string
AttributeType string
}
CreationDateTime int
ItemCount int
KeySchema []struct {
AttributeName string
KeyType string
}
LocalSecondaryIndexes []struct {
IndexName string
IndexSizeBytes int
ItemCount int
KeySchema []struct {
AttributeName string
KeyType string
}
Projection struct {
NonKeyAttributes []string
ProjectionType string
}
}
ProvisionedThroughput struct {
LastDecreaseDateTime int
LastIncreaseDateTime int
NumberOfDecreasesToday int
ReadCapacityUnits int
WriteCapacityUnits int
}
TableName string
TableSizeBytes int
TableStatus string
}
// TODO(tav): Minimise string allocation by writing to a
// buffer of some kind.
func (c *Client) RawRequest(method string, payload []byte) ([]byte, error) {
req, err := http.NewRequest("POST", c.endpoint.url, bytes.NewReader(payload))
if err != nil {
return nil, err
}
hasher := sha256.New()
hasher.Write(payload)
datetime := time.Now().UTC().Format(iso8601)
date := datetime[:8]
method = "DynamoDB_20120810." + method
canonicalReq := "POST\n/\n\ncontent-type:application/x-amz-json-1.0\nhost:" + c.endpoint.host + "\nx-amz-date:" + datetime + "\nx-amz-target:" + method + "\n\ncontent-type;host;x-amz-date;x-amz-target\n" + hex.EncodeToString(hasher.Sum(nil))
hasher.Reset()
hasher.Write([]byte(canonicalReq))
post := "AWS4-HMAC-SHA256\n" + datetime + "\n" + date + "/" + c.endpoint.region + "/dynamodb/aws4_request\n" + hex.EncodeToString(hasher.Sum(nil))
sig := hex.EncodeToString(doHMAC(doHMAC(doHMAC(doHMAC(doHMAC(c.auth.secretKey, date), c.endpoint.region), "dynamodb"), "aws4_request"), post))
credential := "AWS4-HMAC-SHA256 Credential=" + c.auth.accessKey + "/" + date + "/" + c.endpoint.region + "/dynamodb/aws4_request, SignedHeaders=content-type;host;x-amz-date;x-amz-target, Signature=" + sig
req.Header.Set("Authorization", credential)
req.Header.Set("Content-Type", "application/x-amz-json-1.0")
req.Header.Set("Host", c.endpoint.host)
req.Header.Set("X-Amz-Date", datetime)
req.Header.Set("X-Amz-Target", method)
resp, err := c.web.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
if resp.StatusCode != 200 {
return nil, Error{
Body: body,
StatusCode: resp.StatusCode,
}
}
return body, nil
}
func doHMAC(key []byte, data string) []byte {
h := hmac.New(sha256.New, key)
h.Write([]byte(data))
return h.Sum(nil)
}
func Dial(region endpoint, creds auth, transport http.RoundTripper) *Client {
if transport == nil {
transport = &http.Transport{TLSClientConfig: tlsconf.Config}
}
return &Client{
auth: creds,
endpoint: region,
web: &http.Client{Transport: transport},
}
}