Skip to content

Commit

Permalink
Update vote.module.php
Browse files Browse the repository at this point in the history
  • Loading branch information
sulaiman0dawod committed Apr 6, 2023
1 parent 4803c2d commit c202ddf
Showing 1 changed file with 114 additions and 76 deletions.
190 changes: 114 additions & 76 deletions modules/vote.module.php
Expand Up @@ -181,21 +181,30 @@ function _PollEdit()
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['path_not_true']);
}

$PollArr = array();
$PollArr['where'] = array('id',$PowerBB->_GET['id']);

if ($PowerBB->functions->ModeratorCheck($PowerBB->_GET['poll_section'])
or !$PowerBB->_CONF['member_row']['username'] == $PowerBB->_GET['user']
or $PowerBB->_CONF['member_row']['username'] == $PowerBB->_GET['user'])
{
$Poll = $PowerBB->core->GetInfo($PollArr,'poll');
if (!$Poll)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['path_not_true']);
}

$PowerBB->_GET['id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['id'],'intval');
$SubjectArr = array();
$SubjectArr['where'] = array('id',$Poll['subject_id']);
$SubjectInfo = $PowerBB->core->GetInfo($SubjectArr,'subject');
if (!$SubjectInfo)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Sorry_requested_topic_does_not_exist']);
}

$PowerBB->_GET['subject_id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['subject_id'],'intval');
if ($PowerBB->functions->ModeratorCheck($SubjectInfo['section'])
or $PowerBB->_CONF['member_row']['username'] == $SubjectInfo['writer'])
{

$PowerBB->_GET['id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['id'],'intval');

$PollArr = array();
$PollArr['where'] = array('id',$PowerBB->_GET['id']);

$Poll = $PowerBB->core->GetInfo($PollArr,'poll');
if(strstr($Poll['answers'],'['))
{ $answers__number = sizeof(json_decode($Poll['answers'], true));
$PowerBB->template->assign('answers__number',$answers__number);
Expand All @@ -204,7 +213,7 @@ function _PollEdit()

// Aha, there is poll in this subject
$PowerBB->template->assign('Poll',$Poll);
$PowerBB->template->assign('subject_id',$PowerBB->_GET['subject_id']);
$PowerBB->template->assign('subject_id',$Poll['subject_id']);
$PowerBB->template->display('edit_poll_table1');

if(strstr($Poll['answers'],'['))
Expand All @@ -220,7 +229,7 @@ function _PollEdit()
{
if (!empty($answers))
{
$subject_id = $PowerBB->_GET['id'];
$subject_id = $Poll['subject_id'];
$vote_nm = $PowerBB->DB->sql_num_rows($PowerBB->DB->sql_query("SELECT * FROM " . $PowerBB->table['vote'] . " WHERE answer_number = " . $answers_number . " AND subject_id = " . $subject_id . " "));

$answers = $PowerBB->Powerparse->censor_words($answers);
Expand All @@ -233,7 +242,7 @@ function _PollEdit()
$CheckArr['where'][0] = array();
$CheckArr['where'][0]['name'] = 'subject_id';
$CheckArr['where'][0]['oper'] = '=';
$CheckArr['where'][0]['value'] = $PowerBB->_GET['id'];
$CheckArr['where'][0]['value'] = $Poll['subject_id'];


$CheckArr['where'][1] = array();
Expand Down Expand Up @@ -340,82 +349,71 @@ function _PollStartdelet()
global $PowerBB;
$PowerBB->functions->ShowHeader();

$PowerBB->_GET['subject_id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['subject_id'],'intval');
$PowerBB->_GET['id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['id'],'intval');

if (!empty($PowerBB->_GET['id']))
{
$PollArr = array();
$PollArr['where'] = array('id',$PowerBB->_GET['id']);

$Poll = $PowerBB->poll->GetPollInfo($PollArr);
$PollArr = array();
$PollArr['where'] = array('id',$PowerBB->_GET['id']);

$Poll = $PowerBB->core->GetInfo($PollArr,'poll');
if (!$Poll)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Vote_be_non-existent']);
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Vote_be_non-existent']);
}

}

if (!empty($PowerBB->_GET['subject_id']))
{
$SubjectArr = array();
$SubjectArr['where'] = array('id',$PowerBB->_GET['subject_id']);

$SubjectArr = array();
$SubjectArr['where'] = array('id',$Poll['subject_id']);
$SubjectInfo = $PowerBB->core->GetInfo($SubjectArr,'subject');
if (!$SubjectInfo)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Sorry_requested_topic_does_not_exist']);
}

if (!$SubjectInfo)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Sorry_requested_topic_does_not_exist']);
}


if (!$PowerBB->functions->ModeratorCheck($SubjectInfo['section'])
or $PowerBB->_CONF['member_row']['username'] != $SubjectInfo['writer'])
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['not_allowed_access']);
}


if ($PowerBB->functions->ModeratorCheck($SubjectInfo['section'])
or $PowerBB->_CONF['member_row']['username'] == $SubjectInfo['writer'])
{

$UpdateArr = array();
$UpdateArr['field'] = array();
$UpdateArr['field']['poll_subject'] = '0';
$UpdateArr['where'] = array('id',$PowerBB->_GET['subject_id']);
$UpdateArr = array();
$UpdateArr['field'] = array();
$UpdateArr['field']['poll_subject'] = '0';
$UpdateArr['where'] = array('id',$PowerBB->_GET['subject_id']);

$update = $PowerBB->core->Update($UpdateArr,'subject');
}
$update = $PowerBB->core->Update($UpdateArr,'subject');

$DeleteArr = array();
$DeleteArr['where'] = array('subject_id',$PowerBB->_GET['subject_id']);
$DeletePoll = $PowerBB->poll->DeletePoll($DeleteArr);

if ($DeletePoll)
{
$VoteId = $PowerBB->_GET['id'];
$GetVoteInfo = $PowerBB->DB->sql_query("SELECT * FROM " . $PowerBB->table['vote'] . " WHERE id = '$VoteId' ");
while ($getvoteInfo_row = $PowerBB->DB->sql_fetch_array($GetVoteInfo))
{
$DeleteArr = array();
$DeleteArr['where'] = array('poll_id',$getvoteInfo_row['id']);
$DeleteArr = array();
$DeleteArr['where'] = array('subject_id',$PowerBB->_GET['subject_id']);
$DeletePoll = $PowerBB->poll->DeletePoll($DeleteArr);

$DeleteVote = $PowerBB->vote->DeleteVote($DeleteArr);
}
if ($DeletePoll)
{
$VoteId = $PowerBB->_GET['id'];
$GetVoteInfo = $PowerBB->DB->sql_query("SELECT * FROM " . $PowerBB->table['vote'] . " WHERE id = '$VoteId' ");
while ($getvoteInfo_row = $PowerBB->DB->sql_fetch_array($GetVoteInfo))
{
$DeleteArr = array();
$DeleteArr['where'] = array('poll_id',$getvoteInfo_row['id']);

$DeleteVote = $PowerBB->vote->DeleteVote($DeleteArr);
}

$UpdateArr = array();
$UpdateArr['poll_subject'] = "0";
$UpdateArr['where'] = array('id',$PowerBB->_GET['subject_id']);

$update = $PowerBB->subject->CloseSubject($UpdateArr);
$UpdateArr = array();
$UpdateArr['poll_subject'] = "0";
$UpdateArr['where'] = array('id',$PowerBB->_GET['subject_id']);

$update = $PowerBB->subject->CloseSubject($UpdateArr);

}

$PowerBB->functions->msg($PowerBB->_CONF['template']['_CONF']['lang']['poll_delet_successfully']);
$PowerBB->functions->redirect('index.php?page=topic&show=1&id=' . $PowerBB->_GET['subject_id']);
}

$PowerBB->functions->msg($PowerBB->_CONF['template']['_CONF']['lang']['poll_delet_successfully']);
$PowerBB->functions->redirect('index.php?page=topic&show=1&id=' . $PowerBB->_GET['subject_id']);

}
else
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['not_allowed_access']);
}

}

