src/Controller/UploadController.php line 139

Open in your IDE?
  1. <?php
  2. namespace App\Controller;
  3. use App\Entity\Episode;
  4. use App\Entity\Podcast;
  5. use App\Service\SFonction;
  6. use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
  7. use Symfony\Component\HttpFoundation\JsonResponse;
  8. use Symfony\Component\HttpFoundation\Response;
  9. use Symfony\Component\Routing\Annotation\Route;
  10. class UploadController extends AbstractController
  11. {
  12.     public function index($ok=1,$info="")
  13.     {
  14.         if ($ok==0) {// THROW A 400 ERROR ON FAILURE
  15.             http_response_code(400);
  16.         }
  17.         return new JsonResponse(["ok"=>$ok"info"=>$info], Response::HTTP_OK);
  18.     }
  19.     /**
  20.      * @Route("/__upload", name="__admin_upload")
  21.      */
  22.     public function __adminUpload(SFonction $sFonction)
  23.     {
  24.         $id_client      $this->getUser()->getId();
  25.         $idEpisode      $_GET["id_episode"] ?? '';
  26.         $idPodcast      $_GET["id_podcast"] ?? '';
  27.         $idAudio        $_GET["id_audio"] ?? '';
  28.         $type           $_GET["type"] ?? '';
  29.         if ($type == 'episode') {
  30.             $filePath $sFonction->cheminAssetEpisode($id_client$idEpisode);
  31.         } elseif ($type == 'premixAsset')  {
  32.             $filePath $sFonction->cheminAssetPremix($idAudio) . 'upload/';
  33.         } elseif ($type == 'premixAudio')  {
  34.             $filePath $sFonction->cheminAudioPremix($idAudio) . 'upload/';
  35.         } elseif ($type == 'editAudio')  {
  36.             $filePath $sFonction->cheminAudioEdit($idAudio) . 'upload/';
  37.         } else {
  38.             $filePath $sFonction->cheminAssetPodcast($id_client$idPodcast);
  39.         }
  40.         if (empty($_FILES) || $_FILES['file']['error']) {   // INVALID UPLOAD
  41.             index(0"Failed to move uploaded file.");
  42.         }
  43.         if (!file_exists($filePath)) {
  44.             $sFonction->creationRepertoire($filePath);
  45.         }
  46.         $fileName = isset($_REQUEST["name"]) ? $_REQUEST["name"] : $_FILES["file"]["name"];
  47.         $fileNameCmps explode("."$fileName);
  48.         $fileExtension strtolower(end($fileNameCmps));
  49.         unset($fileNameCmps[count($fileNameCmps)-1]);       //Supprime l'extension
  50.         $fileName implode('-'$fileNameCmps);
  51.         $fileName $sFonction->cleanCaracteresSpeciaux($fileName);
  52.         $fileName $fileName '.' $fileExtension;
  53.         $filePath $filePath '/' $fileName;
  54.         // DEAL WITH CHUNKS
  55.         $chunk = isset($_REQUEST["chunk"]) ? intval($_REQUEST["chunk"]) : 0;
  56.         $chunks = isset($_REQUEST["chunks"]) ? intval($_REQUEST["chunks"]) : 0;
  57.         $out fopen("{$filePath}.part"$chunk == "wb" "ab");
  58.         if ($out) {
  59.             $in = @fopen($_FILES['file']['tmp_name'], "rb");
  60.             if ($in) {
  61.                 while ($buff fread($in4096)) { fwrite($out$buff); }
  62.             } else {
  63.                 index(0"Failed to open input stream1");
  64.             }
  65.             @fclose($in);
  66.             @fclose($out);
  67.             @unlink($_FILES['file']['tmp_name']);
  68.         } else {
  69.             index(0"Failed to open output stream2");
  70.         }
  71.         // CHECK IF FILE HAS BEEN UPLOADED
  72.         if (!$chunks || $chunk == $chunks 1) {
  73.             rename("{$filePath}.part"$filePath);
  74.             if ($type == 'premixAsset' || $type == 'premixAudio' || $type == 'editAudio') {
  75.                 return new JsonResponse(["ok"=>1"fileName"=>$fileName], Response::HTTP_OK);
  76.             } else if ($idEpisode != '') {
  77.                 /*$sql = "SELECT e.*
  78.                         FROM episode e
  79.                         WHERE e.id = '".$idEpisode."' AND e.id_client = '".$id_client."';";
  80.                 $reponse = $bdd->query($sql);
  81.                 $reponse = $reponse->fetch();
  82.                 if (false !== $reponse) {
  83.                     rename($filePath, 'doc/'.($reponse['id_client'] ?? '').'/'.($reponse['id'] ?? '').'/asset/'.$fileName);*/
  84.                     return new JsonResponse(["ok"=>1"fileName"=>$fileName], Response::HTTP_OK);
  85.                 //}
  86.             } else if ($idPodcast != '') {
  87.                 /*$sql = "SELECT p.*
  88.                         FROM podcast p
  89.                         WHERE p.id = '".$idPodcast."' AND p.id_client = '".$id_client."';";
  90.                 $reponse = $bdd->query($sql);
  91.                 $reponse = $reponse->fetch();
  92.                 if (false !== $reponse) {
  93.                     rename($filePath, 'doc/'.($reponse['id_client'] ?? '').'/podcast-'.($idPodcast).'/asset/'.$fileName);*/
  94.                     return new JsonResponse(["ok"=>1"fileName"=>$fileName], Response::HTTP_OK);
  95.                 //}
  96.             }
  97.         }
  98.         return new JsonResponse(["ok" => 1], Response::HTTP_OK);
  99.         //index(1, "Upload OK");
  100.     }
  101. /**
  102.      * @Route("/__suppression", name="__admin_suppression")
  103.      */
  104.     public function __adminSuppression(SFonction $sFonction)
  105.     {
  106.         $em $this->getDoctrine()->getManager();
  107.         $id_client $this->getUser()->getId();
  108.         if(isset($_GET["fichier"]) && $_GET["fichier"] != '') {
  109.             if(isset($_GET["id_podcast"]) && $_GET["id_podcast"] != '') {
  110.                 $idPodcast          $_GET['id_podcast'] ?? '';
  111.                 $fichier            $_GET['fichier'] ?? '';
  112.                 $donnees $em->getRepository(Podcast::class)->detailPodcast($id_client$idPodcast);
  113.                 if (is_array($donnees)) {
  114.                     $chemin $sFonction->cheminAssetPodcast($id_client$idPodcast) . $fichier;
  115.                     if (file_exists($chemin)) {
  116.                         unlink($chemin);
  117.                     }
  118.                 }
  119.             } else if(isset($_GET["id_episode"]) && $_GET["id_episode"] != '') {
  120.                 $idEpisode          $_GET['id_episode'] ?? '';
  121.                 $fichier            $_GET['fichier'] ?? '';
  122.                 $donnees $em->getRepository(Episode::class)->detailEpisode($id_client$idEpisode);
  123.                 if (is_array($donnees)) {
  124.                     $chemin $sFonction->cheminAssetEpisode($id_client$donnees['id']) . $fichier;
  125.                     if (file_exists($chemin)) {
  126.                         unlink($chemin);
  127.                     }
  128.                 }
  129.             } else if(isset($_GET["id_premix"]) && $_GET["id_premix"] != '') {
  130.                 $idPremix          $_GET['id_premix'] ?? '';
  131.                 $fichier           $_GET['fichier'] ?? '';
  132.                 $type              $_GET['type'] ?? '';
  133.                 //$donnees = $em->getRepository(Episode::class)->detailEpisode($id_client, $idPremix);
  134.                 //if (is_array($donnees)) {
  135.                     if ($type == 'audio') {
  136.                         $chemin $sFonction->cheminAudioPremix($idPremix) . 'upload/' $fichier;
  137.                     } elseif ($type == 'asset') {
  138.                         $chemin $sFonction->cheminAssetPremix($idPremix) . 'upload/' $fichier;
  139.                     } else if ($type == 'editAudio') {
  140.                         $chemin $sFonction->cheminAudioEdit($idPremix) . 'upload/' $fichier;
  141.                     }
  142.                     if (file_exists($chemin)) {
  143.                         unlink($chemin);
  144.                     }
  145.                // }
  146.             } else if(isset($_GET["id_edit"]) && $_GET["id_edit"] != '') {
  147.                 $idEdit            $_GET['id_edit'] ?? '';
  148.                 $fichier           $_GET['fichier'] ?? '';
  149.                 $type              $_GET['type'] ?? '';
  150.                 //$donnees = $em->getRepository(Episode::class)->detailEpisode($id_client, $idPremix);
  151.                 //if (is_array($donnees)) {
  152.                     if ($type == 'audio') {
  153.                         $chemin $sFonction->cheminAudioEdit($idEdit) . 'upload/' $fichier;
  154.                     }
  155.                     if (file_exists($chemin)) {
  156.                         unlink($chemin);
  157.                     }
  158.                // }
  159.             }
  160.         }
  161.         return new JsonResponse(["ok"=>1], Response::HTTP_OK);
  162.     }
  163. }