public HttpResponseMessage ReadAll() { // CAD, CEN, EN, returnValue TelemetryRESTCAD telemetryRESTCAD = null; TelemetryCEN telemetryCEN = null; List <TelemetryEN> telemetryEN = null; List <TelemetryDTOA> returnValue = null; try { SessionInitializeWithoutTransaction(); telemetryRESTCAD = new TelemetryRESTCAD(session); telemetryCEN = new TelemetryCEN(telemetryRESTCAD); // Data // TODO: paginación telemetryEN = telemetryCEN.ReadAll(0, -1).ToList(); // Convert return if (telemetryEN != null) { returnValue = new List <TelemetryDTOA>(); foreach (TelemetryEN entry in telemetryEN) { returnValue.Add(TelemetryAssembler.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 idTelemetry, [FromBody] TelemetryDTO dto) { // CAD, CEN, returnValue TelemetryRESTCAD telemetryRESTCAD = null; TelemetryCEN telemetryCEN = null; TelemetryDTOA returnValue = null; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); telemetryRESTCAD = new TelemetryRESTCAD(session); telemetryCEN = new TelemetryCEN(telemetryRESTCAD); // Modify telemetryCEN.Modify(idTelemetry, dto.Frecuency , dto.Schema , dto.Unit , dto.Name , dto.Type ); // Return modified object returnValue = TelemetryAssembler.Convert(telemetryRESTCAD.ReadOIDDefault(idTelemetry), 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 ReadOID(int idTelemetry) { // CAD, CEN, EN, returnValue TelemetryRESTCAD telemetryRESTCAD = null; TelemetryCEN telemetryCEN = null; TelemetryEN telemetryEN = null; TelemetryDTOA returnValue = null; try { SessionInitializeWithoutTransaction(); telemetryRESTCAD = new TelemetryRESTCAD(session); telemetryCEN = new TelemetryCEN(telemetryRESTCAD); // Data telemetryEN = telemetryCEN.ReadOID(idTelemetry); // Convert return if (telemetryEN != null) { returnValue = TelemetryAssembler.Convert(telemetryEN, 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 HttpResponseMessage New_([FromBody] TelemetryDTO dto) { // CAD, CEN, returnValue, returnOID TelemetryRESTCAD telemetryRESTCAD = null; TelemetryCEN telemetryCEN = null; TelemetryDTOA returnValue = null; int returnOID = -1; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); telemetryRESTCAD = new TelemetryRESTCAD(session); telemetryCEN = new TelemetryCEN(telemetryRESTCAD); // Create returnOID = telemetryCEN.New_( //Atributo OID: p_deviceTemplate // attr.estaRelacionado: true dto.DeviceTemplate_oid // association role , dto.Frecuency //Atributo Primitivo: p_frecuency , dto.Schema //Atributo Primitivo: p_schema , dto.Unit //Atributo Primitivo: p_unit , dto.Name //Atributo Primitivo: p_name , dto.Type //Atributo Primitivo: p_type ); SessionCommit(); // Convert return returnValue = TelemetryAssembler.Convert(telemetryRESTCAD.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("GetOIDTelemetry", routeValues); * response.Headers.Location = new Uri(uri); */ return(response); }
public HttpResponseMessage MeasureTelemetries(int idMeasure) { // CAD, EN MeasureRESTCAD measureRESTCAD = null; MeasureEN measureEN = null; // returnValue List <TelemetryEN> en = null; List <TelemetryDTOA> returnValue = null; try { SessionInitializeWithoutTransaction(); measureRESTCAD = new MeasureRESTCAD(session); // Exists Measure measureEN = measureRESTCAD.ReadOIDDefault(idMeasure); if (measureEN == null) { throw new HttpResponseException(this.Request.CreateResponse(HttpStatusCode.NotFound, "Measure#" + idMeasure + " not found")); } // Rol // TODO: paginación en = measureRESTCAD.MeasureTelemetries(idMeasure).ToList(); // Convert return if (en != null) { returnValue = new List <TelemetryDTOA>(); foreach (TelemetryEN entry in en) { returnValue.Add(TelemetryAssembler.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)); } }