def get(self, _id=None, doc_spec_id=None): if DoctorModel.find_by_id(_id) is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) if doc_spec_id: doctor_speciality = DoctorSpecialityModel.find_by_id(doc_spec_id) if doctor_speciality: return BaseResponse.ok_response('Successful.', doctor_speciality.json(only_spec=False)) return BaseResponse.bad_request_response('Doctor speciality does not exists.', {}) else: doctor = DoctorModel.find_by_id(_id) doctor_specialities = list(map(lambda x: x.json(only_spec=True), doctor.doctorSpecialities)) return BaseResponse.ok_response('Successful.', doctor_specialities)
def delete(self, patient_id=None, doctor_id=None, _id=None): try: if PatientModel.find_by_id(patient_id) is None: return BaseResponse.bad_request_response( 'Patient does not exists.', {}) elif DoctorModel.find_by_id(doctor_id) is None: return BaseResponse.bad_request_response( 'Doctor does not exists.', {}) prescription = PrescriptionModel.find_by_id(_id) if prescription: prescription.status = 'INA' prescription.finishedAt = datetime.now().strftime( '%Y-%m-%d %H:%M:%S') prescription.save_to_db() return BaseResponse.ok_response( 'Prescription deleted successfully.', {}) else: return BaseResponse.not_acceptable_response( 'Prescription does not exists.', {}) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def put(self, doctor_id=None, patient_id=None, _id=None): try: data = PrescriptionDoctor.parser.parse_args() if DoctorModel.find_by_id(doctor_id) is None: return BaseResponse.bad_request_response( 'Doctor does not exists.', {}) elif PatientModel.find_by_id(patient_id) is None: return BaseResponse.bad_request_response( 'Patient does not exists.', {}) prescription = PrescriptionModel.find_by_id(_id) if prescription: prescription.frequency = data['frequency'] if (data['frequency'] is not None) \ else prescription.frequency prescription.quantity = data['quantity'] if ( data['quantity'] is not None) else prescription.quantity prescription.durationInDays = data['durationInDays'] if (data['durationInDays'] is not None) \ else prescription.durationInDays prescription.description = data['description'] if (data['description'] is not None) \ else prescription.description prescription.finishedAt = data['finishedAt'] if (data['finishedAt'] is not None) \ else prescription.finishedAt prescription.save_to_db() return BaseResponse.created_response( 'Prescription updated successfully.', prescription.json(role_id=1)) else: return BaseResponse.not_acceptable_response( 'Prescription does not exists.', {}) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def put(self, _id=None, doc_spec_id=None): try: data = DoctorSpeciality.parser.parse_args() if DoctorModel.find_by_id(_id) is None: return BaseResponse.bad_request_response( 'Doctor does not exists.', {}) doctor_speciality = DoctorSpecialityModel.find_by_id(doc_spec_id) if doctor_speciality: doctor_speciality.doctorId = data['doctorId'] if (data['doctorId'] is not None) \ else doctor_speciality.doctorId doctor_speciality.medicalSpecialityId = data['medicalSpecialityId'] \ if (data['medicalSpecialityId'] is not None) else doctor_speciality.medicalSpecialityId doctor_speciality.save_to_db() return BaseResponse.created_response( 'Doctor speciality updated successfully.', doctor_speciality.json(only_spec=False)) else: return BaseResponse.not_acceptable_response( 'Doctor speciality does not exists.', {}) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def put(self, _id=None): try: data = Doctor.parser.parse_args() if _id: doctor = DoctorModel.find_by_id(_id) if doctor: doctor.userId = data['userId'] if ( data['userId'] is not None) else doctor.userId doctor.planId = data['planId'] if ( data['planId'] is not None) else doctor.planId doctor.addressId = data['addressId'] if ( data['addressId'] is not None) else doctor.addressId doctor.doctorIdentification = data['doctorIdentification'] if \ (data['doctorIdentification'] is not None) else doctor.doctorIdentification doctor.updatedOn = datetime.now().strftime( '%Y-%m-%d %H:%M:%S') doctor.save_to_db() return BaseResponse.ok_response( 'User updated successfully.', doctor.json()) else: return BaseResponse.not_acceptable_response( 'Doctor does not exists.', {}) else: return BaseResponse.bad_request_response( 'Doctor id is not given.', {}) except Exception as e: return BaseResponse.server_error_response(str(e))
def post(self, doctor_id=None, patient_id=None): try: data = PrescriptionDoctor.parser.parse_args() if DoctorModel.find_by_id(doctor_id) is None: return BaseResponse.bad_request_response( 'Doctor does not exists.', {}) elif PatientModel.find_by_id(patient_id) is None: return BaseResponse.bad_request_response( 'Patient does not exists.', {}) prescription = PrescriptionModel( doctor_id=doctor_id, patient_id=patient_id, prescription_type_id=data['prescriptionTypeId'], frequency=data['frequency'], quantity=data['quantity'], duration_in_days=data['durationInDays'], description=data['description'], created_at=None, started_at=data['startedAt'], finished_at=None, status=None) prescription.save_to_db() return BaseResponse.created_response( 'Prescription created successfully.', prescription.json(role_id=1)) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def put(self, doctor_id=None, _id=None): try: data = MembershipDoctor.parser.parse_args() if DoctorModel.find_by_id(doctor_id) is None: return BaseResponse.bad_request_response( 'Doctor does not exists.', {}) membership = MembershipModel.find_by_id(_id) if membership: membership.expiresAt = data['expiresAt'] if ( data['expiresAt'] is not None) else membership.expiresAt membership.updatedOn = datetime.now().strftime( '%Y-%m-%d %H:%M:%S') membership.save_to_db() return BaseResponse.created_response( 'Membership updated successfully.', membership.json(role_id=1)) else: return BaseResponse.not_acceptable_response( 'Membership does not exists.', {}) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def get(self, _id=None): if _id: doctor = DoctorModel.find_by_id(_id) if doctor: return BaseResponse.ok_response('Successful.', doctor.json()) return BaseResponse.bad_request_response('Doctor does not exists.', {}) else: doctors = list(map(lambda x: x.json(), DoctorModel.find_all())) return BaseResponse.ok_response('Successful.', doctors)
def get(self, _id=None, appointment_id=None): doctor = DoctorModel.find_by_id(_id) if doctor is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) if appointment_id: appointment = AppointmentModel.find_by_id(appointment_id) if appointment: return BaseResponse.ok_response('Successful.', appointment.json(role_id=1)) return BaseResponse.bad_request_response('Appointment does not exists.', {}) else: appointments = list(map(lambda x: x.json(role_id=1), doctor.appointments)) return BaseResponse.ok_response('Successful.', appointments)
def delete(self, _id=None, doc_spec_id=None): try: if DoctorModel.find_by_id(_id) is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) doctor_speciality = DoctorSpecialityModel.find_by_id(doc_spec_id) if doctor_speciality: doctor_speciality.delete_from_db() return BaseResponse.ok_response('Doctor speciality deleted successfully.', {}) else: return BaseResponse.not_acceptable_response('Doctor speciality does not exists.', {}) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def post(self, _id=None): try: data = DoctorSpeciality.parser.parse_args() if DoctorModel.find_by_id(_id) is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) elif DoctorSpecialityModel.verify_doctor_speciality(_id, data['medicalSpecialityId']): return BaseResponse.bad_request_response('This doctor already have this specialities.', {}) doctor_speciality = DoctorSpecialityModel(doctor_id=_id, medical_speciality_id=data['medicalSpecialityId']) doctor_speciality.save_to_db() return BaseResponse.created_response('Doctor speciality created successfully.', doctor_speciality.json(only_spec=False)) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def get(self, doctor_id=None, _id=None): doctor = DoctorModel.find_by_id(doctor_id) if doctor is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) if _id: membership = MembershipModel.find_by_patient_id(_id) if membership: return BaseResponse.ok_response('Successful.', membership.json(role_id=1)) return BaseResponse.bad_request_response( 'Membership does not exists.', {}) else: memberships = list( map(lambda x: x.json(role_id=1), doctor.memberships)) return BaseResponse.ok_response('Successful.', memberships)
def delete(self, _id=None, appointment_id=None): try: if DoctorModel.find_by_id(_id) is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) appointment = AppointmentModel.find_by_id(appointment_id) if appointment: appointment.status = 'INA' appointment.updatedOn = datetime.now().strftime('%Y-%m-%d %H:%M:%S') appointment.canceledAt = datetime.now().strftime('%Y-%m-%d %H:%M:%S') appointment.save_to_db() return BaseResponse.ok_response('Appointment deleted successfully.', {}) else: return BaseResponse.not_acceptable_response('Appointment does not exists.', {}) except Exception as e: return BaseResponse.server_error_response(str(e))
def post(self, _id=None): try: data = AppointmentDoctor.parser.parse_args() if DoctorModel.find_by_id(_id) is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) elif AppointmentModel.find_by_appointment_date(data['appointmentDate']): return BaseResponse.bad_request_response('An appointment is already scheduled in that date.', {}) appointment = AppointmentModel(doctor_id=_id, patient_id=data['patientId'], appointment_date=data['appointmentDate'], reason=data['reason'], created_at=None, canceled_at=data['canceledAt'], updated_on=None, status=None) appointment.save_to_db() return BaseResponse.created_response('Appointment created successfully.', appointment.json(role_id=1)) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def delete(self, _id=None): try: if _id: doctor = DoctorModel.find_by_id(_id) if doctor: doctor.status = 'INA' doctor.updatedOn = datetime.now().strftime( '%Y-%m-%d %H:%M:%S') doctor.save_to_db() return BaseResponse.ok_response( 'User deleted successfully.', doctor.json()) else: return BaseResponse.not_acceptable_response( 'Doctor does not exists.', {}) else: return BaseResponse.bad_request_response( 'Doctor id is not given.', {}) except Exception as e: return BaseResponse.server_error_response(str(e))
def delete(self, doctor_id=None, _id=None): try: if DoctorModel.find_by_id(doctor_id) is None: return BaseResponse.bad_request_response( 'Doctor does not exists.', {}) membership = MembershipModel.find_by_id(_id) if membership: membership.status = 'INA' membership.updatedOn = datetime.now().strftime( '%Y-%m-%d %H:%M:%S') membership.save_to_db() return BaseResponse.ok_response( 'Membership deleted successfully.', {}) else: return BaseResponse.not_acceptable_response( 'Membership does not exists.', {}) except Exception as e: return BaseResponse.server_error_response(unicode(e))
def put(self, _id=None, appointment_id=None): try: data = AppointmentDoctor.parser.parse_args() if DoctorModel.find_by_id(_id) is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) appointment = AppointmentModel.find_by_id(appointment_id) if appointment: appointment.appointmentDate = data['appointmentDate'] if (data['appointmentDate'] is not None) \ else appointment.appointmentDate appointment.reason = data['reason'] if (data['reason'] is not None) else appointment.reason appointment.canceledAt = data['canceledAt'] if (data['canceledAt'] is not None) \ else appointment.canceledAt appointment.updatedOn = datetime.now().strftime('%Y-%m-%d %H:%M:%S') appointment.save_to_db() return BaseResponse.created_response('Appointment updated successfully.', appointment.json(role_id=1)) else: return BaseResponse.not_acceptable_response('Appointment does not exists.', {}) except Exception as e: return BaseResponse.server_error_response(str(e))
def get(self, doctor_id=None, patient_id=None, _id=None): if DoctorModel.find_by_id(doctor_id) is None: return BaseResponse.bad_request_response('Doctor does not exists.', {}) elif PatientModel.find_by_id(patient_id) is None: return BaseResponse.bad_request_response( 'Patient does not exists.', {}) if _id: prescription = PrescriptionModel.find_by_id(_id) if prescription: return BaseResponse.ok_response('Successful.', prescription.json(role_id=1)) return BaseResponse.bad_request_response( 'Prescription does not exists.', {}) else: prescriptions = list( map( lambda x: x.json(role_id=1), PrescriptionModel.find_by_doctor_and_patient_id( doctor_id, patient_id))) return BaseResponse.ok_response('Successful.', prescriptions)
def post(self, doctor_id=None): try: data = MembershipDoctor.parser.parse_args() supposed_membership = MembershipModel.find_by_doctor_id(doctor_id) if DoctorModel.find_by_id(doctor_id) is None: return BaseResponse.bad_request_response( 'Doctor does not exists.', {}) elif supposed_membership.patientId == data['patientId']: if supposed_membership.status == 'INA': supposed_membership.status = 'ACT' supposed_membership.save_to_db() return BaseResponse.ok_response( 'Membership activated.', supposed_membership.json(role_id=1)) return BaseResponse.bad_request_response( 'A membership with this patient already exists.', {}) membership = MembershipModel( doctor_id=doctor_id, patient_id=data['patientId'], referenced_email=data['referencedEmail'], access_code=None, created_at=None, expires_at=None, updated_on=None, status=None) membership.save_to_db() return BaseResponse.created_response( 'Membership created successfully.', membership.json(role_id=1)) except Exception as e: return BaseResponse.server_error_response(unicode(e))