Cody Cook 635b3ddcbc
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 5m27s
Address changes.
2025-02-22 17:20:19 -08:00

65 lines
2.3 KiB
PHP

<?php
namespace DJMixHosting;
class RSS {
private string $channelTitle;
private string $channelLink;
private string $channelDescription;
private array $items = [];
private string $pubDateFormat = "D, d M Y H:i:s O";
public function __construct(string $title, string $link, string $description) {
$this->channelTitle = $title;
$this->channelLink = $link;
$this->channelDescription = $description;
}
/**
* Add an item to the RSS feed.
*
* @param string $title Item title.
* @param string $description Item description.
* @param string $link Item URL.
* @param string $pubDate A date/time string (accepted by strtotime).
*/
public function addItem(string $title, string $description, string $link, string $pubDate): void {
$this->items[] = [
'title' => htmlspecialchars($title),
'description' => htmlspecialchars($description),
'link' => $link,
'guid' => $link,
'pubDate' => date($this->pubDateFormat, strtotime($pubDate))
];
}
/**
* Generate the complete RSS XML.
*
* @return string The RSS XML string.
*/
public function generateXML(): string {
$xml = '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
$xml .= '<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">' . "\n";
$xml .= " <channel>\n";
$xml .= " <title>{$this->channelTitle}</title>\n";
$xml .= " <link>{$this->channelLink}</link>\n";
$xml .= " <description>{$this->channelDescription}</description>\n";
$xml .= " <lastBuildDate>" . date($this->pubDateFormat) . "</lastBuildDate>\n";
// Optionally add additional channel tags here
foreach ($this->items as $item) {
$xml .= " <item>\n";
$xml .= " <title>{$item['title']}</title>\n";
$xml .= " <description>{$item['description']}</description>\n";
$xml .= " <link>{$item['link']}</link>\n";
$xml .= " <guid>{$item['guid']}</guid>\n";
$xml .= " <pubDate>{$item['pubDate']}</pubDate>\n";
$xml .= " </item>\n";
}
$xml .= " </channel>\n";
$xml .= "</rss>";
return $xml;
}
}