Ejemplo n.º 1
0
        public void Delete(Interval request)
        {
            using (Execute)
            {
                Execute.Run(ssn =>
                {
                    if (!(request?.Id > 0))
                    {
                        throw new HttpError(HttpStatusCode.NotFound, $"No Id provided for delete.");
                    }

                    var en = DocEntityInterval.Get(request?.Id);
                    if (null == en)
                    {
                        throw new HttpError(HttpStatusCode.NotFound, $"No Interval could be found for Id {request?.Id}.");
                    }
                    if (en.IsRemoved)
                    {
                        return;
                    }

                    if (!DocPermissionFactory.HasPermission(en, currentUser, DocConstantPermission.DELETE))
                    {
                        throw new HttpError(HttpStatusCode.Forbidden, "You do not have DELETE permission for this route.");
                    }

                    en.Remove();

                    DocCacheClient.RemoveSearch(DocConstantModelName.INTERVAL);
                    DocCacheClient.RemoveById(request.Id);
                });
            }
        }
Ejemplo n.º 2
0
        private Interval GetInterval(Interval request)
        {
            var      id    = request?.Id;
            Interval ret   = null;
            var      query = DocQuery.ActiveQuery ?? Execute;

            DocPermissionFactory.SetSelect <Interval>(currentUser, "Interval", request.Select);

            DocEntityInterval entity = null;

            if (id.HasValue)
            {
                entity = DocEntityInterval.Get(id.Value);
            }
            if (null == entity)
            {
                throw new HttpError(HttpStatusCode.NotFound, $"No Interval found for Id {id.Value}");
            }

            if (!DocPermissionFactory.HasPermission(entity, currentUser, DocConstantPermission.VIEW))
            {
                throw new HttpError(HttpStatusCode.Forbidden, "You do not have VIEW permission for this route.");
            }

            ret = entity?.ToDto();
            return(ret);
        }
Ejemplo n.º 3
0
        public Interval Post(IntervalCopy request)
        {
            Interval ret = null;

            using (Execute)
            {
                Execute.Run(ssn =>
                {
                    var entity = DocEntityInterval.Get(request?.Id);
                    if (null == entity)
                    {
                        throw new HttpError(HttpStatusCode.NoContent, "The COPY request did not succeed.");
                    }
                    if (!DocPermissionFactory.HasPermission(entity, currentUser, DocConstantPermission.ADD))
                    {
                        throw new HttpError(HttpStatusCode.Forbidden, "You do not have ADD permission for this route.");
                    }

                    var pCalendarDateEnd   = entity.CalendarDateEnd;
                    var pCalendarDateStart = entity.CalendarDateStart;
                    var pCalendarType      = entity.CalendarType;
                    if (!DocTools.IsNullOrEmpty(pCalendarType))
                    {
                        pCalendarType += " (Copy)";
                    }
                    var pFollowUp  = entity.FollowUp;
                    var pTimeOfDay = entity.TimeOfDay;
                    var copy       = new DocEntityInterval(ssn)
                    {
                        Hash = Guid.NewGuid()
                        , CalendarDateEnd   = pCalendarDateEnd
                        , CalendarDateStart = pCalendarDateStart
                        , CalendarType      = pCalendarType
                        , FollowUp          = pFollowUp
                        , TimeOfDay         = pTimeOfDay
                    };

                    copy.SaveChanges(DocConstantPermission.ADD);
                    ret = copy.ToDto();
                });
            }
            return(ret);
        }