예제 #1
0
    def get(self):
        logger.debug("Getting instances")
        auth_response = authenticate(self, [Permissions.READ_SURVEY])

        survey_id = self.get_argument("survey_id", None)
        status = self.get_argument("status", None)

        if auth_response["valid"]:

            owner_id = auth_response["owner_id"]

            if status is not None:
                instances = InstanceService.get_by_owner(owner_id, survey_id, Status.CREATED_START)
            else:
                instances = InstanceService.get_by_owner(owner_id, survey_id)

            instance_ids = [instance.id for instance in instances]

            self.set_status(200)

            response = {
                "status": "success",
                "ids": instance_ids
            }

            response_json = json.dumps(response)
            logger.debug(response_json)
            self.write(response_json)
            self.flush()
예제 #2
0
    def get(self, instance_id):
        auth_response = authenticate(self, [Permissions.READ_QUESTION])

        if auth_response["valid"]:
            instance = InstanceService.get_instance(instance_id)
            state = StateService.get_next_state_in_instance(instance)

            if state is None:
                self.set_status(404)
                self.write('{"status":"error","message":"Survey does not exist"}')
                self.finish()
            else:
                survey = SurveyService.get_survey(instance.survey_id)
                if str(survey.owner_id) == auth_response["owner_id"]:
                    if state.status == Status.CREATED_START:
                        self.set_status(200)
                        self.write('{"status":"success","status":"NOT STARTED"}')
                        self.flush()
                    elif state.status == Status.TERMINATED_COMPLETE:
                        self.set_status(200)
                        self.write('{"status":"success","status":"COMPLETE"}')
                        self.flush()
                    else:
                        self.set_status(200)
                        self.write('{"status":"success","status":"IN PROGRESS"}')
                        self.flush()

                else:
                    self.set_status(403)
                    self.write('{"status":"error","message":"Owner does not have authorization to see this survey"}')
                    self.flush()
예제 #3
0
    def get(self, instance_id):
        auth_response = authenticate(self, [Permissions.READ_QUESTION])

        if auth_response["valid"]:
            instance = InstanceService.get_instance(instance_id)
            state = StateService.get_next_state_in_instance(instance, Status.AWAITING_USER_RESPONSE)

            if state is None:
                self.set_status(410)
                response = {
                    "status": "error",
                    "message": "No response was expected for this survey"
                }
            else:
                survey = SurveyService.get_survey(instance.survey_id)
                if str(survey.owner_id) == auth_response['owner_id']:
                    question_service = QuestionService()
                    question = question_service.get(survey.protocol_id, state.question_number)

                    if question is not None:
                        self.set_status(200)

                        response = {
                            "status": "success",
                            "question_number": state.question_number,
                            "question_text": question.question_text,
                            "survey_end": question.final
                        }
                    else:
                        self.set_status(410)
                        response = {
                            "status": "error",
                            "message": "No more questions in this survey"
                        }
                else:
                    self.set_status(403)
                    response = {
                        "status": "error",
                        "message": "Owner has not registered plugin"
                    }

            response_json = json.dumps(response)
            logger.debug(response_json)
            self.write(response_json)
            self.flush()
    def get(self):
        auth_response = authenticate(self, [Permissions.READ_PARTICIPANT])

        if auth_response["valid"]:
            survey_id = self.get_argument("survey_id")
            instance_id = self.get_argument("instance_id")

            instance = InstanceService.get_instance(instance_id)
            survey = SurveyService.get_survey(survey_id)

            if instance is None or survey is None:
                response = {
                    "status": "error",
                    "message": "Invalid instance or survey ID"
                }

                self.set_status(400)
                self.write(json.dumps(response))
                self.flush()
            else:
                if str(survey.owner_id) == auth_response["owner_id"]:

                    participant = ParticipantService.get_participant(
                        instance.participant_id)

                    response = {
                        "status": "success",
                        "participant": participant.plugin_scratch,
                    }

                    self.set_status(200)
                    self.write(json.dumps(response))
                    self.flush()
                else:
                    response = {
                        "status": "error",
                        "message":
                        "Do not have authorization to make this request"
                    }

                    self.set_status(401)
                    self.write(json.dumps(response))
                    self.flush()
예제 #5
0
    def post(self, instance_id):
        auth_response = authenticate(self, [Permissions.WRITE_SURVEY])

        if auth_response["valid"]:
            data = json_decode(self.request.body)

            if 'action' in data:
                action = data['action'].lower()
            else:
                self.set_status(400)
                self.write('{"status":"error","message":"Missing action parameter"}')
                self.flush()
                return

            if action == 'start':
                instance = InstanceService.get_instance(instance_id)
                state = StateService.get_next_state_in_instance(instance, Status.CREATED_START)

                if state is not None:
                    survey = SurveyService.get_survey(instance.survey_id)
                    if str(survey.owner_id) == auth_response["owner_id"]:
                        state.status = Status.AWAITING_USER_RESPONSE.value
                        StateService.update_state(state)
                        self.set_status(200)
                        self.write('{"status":"success","status":"STARTED"}')
                        self.flush()
                    else:
                        self.set_status(403)
                        self.write('{"status":"error","message":"Owner does not have authorization to start survey"}')
                        self.flush()
                else:
                    self.set_status(410)
                    self.write('{"status":"error","message":"Survey already started, or does not exist"}')
                    self.flush()
            else:
                self.set_status(400)
                self.write('{"status":"error","message":"Invalid action parameter"}')
                self.flush()
예제 #6
0
    def get(self, instance_id, question_number):
        auth_response = authenticate(self, [Permissions.READ_QUESTION])

        if auth_response['valid']:
            instance = InstanceService.get_instance(instance_id)
            instance_id = instance.id
            state = StateService.get_state_by_instance_and_question(instance, question_number)

            if state is None:
                self.set_status(404)
                self.write('{"status":"error","message":"Question or survey does not exist"}')
                self.finish()
            else:
                survey = SurveyService.get_survey(instance.survey_id)
                question_service = QuestionService()
                question = question_service.get(survey.protocol_id, state.question_number)

                if question is None:
                    self.set_status(404)
                    self.write('{"status":"error","message":"Question does not exist"}')
                    self.finish()
                else:
                    q_text = question.question_text

                    if state.status == Status.TERMINATED_COMPLETE:
                        response_service = ResponseService()
                        survey_id = instance.survey_id
                        response_set = response_service.get_response_set(survey_id, instance_id)
                        response = response_set.get_response(question.variable_name)

                        self.set_status(200)
                        self.write('{"status":"success","question_text":"' + q_text
                                   + '","responded":"True","response:":"' + response + '"')
                        self.finish()
                    else:
                        self.set_status(200)
                        self.write('{"status":"success","question_text":"' + q_text + '","responded":"False"')
                        self.finish()
예제 #7
0
    def post(self, instance_id):
        auth_response = authenticate(self, [Permissions.WRITE_RESPONSE])
        if auth_response["valid"]:
            data = json_decode(self.request.body)
            if 'response' in data:
                response = data['response']
                contact = data['contact']
            else:
                self.set_status(400)
                self.write('{"status":"error","message":"Missing response parameter"}')
                return
            
            instance = InstanceService.get_instance(instance_id)
            if instance is None:
                self.set_status(410)
                self.write('{"status":"error","message":"No response was expected for this survey"}')
                self.finish()
                return

            instance_id = instance.id  # Ensure that id is of right type
            state = StateService.get_next_state_in_instance(instance, Status.AWAITING_USER_RESPONSE)
            if state is not None and state.status is not Status.NO_RESPONSE_REQUIRED:
                survey = SurveyService.get_survey(instance.survey_id)
                if str(survey.owner_id) == auth_response["owner_id"]:
                    question_number = state.question_number
                    question_service = QuestionService()
                    question = question_service.get(survey.protocol_id, question_number)
                    now = datetime.now(tz=pytz.utc)
                    now_csv_entry = str(datetime.now(tz=pytz.utc))
                    loaddata = LoadData()
                    participant_id = loaddata.sendparticpantid(contact)
                    loaddata_response = LoadData1()
                    #loaddata_response.concatresponse(participant_id,question_number,response, now_csv_entry[:10],now_csv_entry[11:16])
                    if question is not None:

                        if question.final:
                            state.status = Status.TERMINATED_COMPLETE.value
                            StateService.update_state(state)

                            self.set_status(200)
                            self.write('{"status":"success","response_accepted":"False","reason":"Survey has finished"}')
                            self.flush()
                        elif state.timeout.replace(tzinfo=pytz.utc) < now:
                            state.status = Status.TERMINATED_TIMEOUT.value
                            state.save()
                            self.set_status(200)
                            self.write(
                                '{"status":"success","response_accepted":"False","reason":"Survey has timed out"}')
                        else:
                            state.status = Status.PROCESSING_USER_RESPONSE.value
                            StateService.update_state(state)
                            loaddata_response.concatresponse(participant_id,question_number,response, now_csv_entry[:10])
                            new_questions = question.process(response)
                            if new_questions == 'INV_RESP':
                                state.status = Status.AWAITING_USER_RESPONSE.value
                                StateService.update_state(state)

                                self.set_status(200)
                                self.write('{"status":"success","response_accepted":"False","reason":"Invalid Response","pass_along_message":"'
                                           + question.invalid_message + '"}')
                                self.flush()
                            else:
                                response_service = ResponseService()
                                variable_name = question.variable_name
                                survey_id = instance.survey_id
                                response_service.insert_response(survey_id, instance_id, variable_name, response)

                                if new_questions is not None:
                                    for new_question in new_questions:
                                        #print("Is this the final question", isFinal)
                                        #if not new_question.final:
                                        if not question.final:
                                            status = Status.CREATED_MID
                                        else:
                                            status = Status.NO_RESPONSE_REQUIRED

                                        StateService.create_state(instance_id, new_question[0][1], status,
                                                                  state.timeout, new_question[1])

                                state.status = Status.TERMINATED_COMPLETE.value
                                StateService.update_state(state)

                                new_state = StateService.get_next_state_in_instance(instance, Status.CREATED_MID)

                                new_state.status = Status.AWAITING_USER_RESPONSE.value
                                StateService.update_state(new_state)

                                self.set_status(200)
                                self.write('{"status":"success","response_accepted":"True"}')
                                self.flush()

                    else:
                        self.set_status(410, "No response was expected for this survey")
                        self.write('{"status":"error","message":"No response was expected for this survey"}')
                        self.finish()
                else:
                    self.set_status(403)
                    self.write('{"status":"error","message":"Owner does not have authorization to modify survey"}')
                    self.flush()
            else:
                self.set_status(410)
                self.write('{"status":"error","message":"No response was expected for this survey"}')
                self.finish()
예제 #8
0
def instance_start(survey_id):
    logger.info("Creating instances for survey_id %s", str(survey_id))
    instances = InstanceService.create_instances(survey_id)
    instance_ids = [instance.id for instance in instances]
    logger.info("instance_ids %s created for survey_id %s", str(instance_ids),
                str(survey_id))
예제 #9
0
from smsurvey.core.model.model import Model

from smsurvey import config
from smsurvey.core.services.instance_service import InstanceService
from smsurvey.core.services.owner_service import OwnerService
from smsurvey.core.services.enrollment_service import EnrollmentService
from smsurvey.core.services.survey_service import SurveyService
from smsurvey.core.services.protocol_service import ProtocolService

Model.from_database(config.DAO)

owner = OwnerService.get("sam", "mhealth")

enrollment = EnrollmentService.get_by_owner(owner.id)[0]
survey = SurveyService.create_survey(owner.id,
                                     ProtocolService.get_all_protocols()[0].id,
                                     enrollment.id, 1, 20, 1)

instances = InstanceService.create_instances(survey.id)