engelsystem/includes/pages/user_atom.php

85 lines
2.4 KiB
PHP
Raw Normal View History

2012-12-26 20:39:54 +01:00
<?php
use Engelsystem\Http\Exceptions\HttpForbidden;
use Engelsystem\Models\News;
use Illuminate\Database\Eloquent\Collection;
2020-04-05 16:54:45 +02:00
use Illuminate\Support\Collection as SupportCollection;
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 = $request->has('meetings') ? News::whereIsMeeting((bool)$request->get('meetings', false)) : News::query();
$news
->limit((int)config('display_news'))
->orderByDesc('updated_at');
$output = make_atom_entries_from_news($news->get());
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
/**
2020-04-05 16:54:45 +02:00
* @param News[]|Collection|SupportCollection $news_entries
2017-01-03 03:22:48 +01:00
* @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');
$updatedAt = isset($news_entries[0]) ? $news_entries[0]->updated_at->format('Y-m-d\TH:i:sP') : '0000:00:00T00:00:00+00:00';
2017-01-02 03:57:23 +01:00
$html = '<?xml version="1.0" encoding="utf-8"?>
2020-05-13 18:26:32 +02:00
<feed xmlns="http://www.w3.org/2005/Atom">
<title>' . config('app_name') . '</title>
<id>' . $request->getHttpHost()
. htmlspecialchars(preg_replace(
'#[&?]key=[a-f\d]{32}#',
'',
$request->getRequestUri()
))
. '</id>
<updated>' . $updatedAt . '</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 News $news
2017-12-25 23:12:52 +01:00
* @return string
*/
function make_atom_entry_from_news(News $news)
2017-01-02 03:57:23 +01:00
{
return '
2020-05-13 18:26:32 +02:00
<entry>
<title>' . htmlspecialchars($news->title) . '</title>
2020-04-05 16:54:45 +02:00
<link href="' . page_link_to('news/' . $news->id) . '"/>
2017-12-25 23:12:52 +01:00
<id>' . preg_replace(
2022-10-18 19:15:22 +02:00
'#^https?://#',
'',
page_link_to('news/' . $news->id)
) . '</id>
<updated>' . $news->updated_at->format('Y-m-d\TH:i:sP') . '</updated>
<summary type="html">' . htmlspecialchars($news->text) . '</summary>
2020-05-13 18:26:32 +02:00
</entry>' . "\n";
}