Backend - Free refill QR code
Acceptance Criteria
Sanity - The activation/deactivation of the QR code feature is associated with the service mode toggle. If, at least, one service mode is active, it means that the sub-fields for duration (bottom sheet in Home, recent order) must be mandatory filled. In addition, configurator needs to ensure that the list of eligible refill drinks (items) and store are properly set.
The QR code generation happens upon the order is placed with success or updated with success. No refunded order is considered for QR code generation.
QR code for scheduled orders must be displayed according to the order pick-up time.
The dispenser password is a secret that must be stored in the database. It will allow whitelabel to create a MD5 hash that is converted into the QR code. RBIberia needs to ensure that the configured secret in EMEA whitelabel is in sync with the vending machine password.
Repos that we’ll change
intl-whitelabel-app: https://github.com/rbilabs/intl-whitelabel-app
intl-whitlabel-cms: https://github.com/rbilabs/intl-whitelabel-cms
intl-whitlabel-graphql: https://github.com/rbilabs/intl-whitelabel-graphql
Solution proposal
When the system completes the purchase successfully, it will validate if any of the purchased products provide a drink refill, this validation will occur through information contained in Sanity.
Sanity will return a list of stores and products that provide the drink refill, the whitelabel-app will go through this information from Sanity, validating if it has a product that is compatible, if so, it will send some information to the “GraphQL” backend.
In the backend we will get the information, and we will get the secrets from DynamoDB, these secrets is a key to generate an MD5 and with that we will generate a hash with MD5 encryption, and this hash will be returned to the whitelabel-app to use as QRCode.
Task summary
Intl Whitelabel CMS:
Task 1 - Add new Fields for add Stores and Items
Intl Whitelabel GraphQL:
Task 1 - Create new function GetRefillDrinkQRCode for generate hash
Intl Whitelabel App:
Task 1 - Update GraphQL Query to get new data
Task 2 - Update hook for get new objects of sanity (validate cache)
Task 3 - Validate if purchased products have a refill for this store
Task 4 - Create a new request for backend “intl-whitelabel-graphql” - GetRefillDrinkQRCode (Request GraphQL implementation)
Task 5 - Get and use QRCode of GetRefillDrinkQRCode and Scheduled (Request GraphQL implementation)
Tasks breakdown
Intl Whitelabel CMS
Task 1 - Add new Fields for add Stores and Items
Add this new objects in the document of QRCode refill schemas/features/documents/refill-drinks-qrcode.tsx
In case have any questions about these files, you can to consult this PR: https://github.com/rbilabs/intl-whitelabel-cms/pull/86/files because here was created this files for QRCode Refill.
About List of Stores we can use the object src/schemas/menu/documents/restaurant-group.ts of shared schema, we need just to add the code of restaurants in our code of QRCode.
About the Items List, we can add the same idea of items free, but the component need to have just items, don’t have combo or menu.
In Figma this activity don’t finished yet, but the main idea is it:
DOD-LIKE
Show Restaurant List with validate have one.
Show Items List with validate have one.
Just add items of “item” type
Validate messages and layout with designers
The comportment of these field is similar of the duration, stay occult, after activated one service mode, show these fields and are required.
Fields should have:
List of Stores:
Title: 'Restaurants with QR Code Refill Drink',
Description: 'The list of restaurants that provide the user with the QR Code Refill Drinks'
List of Menu Items
Title: 'Menu items for QR code Refill Drink',
Description: 'The list of items that provide the user with the QR Code for Refill Drinks'
Intl Whitelabel GraphQL
Task 1 - Create new function GetRefillDrinkQRCode for generate hash (Request Whitelabel implementation)
Add secrets in DynamoDB
DynamoDB secrets table: rbi-account-secrets
rbi/<env>/<brand>/<country>/refill-machine
value: {"dispenser_password":"<>" }
Create a new provider into directory src/functions/graphql/providers/ RefillDrinkQRCodeProvider;
Create a request for get secrets of MD5
In this provider, we need to create a hash, this code is an example of how to create the logic for it.
Run
graphql:types
Create a new function for generated hash with MD5, but we need to get the key of cryptography of MD5;
Use the library
crypto
to create a hash with MD5, we have an example in src/functions/graphql/providers/users.tsCreate a new resolver into directory src/functions/graphql/resolvers/;
Create new types, interface, etc;
You can be based in the PR https://github.com/rbilabs/ctg-whitelabel-graphql/pull/1477/files
DOD-LIKE
Create unit test
Call by postman with success
Generate a valid hash code
Intl Whitelabel App
Task 1 - Update GraphQL Query to get new data
Add new objects stores and items in src/queries/sanity/feature-qr-code-refill-drinks.graphql query
DOD-LIKE
Codegen should not be broken and
apollo:generate
command should work without problem after add the new GraphQL filesCall the query in some component and test if all is good with the changes (for example editing Sanity, publishing the document with the new infos and take a look if the query will bring the infos)
Task 2 - Update hook for get new objects of sanity (validate cache)
Update src/hooks/use-free-refill-drinks/use-free-refill-drinks.ts:
Add this new data in cache. → we’ll not implement this for now and created a new task to analyze the performance
DOD-LIKE
Get data with success;
Task 3 - Validate if purchased products have a refill for this store
Validate if the items purchased have a refill drink and if this store gives a refill drink.
When finish the order, the system needs to get information of sanity about items, stores, duration, service modes available to create and display QRCode. So at this moment we need to create a new logic for iterate these items, similar items free.
This new logic can be created in the hook src/hooks/use-feature-qrcode-refill-drinks/use-feature-qrcode-refill-drinks.ts
Update the localStorage destructuring
(freeRefillOrderInfos
) to get the restaurantId and cartEntries (that will come from the Successful order)Create two new methods to validate the restaurant from the order and another to validate if an item from Sanity matchs with an item from the order
DOD-LIKE
Validate if items purchased have can generate a QRCode
have a store;
have an item available;
have a service mode;
Create a unit tests
Task 4 - Create a new request for backend “intl-whitelabel-graphql” - GetRefillDrinkQRCode (Request GraphQL implementation)
We need to create new request for back-end, case the system have an item purchased available for get a refill drink, so we must call the back-end to generate a QRCode.
The new request can call of GetRefillDrinkQRCode
Create a new query in src/queries/rbi/ with parameters storeId, transactionId, transactionDatetime.
And the return must be a hash of the QRCode
These parameters we can get of getOrder response.
Run
apollo:generate
Create a function GetRefillDrinkQRCode in the hook of refill drink and use the new query of GraphQL
DOD-LIKE
create unit test - doesn’t need
receive a hash code with success
Task 5 - Get and use QRCode of GetRefillDrinkQRCode (Request GraphQL implementation) and Scheduled
We need to validate the Order, if fireOrderIn exists, it should not generate a hashCode, but rather start monitoring times, and when the configured time arrives, it should show the QRCode..
If there is no fireOrderIn in the Order, hashQrCode must be generated via backend and saved in local storage.
Implement GetRefillDrinkQRCode function to call backend.
In the
use-free-refill-drinks.ts
should create a new function to save order information in the Local Storage, make to validation in status and fireOrderIn field and create useState to storage hashCodeconst [hashQrCodeRefill, setHashQrCodeRefill] = useState(''); const getHashQrCodeBackEnd = (data: FreeRefillOrderInfosProps) => { if (data?.status) { return 'hash-qr-code'; // GetRefillDrinkQRCode } return ''; }; const handleOrderFreeRefill = useCallback((order: FreeRefillOrderInfosProps) => { if ( order.status === RbiOrderStatus.INSERT_SUCCESSFUL || order.status === RbiOrderStatus.UPDATE_SUCCESSFUL ) { const hashQrCode = !order?.fireOrderIn ? getHashQrCodeBackEnd(order) : ''; const qrCodeInfos = { ...order, hashCode: hashQrCode, }; setHashQrCodeRefill(hashQrCode); LocalStorage.setItem(Keys.FREE_REFILL_ORDER_INFOS, qrCodeInfos); } }, []);
In the
use-order-status.ts
should call handleOrderFreeRefill function, this function is order status control and all orders pass here.useEffect(() => { if (!serverOrder) { return; } handleOrderFreeRefill({ orderId: serverOrder?.rbiOrderId, storeId: serverOrder?.cart?.storeDetails?.storeNumber, fireOrderIn: serverOrder?.fireOrderIn, updatedAt: serverOrder?.updatedAt, serviceMode: serverOrder?.cart?.serviceMode, transactionId: serverOrder?.posOrderId, status: serverOrder?.status, }); }, [handleOrderFreeRefill, serverOrder]);
In the
use-free-refill-drinks.ts
should create a new function to monitor the schedule and show the QRCode according to the settings.const checkHashRefillQrCode = useCallback((): void => { const freeRefillOrderInfos = getOrderInfos(); if (freeRefillOrderInfos?.hashCode) { setHashQrCodeRefill(freeRefillOrderInfos.hashCode); } if (freeRefillOrderInfos?.fireOrderIn && freeRefillOrderInfos?.updatedAt) { const updateAtOrder = new Date(freeRefillOrderInfos.updatedAt).getTime(); const fireOrderShowQrCode = addSeconds( updateAtOrder, freeRefillOrderInfos.fireOrderIn + (fireOrderAhead ?? 0) ).getTime(); const dateNow = Date.now(); const hasQrCodeAvailable = dateNow >= fireOrderShowQrCode; if (hasQrCodeAvailable) { const updateFreeRefillOrderInfos = { ...freeRefillOrderInfos, hashCode: getHashQrCodeBackEnd(freeRefillOrderInfos), }; LocalStorage.setItem(Keys.FREE_REFILL_ORDER_INFOS, updateFreeRefillOrderInfos); setHashQrCodeRefill(updateFreeRefillOrderInfos.hashCode); } } }, [fireOrderAhead, getOrderInfos]); useEffect(() => { checkHashRefillQrCode(); const interval = setInterval(checkHashRefillQrCode, 5000); if (hashQrCodeRefill) { clearInterval(interval); } return () => clearInterval(interval); }, [checkHashRefillQrCode, hashQrCodeRefill]);
In the
bottom-sheet-refill-drinks.tsx
should renderhashQrCodeRefill
field.In the
refill-drinks-qrcode-button.tsx
should renderhashQrCodeRefill
field.
DOD-LIKE
Create unit test
Call hashCode in backend.
Validate fireOrderIn and show QRCode in time correct
FireOrder time is incremented with fireOrderAhead settings in LauchDarkly.
POC: https://github.com/rbilabs/intl-whitelabel-app/pull/2015
Get the response of GetRefillDrinkQRCode and return hash, save this hash in Local Storage of our application for use in QRCode.