1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-04-25 05:29:22 +03:00
ifhub.club/include/ajax/questionVote.php
2008-11-05 05:39:39 +00:00

102 lines
3.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Обрабатывает голосование за топик-вопрос
*/
set_include_path(get_include_path().PATH_SEPARATOR.dirname(dirname(dirname(__FILE__))));
chdir(dirname(dirname(dirname(__FILE__))));
require_once("./config/config.ajax.php");
$idAnswer=@$_REQUEST['idAnswer'];
$idTopic=@$_REQUEST['idTopic'];
$bStateError=true;
$sTextResult='';
$sMsgTitle='';
$sMsg='';
if ($oEngine->User_IsAuthorization()) {
if ($oTopic=$oEngine->Topic_GetTopicById($idTopic)) {
if ($oTopic->getType()=='question') {
//голосовал уже или нет
$oUserCurrent=$oEngine->User_GetUserCurrent();
if (!($oTopicQuestionVote=$oEngine->Topic_GetTopicQuestionVote($oTopic->getId(),$oUserCurrent->getId()))) {
$aAnswer=$oTopic->getQuestionAnswers();
if (isset($aAnswer[$idAnswer]) or $idAnswer==-1) {
if ($idAnswer==-1) {
$oTopic->setQuestionCountVoteAbstain($oTopic->getQuestionCountVoteAbstain()+1);
} else {
$oTopic->increaseQuestionAnswerVote($idAnswer);
}
$oTopic->setQuestionCountVote($oTopic->getQuestionCountVote()+1);
$oTopicQuestionVote=new TopicEntity_TopicQuestionVote();
$oTopicQuestionVote->setTopicId($oTopic->getId());
$oTopicQuestionVote->setVoterId($oUserCurrent->getId());
$oTopicQuestionVote->setAnswer($idAnswer);
if ($oEngine->Topic_AddTopicQuestionVote($oTopicQuestionVote) and $oEngine->Topic_updateTopic($oTopic)) {
$bStateError=false;
$sMsgTitle='Поздравляем!';
$sMsg='Ваш голос учтен.';
foreach ($oTopic->getQuestionAnswers() as $key => $aAnswer) {
$sTextResult.='<dl><dt><strong>'.$oTopic->getQuestionAnswerPercent($key).'%</strong><br/>('.$aAnswer['count'].')</dt>';
$sTextResult.='<dd>'.$aAnswer['text'].'<br/><img width="'.$oTopic->getQuestionAnswerPercent($key).'%" height="5" alt="" src="'.DIR_STATIC_SKIN.'/img/vote_space.gif"/></dd></dl>';
}
$sTextResult.='<span class="total">Проголосовало: '.$oTopic->getQuestionCountVote().'. Воздержалось: '.$oTopic->getQuestionCountVoteAbstain().'</span>';
} else {
$sMsgTitle='Ошибка!';
$sMsg='Возникли проблемы, повторите позже.';
}
} else {
$sMsgTitle='Ошибка!';
$sMsg='За что вы голосуете?!';
}
} else {
$sMsgTitle='Ошибка!';
$sMsg='Ваш голос уже учтен!';
}
} else {
$sMsgTitle='Ошибка!';
$sMsg='В этом топике нельзя голосовать!';
}
} else {
$sMsgTitle='Ошибка!';
$sMsg='Как можно голосовать на несуществующий опрос?';
}
} else {
$sMsgTitle='Ошибка!';
$sMsg='Для голосования необходимо авторизоваться!';
}
$GLOBALS['_RESULT'] = array(
"bStateError" => $bStateError,
"sText" => $sTextResult,
"sMsgTitle" => $sMsgTitle,
"sMsg" => $sMsg,
);
?>
<pre>
<b>Request method:</b> <?=$_SERVER['REQUEST_METHOD'] . "\n"?>
<b>Loader used:</b> <?=$JsHttpRequest->LOADER . "\n"?>
<b>_REQUEST:</b> <?=print_r($_REQUEST, 1)?>
</pre>