public HttpResponseMessage Destroy(int p_patientaccess_oid) { // CAD, CEN PatientAccessRESTCAD patientAccessRESTCAD = null; PatientAccessCEN patientAccessCEN = null; try { SessionInitializeTransaction(); patientAccessRESTCAD = new PatientAccessRESTCAD(session); patientAccessCEN = new PatientAccessCEN(patientAccessRESTCAD); patientAccessCEN.Destroy(p_patientaccess_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 PatientAccessDTOA Convert (EntityEN en, NHibernate.ISession session = null) { PatientAccessDTOA dto = null; PatientAccessRESTCAD patientAccessRESTCAD = null; PatientAccessCEN patientAccessCEN = null; PatientAccessCP patientAccessCP = null; if (en != null) { dto = new PatientAccessDTOA (); patientAccessRESTCAD = new PatientAccessRESTCAD (session); patientAccessCEN = new PatientAccessCEN (patientAccessRESTCAD); patientAccessCP = new PatientAccessCP (session); PatientAccessEN enHijo = patientAccessRESTCAD.ReadOIDDefault (en.Id); // // Attributes dto.Id = en.Id; dto.Name = en.Name; dto.Description = en.Description; // // TravesalLink /* Rol: PatientAccess o--> AccessMode */ dto.AccessMode = AccessModeAssembler.Convert ((AccessModeEN)enHijo.AccessMode, session); // // Service } return dto; }
public HttpResponseMessage ReadAll() { // CAD, CEN, EN, returnValue PatientAccessRESTCAD patientAccessRESTCAD = null; PatientAccessCEN patientAccessCEN = null; List <PatientAccessEN> patientAccessEN = null; List <PatientAccessDTOA> returnValue = null; try { SessionInitializeWithoutTransaction(); patientAccessRESTCAD = new PatientAccessRESTCAD(session); patientAccessCEN = new PatientAccessCEN(patientAccessRESTCAD); // Data // TODO: paginación patientAccessEN = patientAccessCEN.ReadAll(0, -1).ToList(); // Convert return if (patientAccessEN != null) { returnValue = new List <PatientAccessDTOA>(); foreach (PatientAccessEN entry in patientAccessEN) { returnValue.Add(PatientAccessAssembler.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 Modify(int idPatientAccess, [FromBody] PatientAccessDTO dto) { // CAD, CEN, returnValue PatientAccessRESTCAD patientAccessRESTCAD = null; PatientAccessCEN patientAccessCEN = null; PatientAccessDTOA returnValue = null; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); patientAccessRESTCAD = new PatientAccessRESTCAD(session); patientAccessCEN = new PatientAccessCEN(patientAccessRESTCAD); // Modify patientAccessCEN.Modify(idPatientAccess, dto.Name , dto.Description ); // Return modified object returnValue = PatientAccessAssembler.Convert(patientAccessRESTCAD.ReadOIDDefault(idPatientAccess), 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 New_([FromBody] PatientAccessDTO dto) { // CAD, CEN, returnValue, returnOID PatientAccessRESTCAD patientAccessRESTCAD = null; PatientAccessCEN patientAccessCEN = null; PatientAccessDTOA returnValue = null; int returnOID = -1; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); patientAccessRESTCAD = new PatientAccessRESTCAD(session); patientAccessCEN = new PatientAccessCEN(patientAccessRESTCAD); // Create returnOID = patientAccessCEN.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 , //Atributo OID: p_accessMode // attr.estaRelacionado: true dto.AccessMode_oid // association role ); SessionCommit(); // Convert return returnValue = PatientAccessAssembler.Convert(patientAccessRESTCAD.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("GetOIDPatientAccess", routeValues); * response.Headers.Location = new Uri(uri); */ return(response); }
public HttpResponseMessage ReadOID(int idPatientAccess) { // CAD, CEN, EN, returnValue PatientAccessRESTCAD patientAccessRESTCAD = null; PatientAccessCEN patientAccessCEN = null; PatientAccessEN patientAccessEN = null; PatientAccessDTOA returnValue = null; try { SessionInitializeWithoutTransaction(); patientAccessRESTCAD = new PatientAccessRESTCAD(session); patientAccessCEN = new PatientAccessCEN(patientAccessRESTCAD); // Data patientAccessEN = patientAccessCEN.ReadOID(idPatientAccess); // Convert return if (patientAccessEN != null) { returnValue = PatientAccessAssembler.Convert(patientAccessEN, 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)); } }
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; } }