Git Product home page Git Product logo

patient-records's Introduction

Patient Record Access System

Overview

This ICP smart contract allows Patient to manage access to their medical History to doctors and hospitals. It manages doctors and their assignments to hospitals, and patient-doctor interactions. It has functions to update patient history and assign patients to doctors. The error handling is expanded to cover unauthorized access and payload validation issues. The Candid interface is updated to reflect the changes in functionality.

1. Struct Definitions

Doctor

  • Attributes:
    • id, name, password, hospital_id, patient_ids.
  • Represents information about a doctor involved in the blood donation drive.

PatientHistoryUpdate

  • Attributes:
    • doctor_id, patient_id, doctor_password, new_history.
  • Represents a payload structure for updating a patient's medical history.

EditDoctor

  • Attributes:
    • name, doctor_id, hospital_id, doctor_password, hospital_password.
  • Represents a payload structure for editing doctor attributes.

DoctorPayload

  • Attributes:
    • name, hospital_id, password, hospital_password.
  • Represents a payload structure for adding a new doctor.

2. Additional Storage

  • Introduces a new DOCTOR_STORAGE using StableBTreeMap to store doctor-related information.

3. Update Functions

assign_patient_to_doctor

  • Assigns a patient to a doctor and adds the patient to the doctor's hospital.

update_patient_history

  • Updates a patient's medical history by a doctor.

add_doctor

  • Adds a new doctor to the system.

add_doctor_to_hospital

  • Helper function to add a doctor to a hospital.

edit_doctor

  • Edits doctor attributes and assigns the doctor to a hospital.

4. Query Functions

get_doctor_by_id

  • Retrieves a doctor by ID.

get_patient_info

  • Retrieves patient information by patient ID and doctor password.

5. Helper Functions

add_doctor_to_storage

  • Helper function to add a doctor to storage.

add_patient_to_hospital

  • Helper function to add a patient to a hospital.

6. Error Handling

  • Extends the Error enum with new variants (AlreadyInit, Unauthorized).

7. Candid Interface

  • Exports the Candid interface for seamless interaction with the Internet Computer.

ICP

To learn more before you start working with patient_records, see the following documentation available online:

If you want to start working on your project right away, you might want to try the following commands:

cd patient_records/
dfx help
dfx canister --help

Running the project locally

If you want to test your project locally, you can use the following commands:

# Starts the replica, running in the background
dfx start --background

# Deploys your canisters to the replica and generates your candid interface
dfx deploy

Once the job completes, your application will be available at http://localhost:4943?canisterId={asset_canister_id}.

If you have made changes to your backend canister, you can generate a new candid interface with

npm run generate

at any time. This is recommended before starting the frontend development server, and will be run automatically any time you run dfx deploy.

If you are making frontend changes, you can start a development server with

npm start

Which will start a server at http://localhost:8080, proxying API requests to the replica at port 4943.

Note on frontend environment variables

If you are hosting frontend code somewhere without using DFX, you may need to make one of the following adjustments to ensure your project does not fetch the root key in production:

  • setDFX_NETWORK to production if you are using Webpack
  • use your own preferred method to replace process.env.DFX_NETWORK in the autogenerated declarations
    • Setting canisters -> {asset_canister_id} -> declarations -> env_override to a string in dfx.json will replace process.env.DFX_NETWORK with the string in the autogenerated declarations
  • Write your own createActor constructor

patient-records's People

Contributors

collins-ruto avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.