コード例 #1
0
        public ActionResult Create(Photobook photobook,
                                   [FromForm(Name = "cover")] IFormFile cover,
                                   [FromForm(Name = "files")] IEnumerable <IFormFile> files)
        {
            //var x = Request.Form.Files;
            if (ModelState.IsValid && cover != null && files?.Count() > 0)
            {
                try
                {
                    using var coverReadStream = cover.OpenReadStream();
                    MediaStreamContainer coverStreamContainer = new MediaStreamContainer(coverReadStream)
                    {
                        ContentType = cover.ContentType,
                        FileName    = cover.FileName
                    };


                    List <MediaStreamContainer> fileStreamContainers = new List <MediaStreamContainer>();
                    foreach (var file in files)
                    {
                        MediaStreamContainer fileStream = new MediaStreamContainer(file.OpenReadStream())
                        {
                            ContentType = file.ContentType,
                            FileName    = file.FileName
                        };
                        fileStreamContainers.Add(fileStream);
                    }


                    _mediaStoreService.Photobooks.Create(photobook, coverStreamContainer, fileStreamContainers);


                    //Disposable
                    coverStreamContainer.Dispose();
                    foreach (var f in fileStreamContainers)
                    {
                        f.Dispose();
                    }

                    return(RedirectToAction(nameof(Index)));
                }
                catch (Exception e)
                {
                    return(View());
                }
            }
            else
            {
                ModelState.AddModelError("files", "Please upload at least one image");
                ModelState.AddModelError("cover", "Please select one image");
                return(View(photobook));
            }
        }
コード例 #2
0
        private void OrderPhotobooksByPriority(List <string> payload)
        {
            int priority = payload.Count;

            foreach (var photobookId in payload)
            {
                Photobook photobook = _mediaStoreService.Photobooks.Get(photobookId);
                photobook.Priority = priority;
                _mediaStoreService.Photobooks.Update(photobookId, photobook);
                priority--;
            }
        }
コード例 #3
0
        // GET: Photobooks/Edit/5
        public ActionResult Edit(string id)
        {
            if (id == null)
            {
                return(BadRequest());
            }

            Photobook photoBook = _mediaStoreService.Photobooks.Get(id);

            if (photoBook == null)
            {
                return(NotFound());
            }

            return(View(photoBook));
        }
コード例 #4
0
        public ActionResult Edit(Photobook photobook)
        {
            if (ModelState.IsValid)
            {
                try
                {
                    Photobook p = _mediaStoreService.Photobooks.Get(photobook.Id);
                    p.Title            = photobook.Title;
                    p.SubTitle         = photobook.SubTitle;
                    p.Description      = photobook.Description;
                    p.CoverDescription = photobook.CoverDescription;
                    p.Attributes       = photobook.Attributes;

                    _mediaStoreService.Photobooks.Update(p.Id, p);
                    return(RedirectToAction(nameof(Index)));
                }
                catch
                {
                    return(View(photobook));
                }
            }
            return(View(photobook));
        }
コード例 #5
0
        // GET: Photobooks/Delete/5
        public PartialViewResult Delete(string id)
        {
            Photobook p = _mediaStoreService.Photobooks.Get(id);

            return(PartialView(p));
        }