mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-12 01:05:47 +00:00
47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* @copyright 2020 Podlibre
|
||
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
||
|
* @link https://castopod.org/
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Saves a file to the corresponding podcast folder in `public/media`
|
||
|
*
|
||
|
* @param UploadedFile $file
|
||
|
* @param string $podcast_name
|
||
|
* @param string $file_name
|
||
|
*
|
||
|
* @return string The absolute path of the file in media root
|
||
|
*/
|
||
|
function save_podcast_media($file, $podcast_name, $media_name)
|
||
|
{
|
||
|
$file_name = $media_name . '.' . $file->guessExtension();
|
||
|
|
||
|
// move to media folder and overwrite file if already existing
|
||
|
$file->move(
|
||
|
config('App')->mediaRoot . '/' . $podcast_name . '/',
|
||
|
$file_name,
|
||
|
true
|
||
|
);
|
||
|
|
||
|
return $podcast_name . '/' . $file_name;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Prefixes the root media path to a given uri
|
||
|
*
|
||
|
* @param mixed $uri URI string or array of URI segments
|
||
|
* @return string
|
||
|
*/
|
||
|
function media_path($uri = ''): string
|
||
|
{
|
||
|
// convert segment array to string
|
||
|
if (is_array($uri)) {
|
||
|
$uri = implode('/', $uri);
|
||
|
}
|
||
|
$uri = trim($uri, '/');
|
||
|
|
||
|
return config('App')->mediaRoot . '/' . $uri;
|
||
|
}
|