<?php
namespace App\Controller;
use App\Entity\Episode;
use App\Entity\Podcast;
use App\Service\SFonction;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
class UploadController extends AbstractController
{
public function index($ok=1,$info="")
{
if ($ok==0) {// THROW A 400 ERROR ON FAILURE
http_response_code(400);
}
return new JsonResponse(["ok"=>$ok, "info"=>$info], Response::HTTP_OK);
}
/**
* @Route("/__upload", name="__admin_upload")
*/
public function __adminUpload(SFonction $sFonction)
{
$id_client = $this->getUser()->getId();
$idEpisode = $_GET["id_episode"] ?? '';
$idPodcast = $_GET["id_podcast"] ?? '';
$idAudio = $_GET["id_audio"] ?? '';
$type = $_GET["type"] ?? '';
if ($type == 'episode') {
$filePath = $sFonction->cheminAssetEpisode($id_client, $idEpisode);
} elseif ($type == 'premixAsset') {
$filePath = $sFonction->cheminAssetPremix($idAudio) . 'upload/';
} elseif ($type == 'premixAudio') {
$filePath = $sFonction->cheminAudioPremix($idAudio) . 'upload/';
} elseif ($type == 'editAudio') {
$filePath = $sFonction->cheminAudioEdit($idAudio) . 'upload/';
} else {
$filePath = $sFonction->cheminAssetPodcast($id_client, $idPodcast);
}
if (empty($_FILES) || $_FILES['file']['error']) { // INVALID UPLOAD
index(0, "Failed to move uploaded file.");
}
if (!file_exists($filePath)) {
$sFonction->creationRepertoire($filePath);
}
$fileName = isset($_REQUEST["name"]) ? $_REQUEST["name"] : $_FILES["file"]["name"];
$fileNameCmps = explode(".", $fileName);
$fileExtension = strtolower(end($fileNameCmps));
unset($fileNameCmps[count($fileNameCmps)-1]); //Supprime l'extension
$fileName = implode('-', $fileNameCmps);
$fileName = $sFonction->cleanCaracteresSpeciaux($fileName);
$fileName = $fileName . '.' . $fileExtension;
$filePath = $filePath . '/' . $fileName;
// DEAL WITH CHUNKS
$chunk = isset($_REQUEST["chunk"]) ? intval($_REQUEST["chunk"]) : 0;
$chunks = isset($_REQUEST["chunks"]) ? intval($_REQUEST["chunks"]) : 0;
$out = fopen("{$filePath}.part", $chunk == 0 ? "wb" : "ab");
if ($out) {
$in = @fopen($_FILES['file']['tmp_name'], "rb");
if ($in) {
while ($buff = fread($in, 4096)) { fwrite($out, $buff); }
} else {
index(0, "Failed to open input stream1");
}
@fclose($in);
@fclose($out);
@unlink($_FILES['file']['tmp_name']);
} else {
index(0, "Failed to open output stream2");
}
// CHECK IF FILE HAS BEEN UPLOADED
if (!$chunks || $chunk == $chunks - 1) {
rename("{$filePath}.part", $filePath);
if ($type == 'premixAsset' || $type == 'premixAudio' || $type == 'editAudio') {
return new JsonResponse(["ok"=>1, "fileName"=>$fileName], Response::HTTP_OK);
} else if ($idEpisode != '') {
/*$sql = "SELECT e.*
FROM episode e
WHERE e.id = '".$idEpisode."' AND e.id_client = '".$id_client."';";
$reponse = $bdd->query($sql);
$reponse = $reponse->fetch();
if (false !== $reponse) {
rename($filePath, 'doc/'.($reponse['id_client'] ?? '').'/'.($reponse['id'] ?? '').'/asset/'.$fileName);*/
return new JsonResponse(["ok"=>1, "fileName"=>$fileName], Response::HTTP_OK);
//}
} else if ($idPodcast != '') {
/*$sql = "SELECT p.*
FROM podcast p
WHERE p.id = '".$idPodcast."' AND p.id_client = '".$id_client."';";
$reponse = $bdd->query($sql);
$reponse = $reponse->fetch();
if (false !== $reponse) {
rename($filePath, 'doc/'.($reponse['id_client'] ?? '').'/podcast-'.($idPodcast).'/asset/'.$fileName);*/
return new JsonResponse(["ok"=>1, "fileName"=>$fileName], Response::HTTP_OK);
//}
}
}
return new JsonResponse(["ok" => 1], Response::HTTP_OK);
//index(1, "Upload OK");
}
/**
* @Route("/__suppression", name="__admin_suppression")
*/
public function __adminSuppression(SFonction $sFonction)
{
$em = $this->getDoctrine()->getManager();
$id_client = $this->getUser()->getId();
if(isset($_GET["fichier"]) && $_GET["fichier"] != '') {
if(isset($_GET["id_podcast"]) && $_GET["id_podcast"] != '') {
$idPodcast = $_GET['id_podcast'] ?? '';
$fichier = $_GET['fichier'] ?? '';
$donnees = $em->getRepository(Podcast::class)->detailPodcast($id_client, $idPodcast);
if (is_array($donnees)) {
$chemin = $sFonction->cheminAssetPodcast($id_client, $idPodcast) . $fichier;
if (file_exists($chemin)) {
unlink($chemin);
}
}
} else if(isset($_GET["id_episode"]) && $_GET["id_episode"] != '') {
$idEpisode = $_GET['id_episode'] ?? '';
$fichier = $_GET['fichier'] ?? '';
$donnees = $em->getRepository(Episode::class)->detailEpisode($id_client, $idEpisode);
if (is_array($donnees)) {
$chemin = $sFonction->cheminAssetEpisode($id_client, $donnees['id']) . $fichier;
if (file_exists($chemin)) {
unlink($chemin);
}
}
} else if(isset($_GET["id_premix"]) && $_GET["id_premix"] != '') {
$idPremix = $_GET['id_premix'] ?? '';
$fichier = $_GET['fichier'] ?? '';
$type = $_GET['type'] ?? '';
//$donnees = $em->getRepository(Episode::class)->detailEpisode($id_client, $idPremix);
//if (is_array($donnees)) {
if ($type == 'audio') {
$chemin = $sFonction->cheminAudioPremix($idPremix) . 'upload/' . $fichier;
} elseif ($type == 'asset') {
$chemin = $sFonction->cheminAssetPremix($idPremix) . 'upload/' . $fichier;
} else if ($type == 'editAudio') {
$chemin = $sFonction->cheminAudioEdit($idPremix) . 'upload/' . $fichier;
}
if (file_exists($chemin)) {
unlink($chemin);
}
// }
} else if(isset($_GET["id_edit"]) && $_GET["id_edit"] != '') {
$idEdit = $_GET['id_edit'] ?? '';
$fichier = $_GET['fichier'] ?? '';
$type = $_GET['type'] ?? '';
//$donnees = $em->getRepository(Episode::class)->detailEpisode($id_client, $idPremix);
//if (is_array($donnees)) {
if ($type == 'audio') {
$chemin = $sFonction->cheminAudioEdit($idEdit) . 'upload/' . $fichier;
}
if (file_exists($chemin)) {
unlink($chemin);
}
// }
}
}
return new JsonResponse(["ok"=>1], Response::HTTP_OK);
}
}