-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PRMP-1342: Create lambda to handle deleted document references #487
Open
abbas-khan10
wants to merge
3
commits into
main
Choose a base branch
from
PRMP-1342
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
from enum import IntEnum | ||
|
||
|
||
class DocumentRetentionDays(IntEnum): | ||
SOFT_DELETE = 56 | ||
DEATH = 3650 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
from enums.lambda_error import LambdaError | ||
from enums.logging_app_interaction import LoggingAppInteraction | ||
from models.document_reference import DocumentReference | ||
from pydantic.v1 import ValidationError | ||
from services.document_deletion_service import DocumentDeletionService | ||
from utils.audit_logging_setup import LoggingService | ||
from utils.decorators.handle_lambda_exceptions import handle_lambda_exceptions | ||
from utils.decorators.override_error_check import override_error_check | ||
from utils.decorators.set_audit_arg import set_request_context_for_logging | ||
from utils.decorators.validate_dynamo_stream_event import validate_dynamo_stream | ||
from utils.dynamo_utils import parse_dynamo_record | ||
from utils.lambda_exceptions import DocumentDeletionServiceException | ||
from utils.lambda_response import ApiGatewayResponse | ||
from utils.request_context import request_context | ||
|
||
logger = LoggingService(__name__) | ||
|
||
|
||
@set_request_context_for_logging | ||
@override_error_check | ||
@handle_lambda_exceptions | ||
@validate_dynamo_stream | ||
def lambda_handler(event, context): | ||
request_context.app_interaction = LoggingAppInteraction.DELETE_RECORD.value | ||
|
||
logger.info( | ||
"Delete Document Object handler has been triggered by DynamoDb REMOVE event" | ||
) | ||
try: | ||
event_record = event["Records"][0] | ||
|
||
event_type = event_record.get("eventName") | ||
deleted_dynamo_reference = event_record.get("dynamodb").get("OldImage", {}) | ||
|
||
if event_type != "REMOVE" or not deleted_dynamo_reference: | ||
logger.error( | ||
"Failed to extract deleted record from DynamoDb stream", | ||
{"Results": "Failed to delete document"}, | ||
) | ||
raise DocumentDeletionServiceException( | ||
400, LambdaError.DynamoInvalidStreamEvent | ||
) | ||
parsed_dynamo_record = parse_dynamo_record(deleted_dynamo_reference) | ||
document = DocumentReference.model_validate(parsed_dynamo_record) | ||
|
||
deletion_service = DocumentDeletionService() | ||
deletion_service.handle_object_delete(deleted_reference=document) | ||
except (ValueError, ValidationError) as e: | ||
logger.error( | ||
f"Failed to parse Document Reference from deleted record: {str(e)}", | ||
{"Results": "Failed to delete document"}, | ||
) | ||
raise DocumentDeletionServiceException( | ||
400, LambdaError.DynamoInvalidStreamEvent | ||
) | ||
|
||
return ApiGatewayResponse( | ||
200, "Successfully deleted Document Reference object", "GET" | ||
).create_api_gateway_response() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gateway integration set to false in terraform, do we need it for returning gateway responses?