-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathincrement_serving_counter.py
78 lines (66 loc) · 2.62 KB
/
increment_serving_counter.py
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
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
"""
This module is the increment_serving_counter API handler.
As the name implies, it increments the waiting room's serving counter by the given increment_by value.
Authorization is required to invoke this API.
"""
import redis
import os
import json
import boto3
from time import time
from botocore import config
from counters import SERVING_COUNTER
from vwr.common.sanitize import deep_clean
# connection info and other globals
REDIS_HOST = os.environ["REDIS_HOST"]
REDIS_PORT = os.environ["REDIS_PORT"]
EVENT_ID = os.environ["EVENT_ID"]
SECRET_NAME_PREFIX = os.environ["STACK_NAME"]
SOLUTION_ID = os.environ["SOLUTION_ID"]
SERVING_COUNTER_ISSUEDAT_TABLE = os.environ["SERVING_COUNTER_ISSUEDAT_TABLE"]
ENABLE_QUEUE_POSITION_EXPIRY = os.environ["ENABLE_QUEUE_POSITION_EXPIRY"]
boto_session = boto3.session.Session()
region = boto_session.region_name
user_agent_extra = {"user_agent_extra": SOLUTION_ID}
user_config = config.Config(**user_agent_extra)
secrets_client = boto3.client('secretsmanager', config=user_config, endpoint_url=f'https://secretsmanager.{region}.amazonaws.com')
response = secrets_client.get_secret_value(SecretId=f"{SECRET_NAME_PREFIX}/redis-auth")
redis_auth = response.get("SecretString")
rc = redis.Redis(host=REDIS_HOST, port=REDIS_PORT, ssl=True, decode_responses=True, password=redis_auth)
ddb_resource = boto3.resource('dynamodb', endpoint_url=f'https://dynamodb.{region}.amazonaws.com', config=user_config)
ddb_table = ddb_resource.Table(SERVING_COUNTER_ISSUEDAT_TABLE)
def lambda_handler(event, _):
"""
This function is the entry handler for Lambda.
"""
headers = {
'Content-Type': 'application/json',
'Access-Control-Allow-Origin': '*'
}
body = json.loads(event['body'])
increment_by = body['increment_by']
client_event_id = deep_clean(body['event_id'])
if client_event_id != EVENT_ID:
return {
"statusCode": 400,
"headers": headers,
"body": json.dumps({"error": "Invalid event ID"})
}
cur_serving = rc.incrby(SERVING_COUNTER, increment_by)
if ENABLE_QUEUE_POSITION_EXPIRY == 'true':
item = {
'event_id': EVENT_ID,
'serving_counter': int(cur_serving),
'issue_time': int(time()),
'queue_positions_served': 0
}
ddb_table.put_item(Item=item)
print(f'Item: {item}')
print(f"cur_serving: {cur_serving}")
return {
"statusCode": 200,
"headers": headers,
"body": json.dumps({"serving_num": cur_serving})
}