public static CommandDTOA Convert(CommandEN en, NHibernate.ISession session = null) { CommandDTOA dto = null; CommandRESTCAD commandRESTCAD = null; CommandCEN commandCEN = null; CommandCP commandCP = null; if (en != null) { dto = new CommandDTOA(); commandRESTCAD = new CommandRESTCAD(session); commandCEN = new CommandCEN(commandRESTCAD); commandCP = new CommandCP(session); // // Attributes dto.Id = en.Id; dto.Name = en.Name; dto.IsSynchronous = en.IsSynchronous; dto.Type = en.Type; dto.Description = en.Description; // // TravesalLink // // Service } return(dto); }
public HttpResponseMessage New_([FromBody] CommandDTO dto) { // CAD, CEN, returnValue, returnOID CommandRESTCAD commandRESTCAD = null; CommandCEN commandCEN = null; CommandDTOA returnValue = null; int returnOID = -1; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); commandRESTCAD = new CommandRESTCAD(session); commandCEN = new CommandCEN(commandRESTCAD); // Create returnOID = commandCEN.New_( //Atributo OID: p_deviceTemplate // attr.estaRelacionado: true dto.DeviceTemplate_oid // association role , dto.Name //Atributo Primitivo: p_name , dto.IsSynchronous //Atributo Primitivo: p_isSynchronous , dto.Type //Atributo Primitivo: p_type , dto.Description //Atributo Primitivo: p_description ); SessionCommit(); // Convert return returnValue = CommandAssembler.Convert(commandRESTCAD.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("GetOIDCommand", routeValues); * response.Headers.Location = new Uri(uri); */ return(response); }
public HttpResponseMessage Modify(int idCommand, [FromBody] CommandDTO dto) { // CAD, CEN, returnValue CommandRESTCAD commandRESTCAD = null; CommandCEN commandCEN = null; CommandDTOA returnValue = null; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); commandRESTCAD = new CommandRESTCAD(session); commandCEN = new CommandCEN(commandRESTCAD); // Modify commandCEN.Modify(idCommand, dto.Name , dto.IsSynchronous , dto.Type , dto.Description ); // Return modified object returnValue = CommandAssembler.Convert(commandRESTCAD.ReadOIDDefault(idCommand), 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 idCommand) { // CAD, CEN, EN, returnValue CommandRESTCAD commandRESTCAD = null; CommandCEN commandCEN = null; CommandEN commandEN = null; CommandDTOA returnValue = null; try { SessionInitializeWithoutTransaction(); commandRESTCAD = new CommandRESTCAD(session); commandCEN = new CommandCEN(commandRESTCAD); // Data commandEN = commandCEN.ReadOID(idCommand); // Convert return if (commandEN != null) { returnValue = CommandAssembler.Convert(commandEN, 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)); } }