Receiving the rating for a doctor with feedback (Node.js)

In this use case, the user rates the doctor who provided the healthcare service. This rating is usually between 1 to 5. Sometimes the user may be asked to provide feedback along with the rating.

Rating

Code snippets

BPP receives protocol rating

/*
Example Request JSON:
{
    "context": {
        "domain": "nic2004:85121",
        "country": "IND",
        "city": "std:080",
        "action": "rating",
        "core_version": "0.9.2",
        "bap_id": "https://mock_bap.com/",
        "bap_uri": "https://mock_bap.com/beckn/",
        "transaction_id": "1239890342",
        "message_id": "123793824",
        "timestamp": "2021-03-23T10:00:40.065Z"
    },
    "message": {
        "id": "dr_veena_slot_1",
        "value": 5
    }
}
*/
    // Auth middleware authenticates the digital signature of the incoming request
    router.post('/healthcare_consultation/rating', auth, rating);

    function rating({ headers, body }, res) {
        try {
            const message = _.get(body, "message");
            const context = _.get(body, "context");
            if (!context) {
                return res.status(400).send(httpResponse("NACK", "Missing Context"));
            }
            if (!message) {
                return res.status(400).send(httpResponse("NACK", "Missing Message"));
            }
            // ... Returns the ack immediately and continue the processing after validation
            res.status(200).send(httpResponse("ACK"));
            processRating(headers, body)
        } catch (error) {
            res.status(500).send(httpResponse("NACK", error));
        }
    };

BPP processes the rating

    function processRating(requestHeaders, ratingRequestBody) {
        // Execute business logic here
        let ratingResponse = {}
        generateResponse(requestHeaders, ratingResponse)
    }

BPP generates response

    async function generateResponse(requestHeaders, rawResponse){
/*
Example Request JSON :
{
    "context": {
        "domain": "nic2004:85121",
        "country": "IND",
        "city": "std:080",
        "action": "on_rating",
        "core_version": "0.9.2",
        "bap_id": "https://mock_bap.com/",
        "bap_uri": "https://mock_bap.com/beckn/",
        "transaction_id": "1239890342",
        "message_id": "123793824",
        "timestamp": "2021-03-23T10:00:40.065Z"
    },
    "message": {
        "feedback": {
            "id": "rating_1",
            "descriptor": "https://feedback.bpp.com/provider/good-health-clinic/2839/veena",
            "parent_id": "dr_veena"
        }
    }
}
*/
        let onRatingResponseBody = {

        }
        //call protocol on_rating
        await callOnRating(requestHeaders, onRatingResponseBody);
    }

BPP calls protocol on_rating

    async function callOnRating(requestHeaders, onRatingResponseBody) {
        // Take the subscriber Id from the header and calls the registry to get the url. If already cached it need not to call again
        const uri = await lookup(requestHeaders);
        // Construct Header
        const headers = constructAuthHeader(); // Auth Header with digital Signature
        return axios({ url: `${uri}/healthcare_consultation/on_rating`, method: "POST", headers, data: onRatingResponseBody });
    }