engelsystem/includes/pages/user_questions.php

89 lines
2.7 KiB
PHP
Raw Normal View History

2011-06-02 23:45:54 +02:00
<?php
use Engelsystem\Database\DB;
2017-01-03 03:22:48 +01:00
/**
* @return string
*/
2017-01-02 03:57:23 +01:00
function questions_title()
{
2017-01-03 14:12:17 +01:00
return _('Ask the Heaven');
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_questions()
{
global $user;
$request = request();
2017-01-02 15:43:36 +01:00
if (!$request->has('action')) {
$open_questions = DB::select(
'SELECT * FROM `Questions` WHERE `AID` IS NULL AND `UID`=?',
[$user['UID']]
2017-01-02 15:43:36 +01:00
);
$answered_questions = DB::select(
'SELECT * FROM `Questions` WHERE NOT `AID` IS NULL AND `UID`=?',
[$user['UID']]
2017-01-02 15:43:36 +01:00
);
2017-01-02 03:57:23 +01:00
foreach ($answered_questions as &$question) {
$answer_user_source = User($question['AID']);
$question['answer_user'] = User_Nick_render($answer_user_source);
}
2017-01-02 15:43:36 +01:00
2017-08-28 16:21:10 +02:00
return Questions_view(
$open_questions,
$answered_questions,
page_link_to('user_questions', ['action' => 'ask'])
);
2017-01-02 03:57:23 +01:00
} else {
switch ($request->input('action')) {
2017-01-02 15:43:36 +01:00
case 'ask':
$question = strip_request_item_nl('question');
2017-01-03 14:12:17 +01:00
if ($question != '') {
2017-07-23 11:46:54 +02:00
DB::insert('
INSERT INTO `Questions` (`UID`, `Question`)
VALUES (?, ?)
',
[$user['UID'], $question]
);
2017-07-23 11:46:54 +02:00
2017-01-03 14:12:17 +01:00
success(_('You question was saved.'));
redirect(page_link_to('user_questions'));
2017-01-02 15:43:36 +01:00
} else {
return page_with_title(questions_title(), [
2017-01-03 14:12:17 +01:00
error(_('Please enter a question!'), true)
2017-01-02 15:43:36 +01:00
]);
}
break;
case 'delete':
if ($request->has('id') && preg_match('/^\d{1,11}$/', $request->input('id'))) {
$question_id = $request->input('id');
2017-01-02 15:43:36 +01:00
} else {
2017-01-03 14:12:17 +01:00
return error(_('Incomplete call, missing Question ID.'), true);
2017-01-02 15:43:36 +01:00
}
$question = DB::selectOne(
'SELECT `UID` FROM `Questions` WHERE `QID`=? LIMIT 1',
[$question_id]
);
if (!empty($question) && $question['UID'] == $user['UID']) {
DB::delete(
'DELETE FROM `Questions` WHERE `QID`=? LIMIT 1',
[$question_id]
);
2017-01-03 14:12:17 +01:00
redirect(page_link_to('user_questions'));
2017-01-02 15:43:36 +01:00
} else {
return page_with_title(questions_title(), [
2017-01-03 14:12:17 +01:00
error(_('No question found.'), true)
2017-01-02 15:43:36 +01:00
]);
}
break;
}
2017-01-02 03:57:23 +01:00
}
2017-01-03 03:22:48 +01:00
return '';
2011-06-02 23:45:54 +02:00
}