public JsonResult DeleteChoix(int idChoix) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Info, string.Format("deleteChoix.Choix.Entrée(idChoix: {0})", idChoix)); var pothImage = Path.Combine(Server.MapPath(ConfigHelper._CST_DIRECTORY_IMAGE)); MediaController med = new MediaController(); var choix = DALChoix.FindById(idChoix); try { if (choix.image_id != null) { med.DeleteImage((int)choix.image_id, pothImage); DALMedia.DeleteImage((int)choix.image_id); } DALChoix.DeleteChoix(idChoix); } catch (Exception e) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Erreur, string.Format("deleteChoix.Choix.Exception(Exception: {0})", e)); return(Json(ErrorList.deleteChoix)); } return(Json(1)); }
public JsonResult UpdateChoix(ViewModelChoixQuestion model) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Info, string.Format("updateChoix.Choix.Entrée(idElement: {0})", model.idElement)); int idChoixRetour = 0; try { var choix = DALChoix.FindById(model.idChoix); choix.intitule = model.intituleChoix; choix.statut = model.statutChoix; DALChoix.UpdateChoix(choix); idChoixRetour = choix.Id; Tools.Logger.Ecrire(Tools.Logger.Niveau.Info, string.Format("updateChoix.Choix.Sortie(idChoix: {0})", choix.Id)); } catch (Exception e) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Erreur, string.Format("insertChoix.Choix.Exception(Exception : {0})", e)); return(Json(ErrorList.updateChoix)); } return(Json(idChoixRetour)); }
/** * Position image choix est le 3. Mais ça n'a pas grand intéret */ public JsonResult AddImageChoix(HttpPostedFileBase file, int id) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Info, string.Format("AddImageChoix.Media.Entrée(fileName : {0})", file.FileName)); var newFileName = ""; var imagePath = Path.Combine(Server.MapPath(Tools.ConfigHelper._CST_DIRECTORY_IMAGE)); var image = new Images(); var idImage = 0; ViewModelMedia model = new ViewModelMedia(); if (file != null) { try { //La je dois recup l'Id de l'élément et je fais un substring sur le nom du fichier var y = file.FileName; string idChoix = y.Substring(0, y.IndexOf(".")); newFileName = Guid.NewGuid().ToString() + "_" + Path.GetFileName(file.FileName); image.format = y.Substring(idChoix.Length + 1); image.nom = newFileName.Substring(0, newFileName.IndexOf(".")); image.idchoix = int.Parse(idChoix); image.position = 3; DALMedia.AddMediaUp(image); //TODO A voir le format du lien car ne marche pas imagePath = imagePath + image.nom + "." + image.format; file.SaveAs(imagePath); imagePath = Url.Content(Tools.ConfigHelper._CST_DIRECTORY_IMAGE + image.nom + "." + image.format); var choix = DALChoix.FindById(int.Parse(idChoix)); if (choix.image_id != null) { DeleteImage((int)choix.image_id); } choix.imagePath = Url.Content(Tools.ConfigHelper._CST_DIRECTORY_IMAGE + image.nom + "." + image.format); choix.image_id = image.Id; DALChoix.UpdateChoix(choix); model.imagePath = imagePath; model.idImage = image.Id; Tools.Logger.Ecrire(Tools.Logger.Niveau.Info, string.Format("AddImageChoix.Media.Sortie(imagePath : {0}, idImage : {1})", model.imagePath, model.idImage)); } catch (Exception e) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Erreur, string.Format("AddImageChoix.Media.Exception(Exception : {0})", e)); return(Json(ErrorList.addImageChoix)); } } return(Json(model)); }
public JsonResult DeleteImageWithPath(int idImage, string poth) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Info, string.Format("deleteImage.Media.Entrée(idImage: {0})", idImage)); string pathImage = null; var imagePath = poth; var image = DALMedia.FindImageById(idImage); try { if (image.idelement != null) { if (DALMedia.SelectAllFromElement((int)image.idelement).Count == 1) { pathImage = imagePath + image.nom + "." + image.format; DALMedia.DeleteImage(image.Id); if (System.IO.File.Exists(pathImage)) { System.IO.File.Delete(pathImage); } } else { pathImage = imagePath + image.nom + "." + image.format; DALMedia.DeleteImage(image.Id); if (System.IO.File.Exists(pathImage)) { System.IO.File.Delete(pathImage); } //var images = MediaManager.ListeApresImage(imageBis); var images = DALMedia.ListeApresImage(image); DALMedia.ReorderAfterDelete(images, (int)image.ordre); } } } catch (Exception e) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Erreur, string.Format("deleteImage.Media.Exeption(exception : {0})", e)); return(Json(ErrorList.deleteImage)); } try { if (image.idchoix != null) { var choix = DALChoix.FindById((int)image.idchoix); choix.imagePath = null; choix.image_id = null; DALChoix.UpdateChoix(choix); pathImage = imagePath + image.nom + "." + image.format; DALMedia.DeleteImage(image.Id); if (System.IO.File.Exists(pathImage)) { System.IO.File.Delete(pathImage); } } } catch (Exception e) { Tools.Logger.Ecrire(Tools.Logger.Niveau.Erreur, string.Format("deleteImageChoix.Media.Exeption(exception : {0})", e)); return(Json(ErrorList.deleteImageChoix)); } return(Json(false)); }