engelsystem/includes/pages/user_news.php

279 lines
7.9 KiB
PHP
Raw Normal View History

2011-06-02 01:45:46 +02:00
<?php
use Engelsystem\Database\DB;
2018-10-09 21:47:31 +02:00
use Engelsystem\Models\User\User;
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function user_news_comments_title()
{
return __('News comments');
2013-11-25 21:56:56 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function news_title()
{
return __('News');
2013-11-25 21:04:58 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function meetings_title()
{
return __('Meetings');
2013-11-25 21:04:58 +01:00
}
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function user_meetings()
{
$display_news = config('display_news');
2017-01-02 03:57:23 +01:00
$html = '<div class="col-md-12"><h1>' . meetings_title() . '</h1>' . msg();
$request = request();
2017-01-02 15:43:36 +01:00
2017-08-28 16:21:10 +02:00
if (preg_match('/^\d{1,}$/', $request->input('page', 0))) {
$page = $request->input('page', 0);
} else {
2017-01-02 03:57:23 +01:00
$page = 0;
}
2017-01-02 15:43:36 +01:00
$news = DB::select(sprintf('
2017-01-03 03:22:48 +01:00
SELECT *
FROM `News`
WHERE `Treffen`=1
ORDER BY `Datum`DESC
LIMIT %u, %u',
$page * $display_news,
$display_news
));
2017-01-02 03:57:23 +01:00
foreach ($news as $entry) {
$html .= display_news($entry);
}
2017-01-02 15:43:36 +01:00
$dis_rows = ceil(count(DB::select('SELECT `ID` FROM `News`')) / $display_news);
2017-01-02 03:57:23 +01:00
$html .= '<div class="text-center">' . '<ul class="pagination">';
2017-01-02 15:43:36 +01:00
for ($i = 0; $i < $dis_rows; $i++) {
2017-08-28 16:21:10 +02:00
if ($request->has('page') && $i == $request->input('page', 0)) {
2017-01-02 03:57:23 +01:00
$html .= '<li class="active">';
} elseif (!$request->has('page') && $i == 0) {
2017-01-02 03:57:23 +01:00
$html .= '<li class="active">';
} else {
$html .= '<li>';
}
2017-08-28 16:21:10 +02:00
$html .= '<a href="' . page_link_to('user_meetings', ['page' => $i]) . '">' . ($i + 1) . '</a></li>';
}
2017-01-02 03:57:23 +01:00
$html .= '</ul></div></div>';
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return $html;
2011-06-03 06:47:35 +02:00
}
/**
* Renders the text content of a news entry
2017-12-25 23:12:52 +01:00
*
* @param array $news
* @return string HTML
*/
2017-12-25 23:12:52 +01:00
function news_text($news)
{
$text = ReplaceSmilies($news['Text']);
$text = preg_replace("/\r\n\r\n/m", '<br><br>', $text);
return $text;
}
2017-01-03 03:22:48 +01:00
/**
* @param array $news
* @return string
*/
2017-01-02 03:57:23 +01:00
function display_news($news)
{
global $page;
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$html = '';
$html .= '<div class="panel' . ($news['Treffen'] == 1 ? ' panel-info' : ' panel-default') . '">';
$html .= '<div class="panel-heading">';
$html .= '<h3 class="panel-title">' . ($news['Treffen'] == 1 ? '[Meeting] ' : '') . ReplaceSmilies($news['Betreff']) . '</h3>';
$html .= '</div>';
$html .= '<div class="panel-body">' . news_text($news) . '</div>';
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$html .= '<div class="panel-footer text-muted">';
if (auth()->can('admin_news')) {
2017-01-02 15:43:36 +01:00
$html .= '<div class="pull-right">'
2017-12-25 23:12:52 +01:00
. button_glyph(
page_link_to('admin_news', ['action' => 'edit', 'id' => $news['ID']]),
'edit',
'btn-xs'
)
2017-01-02 15:43:36 +01:00
. '</div>';
2017-01-02 03:57:23 +01:00
}
2017-01-03 14:12:17 +01:00
$html .= '<span class="glyphicon glyphicon-time"></span> ' . date('Y-m-d H:i', $news['Datum']) . '&emsp;';
2017-01-02 15:43:36 +01:00
2018-10-09 21:47:31 +02:00
$html .= User_Nick_render(User::find($news['UID']));
2017-01-03 14:12:17 +01:00
if ($page != 'news_comments') {
2017-08-28 16:21:10 +02:00
$html .= '&emsp;<a href="' . page_link_to('news_comments', ['nid' => $news['ID']]) . '">'
2017-01-03 03:22:48 +01:00
. '<span class="glyphicon glyphicon-comment"></span> '
. __('Comments') . ' &raquo;</a> '
2017-01-03 03:22:48 +01:00
. '<span class="badge">'
. count(DB::select('SELECT `ID` FROM `NewsComments` WHERE `Refid`=?', [$news['ID']]))
2017-01-03 03:22:48 +01:00
. '</span>';
2017-01-02 03:57:23 +01:00
}
$html .= '</div>';
$html .= '</div>';
return $html;
2011-06-02 01:45:46 +02:00
}
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function user_news_comments()
{
2018-10-31 12:48:22 +01:00
$user = auth()->user();
$request = request();
2017-01-02 03:57:23 +01:00
$html = '<div class="col-md-12"><h1>' . user_news_comments_title() . '</h1>';
2017-01-02 15:43:36 +01:00
if (
$request->has('nid')
&& preg_match('/^\d{1,}$/', $request->input('nid'))
&& count(DB::select('SELECT `ID` FROM `News` WHERE `ID`=? LIMIT 1', [$request->input('nid')])) > 0
2017-01-02 15:43:36 +01:00
) {
$nid = $request->input('nid');
$news = DB::selectOne('SELECT * FROM `News` WHERE `ID`=? LIMIT 1', [$nid]);
if ($request->hasPostData('submit') && $request->has('text')) {
$text = $request->input('text');
DB::insert('
INSERT INTO `NewsComments` (`Refid`, `Datum`, `Text`, `UID`)
VALUES (?, ?, ?, ?)
',
[
$nid,
2017-01-21 19:37:42 +01:00
date('Y-m-d H:i:s'),
$text,
2018-10-08 21:15:56 +02:00
$user->id,
]
);
2019-05-31 04:03:19 +02:00
engelsystem_log('Created news_comment: ' . $text);
$html .= success(__('Entry saved.'), true);
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$html .= display_news($news);
2017-01-02 15:43:36 +01:00
$comments = DB::select(
'SELECT * FROM `NewsComments` WHERE `Refid`=? ORDER BY \'ID\'',
[$nid]
);
2017-01-02 03:57:23 +01:00
foreach ($comments as $comment) {
2018-10-09 21:47:31 +02:00
$user_source = User::find($comment['UID']);
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$html .= '<div class="panel panel-default">';
$html .= '<div class="panel-body">' . nl2br(htmlspecialchars($comment['Text'])) . '</div>';
2017-01-02 03:57:23 +01:00
$html .= '<div class="panel-footer text-muted">';
$html .= '<span class="glyphicon glyphicon-time"></span> ' . $comment['Datum'] . '&emsp;';
$html .= User_Nick_render($user_source);
$html .= '</div>';
$html .= '</div>';
}
2017-01-02 15:43:36 +01:00
$html .= '<hr /><h2>' . __('New Comment:') . '</h2>';
2017-01-02 03:57:23 +01:00
$html .= form([
form_textarea('text', __('Message'), ''),
form_submit('submit', __('Save'))
2017-08-28 16:21:10 +02:00
], page_link_to('news_comments', ['nid' => $news['ID']]));
2017-01-02 03:57:23 +01:00
} else {
$html .= __('Invalid request.');
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return $html . '</div>';
2011-06-03 05:12:50 +02:00
}
2011-06-02 01:45:46 +02:00
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function user_news()
{
2018-10-31 12:48:22 +01:00
$user = auth()->user();
$display_news = config('display_news');
$request = request();
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$html = '<div class="col-md-12"><h1>' . news_title() . '</h1>' . msg();
2017-01-02 15:43:36 +01:00
$isMeeting = $request->postData('treffen');
if ($request->has('text') && $request->has('betreff') && auth()->can('admin_news')) {
if (!$request->has('treffen')) {
$isMeeting = 0;
2017-01-02 03:57:23 +01:00
}
$text = $request->postData('text');
if (!auth()->can('admin_news_html')) {
$text = strip_tags($text);
}
DB::insert('
2017-01-03 03:22:48 +01:00
INSERT INTO `News` (`Datum`, `Betreff`, `Text`, `UID`, `Treffen`)
VALUES (?, ?, ?, ?, ?)
',
[
time(),
strip_tags($request->postData('betreff')),
$text,
2018-10-08 21:15:56 +02:00
$user->id,
$isMeeting,
]
);
engelsystem_log('Created news: ' . $request->postData('betreff') . ', treffen: ' . $isMeeting);
success(__('Entry saved.'));
2017-01-02 03:57:23 +01:00
redirect(page_link_to('news'));
}
2017-01-02 15:43:36 +01:00
2017-08-28 16:21:10 +02:00
if (preg_match('/^\d{1,}$/', $request->input('page', 0))) {
$page = $request->input('page', 0);
2017-01-02 03:57:23 +01:00
} else {
$page = 0;
}
2017-01-02 15:43:36 +01:00
$news = DB::select(sprintf('
SELECT *
FROM `News`
ORDER BY `Datum`
DESC LIMIT %u, %u
',
$page * $display_news,
$display_news
));
2017-01-02 03:57:23 +01:00
foreach ($news as $entry) {
$html .= display_news($entry);
}
2017-01-02 15:43:36 +01:00
$dis_rows = ceil(count(DB::select('SELECT `ID` FROM `News`')) / $display_news);
2017-01-02 03:57:23 +01:00
$html .= '<div class="text-center">' . '<ul class="pagination">';
2017-01-02 15:43:36 +01:00
for ($i = 0; $i < $dis_rows; $i++) {
2017-08-28 16:21:10 +02:00
if ($request->has('page') && $i == $request->input('page', 0)) {
2017-01-02 03:57:23 +01:00
$html .= '<li class="active">';
} elseif (!$request->has('page') && $i == 0) {
2017-01-02 03:57:23 +01:00
$html .= '<li class="active">';
} else {
$html .= '<li>';
}
2017-08-28 16:21:10 +02:00
$html .= '<a href="' . page_link_to('news', ['page' => $i]) . '">' . ($i + 1) . '</a></li>';
}
2017-01-02 03:57:23 +01:00
$html .= '</ul></div>';
2017-01-02 15:43:36 +01:00
if (auth()->can('admin_news')) {
2017-01-02 03:57:23 +01:00
$html .= '<hr />';
$html .= '<h2>' . __('Create news:') . '</h2>';
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$html .= form([
form_text('betreff', __('Subject'), ''),
form_textarea('text', __('Message'), ''),
form_checkbox('treffen', __('Meeting'), false, 1),
form_submit('submit', __('Save'))
2017-01-02 15:43:36 +01:00
]);
2017-01-02 03:57:23 +01:00
}
return $html . '</div>';
2011-06-02 01:45:46 +02:00
}