Skip to content

Commit

Permalink
feat: updatesyncimgs (#350)
Browse files Browse the repository at this point in the history
* chore: fix sync imgs

* chore: fix sync imgs2

* chore: fix sync imgs3

* chore: fix sync imgs5

* fix: syncimgsneo

* fix: syncimgsneo2

* fix: syncimgsneo3

* fix: syncimgsneo4
  • Loading branch information
LIEN-YUHSIANG authored Oct 12, 2023
1 parent d9a6262 commit 03b5fad
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/constructs/persistence/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class DynamoDatabase extends Construct {

this.tables[Collection.ADS] = new dynamodb.Table(
this,
'dynamodb-ads-table',
'dynamodb-abs-table',
{
partitionKey: { name: 'board_id', type: dynamodb.AttributeType.STRING },
sortKey: { name: 'ads_id', type: dynamodb.AttributeType.STRING },
Expand Down
10 changes: 5 additions & 5 deletions src/lambda/sync-image/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ def post_imgskey(key):
dt_now = datetime.now().strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + 'Z'

# Creaet board_id, ads_id from the event payload we got
board_id, ads_id = key.split('/')

board_id, ad_id = key.split('/')
# Create new item in the dynamoDB
item = {
'board_id': board_id,
'ads_id': ads_id,
'ad_id': ad_id,
'timestamp': dt_now
}

Expand All @@ -34,7 +34,7 @@ def handler(event, context):
# Get event payload and get imgs information
key = event['Records'][0]['s3']['object']['key']
print(key) # Try out the code
board_id, ads_id = key.split('/')
print(board_id, ads_id)
board_id, ad_id = key.split('/')
print(board_id, ad_id)

return post_imgskey(key)

0 comments on commit 03b5fad

Please sign in to comment.