public HttpResponseMessage Modify(int idIoTScenario, [FromBody] IoTScenarioDTO dto)
        {
            // CAD, CEN, returnValue
            IoTScenarioRESTCAD ioTScenarioRESTCAD = null;
            IoTScenarioCEN     ioTScenarioCEN     = null;
            IoTScenarioDTOA    returnValue        = null;

            // HTTP response
            HttpResponseMessage response = null;
            string uri = null;

            try
            {
                SessionInitializeTransaction();


                ioTScenarioRESTCAD = new IoTScenarioRESTCAD(session);
                ioTScenarioCEN     = new IoTScenarioCEN(ioTScenarioRESTCAD);

                // Modify
                ioTScenarioCEN.Modify(idIoTScenario,
                                      dto.Name
                                      ,
                                      dto.Description
                                      );

                // Return modified object
                returnValue = IoTScenarioAssembler.Convert(ioTScenarioRESTCAD.ReadOIDDefault(idIoTScenario), 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);
            }
        }
Ejemplo n.º 2
0
        public HttpResponseMessage Entities(int idIoTScenario)
        {
            // CAD, EN
            IoTScenarioRESTCAD ioTScenarioRESTCAD = null;
            IoTScenarioEN      ioTScenarioEN      = null;

            // returnValue
            List <EntityEN>   en          = null;
            List <EntityDTOA> returnValue = null;

            try
            {
                SessionInitializeWithoutTransaction();


                ioTScenarioRESTCAD = new IoTScenarioRESTCAD(session);

                // Exists IoTScenario
                ioTScenarioEN = ioTScenarioRESTCAD.ReadOIDDefault(idIoTScenario);
                if (ioTScenarioEN == null)
                {
                    throw new HttpResponseException(this.Request.CreateResponse(HttpStatusCode.NotFound, "IoTScenario#" + idIoTScenario + " not found"));
                }

                // Rol
                // TODO: paginación


                en = ioTScenarioRESTCAD.Entities(idIoTScenario).ToList();



                // Convert return
                if (en != null)
                {
                    returnValue = new List <EntityDTOA>();
                    foreach (EntityEN entry in en)
                    {
                        returnValue.Add(EntityAssembler.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 New_([FromBody] IoTScenarioDTO dto)
        {
            // CAD, CEN, returnValue, returnOID
            IoTScenarioRESTCAD ioTScenarioRESTCAD = null;
            IoTScenarioCEN     ioTScenarioCEN     = null;
            IoTScenarioDTOA    returnValue        = null;
            int returnOID = -1;

            // HTTP response
            HttpResponseMessage response = null;
            string uri = null;

            try
            {
                SessionInitializeTransaction();


                ioTScenarioRESTCAD = new IoTScenarioRESTCAD(session);
                ioTScenarioCEN     = new IoTScenarioCEN(ioTScenarioRESTCAD);

                // Create
                returnOID = ioTScenarioCEN.New_(
                    dto.Name                                                                                     //Atributo Primitivo: p_name
                    , dto.Description                                                                            //Atributo Primitivo: p_description
                    );
                SessionCommit();

                // Convert return
                returnValue = IoTScenarioAssembler.Convert(ioTScenarioRESTCAD.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("GetOIDIoTScenario", routeValues);
             * response.Headers.Location = new Uri(uri);
             */

            return(response);
        }