|
|
|
<?php
|
|
|
|
|
|
|
|
use Engelsystem\Database\DB;
|
|
|
|
use Engelsystem\Models\User\User;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function admin_questions_title()
|
|
|
|
{
|
|
|
|
return __('Answer questions');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders a hint for new questions to answer.
|
|
|
|
*
|
|
|
|
* @return string|null
|
|
|
|
*/
|
|
|
|
function admin_new_questions()
|
|
|
|
{
|
|
|
|
if (current_page() != 'admin_questions') {
|
|
|
|
if (auth()->can('admin_questions')) {
|
|
|
|
$new_messages = count(DB::select('SELECT `QID` FROM `Questions` WHERE `AID` IS NULL'));
|
|
|
|
|
|
|
|
if ($new_messages > 0) {
|
|
|
|
return '<a href="' . page_link_to('admin_questions') . '">'
|
|
|
|
. __('There are unanswered questions!')
|
|
|
|
. '</a>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function admin_questions()
|
|
|
|
{
|
|
|
|
$user = auth()->user();
|
|
|
|
$request = request();
|
|
|
|
|
|
|
|
if (!$request->has('action')) {
|
|
|
|
$unanswered_questions_table = [];
|
|
|
|
$questions = DB::select('SELECT * FROM `Questions` WHERE `AID` IS NULL');
|
|
|
|
foreach ($questions as $question) {
|
|
|
|
$user_source = User::find($question['UID']);
|
|
|
|
|
|
|
|
$unanswered_questions_table[] = [
|
|
|
|
'from' => User_Nick_render($user_source),
|
|
|
|
'question' => nl2br(htmlspecialchars($question['Question'])),
|
|
|
|
'answer' => form([
|
|
|
|
form_textarea('answer', '', ''),
|
|
|
|
form_submit('submit', __('Save'))
|
|
|
|
], page_link_to('admin_questions', ['action' => 'answer', 'id' => $question['QID']])),
|
|
|
|
'actions' => form([
|
|
|
|
form_submit('submit', __('delete'), 'btn-xs'),
|
|
|
|
], page_link_to('admin_questions', ['action' => 'delete', 'id' => $question['QID']])),
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
$answered_questions_table = [];
|
|
|
|
$questions = DB::select('SELECT * FROM `Questions` WHERE NOT `AID` IS NULL');
|
|
|
|
foreach ($questions as $question) {
|
|
|
|
$user_source = User::find($question['UID']);
|
|
|
|
$answer_user_source = User::find($question['AID']);
|
|
|
|
$answered_questions_table[] = [
|
|
|
|
'from' => User_Nick_render($user_source),
|
|
|
|
'question' => nl2br(htmlspecialchars($question['Question'])),
|
|
|
|
'answered_by' => User_Nick_render($answer_user_source),
|
|
|
|
'answer' => nl2br(htmlspecialchars($question['Answer'])),
|
|
|
|
'actions' => form([
|
|
|
|
form_submit('submit', __('delete'), 'btn-xs')
|
|
|
|
], page_link_to('admin_questions', ['action' => 'delete', 'id' => $question['QID']]))
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
return page_with_title(admin_questions_title(), [
|
|
|
|
'<h2>' . __('Unanswered questions') . '</h2>',
|
|
|
|
table([
|
|
|
|
'from' => __('From'),
|
|
|
|
'question' => __('Question'),
|
|
|
|
'answer' => __('Answer'),
|
|
|
|
'actions' => ''
|
|
|
|
], $unanswered_questions_table),
|
|
|
|
'<h2>' . __('Answered questions') . '</h2>',
|
|
|
|
table([
|
|
|
|
'from' => __('From'),
|
|
|
|
'question' => __('Question'),
|
|
|
|
'answered_by' => __('Answered by'),
|
|
|
|
'answer' => __('Answer'),
|
|
|
|
'actions' => ''
|
|
|
|
], $answered_questions_table)
|
|
|
|
]);
|
|
|
|
} else {
|
|
|
|
switch ($request->input('action')) {
|
|
|
|
case 'answer':
|
|
|
|
if (
|
|
|
|
$request->has('id')
|
|
|
|
&& preg_match('/^\d{1,11}$/', $request->input('id'))
|
|
|
|
&& $request->hasPostData('submit')
|
|
|
|
) {
|
|
|
|
$question_id = $request->input('id');
|
|
|
|
} else {
|
|
|
|
return error('Incomplete call, missing Question ID.', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$question = DB::selectOne(
|
|
|
|
'SELECT * FROM `Questions` WHERE `QID`=? LIMIT 1',
|
|
|
|
[$question_id]
|
|
|
|
);
|
|
|
|
if (!empty($question) && empty($question['AID'])) {
|
|
|
|
$answer = trim($request->input('answer'));
|
|
|
|
|
|
|
|
if (!empty($answer)) {
|
|
|
|
DB::update('
|
|
|
|
UPDATE `Questions`
|
|
|
|
SET `AID`=?, `Answer`=?
|
|
|
|
WHERE `QID`=?
|
|
|
|
LIMIT 1
|
|
|
|
',
|
|
|
|
[
|
|
|
|
$user->id,
|
|
|
|
$answer,
|
|
|
|
$question_id,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
engelsystem_log(
|
|
|
|
'Question '
|
|
|
|
. $question['Question']
|
|
|
|
. ' answered: '
|
|
|
|
. $answer
|
|
|
|
);
|
|
|
|
redirect(page_link_to('admin_questions'));
|
|
|
|
} else {
|
|
|
|
return error('Enter an answer!', true);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return error('No question found.', true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'delete':
|
|
|
|
if (
|
|
|
|
$request->has('id')
|
|
|
|
&& preg_match('/^\d{1,11}$/', $request->input('id'))
|
|
|
|
&& $request->hasPostData('submit')
|
|
|
|
) {
|
|
|
|
$question_id = $request->input('id');
|
|
|
|
} else {
|
|
|
|
return error('Incomplete call, missing Question ID.', true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$question = DB::selectOne(
|
|
|
|
'SELECT * FROM `Questions` WHERE `QID`=? LIMIT 1',
|
|
|
|
[$question_id]
|
|
|
|
);
|
|
|
|
if (!empty($question)) {
|
|
|
|
DB::delete('DELETE FROM `Questions` WHERE `QID`=? LIMIT 1', [$question_id]);
|
|
|
|
engelsystem_log('Question deleted: ' . $question['Question']);
|
|
|
|
redirect(page_link_to('admin_questions'));
|
|
|
|
} else {
|
|
|
|
return error('No question found.', true);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|