1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
| <?php
namespace App\Services\RSS;
use App\Models\Article; use App\Models\Category; use Illuminate\Support\Facades\Cache;
class RSSBuilder { protected int $limit = 50; protected bool $cacheEnabled = true; protected int $cacheTtl = 3600; public function buildMainFeed(): RSSFeed { if ($this->cacheEnabled) { return Cache::remember('rss.main', $this->cacheTtl, function () { return $this->createMainFeed(); }); } return $this->createMainFeed(); } protected function createMainFeed(): RSSFeed { $config = config('rss.feeds.main', []); $feed = new RSSFeed([ 'title' => $config['title'] ?? config('app.name'), 'description' => $config['description'] ?? 'Latest articles', 'link' => $config['url'] ?? url('/feed'), 'language' => $config['language'] ?? 'en-us', ]); if (!empty($config['image'])) { $feed->setImage($config['image']); } $articles = Article::where('status', 'published') ->orderBy('published_at', 'desc') ->limit($this->limit) ->get(); foreach ($articles as $article) { $feed->addItem($this->articleToItem($article)); } return $feed; } public function buildCategoryFeed(Category $category): RSSFeed { $feed = new RSSFeed([ 'title' => $category->name . ' - ' . config('app.name'), 'description' => $category->description ?? "Articles in {$category->name}", 'link' => route('rss.category', $category), 'language' => 'en-us', ]); $articles = Article::where('status', 'published') ->where('category_id', $category->id) ->orderBy('published_at', 'desc') ->limit($this->limit) ->get(); foreach ($articles as $article) { $feed->addItem($this->articleToItem($article)); } return $feed; } public function buildAuthorFeed(string $authorId): RSSFeed { $author = \App\Models\User::findOrFail($authorId); $feed = new RSSFeed([ 'title' => "Articles by {$author->name}", 'description' => "Latest articles by {$author->name}", 'link' => route('rss.author', $author), 'language' => 'en-us', ]); $articles = Article::where('status', 'published') ->where('author_id', $author->id) ->orderBy('published_at', 'desc') ->limit($this->limit) ->get(); foreach ($articles as $article) { $feed->addItem($this->articleToItem($article)); } return $feed; } protected function articleToItem(Article $article): RSSItem { $item = new RSSItem([ 'title' => $article->title, 'description' => $article->excerpt ?? Str::limit(strip_tags($article->content), 300), 'link' => route('articles.show', $article), 'guid' => (string) $article->id, 'pubDate' => $article->published_at, 'author' => $article->author->email . ' (' . $article->author->name . ')', 'content' => $article->content, ]); if ($article->categories->isNotEmpty()) { foreach ($article->categories as $category) { $item->addCategory($category->name); } } if ($article->featured_image) { $item->setEnclosure( Storage::url($article->featured_image), Storage::size($article->featured_image), 'image/jpeg' ); } return $item; } public function clearCache(): void { Cache::forget('rss.main'); } }
|