-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathDynamoDbController.cs
232 lines (195 loc) · 9.88 KB
/
DynamoDbController.cs
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
using Amazon.DynamoDBv2;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
using System.Web.Http;
using System.Web.OData;
using Linq2DynamoDb.DataContext.Caching;
namespace Linq2DynamoDb.WebApi.OData
{
using DataContext;
/// <summary>
/// Allows to build an Web API OData controller on top of Linq2DynamoDb.DataContext
/// </summary>
/// <typeparam name="TEntity"></typeparam>
[ODataFormatting]
public abstract class DynamoDbController<TEntity> : ODataController where TEntity : class
{
#region ctors
/// <summary>
/// Initializes a new instance of the DynamoDbController class from a pre-configured Linq2DynamoDb.DataContext instance.
/// </summary>
/// <param name="dataContext">The pre-configured instance of DataContext</param>
/// <param name="hashKeyValueFunc">A functor for getting a predefined value for the HashKey field. You can do some user authentication inside this functor and return the resulting userId.</param>
/// <param name="cacheImplementationFactory">A functor, that returns ITableCache implementation instance, which will be used for caching DynamoDB data.</param>
public DynamoDbController(DataContext dataContext, Func<object> hashKeyValueFunc, Func<ITableCache> cacheImplementationFactory)
{
this._dataContext = dataContext;
this._hashKeyValueFunc = hashKeyValueFunc;
this._cacheImplementationFactory = cacheImplementationFactory;
}
/// <summary>
/// Initializes a new instance of the DynamoDbController class from a pre-configured Linq2DynamoDb.DataContext instance.
/// </summary>
/// <param name="dataContext">The pre-configured instance of DataContext</param>
/// <param name="hashKeyValueFunc">A functor for getting a predefined value for the HashKey field. You can do some user authentication inside this functor and return the resulting userId.</param>
public DynamoDbController(DataContext dataContext, Func<object> hashKeyValueFunc)
{
this._dataContext = dataContext;
this._hashKeyValueFunc = hashKeyValueFunc;
}
/// <summary>
/// Initializes a new instance of the DynamoDbController class from a pre-configured Linq2DynamoDb.DataContext instance.
/// </summary>
/// <param name="dataContext">The pre-configured instance of DataContext</param>
public DynamoDbController(DataContext dataContext)
{
this._dataContext = dataContext;
}
/// <summary>
/// Initializes a new instance of the DynamoDbController class.
/// </summary>
/// <param name="client">IAmazonDynamoDB instance to be used to communicate with DynamoDB</param>
/// <param name="tableNamePrefix">A prefix to be added to table names. Allows to switch betweeen different environments.</param>
/// <param name="hashKeyValueFunc">A functor for getting a predefined value for the HashKey field. You can do some user authentication inside this functor and return the resulting userId.</param>
/// <param name="cacheImplementationFactory">A functor, that returns ITableCache implementation instance, which will be used for caching DynamoDB data.</param>
public DynamoDbController(IAmazonDynamoDB client, string tableNamePrefix, Func<object> hashKeyValueFunc, Func<ITableCache> cacheImplementationFactory)
{
this._dataContext = new DataContext(client, tableNamePrefix);
this._hashKeyValueFunc = hashKeyValueFunc;
this._cacheImplementationFactory = cacheImplementationFactory;
}
/// <summary>
/// Initializes a new instance of the DynamoDbController class.
/// </summary>
/// <param name="client">IAmazonDynamoDB instance to be used to communicate with DynamoDB</param>
/// <param name="tableNamePrefix">A prefix to be added to table names. Allows to switch betweeen different environments.</param>
/// <param name="hashKeyValueFunc">A functor for getting a predefined value for the HashKey field. You can do some user authentication inside this functor and return the resulting userId.</param>
public DynamoDbController(IAmazonDynamoDB client, string tableNamePrefix, Func<object> hashKeyValueFunc = null) : this(client, tableNamePrefix, hashKeyValueFunc, null)
{
}
/// <summary>
/// Initializes a new instance of the DynamoDbController class.
/// </summary>
/// <param name="client">IAmazonDynamoDB instance to be used to communicate with DynamoDB</param>
/// <param name="tableNamePrefix">A prefix to be added to table names. Allows to switch betweeen different environments.</param>
/// <param name="cacheImplementationFactory">A functor, that returns ITableCache implementation instance, which will be used for caching DynamoDB data.</param>
public DynamoDbController(IAmazonDynamoDB client, string tableNamePrefix, Func<ITableCache> cacheImplementationFactory) : this(client, tableNamePrefix, null, cacheImplementationFactory)
{
}
/// <summary>
/// Initializes a new instance of the DynamoDbController class.
/// If a table name prefix is specified in config, it will be picked up automatically.
/// </summary>
/// <param name="client">IAmazonDynamoDB instance to be used to communicate with DynamoDB</param>
/// <param name="cacheImplementationFactory">A functor, that returns ITableCache implementation instance, which will be used for caching DynamoDB data.</param>
public DynamoDbController(IAmazonDynamoDB client, Func<ITableCache> cacheImplementationFactory) : this(client)
{
this._cacheImplementationFactory = cacheImplementationFactory;
}
/// <summary>
/// Initializes a new instance of the DynamoDbController class.
/// If a table name prefix is specified in config, it will be picked up automatically.
/// </summary>
/// <param name="client">IAmazonDynamoDB instance to be used to communicate with DynamoDB</param>
/// <param name="hashKeyValueFunc">A functor for getting a predefined value for the HashKey field. You can do some user authentication inside this functor and return the resulting userId.</param>
public DynamoDbController(IAmazonDynamoDB client, Func<object> hashKeyValueFunc = null)
{
this._dataContext = new DataContext(client);
this._hashKeyValueFunc = hashKeyValueFunc;
}
#endregion
#region Public Methods
/// <summary>
/// Implements the 'Retrieve' operation.
/// </summary>
[EnableQuery]
public async Task<IHttpActionResult> Get([FromODataUri] object key)
{
if (key == null)
{
return this.Ok(this.GetTable());
}
var result = await this.GetTable().TryFindAsync(key);
if (result == null)
{
return this.NotFound();
}
var resultAsQueryable = new List<TEntity>() { result }.AsQueryable();
return this.Ok(new SingleResult<TEntity>(resultAsQueryable));
}
/// <summary>
/// Implements the 'Create' operation.
/// </summary>
public async Task<IHttpActionResult> Post(TEntity product)
{
if (!this.ModelState.IsValid)
{
return this.BadRequest(this.ModelState);
}
this.GetTable().InsertOnSubmit(product);
await this._dataContext.SubmitChangesAsync();
return this.Created(product);
}
/// <summary>
/// Implements the 'Update' operation.
/// </summary>
public async Task<IHttpActionResult> Patch([FromODataUri] object key, Delta<TEntity> product)
{
if (!this.ModelState.IsValid)
{
return this.BadRequest(ModelState);
}
var entity = await this.GetTable().TryFindAsync(key);
if (entity == null)
{
return this.NotFound();
}
product.Patch(entity);
await this._dataContext.SubmitChangesAsync();
return this.Updated(entity);
}
/// <summary>
/// Implements the 'Update' operation.
/// </summary>
public async Task<IHttpActionResult> Put([FromODataUri] object key, TEntity update)
{
if (!this.ModelState.IsValid)
{
return this.BadRequest(this.ModelState);
}
this.GetTable().InsertOnSubmit(update);
await this._dataContext.SubmitChangesAsync();
return this.Updated(update);
}
/// <summary>
/// Implements the 'Delete' operation.
/// </summary>
public async Task<IHttpActionResult> Delete([FromODataUri] object key)
{
var entity = await this.GetTable().TryFindAsync(key);
if (entity == null)
{
return this.NotFound();
}
this.GetTable().RemoveOnSubmit(entity);
await this._dataContext.SubmitChangesAsync();
return this.StatusCode(HttpStatusCode.NoContent);
}
#endregion
#region Private Properties
private readonly DataContext _dataContext;
private readonly Func<object> _hashKeyValueFunc;
private readonly Func<ITableCache> _cacheImplementationFactory;
#endregion
#region Private Methods
protected DataTable<TEntity> GetTable()
{
var hashKeyValue = this._hashKeyValueFunc == null ? null : this._hashKeyValueFunc();
return this._dataContext.GetTable<TEntity>(hashKeyValue, this._cacheImplementationFactory);
}
#endregion
}
}