Last active
December 27, 2021 04:58
-
-
Save agusrichard/aed1ff55bad4205a2e87bc5168d4fbe7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from botocore.exceptions import ClientError | |
from boto3.resources.base import ServiceResource | |
class RecipesRepository: | |
def __init__(self, db: ServiceResource) -> None: | |
self.__db = db # db resource will be injected when this repository is created in the main.py | |
def get_all(self): | |
table = self.__db.Table('Recipes') # referencing to table Recipes | |
response = table.scan() # scan all data | |
return response.get('Items', []) # return data | |
def get_recipe(self, uid: str): | |
try: | |
table = self.__db.Table('Recipes') # referencing to table Recipes | |
response = table.get_item(Key={'uid': uid}) # get recipe using uid (partition key) | |
return response['Item'] # return single data | |
except ClientError as e: | |
raise ValueError(e.response['Error']['Message']) | |
def create_recipe(self, recipe: dict): | |
table = self.__db.Table('Recipes') # referencing to table Recipes | |
response = table.put_item(Item=recipe) # create recipe | |
return response # return response from dynamodb | |
def update_recipe(self, recipe: dict): | |
table = self.__db.Table('Recipes') # referencing to table Recipes | |
response = table.update_item( # update single item | |
Key={'uid': recipe.get('uid')}, # using partition key specifying which attributes will get updated | |
UpdateExpression=""" | |
set | |
author=:author, | |
description=:description, | |
ingredients=:ingredients, | |
title=:title, | |
steps=:steps | |
""", | |
ExpressionAttributeValues={ # values defined in here will get injected to update expression | |
':author': recipe.get('author'), | |
':description': recipe.get('description'), | |
':ingredients': recipe.get('ingredients'), | |
':title': recipe.get('title'), | |
':steps': recipe.get('steps') | |
}, | |
ReturnValues="UPDATED_NEW" # return the newly updated data point | |
) | |
return response | |
def delete_recipe(self, uid: str): | |
table = self.__db.Table('Recipes') # referencing to table Recipes | |
response = table.delete_item( # delete recipe using uuid | |
Key={'uid': uid} | |
) | |
return response |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment