public HttpResponseMessage Destroy(int p_device_oid)
        {
            // CAD, CEN
            DeviceRESTCAD deviceRESTCAD = null;
            DeviceCEN     deviceCEN     = null;

            try
            {
                SessionInitializeTransaction();


                deviceRESTCAD = new DeviceRESTCAD(session);
                deviceCEN     = new DeviceCEN(deviceRESTCAD);

                deviceCEN.Destroy(p_device_oid);
                SessionCommit();
            }

            catch (Exception e)
            {
                SessionRollBack();

                if (e.GetType() == typeof(HttpResponseException))
                {
                    throw e;
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto"))
                {
                    throw new HttpResponseException(HttpStatusCode.Forbidden);
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.DataLayerException))
                {
                    throw new HttpResponseException(HttpStatusCode.BadRequest);
                }
                else
                {
                    throw new HttpResponseException(HttpStatusCode.InternalServerError);
                }
            }
            finally
            {
                SessionClose();
            }

            // Return 204 - No Content
            return(this.Request.CreateResponse(HttpStatusCode.NoContent));
        }
        public static DeviceDTOA Convert(EntityEN en, NHibernate.ISession session = null)
        {
            DeviceDTOA    dto           = null;
            DeviceRESTCAD deviceRESTCAD = null;
            DeviceCEN     deviceCEN     = null;
            DeviceCP      deviceCP      = null;

            if (en != null)
            {
                dto           = new DeviceDTOA();
                deviceRESTCAD = new DeviceRESTCAD(session);
                deviceCEN     = new DeviceCEN(deviceRESTCAD);
                deviceCP      = new DeviceCP(session);


                DeviceEN enHijo = deviceRESTCAD.ReadOIDDefault(en.Id);



                //
                // Attributes

                dto.Id = en.Id;

                if (enHijo != null)
                {
                    dto.DeviceSwitch = enHijo.DeviceSwitch;
                }


                if (enHijo != null)
                {
                    dto.Tag = enHijo.Tag;
                }


                if (enHijo != null)
                {
                    dto.IsSimulated = enHijo.IsSimulated;
                }


                if (enHijo != null)
                {
                    dto.SerialNumber = enHijo.SerialNumber;
                }


                if (enHijo != null)
                {
                    dto.FirmVersion = enHijo.FirmVersion;
                }


                if (enHijo != null)
                {
                    dto.Trademark = enHijo.Trademark;
                }


                dto.Name = en.Name;


                dto.Description = en.Description;


                //
                // TravesalLink

                /* Rol: Device o--> DeviceTemplate */
                dto.DeviceTemplate = DeviceTemplateAssembler.Convert((DeviceTemplateEN)enHijo.DeviceTemplate, session);


                //
                // Service
            }

            return(dto);
        }
Exemplo n.º 3
0
        public static void InitializeData()
        {
            /*PROTECTED REGION ID(initializeDataMethod) ENABLED START*/
            try
            {
                // Insert the initilizations of entities using the CEN classes



                UserCEN userCEN = new UserCEN();
                userCEN.New_("shahabsur", true, false, "1234", "shahab", "Shahab", "*****@*****.**");

                int idUser = userCEN.New_("Lucas Grijander", true, true, "1234", "Chiquito", "Paciente Alzheimer", "*****@*****.**");


                DeviceTemplateCEN deviceTCEN = new DeviceTemplateCEN();
                int deviceT1 = deviceTCEN.New_("Smartring", DeviceTypeEnum.sensor, false);
                int deviceT2 = deviceTCEN.New_("Smartphone", DeviceTypeEnum.actuator, false);
                int deviceT3 = deviceTCEN.New_("Voice Assistance", DeviceTypeEnum.actuator, false);


                CommandCEN commandCEN = new CommandCEN();
                commandCEN.New_(deviceT1, "Command 1", true, OperationTypeEnum.GetByID, "get device by id");

                PropertyCEN propertyCEN = new PropertyCEN();
                propertyCEN.New_(deviceT1, "property 1", true, true);

                TelemetryCEN telemetryCEN = new TelemetryCEN();
                int          idTelemetry  = telemetryCEN.New_(deviceT1, 2, MoSIoTGenNHibernate.Enumerated.MosIoT.DataTypeEnum.Integer, TypeUnitEnum.steps, "Heart beats", TelemetryTypeEnum.event_);


                EventTelemetryCEN eventTelemetry = new EventTelemetryCEN();
                int eventTel1 = eventTelemetry.New_(idTelemetry, "evento", MoSIoTGenNHibernate.Enumerated.MosIoT.SeverityEventEnum.info);


                PatientProfileCEN patientProfile = new PatientProfileCEN();
                int idPatientProfile             = patientProfile.New_(LanguageCodeEnum.es, "Espana", HazardValueEnum.olfactoryHazard, "patient with Alzheimer", "patient with a mild Alzheimer with a cognitive disability");

                ConditionCEN conditionCEN = new ConditionCEN();
                int          idCondition  = conditionCEN.New_(idPatientProfile, "Alzheimer", ClinicalStatusEnum.active, DiseaseEnum.Alzheimer, "Alzheimer");

                DisabilityCEN disabilityCEN = new DisabilityCEN();
                int           idDisability  = disabilityCEN.New_(idPatientProfile, "cognitive", DisabilityTypeEnum.cognitive, SeverityEnum.mild, "Cognitive Disability");

                AccessModeCEN accessMode   = new AccessModeCEN();
                int           idAccessMode = accessMode.New_(idPatientProfile, AccessModeValueEnum.textual, "Acceso al Smartphone", idDisability, "accessMode Smartphone");

                AdaptationRequestCEN adaptRequest = new AdaptationRequestCEN();
                adaptRequest.New_(AccessModeValueEnum.auditory, idAccessMode, LanguageCodeEnum.es, "adaptation auditive");

                AdaptationTypeRequiredCEN adapTypeReq = new AdaptationTypeRequiredCEN();
                adapTypeReq.New_(AdaptationTypeValueEnum.audioDescription, "Describe el contenido con voz", idAccessMode);

                AdaptationDetailRequiredCEN adaptationDetail = new AdaptationDetailRequiredCEN();
                adaptationDetail.New_(AdaptationDetailValueEnum.record, idAccessMode, "Se graba el la voz generada");


                CarePlanTemplateCEN carePlan = new CarePlanTemplateCEN();
                int idCarePlanT = carePlan.New_(CareStatusEnum.active, CarePlanIntentEnum.proposal, "Plan de cuidados para persona con Alzheimer", DateTime.Now, 100, "cuidadosAlzheimer", "Se describen todos los objetivos y actividades necesarias para que se cuide a una persona que presenta Alzheimer");


                carePlan.AddCondition(idCarePlanT, new List <int> {
                    idCondition
                });


                CareActivityCEN careActivity = new CareActivityCEN();
                careActivity.New_(idCarePlanT, TypePeriodicityEnum.daily, "Realizar un paseo", 40, "parque", "", TypeActivityEnum.sportActivity, " ", "Paseo");

                int idActivityMed = careActivity.New_(idCarePlanT, TypePeriodicityEnum.perHour, "Tomar Ceregumil", 0, "en casa", "", TypeActivityEnum.medication, "", "Tomar medicamento mente activa");

                MedicationCEN medicationCEN = new MedicationCEN();
                medicationCEN.New_(idActivityMed, 346864, "Ceregumil Original 500 ml", " ", "Tomar una cucharada 3 veces al dia", "cucharada", FormTypeEnum.powder, "346864");

                GoalCEN goal   = new GoalCEN();
                int     idGoal = goal.New_(idCarePlanT, PriorityTypeEnum.high, CareStatusEnum.active, idCondition, "Mejorar los indicadores cognitivos", CategoryGoalEnum.behavioral, " ", "Mejora cognitiva");

                TargetCEN target = new TargetCEN();

                int idTarget = target.New_(idGoal, "70", "Reducir las pulsaciones a 70", DateTime.Today.AddDays(60));


                MeasureCEN measureCEN = new MeasureCEN();
                int        idMeasure  = measureCEN.New_("Pulsaciones_minuto", "Pulsaciones por minuto", " ");

                target.AddMeasure(idTarget, idMeasure);

                measureCEN.AddTelemetries(idMeasure, new List <int> {
                    idTelemetry
                });



                // SCENARIO

                IoTScenarioCEN scenarioCEN   = new IoTScenarioCEN();
                int            idScenarioIoT = scenarioCEN.New_("Escenario Paciente con Alzheimer", "Se reproducen los elementos de un enfermo de alzheimer con discapacidad cognitiva");


                PatientCEN patientCEN = new PatientCEN();
                patientCEN.New_("Juan Lucas", idScenarioIoT, "Es un paciente nuevo", idPatientProfile, idUser);

                PatientAccessCEN patientAccessCEN = new PatientAccessCEN();
                patientAccessCEN.New_("PatientAccessSmartphone", idScenarioIoT, "patient Access Smartphone", idAccessMode);


                DeviceCEN deviceCEN = new DeviceCEN();
                deviceCEN.New_("Iphone 12", idScenarioIoT, "Iphone 12 120 Gb", false, "1212", true, "1818181818181", "firm1", "Apple", deviceT2);

                CarePlanCEN carePlanCEN = new CarePlanCEN();
                carePlanCEN.New_("Care Plan Alzheimer", idScenarioIoT, "El carePlan adecuado para el alzheimer", idCarePlanT);

                /*PROTECTED REGION END*/
            }
            catch (Exception ex)
            {
                System.Console.WriteLine(ex.InnerException);
                throw ex;
            }
        }
        public HttpResponseMessage Modify(int idDevice, [FromBody] DeviceDTO dto)
        {
            // CAD, CEN, returnValue
            DeviceRESTCAD deviceRESTCAD = null;
            DeviceCEN     deviceCEN     = null;
            DeviceDTOA    returnValue   = null;

            // HTTP response
            HttpResponseMessage response = null;
            string uri = null;

            try
            {
                SessionInitializeTransaction();


                deviceRESTCAD = new DeviceRESTCAD(session);
                deviceCEN     = new DeviceCEN(deviceRESTCAD);

                // Modify
                deviceCEN.Modify(idDevice,
                                 dto.Name
                                 ,
                                 dto.Description
                                 ,
                                 dto.DeviceSwitch
                                 ,
                                 dto.Tag
                                 ,
                                 dto.IsSimulated
                                 ,
                                 dto.SerialNumber
                                 ,
                                 dto.FirmVersion
                                 ,
                                 dto.Trademark
                                 );

                // Return modified object
                returnValue = DeviceAssembler.Convert(deviceRESTCAD.ReadOIDDefault(idDevice), session);

                SessionCommit();
            }

            catch (Exception e)
            {
                SessionRollBack();

                if (e.GetType() == typeof(HttpResponseException))
                {
                    throw e;
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto"))
                {
                    throw new HttpResponseException(HttpStatusCode.Forbidden);
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.DataLayerException))
                {
                    throw new HttpResponseException(HttpStatusCode.BadRequest);
                }
                else
                {
                    throw new HttpResponseException(HttpStatusCode.InternalServerError);
                }
            }
            finally
            {
                SessionClose();
            }

            // Return 404 - Not found
            if (returnValue == null)
            {
                return(this.Request.CreateResponse(HttpStatusCode.NotFound));
            }
            // Return 200 - OK
            else
            {
                response = this.Request.CreateResponse(HttpStatusCode.OK, returnValue);

                return(response);
            }
        }
        public HttpResponseMessage ReadAll()
        {
            // CAD, CEN, EN, returnValue
            DeviceRESTCAD deviceRESTCAD = null;
            DeviceCEN     deviceCEN     = null;

            List <DeviceEN>   deviceEN    = null;
            List <DeviceDTOA> returnValue = null;

            try
            {
                SessionInitializeWithoutTransaction();


                deviceRESTCAD = new DeviceRESTCAD(session);
                deviceCEN     = new DeviceCEN(deviceRESTCAD);

                // Data
                // TODO: paginación

                deviceEN = deviceCEN.ReadAll(0, -1).ToList();

                // Convert return
                if (deviceEN != null)
                {
                    returnValue = new List <DeviceDTOA>();
                    foreach (DeviceEN entry in deviceEN)
                    {
                        returnValue.Add(DeviceAssembler.Convert(entry, session));
                    }
                }
            }

            catch (Exception e)
            {
                if (e.GetType() == typeof(HttpResponseException))
                {
                    throw e;
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto"))
                {
                    throw new HttpResponseException(HttpStatusCode.Forbidden);
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.DataLayerException))
                {
                    throw new HttpResponseException(HttpStatusCode.BadRequest);
                }
                else
                {
                    throw new HttpResponseException(HttpStatusCode.InternalServerError);
                }
            }
            finally
            {
                SessionClose();
            }

            // Return 204 - Empty
            if (returnValue == null || returnValue.Count == 0)
            {
                return(this.Request.CreateResponse(HttpStatusCode.NoContent));
            }
            // Return 200 - OK
            else
            {
                return(this.Request.CreateResponse(HttpStatusCode.OK, returnValue));
            }
        }
        public HttpResponseMessage New_([FromBody] DeviceDTO dto)
        {
            // CAD, CEN, returnValue, returnOID
            DeviceRESTCAD deviceRESTCAD = null;
            DeviceCEN     deviceCEN     = null;
            DeviceDTOA    returnValue   = null;
            int           returnOID     = -1;

            // HTTP response
            HttpResponseMessage response = null;
            string uri = null;

            try
            {
                SessionInitializeTransaction();


                deviceRESTCAD = new DeviceRESTCAD(session);
                deviceCEN     = new DeviceCEN(deviceRESTCAD);

                // Create
                returnOID = deviceCEN.New_(
                    dto.Name                                                                                     //Atributo Primitivo: p_name
                    ,
                    //Atributo OID: p_scenario
                    // attr.estaRelacionado: true
                    dto.Scenario_oid                     // association role

                    , dto.Description                    //Atributo Primitivo: p_description
                    , dto.DeviceSwitch                   //Atributo Primitivo: p_deviceSwitch
                    , dto.Tag                            //Atributo Primitivo: p_tag
                    , dto.IsSimulated                    //Atributo Primitivo: p_isSimulated
                    , dto.SerialNumber                   //Atributo Primitivo: p_serialNumber
                    , dto.FirmVersion                    //Atributo Primitivo: p_firmVersion
                    , dto.Trademark                      //Atributo Primitivo: p_trademark
                    ,
                    //Atributo OID: p_deviceTemplate
                    // attr.estaRelacionado: true
                    dto.DeviceTemplate_oid                     // association role

                    );
                SessionCommit();

                // Convert return
                returnValue = DeviceAssembler.Convert(deviceRESTCAD.ReadOIDDefault(returnOID), session);
            }

            catch (Exception e)
            {
                SessionRollBack();

                if (e.GetType() == typeof(HttpResponseException))
                {
                    throw e;
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto"))
                {
                    throw new HttpResponseException(HttpStatusCode.Forbidden);
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.DataLayerException))
                {
                    throw new HttpResponseException(HttpStatusCode.BadRequest);
                }
                else
                {
                    throw new HttpResponseException(HttpStatusCode.InternalServerError);
                }
            }
            finally
            {
                SessionClose();
            }

            // Return 201 - Created
            response = this.Request.CreateResponse(HttpStatusCode.Created, returnValue);

            // Location Header

            /*
             * Dictionary<string, object> routeValues = new Dictionary<string, object>();
             *
             * // TODO: y rolPaths
             * routeValues.Add("id", returnOID);
             *
             * uri = Url.Link("GetOIDDevice", routeValues);
             * response.Headers.Location = new Uri(uri);
             */

            return(response);
        }
        public HttpResponseMessage ReadOID(int idDevice)
        {
            // CAD, CEN, EN, returnValue
            DeviceRESTCAD deviceRESTCAD = null;
            DeviceCEN     deviceCEN     = null;
            DeviceEN      deviceEN      = null;
            DeviceDTOA    returnValue   = null;

            try
            {
                SessionInitializeWithoutTransaction();


                deviceRESTCAD = new DeviceRESTCAD(session);
                deviceCEN     = new DeviceCEN(deviceRESTCAD);

                // Data
                deviceEN = deviceCEN.ReadOID(idDevice);

                // Convert return
                if (deviceEN != null)
                {
                    returnValue = DeviceAssembler.Convert(deviceEN, session);
                }
            }

            catch (Exception e)
            {
                if (e.GetType() == typeof(HttpResponseException))
                {
                    throw e;
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto"))
                {
                    throw new HttpResponseException(HttpStatusCode.Forbidden);
                }
                else if (e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(MoSIoTGenNHibernate.Exceptions.DataLayerException))
                {
                    throw new HttpResponseException(HttpStatusCode.BadRequest);
                }
                else
                {
                    throw new HttpResponseException(HttpStatusCode.InternalServerError);
                }
            }
            finally
            {
                SessionClose();
            }

            // Return 404 - Not found
            if (returnValue == null)
            {
                return(this.Request.CreateResponse(HttpStatusCode.NotFound));
            }
            // Return 200 - OK
            else
            {
                return(this.Request.CreateResponse(HttpStatusCode.OK, returnValue));
            }
        }