Use at your own risk. There is no promise that this is HIPAA compliant and we are not responsible for any mishandling of your data
This framework is an API to synchronize CareKit data with parse-server using Parse-Swift. The learn more about how to use ParseCareKit check out the API documentation along with the rest of the README.
For the backend, it is suggested to use parse-hipaa which is an out-of-the-box HIPAA compliant Parse/Postgres or Parse/Mongo server that comes with Parse Dashboard. Since parse-hipaa is a pare-server, it can be used for iOS, Android, and web based apps. API's such as GraphQL, REST, and JS can also be enabled in parse-hipaa to enable building apps with other languages. See the Parse SDK documentation for details. The parse-hipaa docker images include the necessary database auditing and logging for HIPAA compliance.
You can also use ParseCareKit with any parse-server setup. If you devide to use your own parse-server, it's strongly recommended to add the following CloudCode to your server's "cloud" folder to ensure the necessary classes and fields are created as well as ensuring uniqueness of pushed entities. In addition, you should follow the directions to setup additional indexes for optimized queries. Note that CareKit data is extremely sensitive and you are responsible for ensuring your parse-server meets HIPAA compliance.
The following CareKit Entities are synchronized with Parse tables/classes:
- OCKPatient <-> Patient
- OCKCarePlan <-> CarePlan
- OCKContact <-> Contact
- OCKTask <-> Task
- OCKHealthKitTask <-> HealthKitTask
- OCKOutcome <-> Outcome
- OCKRevisionRecord <-> RevisionRecord
ParseCareKit enables iOS, watchOS, macOS devices belonging to the same user to be reactively sychronized using ParseLiveQuery without the need of push notifications assuming the LiveQuery server has been configured.
A sample app, CareKitSample-ParseCareKit, connects to the aforementioned parse-hipaa and demonstrates how CareKit data can be easily synched to the Cloud using ParseCareKit.
ParseCareKit comes with a helper method, PCKUtility.configureParse() that easily helps apps connect to your parse-server. To leverage the helper method, copy the ParseCareKit.plist file your "Supporting Files" folder in your Xcode project. Be sure to change ApplicationID
and Server
to the correct values for your server. Simply add the following inside didFinishLaunchingWithOptions
in AppDelegate.swift
:
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
//Pulls from ParseCareKit.plist to connect to server
PCKUtility.configureParse()
//If you need certificate pinning:
PCKUtility.configureParse { (challenge, completionHandler) in
//Return how you want to handle the challenge. See docs for more information.
completionHandler(.performDefaultHandling, nil)
}
- (Most cases) Need to use ParseCareKit for iOS14+, watchOS7+, and/or macOS 13+ and will be using the latest (the minimal required commit is from PR #508) CareKit 2.1+, CareKitUI, and CareKitStore (using
OCKStore
) within your app? You should use the main branch. You can take advantage of all of the capabilities of ParseCareKit. You should useParseRemote()
see below more details. This branch uses the Parse-Swift SDK instead of the Parse-Objc SDK. - Need to use ParseCareKit for iOS13+ and/or watchOS6+ and will be using the latest CareKit, CareKitUI, and CareKitStore (but you would like to use the Parse Objc SDK) within your app? You will need to use Cocoapods and the Parse-Objc SDK branch. You can still use all of the capabilities of ParseCareKit. You should use
ParseSynchronizedStoreManager()
see here for more details. - Need to use ParseCareKit for iOS13+ and will be using CareKit <= 2.0.1, CareKitUI <= 2.0.1, and CareKitStore <= 2.0.1 (using
OCKStore
or conforming toOCKAnyStoreProtocol
) within your app? You should use the carekit_2.0.1 branch. You can still use most of the capabilities of ParseCareKit, but you will be limited to syncing via a "wall clock" instead of "knowledge vectors". You will also have to use the Parse Objc SDK) and Cocoapods. You should useParseSynchronizedStoreManager()
see here for more details.
Note that it is recommended to use Vector Clocks (ParseRemote
) over Wall Clocks (ParseSynchronizedStoreManager
) as the latter can run into more synching issues. If you choose to go the wall clock route, I recommend having your application suited for 1 device per user to reduce potential synching issues. You can learn more about how vector clocks work by looking at vector clocks.
ParseCareKit can be installed via SPM. Open an existing project or create a new Xcode project and navigate to File > Swift Packages > Add Package Dependency
. Enter the url https://github.com/netreconlab/ParseCareKit
and tap Next
. Choose the main branch, and on the next screen, check off the package.
Note: ParseCareKit includes CareKitStore (it's a dependency) from CareKit's main branch, so there's no need to add CareKitStore to your app. If you want the rest of CareKit, you only need to add CareKit and CareKitUI via SPM. Anytime you need ParseCareKit, simply add import ParseCareKit
at the top of the file.
To install via cocoapods, go to the Parse-Objc SDK branch for the readme. The main branch is not compatable with cocoapods as the CareKit framework is not compatible with Cocoapods.
- Fork the project
- Build the project
- In your project Targets, click your corresponding target and then click the
General
heading to the right - Place
ParseCareKit.framework
inFrameworks, Libraries, and Embedded Content
and it should automatically appear inLinked Binary with Libraries
under theBuild Phases
section - Then, simply place
import ParseCareKit
at the top of any file that needs the framework.
If you have CareKit already in your project via SPM or copied, you will need to remove it as ParseCareKit comes with the a compatibile version of CareKit and a conflict of CareKit appearing twice will cause your app to crash
For details on how to setup parse-server, follow the directions here or look at their detailed guide. Note that standard deployment locally on compouter, docker, AWS, Google Cloud, is not HIPAA complaint by default.
ParseCareKit
will set a default ACL on every object saved to your Parse Server with read/write access only for the user who created the data. If you want different level of access by default, you should pass the default ACL you prefer while initializing ParseCareKit
. For example, to make all data created to only be read and written by the user who created it, do the following:
//Set default ACL for all Parse Classes
var newACL = ParseACL()
newACL.publicRead = false
newACL.publicWrite = false
newACL.setReadAccess(user: user, value: true)
newACL.setWriteAccess(user: user, value: true)
do {
let parse = try ParseRemote(uuid: UUID(uuidString: "3B5FD9DA-C278-4582-90DC-101C08E7FC98")!,
auto: false,
subscribeToRemoteUpdates: false,
defaultACL: newACL)
} catch {
print(error.localizedDescription)
}
When giving access to a CareTeam or other entities, special care should be taken when deciding the propper ACL or Role. Feel free to read more about ACLs and Role access in Parse. For details, your setup should look similar to the code here.
Assuming you are already familiar with CareKit (look at their documentation for details). Using ParseCareKit is simple, especially if you are using OCKStore
out-of-the-box. If you are using a custom OCKStore
you will need to subclass and write some additional code to synchronize your care-store with parse-server.
ParseCareKit stays synchronized with the OCKStore
by leveraging OCKRemoteSynchronizable
. I recommend having this as a singleton, as it can handle all syncs from the carestore. An example is below:
/*Use Clock and OCKRemoteSynchronizable to keep data synced.
This works with 1 or many devices per patient.*/
let uuid = UUID(uuidString: "3B5FD9DA-C278-4582-90DC-101C08E7FC98")!
let remoteStoreManager = ParseRemote(uuid: uuid, auto: true)
let dataStore = OCKStore(name: "myDataStore", type: .onDisk, remote: remoteStoreManager)
remoteStoreManager.delegate = self //Conform to this protocol if you are writing custom CloudCode in Parse and want to push syncs
remoteStoreManager.parseRemoteDelegate = self //Conform to this protocol to resolve conflicts
The uuid
being passed to ParseRemote
is used for the Clock. A possibile solution that allows for high flexibity is to have 1 of these per user-type per user. This allows you to have have one ParseUser
that can be a "Doctor" and a "Patient". You should generate a different uuid for this particular ParseUser's Doctor
and PCKPatient
type. You can save all types to ParseUser:
let userTypeUUIDDictionary = [
"doctor": UUID().uuidString,
"patient": UUID().uuidString
]
//Store the possible uuids for each type
guard var user = User.current else {
return
}
user.userTypes = userTypeUUIDDictionary //Note that you need to save the UUID in string form to Parse
user.loggedInType = "doctor"
user.save()
//Start synch with the correct knowlege vector for the particular type of user
let lastLoggedInType = User.current?.loggedInType
let userTypeUUIDString = User.current?.userTypes[lastLoggedInType] as! String
let userTypeUUID = UUID(uuidString: userTypeUUID)!
//Start synching
let remoteStoreManager = ParseRemote(uuid: userTypeUUID, auto: true)
let dataStore = OCKStore(name: "myDataStore", type: .onDisk, remote: remoteStoreManager)
remoteStoreManager.delegate = self //Conform to this protocol if you are writing custom CloudCode in Parse and want to push syncs
remoteStoreManager.parseRemoteDelegate = self //Conform to this protocol to resolve conflicts
Register as a delegate just in case ParseCareKit needs your application to update a CareKit entity. ParseCareKit doesn't have access to your CareKitStor, so your app will have to make the necessary update if ParseCareKit detects a problem and needs to make an update locally. Registering for the delegates also allows you to handle synching conflicts. An example is below:
extension AppDelegate: OCKRemoteSynchronizationDelegate, ParseRemoteDelegate {
func didRequestSynchronization(_ remote: OCKRemoteSynchronizable) {
print("Implement so ParseCareKit can tell your OCKStore to sync to the cloud")
//example
store.synchronize { error in
print(error?.localizedDescription ?? "Successful sync with remote!")
}
}
func remote(_ remote: OCKRemoteSynchronizable, didUpdateProgress progress: Double) {
print("Completed: \(progress)")
}
func chooseConflictResolutionPolicy(_ conflict: OCKMergeConflictDescription, completion: @escaping (OCKMergeConflictResolutionPolicy) -> Void) {
let conflictPolicy = OCKMergeConflictResolutionPolicy.keepDevice
completion(conflictPolicy)
}
func successfullyPushedDataToCloud(){
print("Notified when data is succefully pushed to the cloud")
}
}
There will be times you need to customize entities by adding fields that are different from the standard CareKit entity fields. If the fields you want to add can be converted to strings, it is recommended to take advantage of the userInfo: [String:String]
field of a CareKit entity. To do this, you simply extend the entity you want customize using extension
. For example, below shows how to add fields to OCKPatient<->Patient:
extension Patient: Person {
var primaryCondition String? {
guard let userInfo = userInfo else {
return nil
}
return userInfo["CustomPatientUserInfoPrimaryConditionKey"]
}
mutating func setPrimaryCondition(_ primaryCondition: String?) {
var mutableUserInfo = currentUserInfo()
if let primaryCondition = primaryCondition {
mutableUserInfo[PatientUserInfoKey.primaryCondition.rawValue] = primaryCondition
}else{
mutableUserInfo.removeValue(forKey: PatientUserInfoKey.primaryCondition.rawValue)
}
userInfo = mutableUserInfo
}
}
If you want to make you own types and use them to replace the concrete CareKit ones. You should copy/paste the respective code from ParseCareKit, e.g. PCKPatient
, PCKContact
, PCKTask
, etc. Then you need to pass your custom struct when initializing ParseRemoteSynchronizingManager
. The way to do this is below:
let updatedConcreteClasses: [PCKStoreClass: PCKSynchronizable] = [
.patient: CancerPatient()
]
remoteStoreManager = ParseRemote(uuid: uuid, auto: true, replacePCKStoreClasses: updatedConcreteClasses)
dataStore = OCKStore(name: storeName, type: .onDisk(), remote: remoteStoreManager)
remoteStoreManager.delegate = self
remoteStoreManager.parseRemoteDelegate = self
Of course, you can customize further by implementing your copyCareKit and converToCareKit methods and not call the super methods.
You can also map "custom" Parse
classes to concrete OCKStore
classes. This is useful when you want to have Doctor
's and PCKPatient
's in the same app, but would like to map them both locally to the OCKPatient
table on iOS devices. ParseCareKit makes this simple. Follow the same process as creating CancerPatient
above, but add the kPCKCustomClassKey
key to userInfo
with Doctor.className()
as the value. See below:
struct Doctor: Patient {
public var type:String?
func new(from careKitEntity: OCKEntity)->PCKSynchronizable? {
switch careKitEntity {
case .patient(let entity):
return Doctor(careKitEntity: entity)
default:
os_log("new(with:) The wrong type (%{private}@) of entity was passed", log: .carePlan, type: .error, careKitEntity.entityType.debugDescription)
completion(nil)
}
}
//Add a convienience initializer to to ensure that that the doctor class is always created correctly
init(careKitEntity: OCKAnyPatient {
self.init()
self.new(from: careKitEntity)
self.userInfo = [kPCKCustomClassKey: self.className]
}
copyCareKit(_ patientAny: OCKAnyPatient)->Patient? {
guard let doctor = patientAny as? OCKPatient else{
return nil
}
super.new(from: doctor, clone: clone)
self.type = cancerPatient.userInfo?["CustomDoctorUserInfoTypeKey"]
return seld
}
func convertToCareKit() -> OCKPatient? {
guard var partiallyConvertedDoctor = super.convertToCareKit() else{return nil}
var userInfo: [String:String]!
if partiallyConvertedDoctor.userInfo == nil{
userInfo = [String:String]()
}else{
userInfo = partiallyConvertedDoctor.userInfo!
}
if let type = self.type{
userInfo["CustomDoctorUserInfoTypeKey"] = type
}
partiallyConvertedDoctor?.userInfo = userInfo
return partiallyConvertedPatient
}
}
You should never save changes to ParseCareKit classes directly to Parse as it may cause your data to get out-of-sync. Instead, user the convertToCareKit
methods from each class and use the add
or update
methods from the CareStore. For example, the process below is recommended when creating new items to sync between CareKit and ParseCareKit
//Create doctor using CareKit
let newCareKitDoctor = OCKPatient(id: "drJohnson", givenName: "Jane", familyName: "Johnson")
//Initialize new Parse doctor with the CareKit one
_ = Doctor(careKitEntity: newCareKitDoctor){
doctor in
//Make sure the Doctor was created as Parse doctor
guard let newParseDoctor = doctor as? Doctor else{
return
}
//Make any edits you need to the new doctor
newParseDoctor.type = "Cancer" //This was a custom value added in the Doctor class
newParseDoctor.sex = "Female" //This default from OCKPatient, Doctor has all defaults of it's CareKit counterpart
guard let updatedCareKitDoctor = newParseDoctor.convertToCareKit() else {
completion(nil,nil)
return
}
store.addPatient(updatedCareKitDoctor, callbackQueue: .main){
result in
switch result{
case .success(let doctor):
print("Successfully add the doctor to the CareStore \(updatedCareKitDoctor)")
print("CareKit and ParseCareKit will automatically handle syncing this data to the Parse Server")
case .failure(let error):
print("Error, couldn't save doctor. \(error)")
}
}
}
There are some of helper methods provided in ParseCareKit to query parse in a similar way you would query in CareKit. This is important because PCKPatient
, PCKCarePlan
, PCKContact
, and PCKTask
are versioned entities and PCKOutcome
's are tombstoned. Querying each of the aforementioned classes with a reugular query will return all versions for "versioned" entities or tombstoned and not tombstoned PCKOutcome
s. A description of how versioning works in CareKit can be found here.
//To query the most recent version
let query = Patient.query(for: Date())
query.find(callbackQueue: .main){ results in
switch results {
case .success(let patients):
print(patients)
case .failure(let error):
print(error)
}
}
For PCKOutcome
:
//To query all current outcomes
let query = Outcome.queryNotDeleted()
query.find(callbackQueue: .main){ results in
switch results {
case .success(let outcomes):
print(outcomes)
case .failure(let error):
print(error)
}
}
If you have a custom store, and have created your own entities, you simply need to conform to PCKVersionable
(OCKPatient, OCKCarePlan, OCKTask, OCKContact, OCKOutcome) protocols. In addition you will need to conform to PCKSynchronizable
. You can look through ParseCareKit entities such as PCKCarePlan
(PCKVersionable
) as a reference for building your own.