diego-brocanelli/podcast-rss-reader

component for easy handling and management of rss feed for podcasts.

2.0.5 2021-03-20 14:28 UTC

This package is auto-updated.

Last update: 2024-04-20 21:00:42 UTC


README

Component for easy handling and management of rss feed for podcasts.

How to use

Requirements

PHP >= 7.4.

Instalation

composer require diego-brocanelli/podcast-rss-reader dev-main

How to contribute

Open an issue exposing your point to be analyzed, including detailing the point.

To contribute to the project, create a fork and send your pull request.

Tests

composer tests

Code Analysis

The command below will run PHPStan level 8 analysis.

composer analyse

PHP Code Sniffer

The command below will run PHPStan level 8 analysis.

composer phpcs

Test, Code Analysis and PHP Code Sniffer

composer all

Example

<?php

require_once __DIR__.'/vendor/autoload.php';

use DiegoBrocanelli\Podcast\Podcast;
use DiegoBrocanelli\Podcast\Reader;

$feed = 'https://devnaestrada.com.br/feed.xml';

$podcast = new Podcast( new Reader($feed) );

$podcast->getEpisodes(); //Return: array<Episodes>

Methods

info(): array

Responsible for returning the base data of the rss feed, with the exception of episodes.

Attribute Type
title string
link string
description string
lastBuildDate DateTime
pubDate DateTime
language string

getImageInfo()

Responsible for returning the DiegoBrocanelli\Podcast\Image object with its attributes.

Methods Return
getTitle() string
getUrl() string
getLink() string

getEpisodes()

Responsible for returning a list of DiegoBrocanelli\Podcast\Episode objects with their attributes.

Methods Return
getTitle() string
getLink() string
getPubDate() DateTime
getGuid() string
getComments() string
getCategory() string
getDescription() string
getAudio() string

lastBuildDate()

Responsible for returning the date for the last episode released, returning a DateTime object.

biggerThen(DateTime $date): array

Allows you to set a date to search for episodes. Bringing all records located from the date informed.

Author

4108889?s=460&v=4

License

MIT