Ejemplo n.º 1
0
        public static string LocImageToString(LocImage img, string imgStatus)
        {
            string locString = "<table class='table table-striped'>";

            locString += "<tr><th>ID:</th><td>" + img.Id.ToString() + "</td></tr>";
            locString += "<tr><th>Featured Image?</th><td>" + img.FeaturedImg.ToString() + "</td></tr>";
            locString += "<tr><th>Image Mime Type:</th><td>" + img.ImageMimeType + "</td></tr>";
            locString += "<tr><th>Image Data:</th><td>";
            if (imgStatus == "")
            {
                if (img.ImageMimeType != null && img.ImageMimeType != "deleted")
                {
                    locString += "Existing Image";
                }
                else
                {
                    locString += "No Existing Image";
                }
            }
            else
            {
                locString += imgStatus;
            }
            locString += "</td></tr>";
            locString += "</table>";
            return(locString);
        }
Ejemplo n.º 2
0
        public ActionResult Delete(int id)
        {
            DbChangeLog log          = new DbChangeLog();
            LocImage    deletedImage = context.DeleteLocImage(id);

            log.UserName   = User.Identity.Name;
            log.Controller = ControllerContext.RouteData.Values["controller"].ToString();
            log.Action     = ControllerContext.RouteData.Values["action"].ToString();
            log.ItemId     = id;

            log.BeforeChange = Domain.Extensions.DbLogExtensions.LocImageToString(deletedImage, "The image is deleted");
            if (deletedImage != null)
            {
                log.Success = true;

                TempData["message"] = string.Format("The image was deleted");
            }
            else
            {
                log.Success       = false;
                log.Error         = "Unable to delete image";
                TempData["alert"] = "Sorry, there was an error, that Service has not been deleted";
            }
            context.SaveLog(log);
            return(RedirectToAction("Edit", "Locations", new { id = deletedImage.LocationId }));
        }
Ejemplo n.º 3
0
        public LocImage DeleteLocImage(int id)
        {
            LocImage dbEntry = context.LocImages.Find(id);

            if (dbEntry != null)
            {
                context.LocImages.Remove(dbEntry);

                context.SaveChanges();
                SaveLocImageXMLFile();
            }
            return(dbEntry);
        }
Ejemplo n.º 4
0
        public LocImage ImageByLocationID(int id)
        {
            LocImage img = (from n in context.LocImages
                            where n.LocationId == id
                            where n.FeaturedImg == true
                            select n).FirstOrDefault();

            /*LocImage img = context.LocImages
             *  .FirstOrDefault(l => l.LocationId == id);
             */

            return((img != null) ? img: new LocImage());
        }
Ejemplo n.º 5
0
        public FileContentResult GetImage(int id)
        {
            LocImage loc = (from n in context.LocImages
                            where n.Id == id
                            where n.FeaturedImg == true
                            select n).FirstOrDefault();

            if (loc != null)
            {
                return(File(loc.ImageData, loc.ImageMimeType));
            }
            else
            {
                return(null);
            }
        }
Ejemplo n.º 6
0
        // GET: LocImage/Edit/5
        public ActionResult Edit(int id)
        {
            if (id == 0)
            {
                TempData["alert"] = "Sorry, I could not find the item you were looking for. Please try again.";
                return(View("~/Locations"));
            }
            LocImage LocImage = context.ImageByLocationID(id);

            Location model = context.Locations.FirstOrDefault(l => l.Id == LocImage.LocationId);

            model.LocImage = LocImage;
            if (LocImage == null)
            {
                return(HttpNotFound());
            }
            return(View(model));
        }
Ejemplo n.º 7
0
 public void SaveLocImage(LocImage image)
 {
     if (image.Id == 0)
     {
         context.LocImages.Add(image);
     }
     else
     {
         LocImage dbEntry = context.LocImages.Find(image.Id);
         if (dbEntry != null)
         {
             dbEntry.FeaturedImg   = image.FeaturedImg;
             dbEntry.ImageMimeType = image.ImageMimeType;
             dbEntry.ImageData     = image.ImageData;
             dbEntry.LocationId    = image.LocationId;
         }
     }
     context.SaveChanges();
     SaveLocImageXMLFile();
 }
Ejemplo n.º 8
0
        public ActionResult Manage([Bind(Include = "Id, LocationId, FeaturedImg")] LocImage LocImage, HttpPostedFileBase image)
        {
            /***** Logging initial settings *****/

            DbChangeLog log = new DbChangeLog();

            log.UserName   = User.Identity.Name;
            log.Controller = "LocImage";
            Console.WriteLine("LocImage ID = " + LocImage.Id);
            log.Action = (LocImage.Id == 0) ? "Create" : "Edit";
            log.ItemId = LocImage.Id;
            // if this is an edit to an exhisting item, record the old item to the log
            if (log.Action == "Edit")
            {
                LocImage oldImage = context.ImageByLocationID(LocImage.LocationId);
                log.BeforeChange = Domain.Extensions.DbLogExtensions.LocImageToString(oldImage, "Image is being replaced");
            }
            if (image != null)
            {
                LocImage.ImageMimeType = image.ContentType;
                LocImage.ImageData     = new byte[image.ContentLength];
                image.InputStream.Read(LocImage.ImageData, 0, image.ContentLength);
            }
            // record the newly attempted change



            /***** end Logging initial settings *****/

            if (ModelState.IsValid)
            {
                try
                {
                    context.SaveLocImage(LocImage);

                    // need to record the id here, if this item has just been created it will not have an ID until it has been recorded to the DB
                    log.ItemId          = LocImage.Id;
                    log.Success         = true;
                    log.AfterChange     = Domain.Extensions.DbLogExtensions.LocImageToString(LocImage, "");
                    TempData["message"] = string.Format("The image has been saved");
                }

                catch (Exception e)
                {
                    log.Error         = e.ToString();
                    log.Success       = false;
                    TempData["alert"] = "There has been an error. That item has not been saved";
                }
            }
            else
            {
                TempData["alert"] = string.Format("The image has not been saved. Please try again.");

                // record the errors and error status to the log
                log.Success = false;
                log.Error   = "Errors: ";
                foreach (ModelState modelState in ViewData.ModelState.Values)
                {
                    foreach (ModelError error in modelState.Errors)
                    {
                        log.Error += error + "<br />";
                    }
                }
            }

            context.SaveLog(log);


            return(RedirectToAction("Edit", "Locations", new { id = LocImage.LocationId }));
        }