| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137 |
- <?php
- class FreshRSS_Feed extends Minz_Model {
- /**
- * Normal RSS or Atom feed
- * @var int
- */
- public const KIND_RSS = 0;
- /**
- * Invalid RSS or Atom feed
- * @var int
- */
- public const KIND_RSS_FORCED = 2;
- /**
- * Normal HTML with XPath scraping
- * @var int
- */
- public const KIND_HTML_XPATH = 10;
- /**
- * Normal XML with XPath scraping
- * @var int
- */
- public const KIND_XML_XPATH = 15;
- /**
- * Normal JSON with XPath scraping
- * @var int
- */
- public const KIND_JSON_XPATH = 20;
- public const PRIORITY_MAIN_STREAM = 10;
- public const PRIORITY_NORMAL = 0;
- public const PRIORITY_ARCHIVED = -10;
- public const TTL_DEFAULT = 0;
- public const ARCHIVING_RETENTION_COUNT_LIMIT = 10000;
- public const ARCHIVING_RETENTION_PERIOD = 'P3M';
- /** @var int */
- private $id = 0;
- /** @var string */
- private $url = '';
- /** @var int */
- private $kind = 0;
- /** @var int */
- private $categoryId = 1;
- /** @var FreshRSS_Category|null */
- private $category;
- /** @var int */
- private $nbEntries = -1;
- /** @var int */
- private $nbNotRead = -1;
- /** @var int */
- private $nbPendingNotRead = 0;
- /** @var string */
- private $name = '';
- /** @var string */
- private $website = '';
- /** @var string */
- private $description = '';
- /** @var int */
- private $lastUpdate = 0;
- /** @var int */
- private $priority = self::PRIORITY_MAIN_STREAM;
- /** @var string */
- private $pathEntries = '';
- /** @var string */
- private $httpAuth = '';
- /** @var bool */
- private $error = false;
- /** @var int */
- private $ttl = self::TTL_DEFAULT;
- /** @var array<string,mixed> */
- private $attributes = [];
- /** @var bool */
- private $mute = false;
- /** @var string */
- private $hash = '';
- /** @var string */
- private $lockPath = '';
- /** @var string */
- private $hubUrl = '';
- /** @var string */
- private $selfUrl = '';
- /** @var array<FreshRSS_FilterAction> $filterActions */
- private $filterActions = null;
- public function __construct(string $url, bool $validate = true) {
- if ($validate) {
- $this->_url($url);
- } else {
- $this->url = $url;
- }
- }
- public static function example(): FreshRSS_Feed {
- $f = new FreshRSS_Feed('http://example.net/', false);
- $f->faviconPrepare();
- return $f;
- }
- public function id(): int {
- return $this->id;
- }
- public function hash(): string {
- if ($this->hash == '') {
- $salt = FreshRSS_Context::$system_conf->salt;
- $this->hash = hash('crc32b', $salt . $this->url);
- }
- return $this->hash;
- }
- public function url(bool $includeCredentials = true): string {
- return $includeCredentials ? $this->url : SimplePie_Misc::url_remove_credentials($this->url);
- }
- public function selfUrl(): string {
- return $this->selfUrl;
- }
- public function kind(): int {
- return $this->kind;
- }
- public function hubUrl(): string {
- return $this->hubUrl;
- }
- public function category(): ?FreshRSS_Category {
- if ($this->category === null) {
- $catDAO = FreshRSS_Factory::createCategoryDao();
- $this->category = $catDAO->searchById($this->categoryId);
- }
- return $this->category;
- }
- public function categoryId(): int {
- return $this->categoryId;
- }
- /**
- * @return array<FreshRSS_Entry>|null
- * @deprecated
- */
- public function entries(): ?array {
- Minz_Log::warning(__method__ . ' is deprecated since FreshRSS 1.16.1!');
- $simplePie = $this->load(false, true);
- return $simplePie == null ? [] : iterator_to_array($this->loadEntries($simplePie));
- }
- public function name(bool $raw = false): string {
- return $raw || $this->name != '' ? $this->name : preg_replace('%^https?://(www[.])?%i', '', $this->url);
- }
- /** @return string HTML-encoded URL of the Web site of the feed */
- public function website(): string {
- return $this->website;
- }
- public function description(): string {
- return $this->description;
- }
- public function lastUpdate(): int {
- return $this->lastUpdate;
- }
- public function priority(): int {
- return $this->priority;
- }
- /** @return string HTML-encoded CSS selector */
- public function pathEntries(): string {
- return $this->pathEntries;
- }
- /**
- * @phpstan-return ($raw is true ? string : array{'username':string,'password':string})
- * @return array{'username':string,'password':string}|string
- */
- public function httpAuth(bool $raw = true) {
- if ($raw) {
- return $this->httpAuth;
- } else {
- $pos_colon = strpos($this->httpAuth, ':');
- if ($pos_colon !== false) {
- $user = substr($this->httpAuth, 0, $pos_colon);
- $pass = substr($this->httpAuth, $pos_colon + 1);
- } else {
- $user = '';
- $pass = '';
- }
- return [
- 'username' => $user,
- 'password' => $pass,
- ];
- }
- }
- public function inError(): bool {
- return $this->error;
- }
- /**
- * @param bool $raw true for database version combined with mute information, false otherwise
- */
- public function ttl(bool $raw = false): int {
- if ($raw) {
- $ttl = $this->ttl;
- if ($this->mute && FreshRSS_Feed::TTL_DEFAULT === $ttl) {
- $ttl = FreshRSS_Context::$user_conf ? FreshRSS_Context::$user_conf->ttl_default : 3600;
- }
- return $ttl * ($this->mute ? -1 : 1);
- }
- return $this->ttl;
- }
- /**
- * @phpstan-return ($key is non-empty-string ? mixed : array<string,mixed>)
- * @return array<string,mixed>|mixed|null
- */
- public function attributes(string $key = '') {
- if ($key === '') {
- return $this->attributes;
- } else {
- return $this->attributes[$key] ?? null;
- }
- }
- public function mute(): bool {
- return $this->mute;
- }
- public function nbEntries(): int {
- if ($this->nbEntries < 0) {
- $feedDAO = FreshRSS_Factory::createFeedDao();
- $this->nbEntries = $feedDAO->countEntries($this->id());
- }
- return $this->nbEntries;
- }
- public function nbNotRead(bool $includePending = false): int {
- if ($this->nbNotRead < 0) {
- $feedDAO = FreshRSS_Factory::createFeedDao();
- $this->nbNotRead = $feedDAO->countNotRead($this->id());
- }
- return $this->nbNotRead + ($includePending ? $this->nbPendingNotRead : 0);
- }
- public function faviconPrepare(): void {
- require_once(LIB_PATH . '/favicons.php');
- $url = $this->website;
- if ($url == '') {
- $url = $this->url;
- }
- $txt = FAVICONS_DIR . $this->hash() . '.txt';
- if (@file_get_contents($txt) !== $url) {
- file_put_contents($txt, $url);
- }
- if (FreshRSS_Context::$isCli) {
- $ico = FAVICONS_DIR . $this->hash() . '.ico';
- $ico_mtime = @filemtime($ico);
- $txt_mtime = @filemtime($txt);
- if ($txt_mtime != false &&
- ($ico_mtime == false || $ico_mtime < $txt_mtime || ($ico_mtime < time() - (14 * 86400)))) {
- // no ico file or we should download a new one.
- $url = file_get_contents($txt);
- if ($url == false || !download_favicon($url, $ico)) {
- touch($ico);
- }
- }
- }
- }
- public static function faviconDelete(string $hash): void {
- $path = DATA_PATH . '/favicons/' . $hash;
- @unlink($path . '.ico');
- @unlink($path . '.txt');
- }
- public function favicon(): string {
- return Minz_Url::display('/f.php?' . $this->hash());
- }
- public function _id(int $value): void {
- $this->id = $value;
- }
- public function _url(string $value, bool $validate = true): void {
- $this->hash = '';
- $url = $value;
- if ($validate) {
- $url = checkUrl($url);
- }
- if ($url == false) {
- throw new FreshRSS_BadUrl_Exception($value);
- }
- $this->url = $url;
- }
- public function _kind(int $value): void {
- $this->kind = $value;
- }
- public function _category(?FreshRSS_Category $cat): void {
- $this->category = $cat;
- $this->categoryId = $this->category == null ? 0 : $this->category->id();
- }
- /** @param int|string $id */
- public function _categoryId($id): void {
- $this->category = null;
- $this->categoryId = intval($id);
- }
- public function _name(string $value): void {
- $this->name = $value == '' ? '' : trim($value);
- }
- public function _website(string $value, bool $validate = true): void {
- if ($validate) {
- $value = checkUrl($value);
- }
- if ($value == false) {
- $value = '';
- }
- $this->website = $value;
- }
- public function _description(string $value): void {
- $this->description = $value == '' ? '' : $value;
- }
- public function _lastUpdate(int $value): void {
- $this->lastUpdate = $value;
- }
- public function _priority(int $value): void {
- $this->priority = $value;
- }
- /** @param string $value HTML-encoded CSS selector */
- public function _pathEntries(string $value): void {
- $this->pathEntries = $value;
- }
- public function _httpAuth(string $value): void {
- $this->httpAuth = $value;
- }
- /** @param bool|int $value */
- public function _error($value): void {
- $this->error = (bool)$value;
- }
- public function _mute(bool $value): void {
- $this->mute = $value;
- }
- public function _ttl(int $value): void {
- $value = min($value, 100000000);
- $this->ttl = abs($value);
- $this->mute = $value < self::TTL_DEFAULT;
- }
- /** @param string|array<mixed>|bool|int|null $value Value, not HTML-encoded */
- public function _attributes(string $key, $value): void {
- if ($key == '') {
- if (is_string($value)) {
- $value = json_decode($value, true);
- }
- if (is_array($value)) {
- $this->attributes = $value;
- }
- } elseif ($value === null) {
- unset($this->attributes[$key]);
- } else {
- $this->attributes[$key] = $value;
- }
- }
- public function _nbNotRead(int $value): void {
- $this->nbNotRead = $value;
- }
- public function _nbEntries(int $value): void {
- $this->nbEntries = $value;
- }
- public function load(bool $loadDetails = false, bool $noCache = false): ?SimplePie {
- if ($this->url != '') {
- // @phpstan-ignore-next-line
- if (CACHE_PATH == '') {
- throw new Minz_FileNotExistException(
- 'CACHE_PATH',
- Minz_Exception::ERROR
- );
- } else {
- $url = htmlspecialchars_decode($this->url, ENT_QUOTES);
- if ($this->httpAuth != '') {
- $url = preg_replace('#((.+)://)(.+)#', '${1}' . $this->httpAuth . '@${3}', $url);
- }
- $simplePie = customSimplePie($this->attributes());
- if (substr($url, -11) === '#force_feed') {
- $simplePie->force_feed(true);
- $url = substr($url, 0, -11);
- }
- $simplePie->set_feed_url($url);
- if (!$loadDetails) { //Only activates auto-discovery when adding a new feed
- $simplePie->set_autodiscovery_level(SIMPLEPIE_LOCATOR_NONE);
- }
- if ($this->attributes('clear_cache')) {
- // Do not use `$simplePie->enable_cache(false);` as it would prevent caching in multiuser context
- $this->clearCache();
- }
- Minz_ExtensionManager::callHook('simplepie_before_init', $simplePie, $this);
- $mtime = $simplePie->init();
- if ((!$mtime) || $simplePie->error()) {
- $errorMessage = $simplePie->error();
- if (empty($errorMessage)) {
- $errorMessage = '';
- } elseif (is_array($errorMessage)) {
- $errorMessage = json_encode($errorMessage, JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_LINE_TERMINATORS) ?: '';
- }
- throw new FreshRSS_Feed_Exception(
- ($errorMessage == '' ? 'Unknown error for feed' : $errorMessage) .
- ' [' . $this->url . ']',
- $simplePie->status_code()
- );
- }
- $links = $simplePie->get_links('self');
- $this->selfUrl = empty($links[0]) ? '' : (checkUrl($links[0]) ?: '');
- $links = $simplePie->get_links('hub');
- $this->hubUrl = empty($links[0]) ? '' : (checkUrl($links[0]) ?: '');
- if ($loadDetails) {
- // si on a utilisé l’auto-discover, notre url va avoir changé
- $subscribe_url = $simplePie->subscribe_url(false);
- //HTML to HTML-PRE //ENT_COMPAT except '&'
- $title = strtr(html_only_entity_decode($simplePie->get_title()), ['<' => '<', '>' => '>', '"' => '"']);
- $this->_name($title == '' ? $this->url : $title);
- $this->_website(html_only_entity_decode($simplePie->get_link()));
- $this->_description(html_only_entity_decode($simplePie->get_description()));
- } else {
- //The case of HTTP 301 Moved Permanently
- $subscribe_url = $simplePie->subscribe_url(true);
- }
- $clean_url = SimplePie_Misc::url_remove_credentials($subscribe_url);
- if ($subscribe_url !== null && $subscribe_url !== $url) {
- $this->_url($clean_url);
- }
- if (($mtime === true) || ($mtime > $this->lastUpdate) || $noCache) {
- //Minz_Log::debug('FreshRSS no cache ' . $mtime . ' > ' . $this->lastUpdate . ' for ' . $clean_url);
- return $simplePie;
- }
- //Minz_Log::debug('FreshRSS use cache for ' . $clean_url);
- }
- }
- return null;
- }
- /**
- * @return array<string>
- */
- public function loadGuids(SimplePie $simplePie): array {
- $hasUniqueGuids = true;
- $testGuids = [];
- $guids = [];
- $links = [];
- $hadBadGuids = $this->attributes('hasBadGuids');
- $items = $simplePie->get_items();
- if (empty($items)) {
- return $guids;
- }
- for ($i = count($items) - 1; $i >= 0; $i--) {
- $item = $items[$i];
- if ($item == null) {
- continue;
- }
- $guid = safe_ascii($item->get_id(false, false));
- $hasUniqueGuids &= empty($testGuids['_' . $guid]);
- $testGuids['_' . $guid] = true;
- $guids[] = $guid;
- $links[] = $item->get_permalink();
- }
- if ($hadBadGuids != !$hasUniqueGuids) {
- if ($hadBadGuids) {
- Minz_Log::warning('Feed has invalid GUIDs: ' . $this->url);
- } else {
- Minz_Log::warning('Feed has valid GUIDs again: ' . $this->url);
- }
- $feedDAO = FreshRSS_Factory::createFeedDao();
- $feedDAO->updateFeedAttribute($this, 'hasBadGuids', !$hasUniqueGuids);
- }
- return $hasUniqueGuids ? $guids : $links;
- }
- /** @return Traversable<FreshRSS_Entry> */
- public function loadEntries(SimplePie $simplePie): Traversable {
- $hasBadGuids = $this->attributes('hasBadGuids');
- $items = $simplePie->get_items();
- if (empty($items)) {
- return;
- }
- // We want chronological order and SimplePie uses reverse order.
- for ($i = count($items) - 1; $i >= 0; $i--) {
- $item = $items[$i];
- if ($item == null) {
- continue;
- }
- $title = html_only_entity_decode(strip_tags($item->get_title() ?? ''));
- $authors = $item->get_authors();
- $link = $item->get_permalink();
- $date = @strtotime((string)($item->get_date() ?? '')) ?: 0;
- //Tag processing (tag == category)
- $categories = $item->get_categories();
- $tags = array();
- if (is_array($categories)) {
- foreach ($categories as $category) {
- $text = html_only_entity_decode($category->get_label());
- //Some feeds use a single category with comma-separated tags
- $labels = explode(',', $text);
- if (!empty($labels)) {
- foreach ($labels as $label) {
- $tags[] = trim($label);
- }
- }
- }
- $tags = array_unique($tags);
- }
- $content = html_only_entity_decode($item->get_content());
- $attributeThumbnail = $item->get_thumbnail() ?? [];
- if (empty($attributeThumbnail['url'])) {
- $attributeThumbnail['url'] = '';
- }
- $attributeEnclosures = [];
- if (!empty($item->get_enclosures())) {
- foreach ($item->get_enclosures() as $enclosure) {
- $elink = $enclosure->get_link();
- if ($elink != '') {
- $etitle = $enclosure->get_title() ?? '';
- $credit = $enclosure->get_credit() ?? null;
- $description = $enclosure->get_description() ?? '';
- $mime = strtolower($enclosure->get_type() ?? '');
- $medium = strtolower($enclosure->get_medium() ?? '');
- $height = $enclosure->get_height();
- $width = $enclosure->get_width();
- $length = $enclosure->get_length();
- $attributeEnclosure = [
- 'url' => $elink,
- ];
- if ($etitle != '') {
- $attributeEnclosure['title'] = $etitle;
- }
- if ($credit != null) {
- $attributeEnclosure['credit'] = $credit->get_name();
- }
- if ($description != '') {
- $attributeEnclosure['description'] = $description;
- }
- if ($mime != '') {
- $attributeEnclosure['type'] = $mime;
- }
- if ($medium != '') {
- $attributeEnclosure['medium'] = $medium;
- }
- if ($length != '') {
- $attributeEnclosure['length'] = intval($length);
- }
- if ($height != '') {
- $attributeEnclosure['height'] = intval($height);
- }
- if ($width != '') {
- $attributeEnclosure['width'] = intval($width);
- }
- if (!empty($enclosure->get_thumbnails())) {
- foreach ($enclosure->get_thumbnails() as $thumbnail) {
- if ($thumbnail !== $attributeThumbnail['url']) {
- $attributeEnclosure['thumbnails'][] = $thumbnail;
- }
- }
- }
- $attributeEnclosures[] = $attributeEnclosure;
- }
- }
- }
- $guid = safe_ascii($item->get_id(false, false));
- unset($item);
- $authorNames = '';
- if (is_array($authors)) {
- foreach ($authors as $author) {
- $authorName = $author->name != '' ? $author->name : $author->email;
- if ($authorName != '') {
- $authorNames .= escapeToUnicodeAlternative(strip_tags($authorName), true) . '; ';
- }
- }
- }
- $authorNames = substr($authorNames, 0, -2);
- $entry = new FreshRSS_Entry(
- $this->id(),
- $hasBadGuids ? '' : $guid,
- $title == '' ? '' : $title,
- $authorNames,
- $content == '' ? '' : $content,
- $link == '' ? '' : $link,
- $date ?: time()
- );
- $entry->_tags($tags);
- $entry->_feed($this);
- if (!empty($attributeThumbnail['url'])) {
- $entry->_attributes('thumbnail', $attributeThumbnail);
- }
- $entry->_attributes('enclosures', $attributeEnclosures);
- $entry->hash(); //Must be computed before loading full content
- $entry->loadCompleteContent(); // Optionally load full content for truncated feeds
- yield $entry;
- }
- }
- /**
- * @throws FreshRSS_Context_Exception
- */
- public function loadHtmlXpath(): ?SimplePie {
- if ($this->url == '') {
- return null;
- }
- $feedSourceUrl = htmlspecialchars_decode($this->url, ENT_QUOTES);
- if ($this->httpAuth != '') {
- $feedSourceUrl = preg_replace('#((.+)://)(.+)#', '${1}' . $this->httpAuth . '@${3}', $feedSourceUrl);
- }
- // Same naming conventions than https://rss-bridge.github.io/rss-bridge/Bridge_API/XPathAbstract.html
- // https://rss-bridge.github.io/rss-bridge/Bridge_API/BridgeAbstract.html#collectdata
- /** @var array<string,string> $xPathSettings */
- $xPathSettings = $this->attributes('xpath');
- $xPathFeedTitle = $xPathSettings['feedTitle'] ?? '';
- $xPathItem = $xPathSettings['item'] ?? '';
- $xPathItemTitle = $xPathSettings['itemTitle'] ?? '';
- $xPathItemContent = $xPathSettings['itemContent'] ?? '';
- $xPathItemUri = $xPathSettings['itemUri'] ?? '';
- $xPathItemAuthor = $xPathSettings['itemAuthor'] ?? '';
- $xPathItemTimestamp = $xPathSettings['itemTimestamp'] ?? '';
- $xPathItemTimeFormat = $xPathSettings['itemTimeFormat'] ?? '';
- $xPathItemThumbnail = $xPathSettings['itemThumbnail'] ?? '';
- $xPathItemCategories = $xPathSettings['itemCategories'] ?? '';
- $xPathItemUid = $xPathSettings['itemUid'] ?? '';
- if ($xPathItem == '') {
- return null;
- }
- $cachePath = FreshRSS_Feed::cacheFilename($feedSourceUrl, $this->attributes(), $this->kind());
- $html = httpGet($feedSourceUrl, $cachePath,
- $this->kind() === FreshRSS_Feed::KIND_XML_XPATH ? 'xml' : 'html', $this->attributes());
- if (strlen($html) <= 0) {
- return null;
- }
- $view = new FreshRSS_View();
- $view->_path('index/rss.phtml');
- $view->internal_rendering = true;
- $view->rss_url = $feedSourceUrl;
- $view->entries = [];
- try {
- $doc = new DOMDocument();
- $doc->recover = true;
- $doc->strictErrorChecking = false;
- $ok = false;
- switch ($this->kind()) {
- case FreshRSS_Feed::KIND_HTML_XPATH:
- $ok = $doc->loadHTML($html, LIBXML_NONET | LIBXML_NOERROR | LIBXML_NOWARNING) !== false;
- break;
- case FreshRSS_Feed::KIND_XML_XPATH:
- $ok = $doc->loadXML($html, LIBXML_NONET | LIBXML_NOERROR | LIBXML_NOWARNING) !== false;
- break;
- }
- if (!$ok) {
- return null;
- }
- $xpath = new DOMXPath($doc);
- $view->rss_title = $xPathFeedTitle == '' ? $this->name() :
- htmlspecialchars(@$xpath->evaluate('normalize-space(' . $xPathFeedTitle . ')'), ENT_COMPAT, 'UTF-8');
- $view->rss_base = htmlspecialchars(trim($xpath->evaluate('normalize-space(//base/@href)')), ENT_COMPAT, 'UTF-8');
- $nodes = $xpath->query($xPathItem);
- if ($nodes === false || $nodes->length === 0) {
- return null;
- }
- foreach ($nodes as $node) {
- $item = [];
- $item['title'] = $xPathItemTitle == '' ? '' : @$xpath->evaluate('normalize-space(' . $xPathItemTitle . ')', $node);
- $item['content'] = '';
- if ($xPathItemContent != '') {
- $result = @$xpath->evaluate($xPathItemContent, $node);
- if ($result instanceof DOMNodeList) {
- // List of nodes, save as HTML
- $content = '';
- foreach ($result as $child) {
- $content .= $doc->saveHTML($child) . "\n";
- }
- $item['content'] = $content;
- } else {
- // Typed expression, save as-is
- $item['content'] = (string)$result;
- }
- }
- $item['link'] = $xPathItemUri == '' ? '' : @$xpath->evaluate('normalize-space(' . $xPathItemUri . ')', $node);
- $item['author'] = $xPathItemAuthor == '' ? '' : @$xpath->evaluate('normalize-space(' . $xPathItemAuthor . ')', $node);
- $item['timestamp'] = $xPathItemTimestamp == '' ? '' : @$xpath->evaluate('normalize-space(' . $xPathItemTimestamp . ')', $node);
- if ($xPathItemTimeFormat != '') {
- $dateTime = DateTime::createFromFormat($xPathItemTimeFormat, $item['timestamp'] ?? '');
- if ($dateTime != false) {
- $item['timestamp'] = $dateTime->format(DateTime::ATOM);
- }
- }
- $item['thumbnail'] = $xPathItemThumbnail == '' ? '' : @$xpath->evaluate('normalize-space(' . $xPathItemThumbnail . ')', $node);
- if ($xPathItemCategories != '') {
- $itemCategories = @$xpath->query($xPathItemCategories, $node);
- if ($itemCategories !== false) {
- $item['tags'] = [];
- /** @var DOMNode $itemCategory */
- foreach ($itemCategories as $itemCategory) {
- $item['tags'][] = $itemCategory->textContent;
- }
- }
- }
- if ($xPathItemUid != '') {
- $item['guid'] = @$xpath->evaluate('normalize-space(' . $xPathItemUid . ')', $node);
- }
- if (empty($item['guid'])) {
- $item['guid'] = 'urn:sha1:' . sha1($item['title'] . $item['content'] . $item['link']);
- }
- if ($item['title'] != '' || $item['content'] != '' || $item['link'] != '') {
- // HTML-encoding/escaping of the relevant fields (all except 'content')
- foreach (['author', 'guid', 'link', 'thumbnail', 'timestamp', 'tags', 'title'] as $key) {
- if (!empty($item[$key]) && is_string($item[$key])) {
- $item[$key] = Minz_Helper::htmlspecialchars_utf8($item[$key]);
- }
- }
- // CDATA protection
- $item['content'] = str_replace(']]>', ']]>', $item['content']);
- $view->entries[] = FreshRSS_Entry::fromArray($item);
- }
- }
- } catch (Exception $ex) {
- Minz_Log::warning($ex->getMessage());
- return null;
- }
- $simplePie = customSimplePie();
- $simplePie->set_raw_data($view->renderToString());
- $simplePie->init();
- return $simplePie;
- }
- /**
- * To keep track of some new potentially unread articles since last commit+fetch from database
- */
- public function incPendingUnread(int $n = 1): void {
- $this->nbPendingNotRead += $n;
- }
- /**
- * Remember to call updateCachedValue($id_feed) or updateCachedValues() just after.
- * @return int|false the number of lines affected, or false if not applicable
- * @throws JsonException
- */
- public function keepMaxUnread() {
- $keepMaxUnread = $this->attributes('keep_max_n_unread');
- if ($keepMaxUnread === null) {
- $keepMaxUnread = FreshRSS_Context::$user_conf->mark_when['max_n_unread'];
- }
- $keepMaxUnread = (int)$keepMaxUnread;
- if ($keepMaxUnread > 0 && $this->nbNotRead(false) + $this->nbPendingNotRead > $keepMaxUnread) {
- return FreshRSS_Factory::createFeedDao()->keepMaxUnread($this->id(), max(0, $keepMaxUnread - $this->nbPendingNotRead));
- }
- return false;
- }
- /**
- * Applies the *mark as read upon gone* policy, if enabled.
- * Remember to call `updateCachedValue($id_feed)` or `updateCachedValues()` just after.
- * @return int|false the number of lines affected, or false if not applicable
- */
- public function markAsReadUponGone(bool $upstreamIsEmpty, int $maxTimestamp = 0) {
- $readUponGone = $this->attributes('read_upon_gone');
- if ($readUponGone === null) {
- $readUponGone = FreshRSS_Context::$user_conf->mark_when['gone'];
- }
- if (!$readUponGone) {
- return false;
- }
- if ($upstreamIsEmpty) {
- if ($maxTimestamp <= 0) {
- $maxTimestamp = time();
- }
- $entryDAO = FreshRSS_Factory::createEntryDao();
- $affected = $entryDAO->markReadFeed($this->id(), $maxTimestamp . '000000');
- } else {
- $feedDAO = FreshRSS_Factory::createFeedDao();
- $affected = $feedDAO->markAsReadUponGone($this->id());
- }
- if ($affected > 0) {
- Minz_Log::debug(__METHOD__ . " $affected items" . ($upstreamIsEmpty ? ' (all)' : '') . ' [' . $this->url(false) . ']');
- }
- return $affected;
- }
- /**
- * Remember to call `updateCachedValue($id_feed)` or `updateCachedValues()` just after
- * @return int|false
- */
- public function cleanOldEntries() {
- $archiving = $this->attributes('archiving');
- if ($archiving == null) {
- $catDAO = FreshRSS_Factory::createCategoryDao();
- $category = $catDAO->searchById($this->categoryId);
- $archiving = $category == null ? null : $category->attributes('archiving');
- if ($archiving == null) {
- $archiving = FreshRSS_Context::$user_conf->archiving;
- }
- }
- if (is_array($archiving)) {
- $entryDAO = FreshRSS_Factory::createEntryDao();
- $nb = $entryDAO->cleanOldEntries($this->id(), $archiving);
- if ($nb > 0) {
- Minz_Log::debug($nb . ' entries cleaned in feed [' . $this->url(false) . '] with: ' . json_encode($archiving));
- }
- return $nb;
- }
- return false;
- }
- /** @param array<string,mixed> $attributes */
- public static function cacheFilename(string $url, array $attributes, int $kind = FreshRSS_Feed::KIND_RSS): string {
- $simplePie = customSimplePie($attributes);
- $filename = $simplePie->get_cache_filename($url);
- if ($kind === FreshRSS_Feed::KIND_HTML_XPATH) {
- return CACHE_PATH . '/' . $filename . '.html';
- } elseif ($kind === FreshRSS_Feed::KIND_XML_XPATH) {
- return CACHE_PATH . '/' . $filename . '.xml';
- } else {
- return CACHE_PATH . '/' . $filename . '.spc';
- }
- }
- public function clearCache(): bool {
- return @unlink(FreshRSS_Feed::cacheFilename($this->url, $this->attributes(), $this->kind));
- }
- /** @return int|false */
- public function cacheModifiedTime() {
- $filename = FreshRSS_Feed::cacheFilename($this->url, $this->attributes(), $this->kind);
- clearstatcache(true, $filename);
- return @filemtime($filename);
- }
- public function lock(): bool {
- $this->lockPath = TMP_PATH . '/' . $this->hash() . '.freshrss.lock';
- if (file_exists($this->lockPath) && ((time() - (@filemtime($this->lockPath) ?: 0)) > 3600)) {
- @unlink($this->lockPath);
- }
- if (($handle = @fopen($this->lockPath, 'x')) === false) {
- return false;
- }
- //register_shutdown_function('unlink', $this->lockPath);
- @fclose($handle);
- return true;
- }
- public function unlock(): bool {
- return @unlink($this->lockPath);
- }
- /**
- * @return array<FreshRSS_FilterAction>
- */
- public function filterActions(): array {
- if (empty($this->filterActions)) {
- $this->filterActions = [];
- $filters = $this->attributes('filters');
- if (is_array($filters)) {
- foreach ($filters as $filter) {
- $filterAction = FreshRSS_FilterAction::fromJSON($filter);
- if ($filterAction != null) {
- $this->filterActions[] = $filterAction;
- }
- }
- }
- }
- return $this->filterActions;
- }
- /**
- * @param array<FreshRSS_FilterAction>|null $filterActions
- */
- private function _filterActions(?array $filterActions): void {
- $this->filterActions = $filterActions;
- if (is_array($this->filterActions) && !empty($this->filterActions)) {
- $this->_attributes('filters', array_map(static function (?FreshRSS_FilterAction $af) {
- return $af == null ? null : $af->toJSON();
- }, $this->filterActions));
- } else {
- $this->_attributes('filters', null);
- }
- }
- /** @return array<FreshRSS_BooleanSearch> */
- public function filtersAction(string $action): array {
- $action = trim($action);
- if ($action == '') {
- return [];
- }
- $filters = [];
- $filterActions = $this->filterActions();
- for ($i = count($filterActions) - 1; $i >= 0; $i--) {
- $filterAction = $filterActions[$i];
- if ($filterAction != null && $filterAction->booleanSearch() != null &&
- $filterAction->actions() != null && in_array($action, $filterAction->actions(), true)) {
- $filters[] = $filterAction->booleanSearch();
- }
- }
- return $filters;
- }
- /**
- * @param array<string> $filters
- */
- public function _filtersAction(string $action, array $filters): void {
- $action = trim($action);
- if ($action == '') {
- return;
- }
- $filters = array_unique(array_map('trim', $filters));
- $filterActions = $this->filterActions();
- //Check existing filters
- for ($i = count($filterActions) - 1; $i >= 0; $i--) {
- $filterAction = $filterActions[$i];
- if ($filterAction == null || !is_array($filterAction->actions()) ||
- $filterAction->booleanSearch() == null || trim($filterAction->booleanSearch()->getRawInput()) == '') {
- array_splice($filterActions, $i, 1);
- continue;
- }
- $actions = $filterAction->actions();
- //Remove existing rules with same action
- for ($j = count($actions) - 1; $j >= 0; $j--) {
- if ($actions[$j] === $action) {
- array_splice($actions, $j, 1);
- }
- }
- //Update existing filter with new action
- for ($k = count($filters) - 1; $k >= 0; $k --) {
- $filter = $filters[$k];
- if ($filter === $filterAction->booleanSearch()->getRawInput()) {
- $actions[] = $action;
- array_splice($filters, $k, 1);
- }
- }
- //Save result
- if (empty($actions)) {
- array_splice($filterActions, $i, 1);
- } else {
- $filterAction->_actions($actions);
- }
- }
- //Add new filters
- for ($k = count($filters) - 1; $k >= 0; $k --) {
- $filter = $filters[$k];
- if ($filter != '') {
- $filterAction = FreshRSS_FilterAction::fromJSON([
- 'search' => $filter,
- 'actions' => [$action],
- ]);
- if ($filterAction != null) {
- $filterActions[] = $filterAction;
- }
- }
- }
- if (empty($filterActions)) {
- $filterActions = null;
- }
- $this->_filterActions($filterActions);
- }
- //<WebSub>
- public function pubSubHubbubEnabled(): bool {
- $url = $this->selfUrl ?: $this->url;
- $hubFilename = PSHB_PATH . '/feeds/' . sha1($url) . '/!hub.json';
- if ($hubFile = @file_get_contents($hubFilename)) {
- $hubJson = json_decode($hubFile, true);
- if ($hubJson && empty($hubJson['error']) &&
- (empty($hubJson['lease_end']) || $hubJson['lease_end'] > time())) {
- return true;
- }
- }
- return false;
- }
- public function pubSubHubbubError(bool $error = true): bool {
- $url = $this->selfUrl ?: $this->url;
- $hubFilename = PSHB_PATH . '/feeds/' . sha1($url) . '/!hub.json';
- $hubFile = @file_get_contents($hubFilename);
- $hubJson = $hubFile ? json_decode($hubFile, true) : [];
- if (!isset($hubJson['error']) || $hubJson['error'] !== $error) {
- $hubJson['error'] = $error;
- file_put_contents($hubFilename, json_encode($hubJson));
- Minz_Log::warning('Set error to ' . ($error ? 1 : 0) . ' for ' . $url, PSHB_LOG);
- }
- return false;
- }
- /**
- * @return string|false
- */
- public function pubSubHubbubPrepare() {
- $key = '';
- if (Minz_Request::serverIsPublic(FreshRSS_Context::$system_conf->base_url) &&
- $this->hubUrl && $this->selfUrl && @is_dir(PSHB_PATH)) {
- $path = PSHB_PATH . '/feeds/' . sha1($this->selfUrl);
- $hubFilename = $path . '/!hub.json';
- if ($hubFile = @file_get_contents($hubFilename)) {
- $hubJson = json_decode($hubFile, true);
- if (!$hubJson || empty($hubJson['key']) || !ctype_xdigit($hubJson['key'])) {
- $text = 'Invalid JSON for WebSub: ' . $this->url;
- Minz_Log::warning($text);
- Minz_Log::warning($text, PSHB_LOG);
- return false;
- }
- if ((!empty($hubJson['lease_end'])) && ($hubJson['lease_end'] < (time() + (3600 * 23)))) { //TODO: Make a better policy
- $text = 'WebSub lease ends at '
- . date('c', empty($hubJson['lease_end']) ? time() : $hubJson['lease_end'])
- . ' and needs renewal: ' . $this->url;
- Minz_Log::warning($text);
- Minz_Log::warning($text, PSHB_LOG);
- $key = $hubJson['key']; //To renew our lease
- } elseif (((!empty($hubJson['error'])) || empty($hubJson['lease_end'])) &&
- (empty($hubJson['lease_start']) || $hubJson['lease_start'] < time() - (3600 * 23))) { //Do not renew too often
- $key = $hubJson['key']; //To renew our lease
- }
- } else {
- @mkdir($path, 0770, true);
- $key = sha1($path . FreshRSS_Context::$system_conf->salt);
- $hubJson = [
- 'hub' => $this->hubUrl,
- 'key' => $key,
- ];
- file_put_contents($hubFilename, json_encode($hubJson));
- @mkdir(PSHB_PATH . '/keys/', 0770, true);
- file_put_contents(PSHB_PATH . '/keys/' . $key . '.txt', $this->selfUrl);
- $text = 'WebSub prepared for ' . $this->url;
- Minz_Log::debug($text);
- Minz_Log::debug($text, PSHB_LOG);
- }
- $currentUser = Minz_User::name();
- if (FreshRSS_user_Controller::checkUsername($currentUser) && !file_exists($path . '/' . $currentUser . '.txt')) {
- touch($path . '/' . $currentUser . '.txt');
- }
- }
- return $key;
- }
- //Parameter true to subscribe, false to unsubscribe.
- public function pubSubHubbubSubscribe(bool $state): bool {
- if ($state) {
- $url = $this->selfUrl ?: $this->url;
- } else {
- $url = $this->url; //Always use current URL during unsubscribe
- }
- if ($url && (Minz_Request::serverIsPublic(FreshRSS_Context::$system_conf->base_url) || !$state)) {
- $hubFilename = PSHB_PATH . '/feeds/' . sha1($url) . '/!hub.json';
- $hubFile = @file_get_contents($hubFilename);
- if ($hubFile === false) {
- Minz_Log::warning('JSON not found for WebSub: ' . $this->url);
- return false;
- }
- $hubJson = json_decode($hubFile, true);
- if (!$hubJson || empty($hubJson['key']) || !ctype_xdigit($hubJson['key']) || empty($hubJson['hub'])) {
- Minz_Log::warning('Invalid JSON for WebSub: ' . $this->url);
- return false;
- }
- $callbackUrl = checkUrl(Minz_Request::getBaseUrl() . '/api/pshb.php?k=' . $hubJson['key']);
- if ($callbackUrl == '') {
- Minz_Log::warning('Invalid callback for WebSub: ' . $this->url);
- return false;
- }
- if (!$state) { //unsubscribe
- $hubJson['lease_end'] = time() - 60;
- file_put_contents($hubFilename, json_encode($hubJson));
- }
- $ch = curl_init();
- curl_setopt_array($ch, [
- CURLOPT_URL => $hubJson['hub'],
- CURLOPT_RETURNTRANSFER => true,
- CURLOPT_POSTFIELDS => http_build_query([
- 'hub.verify' => 'sync',
- 'hub.mode' => $state ? 'subscribe' : 'unsubscribe',
- 'hub.topic' => $url, 'hub.callback' => $callbackUrl,
- ]),
- CURLOPT_USERAGENT => FRESHRSS_USERAGENT,
- CURLOPT_MAXREDIRS => 10,
- CURLOPT_FOLLOWLOCATION => true,
- CURLOPT_ENCODING => '', //Enable all encodings
- ]);
- $response = curl_exec($ch);
- $info = curl_getinfo($ch);
- Minz_Log::warning('WebSub ' . ($state ? 'subscribe' : 'unsubscribe') . ' to ' . $url .
- ' via hub ' . $hubJson['hub'] .
- ' with callback ' . $callbackUrl . ': ' . $info['http_code'] . ' ' . $response, PSHB_LOG);
- if (substr('' . $info['http_code'], 0, 1) == '2') {
- return true;
- } else {
- $hubJson['lease_start'] = time(); //Prevent trying again too soon
- $hubJson['error'] = true;
- file_put_contents($hubFilename, json_encode($hubJson));
- return false;
- }
- }
- return false;
- }
- //</WebSub>
- }
|