Skip to content

Repository files navigation

Please note: This package is still under development and not yet intended for productive usage but feel free to contribute.

Tentaclefeed FeedReader

testsCodeFactorPackagist VersionPackagist DownloadsGitmojiPackagist License

With this package it is easy to discover, read and parse RSS and ATOM feeds.

Installation

You can install this package via composer using:

composer require tentaclefeed/feedreader

The package will automatically register itself.

Publish configuration

To publish the FeedReader config file run:

php artisan vendor:publish --provider="Tentaclefeed\Feedreader\FeedreaderServiceProvider" --tag="config"

The default config file contains the following:

return [
/* |-------------------------------------------------------------------------- | Cache configuration |-------------------------------------------------------------------------- | | The FeedReader and Explorer can cache requests automatically for you to | increase performance. | */'cache' => [
'explorer' => [
'seconds' => 86400, // One day
],
'reader' => [
'seconds' => 1800, // 30 minutes
],
],
];

Usage

Discover Feeds

useTentaclefeed\Feedreader\Facades\FeedReader;
$feeds = FeedReader::discover('https://www.nytimes.com/');
/*Illuminate\Support\Collection {#491 #items: array:1 [ 0 => array:3 [ "title" => "RSS", "icon" => "http://nytimes.com/vi-assets/static-assets/apple-touch-icon-28865b72953380a40aa43318108876cb.png" "type" => "application/rss+xml", "href" => "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml" ] ]}*/

Read Feed

useTentaclefeed\Feedreader\Facades\FeedReader;
$feed = FeedReader::read('https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml');
/* Tentaclefeed\Feedreader\Models\Feed {#430 -title: "NYT > Top Stories" -subtitle: "" -icon: null -updated_at: Carbon\Carbon @1619976397 {#485} -author: null -rights: "Copyright 2021 The New York Times Company" -items: Illumin…\Collection {#487}}*/

API

Tentaclefeed\Feedreader\Models\Feed

MethodReturn typeDescription
$feed->getTitle()stringThe title of the feed.
$feed->getSubtitle()stringThe subtitle/description of the feed.
$feed->getUpdatedAt()Carbon\CarbonThe last modification date of the feed.
$feed->getAuthor()Tentaclefeed\Feedreader\Models\AuthorThe author of the feed.
$feed->getRights()stringCopyright notices.
$feed->getItems()Illuminate\Support\CollectionArticles from the feed.

Tentaclefeed\Feedreader\Models\Author

MethodReturn typeDescription
$author->getName()stringThe name of the author.
$author->getUri()string or nullThe uri of the author.

Tentaclefeed\Feedreader\Models\FeedItem

MethodReturn typeDescription
$item->getId()stringThe id of the item.
$item->getTitle()stringThe title of the item.
$item->getCreatedAt()Carbon\CarbonThe datetime the item was published/created.
$item->getUrl()stringThe url of the item.
$item->getSummary()stringThe content summary of the item.

Testing

Run the tests with:

composer test

TODO

  • Improve IconScraper to recognize more icons

License

The MIT License (MIT). Please see License File for more information.

About

A Simple Feed Reader Laravel Package

Topics

Resources

Code of conduct

Stars

1 star

Watchers

2 watching

Forks

Releases

Sponsor this project

Used by

Contributors

Languages