public HttpResponseMessage SiguienteItem(int p_oid, ReciclaUAGenNHibernate.Enumerated.ReciclaUA.TipoContenedorEnum p_tipocontenedor) { // CP, returnValue JuegoCP juegoCP = null; JuegoDTOA returnValue; JuegoEN en; try { SessionInitializeTransaction(); string token = ""; if (Request.Headers.Authorization != null) { token = Request.Headers.Authorization.ToString(); } int id = new UsuarioCEN().CheckToken(token); juegoCP = new JuegoCP(session); // Operation en = juegoCP.SiguienteItem(p_oid, p_tipocontenedor); SessionCommit(); // Convert return returnValue = JuegoAssembler.Convert(en, 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 200 - OK return(this.Request.CreateResponse(HttpStatusCode.OK, returnValue)); }
public HttpResponseMessage Modificar(int idJuego, [FromBody] JuegoDTO dto) { // CAD, CEN, returnValue JuegoRESTCAD juegoRESTCAD = null; JuegoCEN juegoCEN = null; JuegoDTOA 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); juegoRESTCAD = new JuegoRESTCAD(session); juegoCEN = new JuegoCEN(juegoRESTCAD); // Modify juegoCEN.Modificar(idJuego, dto.ItemActual , dto.Aciertos , dto.Fallos , dto.Puntuacion , dto.IntentosItemActual , dto.Finalizado , dto.NivelActual ); // Return modified object returnValue = JuegoAssembler.Convert(juegoRESTCAD.ReadOIDDefault(idJuego), 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] JuegoDTO dto) { // CAD, CEN, returnValue, returnOID JuegoRESTCAD juegoRESTCAD = null; JuegoCEN juegoCEN = null; JuegoDTOA 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); juegoRESTCAD = new JuegoRESTCAD(session); juegoCEN = new JuegoCEN(juegoRESTCAD); // Create returnOID = juegoCEN.Crear( //Atributo OID: p_usuarios // attr.estaRelacionado: true dto.Usuarios_oid // association role ); SessionCommit(); // Convert return returnValue = JuegoAssembler.Convert(juegoRESTCAD.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("GetOIDJuego", routeValues); * response.Headers.Location = new Uri(uri); */ return(response); }
public HttpResponseMessage BuscarTodos() { // CAD, CEN, EN, returnValue JuegoRESTCAD juegoRESTCAD = null; JuegoCEN juegoCEN = null; List <JuegoEN> juegoEN = null; List <JuegoDTOA> returnValue = null; try { SessionInitializeWithoutTransaction(); string token = ""; if (Request.Headers.Authorization != null) { token = Request.Headers.Authorization.ToString(); } int id = new UsuarioCEN().CheckToken(token); juegoRESTCAD = new JuegoRESTCAD(session); juegoCEN = new JuegoCEN(juegoRESTCAD); // Data // TODO: paginación juegoEN = juegoCEN.BuscarTodos(0, -1).ToList(); // Convert return if (juegoEN != null) { returnValue = new List <JuegoDTOA>(); foreach (JuegoEN entry in juegoEN) { returnValue.Add(JuegoAssembler.Convert(entry, 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 || returnValue.Count == 0) { return(this.Request.CreateResponse(HttpStatusCode.NoContent)); } // Return 200 - OK else { return(this.Request.CreateResponse(HttpStatusCode.OK, returnValue)); } }
public HttpResponseMessage BuscarPorId(int idJuego) { // CAD, CEN, EN, returnValue JuegoRESTCAD juegoRESTCAD = null; JuegoCEN juegoCEN = null; JuegoEN juegoEN = null; JuegoDTOA returnValue = null; try { SessionInitializeWithoutTransaction(); string token = ""; if (Request.Headers.Authorization != null) { token = Request.Headers.Authorization.ToString(); } int id = new UsuarioCEN().CheckToken(token); juegoRESTCAD = new JuegoRESTCAD(session); juegoCEN = new JuegoCEN(juegoRESTCAD); // Data juegoEN = juegoCEN.BuscarPorId(idJuego); // Convert return if (juegoEN != null) { returnValue = JuegoAssembler.Convert(juegoEN, 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)); } }