fediverse-feed-wrappers/src/Wrapper/GitHubTypo3.php

57 lines
1.7 KiB
PHP

<?php
declare(strict_types=1);
/*
* Copyright (C) 2023 Daniel Siepmann <coding@daniel-siepmann.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
namespace DanielSiepmann\FediverseFeedWrappers\Wrapper;
use DOMDocument;
use DanielSiepmann\FediverseFeedWrappers\WrapperInterface;
class GitHubTypo3 implements WrapperInterface
{
private string $url;
public function __construct(
string $url = 'https://github.com/TYPO3/typo3/commits.atom'
) {
$this->url = $url;
}
/**
* We don't want the full commit messag within each feed item.
*
* Instead we are only interested in first row.
* Interested people can head over to the actual URL for full info.
*/
public function handle(): string
{
$content = new DOMDocument();
$content->loadXML(file_get_contents($this->url));
foreach ($content->getElementsByTagName('entry') as $entry) {
$entry->getElementsByTagName('content')[0]->nodeValue = trim($entry->getElementsByTagName('title')[0]->textContent);
}
return $content->saveXML();
}
}