engelsystem/includes/pages/user_atom.php

85 lines
2.3 KiB
PHP
Raw Normal View History

2012-12-26 20:39:54 +01:00
<?php
use Engelsystem\Database\DB;
use Engelsystem\Http\Exceptions\HttpForbidden;
2017-01-03 03:22:48 +01:00
/**
* Publically available page to feed the news to feed readers
2017-01-03 03:22:48 +01:00
*/
2017-01-02 03:57:23 +01:00
function user_atom()
{
$request = request();
$user = auth()->apiUser('key');
2017-01-02 15:43:36 +01:00
if (
!$request->has('key')
|| !preg_match('/^[\da-f]{32}$/', $request->input('key'))
|| empty($user)
) {
throw new HttpForbidden('Missing or invalid key', ['content-type' => 'text/text']);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
if (!auth()->can('atom')) {
throw new HttpForbidden('Not allowed', ['content-type' => 'text/text']);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
$news = DB::select('
2017-01-03 03:22:48 +01:00
SELECT *
2017-01-22 01:02:52 +01:00
FROM `News`
' . (!$request->has('meetings') ? '' : 'WHERE `Treffen` = 1 ') . '
2017-01-03 03:22:48 +01:00
ORDER BY `ID`
DESC LIMIT ' . (int)config('display_news')
2017-01-03 03:22:48 +01:00
);
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$output = make_atom_entries_from_news($news);
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
header('Content-Type: application/atom+xml; charset=utf-8');
2017-01-03 14:12:17 +01:00
header('Content-Length: ' . strlen($output));
2017-01-02 03:57:23 +01:00
raw_output($output);
}
2017-01-03 03:22:48 +01:00
/**
* @param array[] $news_entries
* @return string
*/
2017-01-02 03:57:23 +01:00
function make_atom_entries_from_news($news_entries)
{
2017-08-31 17:30:54 +02:00
$request = app('request');
2017-01-02 03:57:23 +01:00
$html = '<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>' . config('app_name') . '</title>
<id>' . $request->getHttpHost()
2017-01-02 15:43:36 +01:00
. htmlspecialchars(preg_replace(
2017-01-21 19:47:44 +01:00
'#[&?]key=[a-f\d]{32}#',
2017-01-02 15:43:36 +01:00
'',
$request->getRequestUri()
2017-01-02 15:43:36 +01:00
))
. '</id>
2017-01-03 14:12:17 +01:00
<updated>' . date('Y-m-d\TH:i:sP', $news_entries[0]['Datum']) . '</updated>' . "\n";
2017-01-02 03:57:23 +01:00
foreach ($news_entries as $news_entry) {
$html .= make_atom_entry_from_news($news_entry);
}
2017-01-03 14:12:17 +01:00
$html .= '</feed>';
2017-01-02 03:57:23 +01:00
return $html;
}
2017-12-25 23:12:52 +01:00
/**
* @param array $news_entry
* @return string
*/
2017-01-02 03:57:23 +01:00
function make_atom_entry_from_news($news_entry)
{
return '
<entry>
2017-01-03 14:12:17 +01:00
<title>' . htmlspecialchars($news_entry['Betreff']) . '</title>
<link href="' . page_link_to('news_comments', ['nid' => $news_entry['ID']]) . '"/>
2017-12-25 23:12:52 +01:00
<id>' . preg_replace(
'#^https?://#',
'',
page_link_to('news_comments', ['nid' => $news_entry['ID']])
) . '</id>
<updated>' . date('Y-m-d\TH:i:sP', $news_entry['Datum']) . '</updated>
<summary type="html">' . htmlspecialchars($news_entry['Text']) . '</summary>
</entry>' . "\n";
}