-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhandler.js
More file actions
382 lines (330 loc) · 10.7 KB
/
Copy pathhandler.js
File metadata and controls
382 lines (330 loc) · 10.7 KB
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
const AWS = require('aws-sdk');
const { v4: uuidv4 } = require('uuid');
let options = {};
if (process.env.IS_OFFLINE) {
options = {
region: 'localhost',
endpoint: 'http://localhost:8000',
};
}
const dynamoDb = new AWS.DynamoDB.DocumentClient({
region: 'localhost',
endpoint: 'http://localhost:8000',
accessKeyId: 'fakeMyKeyId',
secretAccessKey: 'fakeSecretAccessKey',
});
module.exports.createOrganization = async (event) => {
try {
const data = JSON.parse(event.body);
if (!data.name || typeof data.name !== 'string') {
return {
statusCode: 400,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Назва організації обов\'язкова' })
};
}
const existingOrgParams = {
TableName: process.env.ORGANIZATIONS_TABLE,
IndexName: 'nameIndex',
KeyConditionExpression: '#name = :name',
ExpressionAttributeNames: {
'#name': 'name'
},
ExpressionAttributeValues: {
':name': data.name
}
};
const existingOrg = await dynamoDb.query(existingOrgParams).promise();
if (existingOrg.Items && existingOrg.Items.length > 0) {
return {
statusCode: 409,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Організація з такою назвою вже існує' })
};
}
const orgId = uuidv4();
const timestamp = new Date().getTime();
const params = {
TableName: process.env.ORGANIZATIONS_TABLE,
Item: {
orgId,
name: data.name,
description: data.description || '',
createdAt: timestamp,
updatedAt: timestamp
}
};
await dynamoDb.put(params).promise();
return {
statusCode: 201,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(params.Item)
};
} catch (error) {
console.error('Помилка створення організації:', error);
return {
statusCode: 500,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Не вдалося створити організацію', error: error.message })
};
}
};
module.exports.updateOrganization = async (event) => {
try {
const data = JSON.parse(event.body);
if (!data.orgId || typeof data.orgId !== 'string') {
return {
statusCode: 400,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'ID організації обов\'язковий' })
};
}
const orgParams = {
TableName: process.env.ORGANIZATIONS_TABLE,
Key: {
orgId: data.orgId
}
};
const org = await dynamoDb.get(orgParams).promise();
if (!org.Item) {
return {
statusCode: 404,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Організацію не знайдено' })
};
}
if (data.name && data.name !== org.Item.name) {
const existingOrgParams = {
TableName: process.env.ORGANIZATIONS_TABLE,
IndexName: 'nameIndex',
KeyConditionExpression: '#name = :name',
ExpressionAttributeNames: {
'#name': 'name'
},
ExpressionAttributeValues: {
':name': data.name
}
};
const existingOrg = await dynamoDb.query(existingOrgParams).promise();
if (existingOrg.Items && existingOrg.Items.length > 0) {
return {
statusCode: 409,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Організація з такою назвою вже існує' })
};
}
}
const timestamp = new Date().getTime();
const updateParams = {
TableName: process.env.ORGANIZATIONS_TABLE,
Key: {
orgId: data.orgId
},
ExpressionAttributeNames: {
'#name': 'name',
'#desc': 'description',
'#updatedAt': 'updatedAt'
},
ExpressionAttributeValues: {
':name': data.name || org.Item.name,
':description': data.description || org.Item.description,
':updatedAt': timestamp
},
UpdateExpression: 'SET #name = :name, #desc = :description, #updatedAt = :updatedAt',
ReturnValues: 'ALL_NEW'
};
const result = await dynamoDb.update(updateParams).promise();
return {
statusCode: 200,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(result.Attributes)
};
} catch (error) {
console.error('Помилка оновлення організації:', error);
return {
statusCode: 500,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Не вдалося оновити організацію', error: error.message })
};
}
};
module.exports.createUser = async (event) => {
try {
const data = JSON.parse(event.body);
const orgId = event.pathParameters.orgId;
if (!data.name || typeof data.name !== 'string') {
return {
statusCode: 400,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Ім\'я користувача обов\'язкове' })
};
}
if (!data.email || typeof data.email !== 'string') {
return {
statusCode: 400,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Email користувача обов\'язковий' })
};
}
const orgParams = {
TableName: process.env.ORGANIZATIONS_TABLE,
Key: {
orgId
}
};
const org = await dynamoDb.get(orgParams).promise();
if (!org.Item) {
return {
statusCode: 404,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Організацію не знайдено' })
};
}
const existingUserParams = {
TableName: process.env.USERS_TABLE,
IndexName: 'emailIndex',
KeyConditionExpression: '#email = :email',
ExpressionAttributeNames: {
'#email': 'email'
},
ExpressionAttributeValues: {
':email': data.email
}
};
const existingUser = await dynamoDb.query(existingUserParams).promise();
if (existingUser.Items && existingUser.Items.length > 0) {
return {
statusCode: 409,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Користувач з таким email вже існує' })
};
}
const userId = uuidv4();
const timestamp = new Date().getTime();
const params = {
TableName: process.env.USERS_TABLE,
Item: {
userId,
orgId,
name: data.name,
email: data.email,
createdAt: timestamp,
updatedAt: timestamp
}
};
await dynamoDb.put(params).promise();
return {
statusCode: 201,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(params.Item)
};
} catch (error) {
console.error('Помилка створення користувача:', error);
return {
statusCode: 500,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Не вдалося створити користувача', error: error.message })
};
}
};
module.exports.updateUser = async (event) => {
try {
const data = JSON.parse(event.body);
const orgId = event.pathParameters.orgId;
if (!data.userId || typeof data.userId !== 'string') {
return {
statusCode: 400,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'ID користувача обов\'язковий' })
};
}
const orgParams = {
TableName: process.env.ORGANIZATIONS_TABLE,
Key: {
orgId
}
};
const org = await dynamoDb.get(orgParams).promise();
if (!org.Item) {
return {
statusCode: 404,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Організацію не знайдено' })
};
}
const userParams = {
TableName: process.env.USERS_TABLE,
Key: {
userId: data.userId
}
};
const user = await dynamoDb.get(userParams).promise();
if (!user.Item) {
return {
statusCode: 404,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Користувача не знайдено' })
};
}
if (user.Item.orgId !== orgId) {
return {
statusCode: 403,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Користувач не належить до вказаної організації' })
};
}
if (data.email && data.email !== user.Item.email) {
const existingUserParams = {
TableName: process.env.USERS_TABLE,
IndexName: 'emailIndex',
KeyConditionExpression: '#email = :email',
ExpressionAttributeNames: {
'#email': 'email'
},
ExpressionAttributeValues: {
':email': data.email
}
};
const existingUser = await dynamoDb.query(existingUserParams).promise();
if (existingUser.Items && existingUser.Items.length > 0) {
return {
statusCode: 409,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Користувач з таким email вже існує' })
};
}
}
const timestamp = new Date().getTime();
const updateParams = {
TableName: process.env.USERS_TABLE,
Key: {
userId: data.userId
},
ExpressionAttributeNames: {
'#name': 'name',
'#email': 'email',
'#updatedAt': 'updatedAt'
},
ExpressionAttributeValues: {
':name': data.name || user.Item.name,
':email': data.email || user.Item.email,
':updatedAt': timestamp
},
UpdateExpression: 'SET #name = :name, #email = :email, #updatedAt = :updatedAt',
ReturnValues: 'ALL_NEW'
};
const result = await dynamoDb.update(updateParams).promise();
return {
statusCode: 200,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(result.Attributes)
};
} catch (error) {
console.error('Помилка оновлення користувача:', error);
return {
statusCode: 500,
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ message: 'Не вдалося оновити користувача', error: error.message })
};
}
};