public HttpResponseMessage Borrar(int p_juego_oid) { // CAD, CEN JuegoRESTCAD juegoRESTCAD = null; JuegoCEN juegoCEN = 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); juegoCEN.Borrar(p_juego_oid); 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 204 - No Content return(this.Request.CreateResponse(HttpStatusCode.NoContent)); }
public static JuegoDTOA Convert(JuegoEN en, NHibernate.ISession session = null) { JuegoDTOA dto = null; JuegoRESTCAD juegoRESTCAD = null; JuegoCEN juegoCEN = null; JuegoCP juegoCP = null; if (en != null) { dto = new JuegoDTOA(); juegoRESTCAD = new JuegoRESTCAD(session); juegoCEN = new JuegoCEN(juegoRESTCAD); juegoCP = new JuegoCP(session); // // Attributes dto.Id = en.Id; dto.ItemActual = en.ItemActual; dto.Aciertos = en.Aciertos; dto.Fallos = en.Fallos; dto.Puntuacion = en.Puntuacion; dto.IntentosItemActual = en.IntentosItemActual; dto.Finalizado = en.Finalizado; dto.NivelActual = en.NivelActual; // // TravesalLink // // Service } return(dto); }
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 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 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 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)); } }
public ReciclaUAGenNHibernate.EN.ReciclaUA.JuegoEN SiguienteItem(int p_oid, ReciclaUAGenNHibernate.Enumerated.ReciclaUA.TipoContenedorEnum p_tipocontenedor) { /*PROTECTED REGION ID(ReciclaUAGenNHibernate.CP.ReciclaUA_Juego_siguienteItem) ENABLED START*/ IJuegoCAD juegoCAD = null; JuegoCEN juegoCEN = null; JuegoEN juegoEN = null; INivelCAD nivelCAD = null; NivelCEN nivelCEN = null; NivelEN nivelEN = null; try { SessionInitializeTransaction(); juegoCAD = new JuegoCAD(session); juegoCEN = new JuegoCEN(juegoCAD); juegoEN = juegoCAD.BuscarPorId(p_oid); nivelCAD = new NivelCAD(session); nivelCEN = new NivelCEN(nivelCAD); IList <NivelEN> niveles = new List <NivelEN>(); ItemCAD Itemcad = new ItemCAD(session); niveles = nivelCAD.BuscarTodos(0, -1); nivelEN = niveles [juegoEN.NivelActual - 1]; IList <ItemEN> itemsen = Itemcad.BuscarItemsPorNivel(nivelEN.Id); if (itemsen [juegoEN.ItemActual].Material.Contenedor == p_tipocontenedor) { //Acierto juegoEN.Aciertos++; //Decimal penalizacion = 1 / juegoEN.IntentosItemActual; Decimal penalizacion = Decimal.Divide(1, juegoEN.IntentosItemActual); juegoEN.Puntuacion += Decimal.ToDouble(Decimal.Multiply(Convert.ToDecimal(nivelEN.Puntuacion), penalizacion)); juegoEN.IntentosItemActual = 1; if (juegoEN.ItemActual + 1 < itemsen.Count) { juegoEN.ItemActual++; } else { juegoEN.ItemActual = 0; niveles = nivelCAD.BuscarTodos(0, -1); if (juegoEN.NivelActual < niveles.Count) { juegoEN.NivelActual++; } else { juegoEN.Finalizado = true; } } } else { //Fallo juegoEN.Fallos++; juegoEN.IntentosItemActual++; } juegoCAD.Modificar(juegoEN); SessionCommit(); } catch (Exception ex) { SessionRollBack(); throw ex; } finally { SessionClose(); } return(juegoEN); /*PROTECTED REGION END*/ }