Newer
Older

Yassine Doghri
committed

Yassine Doghri
committed
declare(strict_types=1);

Yassine Doghri
committed
/**
* @copyright 2020 Podlibre
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
* @link https://castopod.org/
*/
namespace App\Controllers;

Yassine Doghri
committed
use App\Models\EpisodeModel;
use App\Models\PodcastModel;
use CodeIgniter\Controller;
use CodeIgniter\Exceptions\PageNotFoundException;
use CodeIgniter\HTTP\ResponseInterface;
use Exception;
use Opawg\UserAgentsPhp\UserAgentsRSS;
class FeedController extends Controller
public function index(string $podcastName): ResponseInterface

Yassine Doghri
committed
helper('rss');
$podcast = (new PodcastModel())->where('name', $podcastName)
->first();
if (! $podcast) {

Yassine Doghri
committed
throw PageNotFoundException::forPageNotFound();

Yassine Doghri
committed
$service = null;

Yassine Doghri
committed
$service = UserAgentsRSS::find($_SERVER['HTTP_USER_AGENT']);
} catch (Exception $exception) {
// If things go wrong the show must go on and the user must be able to download the file

Yassine Doghri
committed
log_message('critical', $exception->getMessage());

Yassine Doghri
committed

Yassine Doghri
committed
$serviceSlug = '';
if ($service) {
$serviceSlug = $service['slug'];
}
"podcast#{$podcast->id}_feed" . ($service ? "_{$serviceSlug}" : '');

Yassine Doghri
committed
if (! ($found = cache($cacheName))) {

Benjamin Bellamy
committed
$found = get_rss_feed($podcast, $serviceSlug);

Yassine Doghri
committed
// The page cache is set to expire after next episode publication or a decade by default so it is deleted manually upon podcast update
$secondsToNextUnpublishedEpisode = (new EpisodeModel())->getSecondsToNextUnpublishedEpisode(
$podcast->id,

Yassine Doghri
committed
);
cache()
->save(
$cacheName,
$found,
$secondsToNextUnpublishedEpisode

Yassine Doghri
committed
? $secondsToNextUnpublishedEpisode
);
return $this->response->setXML($found);