コード例 #1
0
def send_check_in_text(appointment):
    appointment_id = appointment["appointment_id"]
    print(f"Creating token for {appointment_id}")
    token_id = patient_auth.create_link_token(appointment)
    print("Fetching patient information.")
    patient = dynamo.get_patient(appointment["clinic_id"],
                                 appointment["patient_id"])
    print("Sending text message.")
    twilio.notify_for_appointment(patient, token_id)
    print("Setting new appointment reminder status.")
    appointment["reminder_status"] = "CHECK_IN_REMINDER_SENT"
    dynamo.put_appointment(appointment)
コード例 #2
0
def dispatch_telehealth_handler(event, context):
    appointment_id = event['appointment_id']
    clinic_id = event['clinic_id']
    appointment = dynamo.get_appointment(clinic_id, appointment_id)
    patient = dynamo.get_patient(clinic_id, appointment["patient_id"])
    practitioner = dynamo.get_practitioner(clinic_id,
                                           appointment["practitioner_id"])
    twilio.notify_for_telehealth(patient, practitioner)
    appointment["status"] = "TELEHEALTH"
    appointment.pop("waitlist_priority", None)
    dynamo.put_appointment(appointment)
    return True
コード例 #3
0
def submit_form_handler(event, context):
    headers = {k.lower(): v for k, v in event["headers"].items()}
    jwt_token = headers["x-auth-token"].split(" ")[-1]
    decoded_token = patient_auth.get_token_verify_id(jwt_token)
    appointment_id = decoded_token["appointment_id"]
    clinic_id = decoded_token["clinic_id"]
    body = json.loads(event["body"])
    form = json.loads(body["form"])
    appointment = dynamo.get_appointment(clinic_id, appointment_id)
    clinic_id = appointment["clinic_id"]
    form_id = str(uuid.uuid4())
    s3_client.put_object(Bucket=f"medfoyer-{stage}-forms",
                         Key=f"{clinic_id}/{form_id}",
                         Body=json.dumps(form).encode("UTF-8"))
    if not appointment:
        return {
            "statusCode": 404,
            "body": json.dumps("Appointment not found.", 404)
        }
    covid_flag = "NORMAL"
    priority = 0
    for question in form:
        flags = question.get("flags", [])
        for flag in flags:
            if question.get(
                    "value", None
            ) in flag["flaggable_answers"] and priority < flag["priority"]:
                priority = flag["priority"]
                covid_flag = flag["state"]

    appointment["covid_flag"] = covid_flag
    if "submitted_form_metadata" not in appointment:
        appointment["submitted_form_metadata"] = []
    appointment["submitted_form_metadata"].append({
        "form_id": form_id,
        "form_type_id": "COVID",
        "form_type_version": "1"
    })
    appointment["status"] = "CHECKED_IN"
    dynamo.put_appointment(appointment)
    return {
        "statusCode": 200,
        "body": json.dumps({
            "status": "CHECKED_IN",
            "covid_flag": covid_flag
        }),
        "headers": {
            "Access-Control-Allow-Headers": "Content-Type, X-Auth-Token",
            "Access-Control-Allow-Origin": "*",
            "Access-Control-Allow-Credentials": "true",
        }
    }
コード例 #4
0
def summon_patient_handler(event, context):
    appointment_id = event['appointment_id']
    clinic_id = event["clinic_id"]
    appointment = dynamo.get_appointment(clinic_id, appointment_id)
    if not appointment:
        return ("Appointment not found.", 404)
    if "special_instructions" in event:
        appointment["special_instructions"] = event["special_instructions"]
    appointment["status"] = "SUMMONED"
    appointment.pop("waitlist_priority", None)
    patient = dynamo.get_patient(clinic_id, appointment["patient_id"])
    twilio.notify_for_summon(patient)
    dynamo.put_appointment(appointment)
    return appointment
コード例 #5
0
def check_in_handler(event, context):
    jwt_token = event["headers"]["x-auth-token"].split(" ")[-1]
    print(jwt_token)
    decoded_token = patient_auth.get_token_verify_id(jwt_token)
    appointment_id = decoded_token["appointment_id"]
    clinic_id = decoded_token["clinic_id"]
    body = json.loads(event["body"])
    check_in_latitude = body["latitude"]
    check_in_longitude = body["longitude"]
    patient_location = (check_in_latitude, check_in_longitude)
    appointment = dynamo.get_appointment(clinic_id, appointment_id)
    clinic_location = dynamo.get_clinic_location(
        appointment["clinic_id"], appointment["clinic_location_id"])
    dr_location = (clinic_location["latitude"], clinic_location["longitude"])
    if not appointment:
        raise RuntimeError("Appointment not found.")
    dist = distance.distance(patient_location, dr_location).km
    if dist > 1:
        raise RuntimeError("Distance of " + str(dist) +
                           " is greater than 1 km, check in not possible.")
    appointment["status"] = "FILLING_FORMS"
    appointment["check_in_latitude"] = Decimal(str(check_in_latitude))
    appointment["check_in_longitude"] = Decimal(str(check_in_longitude))
    appointment["check_in_time"] = int(time.time() * 1000)
    appointment["waitlist_priority"] = appointment["check_in_time"]
    # TODO String sanitzation
    # TODO Synchronization for multiple writes
    dynamo.put_appointment(appointment)
    return {
        "statusCode": 200,
        "body": json.dumps({"status": "FILLING_FORMS"}),
        "headers": {
            "Access-Control-Allow-Headers": "Content-Type, X-Auth-Token",
            "Access-Control-Allow-Origin": "*",
            "Access-Control-Allow-Credentials": "true",
        }
    }