Пример #1
0
        public static IoTScenarioDTOA Convert(IoTScenarioEN en, NHibernate.ISession session = null)
        {
            IoTScenarioDTOA    dto = null;
            IoTScenarioRESTCAD ioTScenarioRESTCAD = null;
            IoTScenarioCEN     ioTScenarioCEN     = null;
            IoTScenarioCP      ioTScenarioCP      = null;

            if (en != null)
            {
                dto = new IoTScenarioDTOA();
                ioTScenarioRESTCAD = new IoTScenarioRESTCAD(session);
                ioTScenarioCEN     = new IoTScenarioCEN(ioTScenarioRESTCAD);
                ioTScenarioCP      = new IoTScenarioCP(session);



                //
                // Attributes

                dto.Id = en.Id;

                dto.Name = en.Name;


                dto.Description = en.Description;


                //
                // TravesalLink


                //
                // Service
            }

            return(dto);
        }
        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);
            }
        }
        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);
        }
        public HttpResponseMessage ReadOID(int idIoTScenario)
        {
            // CAD, CEN, EN, returnValue
            IoTScenarioRESTCAD ioTScenarioRESTCAD = null;
            IoTScenarioCEN     ioTScenarioCEN     = null;
            IoTScenarioEN      ioTScenarioEN      = null;
            IoTScenarioDTOA    returnValue        = null;

            try
            {
                SessionInitializeWithoutTransaction();


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

                // Data
                ioTScenarioEN = ioTScenarioCEN.ReadOID(idIoTScenario);

                // Convert return
                if (ioTScenarioEN != null)
                {
                    returnValue = IoTScenarioAssembler.Convert(ioTScenarioEN, 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));
            }
        }