public HttpResponseMessage CrearCP([FromBody] DudaDTO dto) { // CAD, CEN, returnValue, returnOID DudaRESTCAD dudaRESTCAD = null; DudaCEN dudaCEN = null; DudaDTOA returnValue = null; DudaCP dudaCP = null; int returnOID = -1; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); dudaRESTCAD = new DudaRESTCAD(session); dudaCEN = new DudaCEN(dudaRESTCAD); dudaCP = new DudaCP(session); // Create returnOID = dudaCEN.Crear(dto.Titulo, dto.Cuerpo, dto.Usuario_oid, dto.Tema); dudaCP.CrearAccionDuda(returnOID); SessionCommit(); // Convert return returnValue = DudaAssembler.Convert(dudaRESTCAD.ReadOIDDefault(returnOID), session); } catch (Exception e) { SessionRollBack(); if (e.GetType() == typeof(HttpResponseException)) { throw e; } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto")) { throw new HttpResponseException(HttpStatusCode.Forbidden); } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(ReciclaUAGenNHibernate.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); return(response); }
public static DudaDTOA Convert(DudaEN en, NHibernate.ISession session = null) { DudaDTOA dto = null; DudaRESTCAD dudaRESTCAD = null; DudaCEN dudaCEN = null; DudaCP dudaCP = null; if (en != null) { dto = new DudaDTOA(); dudaRESTCAD = new DudaRESTCAD(session); dudaCEN = new DudaCEN(dudaRESTCAD); dudaCP = new DudaCP(session); // // Attributes dto.Id = en.Id; dto.Titulo = en.Titulo; dto.Cuerpo = en.Cuerpo; dto.Fecha = en.Fecha; dto.Util = en.Util; dto.Tema = en.Tema; // // TravesalLink /* Rol: Duda o--> UsuarioWebAutenticado */ dto.UsuarioDuda = UsuarioWebAutenticadoAssembler.Convert((UsuarioEN)en.Usuario, session); // // Service /* ServiceLink: obtenerNumeroDeRespuestas */ dto.ObtenerNumeroDeRespuestas = dudaCP.ObtenerNumeroDeRespuestas(en.Id); /* ServiceLink: obtenerSiRespuestaValida */ dto.ObtenerSiRespuestaValida = dudaCP.ObtenerSiRespuestaValida(en.Id); } return(dto); }
public HttpResponseMessage Modificar(int idDuda, [FromBody] DudaDTO dto) { // CAD, CEN, returnValue DudaRESTCAD dudaRESTCAD = null; DudaCEN dudaCEN = null; DudaDTOA returnValue = null; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); string token = ""; if (Request.Headers.Authorization != null) { token = Request.Headers.Authorization.ToString(); } int id = new UsuarioCEN().CheckToken(token); dudaRESTCAD = new DudaRESTCAD(session); dudaCEN = new DudaCEN(dudaRESTCAD); // Modify dudaCEN.Modificar(idDuda, dto.Titulo , dto.Cuerpo , dto.Fecha , dto.Util , dto.Tema ); // Return modified object returnValue = DudaAssembler.Convert(dudaRESTCAD.ReadOIDDefault(idDuda), session); SessionCommit(); } catch (Exception e) { SessionRollBack(); if (e.GetType() == typeof(HttpResponseException)) { throw e; } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto")) { throw new HttpResponseException(HttpStatusCode.Forbidden); } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(ReciclaUAGenNHibernate.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 Crear([FromBody] DudaDTO dto) { // CAD, CEN, returnValue, returnOID DudaRESTCAD dudaRESTCAD = null; DudaCEN dudaCEN = null; DudaDTOA returnValue = null; int returnOID = -1; // HTTP response HttpResponseMessage response = null; string uri = null; try { SessionInitializeTransaction(); string token = ""; if (Request.Headers.Authorization != null) { token = Request.Headers.Authorization.ToString(); } int id = new UsuarioCEN().CheckToken(token); dudaRESTCAD = new DudaRESTCAD(session); dudaCEN = new DudaCEN(dudaRESTCAD); // Create returnOID = dudaCEN.Crear( //Atributo Primitivo: p_titulo dto.Titulo, //Atributo Primitivo: p_cuerpo dto.Cuerpo, //Atributo OID: p_usuario // attr.estaRelacionado: true dto.Usuario_oid // association role , //Atributo Primitivo: p_tema dto.Tema); SessionCommit(); // Convert return returnValue = DudaAssembler.Convert(dudaRESTCAD.ReadOIDDefault(returnOID), session); } catch (Exception e) { SessionRollBack(); if (e.GetType() == typeof(HttpResponseException)) { throw e; } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto")) { throw new HttpResponseException(HttpStatusCode.Forbidden); } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(ReciclaUAGenNHibernate.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("GetOIDDuda", routeValues); * response.Headers.Location = new Uri(uri); */ return(response); }
public HttpResponseMessage BuscarPorId(int idDuda) { // CAD, CEN, EN, returnValue DudaRESTCAD dudaRESTCAD = null; DudaCEN dudaCEN = null; DudaEN dudaEN = null; DudaDTOA returnValue = null; try { SessionInitializeWithoutTransaction(); string token = ""; if (Request.Headers.Authorization != null) { token = Request.Headers.Authorization.ToString(); } int id = new UsuarioCEN().CheckToken(token); dudaRESTCAD = new DudaRESTCAD(session); dudaCEN = new DudaCEN(dudaRESTCAD); // Data dudaEN = dudaCEN.BuscarPorId(idDuda); // Convert return if (dudaEN != null) { returnValue = DudaAssembler.Convert(dudaEN, session); } } catch (Exception e) { if (e.GetType() == typeof(HttpResponseException)) { throw e; } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto")) { throw new HttpResponseException(HttpStatusCode.Forbidden); } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(ReciclaUAGenNHibernate.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 DudaRespuesta(int idRespuesta) { // CAD, EN RespuestaRESTCAD respuestaRESTCAD = null; RespuestaEN respuestaEN = null; // returnValue DudaEN en = null; DudaDTOA returnValue = null; try { SessionInitializeWithoutTransaction(); string token = ""; if (Request.Headers.Authorization != null) { token = Request.Headers.Authorization.ToString(); } new UsuarioCEN().CheckToken(token); respuestaRESTCAD = new RespuestaRESTCAD(session); // Exists Respuesta respuestaEN = respuestaRESTCAD.ReadOIDDefault(idRespuesta); if (respuestaEN == null) { throw new HttpResponseException(this.Request.CreateResponse(HttpStatusCode.NotFound, "Respuesta#" + idRespuesta + " not found")); } // Rol // TODO: paginación en = respuestaRESTCAD.DudaRespuesta(idRespuesta); // Convert return if (en != null) { returnValue = DudaAssembler.Convert(en, session); } } catch (Exception e) { if (e.GetType() == typeof(HttpResponseException)) { throw e; } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) && e.Message.Equals("El token es incorrecto")) { throw new HttpResponseException(HttpStatusCode.Forbidden); } else if (e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.ModelException) || e.GetType() == typeof(ReciclaUAGenNHibernate.Exceptions.DataLayerException)) { throw new HttpResponseException(HttpStatusCode.BadRequest); } else { throw new HttpResponseException(HttpStatusCode.InternalServerError); } } finally { SessionClose(); } // Return 204 - Empty if (returnValue == null) { return(this.Request.CreateResponse(HttpStatusCode.NoContent)); } // Return 200 - OK else { return(this.Request.CreateResponse(HttpStatusCode.OK, returnValue)); } }