Beispiel #1
0
        public void UpdateFile(string id, Rock.CMS.DTO.File File)
        {
            var currentUser = Rock.CMS.UserService.GetCurrentUser();

            if (currentUser == null)
            {
                throw new WebFaultException <string>("Must be logged in", System.Net.HttpStatusCode.Forbidden);
            }

            using (Rock.Data.UnitOfWorkScope uow = new Rock.Data.UnitOfWorkScope())
            {
                uow.objectContext.Configuration.ProxyCreationEnabled = false;
                Rock.CMS.FileService FileService  = new Rock.CMS.FileService();
                Rock.CMS.File        existingFile = FileService.Get(int.Parse(id));
                if (existingFile.Authorized("Edit", currentUser))
                {
                    uow.objectContext.Entry(existingFile).CurrentValues.SetValues(File);

                    if (existingFile.IsValid)
                    {
                        FileService.Save(existingFile, currentUser.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingFile.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Not Authorized to Edit this File", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }
Beispiel #2
0
        public void ApiCreateFile(string apiKey, Rock.CMS.DTO.File File)
        {
            using (Rock.Data.UnitOfWorkScope uow = new Rock.Data.UnitOfWorkScope())
            {
                Rock.CMS.UserService userService = new Rock.CMS.UserService();
                Rock.CMS.User        user        = userService.Queryable().Where(u => u.ApiKey == apiKey).FirstOrDefault();

                if (user != null)
                {
                    uow.objectContext.Configuration.ProxyCreationEnabled = false;
                    Rock.CMS.FileService FileService  = new Rock.CMS.FileService();
                    Rock.CMS.File        existingFile = new Rock.CMS.File();
                    FileService.Add(existingFile, user.PersonId);
                    uow.objectContext.Entry(existingFile).CurrentValues.SetValues(File);

                    if (existingFile.IsValid)
                    {
                        FileService.Save(existingFile, user.PersonId);
                    }
                    else
                    {
                        throw new WebFaultException <string>(existingFile.ValidationResults.AsDelimited(", "), System.Net.HttpStatusCode.BadRequest);
                    }
                }
                else
                {
                    throw new WebFaultException <string>("Invalid API Key", System.Net.HttpStatusCode.Forbidden);
                }
            }
        }