Expand All @@ -424,14 +422,28 @@ function _StartPollClose()
global $PowerBB;
$PowerBB->functions->ShowHeader();

$PowerBB->_GET['subject_id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['subject_id'],'intval');
$PowerBB->_GET['id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['id'],'intval');

if (empty($PowerBB->_GET['subject_id']))
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['path_not_true']);
}
$PollArr = array();
$PollArr['where'] = array('id',$PowerBB->_GET['id']);

$Poll = $PowerBB->core->GetInfo($PollArr,'poll');
if (!$Poll)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Vote_be_non-existent']);
}

$SubjectArr = array();
$SubjectArr['where'] = array('id',$Poll['subject_id']);
$SubjectInfo = $PowerBB->core->GetInfo($SubjectArr,'subject');
if (!$SubjectInfo)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Sorry_requested_topic_does_not_exist']);
}

if ($PowerBB->functions->ModeratorCheck($SubjectInfo['section'])
or $PowerBB->_CONF['member_row']['username'] == $SubjectInfo['writer'])
{
// INSERT moderators Action
$EditAction = array();
$EditAction['where'] = array('id',$PowerBB->_GET['subject_id']);
Expand Down Expand Up @@ -463,20 +475,41 @@ function _StartPollClose()

$PowerBB->functions->msg($PowerBB->_CONF['template']['_CONF']['lang']['Has_been_poll_close']);
$PowerBB->functions->redirect('index.php?page=topic&show=1&id=' . $PowerBB->_GET['subject_id']);

}
else
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['not_allowed_access']);
}
}

function _StartPollOpen()
{
global $PowerBB;
$PowerBB->functions->ShowHeader();

$PowerBB->_GET['subject_id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['subject_id'],'intval');
$PowerBB->_GET['id'] = $PowerBB->functions->CleanVariable($PowerBB->_GET['id'],'intval');

if (empty($PowerBB->_GET['subject_id']))
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['path_not_true']);
}
$PollArr = array();
$PollArr['where'] = array('id',$PowerBB->_GET['id']);

$Poll = $PowerBB->core->GetInfo($PollArr,'poll');
if (!$Poll)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Vote_be_non-existent']);
}

$SubjectArr = array();
$SubjectArr['where'] = array('id',$Poll['subject_id']);
$SubjectInfo = $PowerBB->core->GetInfo($SubjectArr,'subject');
if (!$SubjectInfo)
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['Sorry_requested_topic_does_not_exist']);
}

if ($PowerBB->functions->ModeratorCheck($SubjectInfo['section'])
or $PowerBB->_CONF['member_row']['username'] == $SubjectInfo['writer'])
{

// INSERT moderators Action
$EditAction = array();
Expand Down Expand Up @@ -509,6 +542,11 @@ function _StartPollOpen()

$PowerBB->functions->msg($PowerBB->_CONF['template']['_CONF']['lang']['Has_been_poll_open']);
$PowerBB->functions->redirect('index.php?page=topic&show=1&id=' . $PowerBB->_GET['subject_id']);
}
else
{
$PowerBB->functions->error($PowerBB->_CONF['template']['_CONF']['lang']['not_allowed_access']);
}
}

function _StartShowVotes()
Expand Down

0 comments on commit c202ddf

Please sign in to comment.