engelsystem/includes/pages/user_questions.php

86 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;
2017-01-02 15:43:36 +01:00
if (!isset($_REQUEST['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-01-03 14:12:17 +01: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['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 != '') {
$result = DB::insert('
INSERT INTO `Questions` (`UID`, `Question`)
VALUES (?, ?)
',
[$user['UID'], $question]
);
if (!$result) {
2017-01-03 14:12:17 +01:00
engelsystem_error(_('Unable to save question.'));
2017-01-02 15:43:36 +01: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':
2017-01-21 19:47:44 +01:00
if (isset($_REQUEST['id']) && preg_match('/^\d{1,11}$/', $_REQUEST['id'])) {
2017-01-02 15:43:36 +01:00
$question_id = $_REQUEST['id'];
} 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::select(
'SELECT `UID` FROM `Questions` WHERE `QID`=? LIMIT 1',
[$question_id]
);
2017-01-02 15:43:36 +01:00
if (count($question) > 0 && $question[0]['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
}