4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 13:16:37 +00:00
AzuraCast/src/Controller/Api/Stations/Files/FlowUploadAction.php
Buster "Silver Eagle" Neece c81ff62b5c
Remove the Song entity and restructure dependent tables accordingly (#3231)
* Song database and entity overhaul, part 1.
* Remove Songs table from a number of qeries and reports.
* Fix references to Songs table; rewrite StationMedia processing.
* Remove song reference in queue page.
* Allow custom log level via environment variable.
2020-10-04 17:35:41 -05:00

72 lines
2.4 KiB
PHP

<?php
namespace App\Controller\Api\Stations\Files;
use App\Entity;
use App\Http\Response;
use App\Http\ServerRequest;
use App\Service\Flow;
use Doctrine\ORM\EntityManagerInterface;
use Psr\Http\Message\ResponseInterface;
class FlowUploadAction
{
public function __invoke(
ServerRequest $request,
Response $response,
EntityManagerInterface $em,
Entity\Repository\StationMediaRepository $mediaRepo,
Entity\Repository\StationPlaylistMediaRepository $spmRepo
): ResponseInterface {
$params = $request->getParams();
$station = $request->getStation();
if ($station->isStorageFull()) {
return $response->withStatus(500)
->withJson(new Entity\Api\Error(500, __('This station is out of available storage space.')));
}
$flowResponse = Flow::process($request, $response, $station->getRadioTempDir());
if ($flowResponse instanceof ResponseInterface) {
return $flowResponse;
}
if (is_array($flowResponse)) {
$file = $request->getAttribute('file');
$filePath = $request->getAttribute('file_path');
$sanitizedName = $flowResponse['filename'];
$finalPath = empty($file)
? $filePath . $sanitizedName
: $filePath . '/' . $sanitizedName;
$station_media = $mediaRepo->getOrCreate($station, $finalPath, $flowResponse['path']);
// If the user is looking at a playlist's contents, add uploaded media to that playlist.
if (!empty($params['searchPhrase'])) {
$search_phrase = $params['searchPhrase'];
if (0 === strpos($search_phrase, 'playlist:')) {
$playlist_name = substr($search_phrase, 9);
$playlist = $em->getRepository(Entity\StationPlaylist::class)->findOneBy([
'station_id' => $station->getId(),
'name' => $playlist_name,
]);
if ($playlist instanceof Entity\StationPlaylist) {
$spmRepo->addMediaToPlaylist($station_media, $playlist);
$em->flush();
}
}
}
$station->addStorageUsed($flowResponse['size']);
$em->flush();
return $response->withJson(new Entity\Api\Status);
}
return $response->withJson(['success' => false]);
}
}