Poll.php 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011
  1. <?php
  2. /**
  3. * This file contains the functions for voting, locking, removing and
  4. * editing polls. Note that that posting polls is done in Post.php.
  5. *
  6. * Simple Machines Forum (SMF)
  7. *
  8. * @package SMF
  9. * @author Simple Machines http://www.simplemachines.org
  10. * @copyright 2014 Simple Machines and individual contributors
  11. * @license http://www.simplemachines.org/about/smf/license.php BSD
  12. *
  13. * @version 2.1 Alpha 1
  14. */
  15. if (!defined('SMF'))
  16. die('No direct access...');
  17. /**
  18. * Allow the user to vote.
  19. * It is called to register a vote in a poll.
  20. * Must be called with a topic and option specified.
  21. * Requires the poll_vote permission.
  22. * Upon successful completion of action will direct user back to topic.
  23. * Accessed via ?action=vote.
  24. *
  25. * @uses Post language file.
  26. */
  27. function Vote()
  28. {
  29. global $topic, $user_info, $smcFunc, $sourcedir, $modSettings;
  30. // Make sure you can vote.
  31. isAllowedTo('poll_vote');
  32. loadLanguage('Post');
  33. // Check if they have already voted, or voting is locked.
  34. $request = $smcFunc['db_query']('', '
  35. SELECT IFNULL(lp.id_choice, -1) AS selected, p.voting_locked, p.id_poll, p.expire_time, p.max_votes, p.change_vote,
  36. p.guest_vote, p.reset_poll, p.num_guest_voters
  37. FROM {db_prefix}topics AS t
  38. INNER JOIN {db_prefix}polls AS p ON (p.id_poll = t.id_poll)
  39. LEFT JOIN {db_prefix}log_polls AS lp ON (p.id_poll = lp.id_poll AND lp.id_member = {int:current_member} AND lp.id_member != {int:not_guest})
  40. WHERE t.id_topic = {int:current_topic}
  41. LIMIT 1',
  42. array(
  43. 'current_member' => $user_info['id'],
  44. 'current_topic' => $topic,
  45. 'not_guest' => 0,
  46. )
  47. );
  48. if ($smcFunc['db_num_rows']($request) == 0)
  49. fatal_lang_error('poll_error', false);
  50. $row = $smcFunc['db_fetch_assoc']($request);
  51. $smcFunc['db_free_result']($request);
  52. // If this is a guest can they vote?
  53. if ($user_info['is_guest'])
  54. {
  55. // Guest voting disabled?
  56. if (!$row['guest_vote'])
  57. fatal_lang_error('guest_vote_disabled');
  58. // Guest already voted?
  59. elseif (!empty($_COOKIE['guest_poll_vote']) && preg_match('~^[0-9,;]+$~', $_COOKIE['guest_poll_vote']) && strpos($_COOKIE['guest_poll_vote'], ';' . $row['id_poll'] . ',') !== false)
  60. {
  61. // ;id,timestamp,[vote,vote...]; etc
  62. $guestinfo = explode(';', $_COOKIE['guest_poll_vote']);
  63. // Find the poll we're after.
  64. foreach ($guestinfo as $i => $guestvoted)
  65. {
  66. $guestvoted = explode(',', $guestvoted);
  67. if ($guestvoted[0] == $row['id_poll'])
  68. break;
  69. }
  70. // Has the poll been reset since guest voted?
  71. if ($row['reset_poll'] > $guestvoted[1])
  72. {
  73. // Remove the poll info from the cookie to allow guest to vote again
  74. unset($guestinfo[$i]);
  75. if (!empty($guestinfo))
  76. $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo);
  77. else
  78. unset($_COOKIE['guest_poll_vote']);
  79. }
  80. else
  81. fatal_lang_error('poll_error', false);
  82. unset($guestinfo, $guestvoted, $i);
  83. }
  84. }
  85. // Is voting locked or has it expired?
  86. if (!empty($row['voting_locked']) || (!empty($row['expire_time']) && time() > $row['expire_time']))
  87. fatal_lang_error('poll_error', false);
  88. // If they have already voted and aren't allowed to change their vote - hence they are outta here!
  89. if (!$user_info['is_guest'] && $row['selected'] != -1 && empty($row['change_vote']))
  90. fatal_lang_error('poll_error', false);
  91. // Otherwise if they can change their vote yet they haven't sent any options... remove their vote and redirect.
  92. elseif (!empty($row['change_vote']) && !$user_info['is_guest'] && empty($_POST['options']))
  93. {
  94. checkSession('request');
  95. $pollOptions = array();
  96. // Find out what they voted for before.
  97. $request = $smcFunc['db_query']('', '
  98. SELECT id_choice
  99. FROM {db_prefix}log_polls
  100. WHERE id_member = {int:current_member}
  101. AND id_poll = {int:id_poll}',
  102. array(
  103. 'current_member' => $user_info['id'],
  104. 'id_poll' => $row['id_poll'],
  105. )
  106. );
  107. while ($choice = $smcFunc['db_fetch_row']($request))
  108. $pollOptions[] = $choice[0];
  109. $smcFunc['db_free_result']($request);
  110. // Just skip it if they had voted for nothing before.
  111. if (!empty($pollOptions))
  112. {
  113. // Update the poll totals.
  114. $smcFunc['db_query']('', '
  115. UPDATE {db_prefix}poll_choices
  116. SET votes = votes - 1
  117. WHERE id_poll = {int:id_poll}
  118. AND id_choice IN ({array_int:poll_options})
  119. AND votes > {int:votes}',
  120. array(
  121. 'poll_options' => $pollOptions,
  122. 'id_poll' => $row['id_poll'],
  123. 'votes' => 0,
  124. )
  125. );
  126. // Delete off the log.
  127. $smcFunc['db_query']('', '
  128. DELETE FROM {db_prefix}log_polls
  129. WHERE id_member = {int:current_member}
  130. AND id_poll = {int:id_poll}',
  131. array(
  132. 'current_member' => $user_info['id'],
  133. 'id_poll' => $row['id_poll'],
  134. )
  135. );
  136. }
  137. // Redirect back to the topic so the user can vote again!
  138. if (empty($_POST['options']))
  139. redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
  140. }
  141. checkSession('request');
  142. // Make sure the option(s) are valid.
  143. if (empty($_POST['options']))
  144. fatal_lang_error('didnt_select_vote', false);
  145. // Too many options checked!
  146. if (count($_REQUEST['options']) > $row['max_votes'])
  147. fatal_lang_error('poll_too_many_votes', false, array($row['max_votes']));
  148. $pollOptions = array();
  149. $inserts = array();
  150. foreach ($_REQUEST['options'] as $id)
  151. {
  152. $id = (int) $id;
  153. $pollOptions[] = $id;
  154. $inserts[] = array($row['id_poll'], $user_info['id'], $id);
  155. }
  156. // Add their vote to the tally.
  157. $smcFunc['db_insert']('insert',
  158. '{db_prefix}log_polls',
  159. array('id_poll' => 'int', 'id_member' => 'int', 'id_choice' => 'int'),
  160. $inserts,
  161. array('id_poll', 'id_member', 'id_choice')
  162. );
  163. $smcFunc['db_query']('', '
  164. UPDATE {db_prefix}poll_choices
  165. SET votes = votes + 1
  166. WHERE id_poll = {int:id_poll}
  167. AND id_choice IN ({array_int:poll_options})',
  168. array(
  169. 'poll_options' => $pollOptions,
  170. 'id_poll' => $row['id_poll'],
  171. )
  172. );
  173. // If it's a guest don't let them vote again.
  174. if ($user_info['is_guest'] && count($pollOptions) > 0)
  175. {
  176. // Time is stored in case the poll is reset later, plus what they voted for.
  177. $_COOKIE['guest_poll_vote'] = empty($_COOKIE['guest_poll_vote']) ? '' : $_COOKIE['guest_poll_vote'];
  178. // ;id,timestamp,[vote,vote...]; etc
  179. $_COOKIE['guest_poll_vote'] .= ';' . $row['id_poll'] . ',' . time() . ',' . implode(',', $pollOptions);
  180. // Increase num guest voters count by 1
  181. $smcFunc['db_query']('', '
  182. UPDATE {db_prefix}polls
  183. SET num_guest_voters = num_guest_voters + 1
  184. WHERE id_poll = {int:id_poll}',
  185. array(
  186. 'id_poll' => $row['id_poll'],
  187. )
  188. );
  189. require_once($sourcedir . '/Subs-Auth.php');
  190. $cookie_url = url_parts(!empty($modSettings['localCookies']), !empty($modSettings['globalCookies']));
  191. smf_setcookie('guest_poll_vote', $_COOKIE['guest_poll_vote'], time() + 2500000, $cookie_url[1], $cookie_url[0], false, false);
  192. }
  193. // Maybe let a social networking mod log this, or something?
  194. call_integration_hook('integrate_poll_vote', array(&$row['id_poll'], &$pollOptions));
  195. // Return to the post...
  196. redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
  197. }
  198. /**
  199. * Lock the voting for a poll.
  200. * Must be called with a topic specified in the URL.
  201. * An admin always has over riding permission to lock a poll.
  202. * If not an admin must have poll_lock_any permission, otherwise must
  203. * be poll starter with poll_lock_own permission.
  204. * Upon successful completion of action will direct user back to topic.
  205. * Accessed via ?action=lockvoting.
  206. */
  207. function LockVoting()
  208. {
  209. global $topic, $user_info, $smcFunc;
  210. checkSession('get');
  211. // Get the poll starter, ID, and whether or not it is locked.
  212. $request = $smcFunc['db_query']('', '
  213. SELECT t.id_member_started, t.id_poll, p.voting_locked
  214. FROM {db_prefix}topics AS t
  215. INNER JOIN {db_prefix}polls AS p ON (p.id_poll = t.id_poll)
  216. WHERE t.id_topic = {int:current_topic}
  217. LIMIT 1',
  218. array(
  219. 'current_topic' => $topic,
  220. )
  221. );
  222. list ($memberID, $pollID, $voting_locked) = $smcFunc['db_fetch_row']($request);
  223. // If the user _can_ modify the poll....
  224. if (!allowedTo('poll_lock_any'))
  225. isAllowedTo('poll_lock_' . ($user_info['id'] == $memberID ? 'own' : 'any'));
  226. // It's been locked by a non-moderator.
  227. if ($voting_locked == '1')
  228. $voting_locked = '0';
  229. // Locked by a moderator, and this is a moderator.
  230. elseif ($voting_locked == '2' && allowedTo('moderate_board'))
  231. $voting_locked = '0';
  232. // Sorry, a moderator locked it.
  233. elseif ($voting_locked == '2' && !allowedTo('moderate_board'))
  234. fatal_lang_error('locked_by_admin', 'user');
  235. // A moderator *is* locking it.
  236. elseif ($voting_locked == '0' && allowedTo('moderate_board'))
  237. $voting_locked = '2';
  238. // Well, it's gonna be locked one way or another otherwise...
  239. else
  240. $voting_locked = '1';
  241. // Lock! *Poof* - no one can vote.
  242. $smcFunc['db_query']('', '
  243. UPDATE {db_prefix}polls
  244. SET voting_locked = {int:voting_locked}
  245. WHERE id_poll = {int:id_poll}',
  246. array(
  247. 'voting_locked' => $voting_locked,
  248. 'id_poll' => $pollID,
  249. )
  250. );
  251. logAction(($voting_locked ? '' : 'un') . 'lock_poll', array('topic' => $topic));
  252. redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
  253. }
  254. /**
  255. * Display screen for editing or adding a poll.
  256. * Must be called with a topic specified in the URL.
  257. * If the user is adding a poll to a topic, must contain the variable
  258. * 'add' in the url.
  259. * User must have poll_edit_any/poll_add_any permission for the
  260. * relevant action, otherwise must be poll starter with poll_edit_own
  261. * permission for editing, or be topic starter with poll_add_any permission for adding.
  262. * Accessed via ?action=editpoll.
  263. *
  264. * @uses Post language file.
  265. * @uses Poll template, main sub-template.
  266. */
  267. function EditPoll()
  268. {
  269. global $txt, $user_info, $context, $topic, $board, $smcFunc, $sourcedir, $scripturl;
  270. if (empty($topic))
  271. fatal_lang_error('no_access', false);
  272. loadLanguage('Post');
  273. loadTemplate('Poll');
  274. $context['start'] = (int) $_REQUEST['start'];
  275. $context['is_edit'] = isset($_REQUEST['add']) ? 0 : 1;
  276. // Check if a poll currently exists on this topic, and get the id, question and starter.
  277. $request = $smcFunc['db_query']('', '
  278. SELECT
  279. t.id_member_started, p.id_poll, p.question, p.hide_results, p.expire_time, p.max_votes, p.change_vote,
  280. m.subject, p.guest_vote, p.id_member AS poll_starter
  281. FROM {db_prefix}topics AS t
  282. INNER JOIN {db_prefix}messages AS m ON (m.id_msg = t.id_first_msg)
  283. LEFT JOIN {db_prefix}polls AS p ON (p.id_poll = t.id_poll)
  284. WHERE t.id_topic = {int:current_topic}
  285. LIMIT 1',
  286. array(
  287. 'current_topic' => $topic,
  288. )
  289. );
  290. // Assume the the topic exists, right?
  291. if ($smcFunc['db_num_rows']($request) == 0)
  292. fatal_lang_error('no_board');
  293. // Get the poll information.
  294. $pollinfo = $smcFunc['db_fetch_assoc']($request);
  295. $smcFunc['db_free_result']($request);
  296. // If we are adding a new poll - make sure that there isn't already a poll there.
  297. if (!$context['is_edit'] && !empty($pollinfo['id_poll']))
  298. fatal_lang_error('poll_already_exists');
  299. // Otherwise, if we're editing it, it does exist I assume?
  300. elseif ($context['is_edit'] && empty($pollinfo['id_poll']))
  301. fatal_lang_error('poll_not_found');
  302. // Can you do this?
  303. if ($context['is_edit'] && !allowedTo('poll_edit_any'))
  304. isAllowedTo('poll_edit_' . ($user_info['id'] == $pollinfo['id_member_started'] || ($pollinfo['poll_starter'] != 0 && $user_info['id'] == $pollinfo['poll_starter']) ? 'own' : 'any'));
  305. elseif (!$context['is_edit'] && !allowedTo('poll_add_any'))
  306. isAllowedTo('poll_add_' . ($user_info['id'] == $pollinfo['id_member_started'] ? 'own' : 'any'));
  307. $context['can_moderate_poll'] = isset($_REQUEST['add']) ? true : allowedTo('poll_edit_' . ($user_info['id'] == $pollinfo['id_member_started'] || ($pollinfo['poll_starter'] != 0 && $user_info['id'] == $pollinfo['poll_starter']) ? 'own' : 'any'));
  308. // Do we enable guest voting?
  309. require_once($sourcedir . '/Subs-Members.php');
  310. $groupsAllowedVote = groupsAllowedTo('poll_vote', $board);
  311. // Want to make sure before you actually submit? Must be a lot of options, or something.
  312. if (isset($_POST['preview']))
  313. {
  314. $question = $smcFunc['htmlspecialchars']($_POST['question']);
  315. // Basic theme info...
  316. $context['poll'] = array(
  317. 'id' => $pollinfo['id_poll'],
  318. 'question' => $question,
  319. 'hide_results' => empty($_POST['poll_hide']) ? 0 : $_POST['poll_hide'],
  320. 'change_vote' => isset($_POST['poll_change_vote']),
  321. 'guest_vote' => isset($_POST['poll_guest_vote']),
  322. 'guest_vote_allowed' => in_array(-1, $groupsAllowedVote['allowed']),
  323. 'max_votes' => empty($_POST['poll_max_votes']) ? '1' : max(1, $_POST['poll_max_votes']),
  324. );
  325. // Start at number one with no last id to speak of.
  326. $number = 1;
  327. $last_id = 0;
  328. // Get all the choices - if this is an edit.
  329. if ($context['is_edit'])
  330. {
  331. $request = $smcFunc['db_query']('', '
  332. SELECT label, votes, id_choice
  333. FROM {db_prefix}poll_choices
  334. WHERE id_poll = {int:id_poll}',
  335. array(
  336. 'id_poll' => $pollinfo['id_poll'],
  337. )
  338. );
  339. $context['choices'] = array();
  340. while ($row = $smcFunc['db_fetch_assoc']($request))
  341. {
  342. // Get the highest id so we can add more without reusing.
  343. if ($row['id_choice'] >= $last_id)
  344. $last_id = $row['id_choice'] + 1;
  345. // They cleared this by either omitting it or emptying it.
  346. if (!isset($_POST['options'][$row['id_choice']]) || $_POST['options'][$row['id_choice']] == '')
  347. continue;
  348. censorText($row['label']);
  349. // Add the choice!
  350. $context['choices'][$row['id_choice']] = array(
  351. 'id' => $row['id_choice'],
  352. 'number' => $number++,
  353. 'votes' => $row['votes'],
  354. 'label' => $row['label'],
  355. 'is_last' => false
  356. );
  357. }
  358. $smcFunc['db_free_result']($request);
  359. }
  360. // Work out how many options we have, so we get the 'is_last' field right...
  361. $totalPostOptions = 0;
  362. foreach ($_POST['options'] as $id => $label)
  363. if ($label != '')
  364. $totalPostOptions++;
  365. $count = 1;
  366. // If an option exists, update it. If it is new, add it - but don't reuse ids!
  367. foreach ($_POST['options'] as $id => $label)
  368. {
  369. $label = $smcFunc['htmlspecialchars']($label);
  370. censorText($label);
  371. if (isset($context['choices'][$id]))
  372. $context['choices'][$id]['label'] = $label;
  373. elseif ($label != '')
  374. $context['choices'][] = array(
  375. 'id' => $last_id++,
  376. 'number' => $number++,
  377. 'label' => $label,
  378. 'votes' => -1,
  379. 'is_last' => $count++ == $totalPostOptions && $totalPostOptions > 1 ? true : false,
  380. );
  381. }
  382. // Make sure we have two choices for sure!
  383. if ($totalPostOptions < 2)
  384. {
  385. // Need two?
  386. if ($totalPostOptions == 0)
  387. $context['choices'][] = array(
  388. 'id' => $last_id++,
  389. 'number' => $number++,
  390. 'label' => '',
  391. 'votes' => -1,
  392. 'is_last' => false
  393. );
  394. $poll_errors[] = 'poll_few';
  395. }
  396. // Always show one extra box...
  397. $context['choices'][] = array(
  398. 'id' => $last_id++,
  399. 'number' => $number++,
  400. 'label' => '',
  401. 'votes' => -1,
  402. 'is_last' => true
  403. );
  404. $context['last_choice_id'] = $last_id;
  405. if ($context['can_moderate_poll'])
  406. $context['poll']['expiration'] = $_POST['poll_expire'];
  407. // Check the question/option count for errors.
  408. if (trim($_POST['question']) == '' && empty($context['poll_error']))
  409. $poll_errors[] = 'no_question';
  410. // No check is needed, since nothing is really posted.
  411. checkSubmitOnce('free');
  412. // Take a check for any errors... assuming we haven't already done so!
  413. if (!empty($poll_errors) && empty($context['poll_error']))
  414. {
  415. loadLanguage('Errors');
  416. $context['poll_error'] = array('messages' => array());
  417. foreach ($poll_errors as $poll_error)
  418. {
  419. $context['poll_error'][$poll_error] = true;
  420. $context['poll_error']['messages'][] = $txt['error_' . $poll_error];
  421. }
  422. }
  423. }
  424. else
  425. {
  426. // Basic theme info...
  427. $context['poll'] = array(
  428. 'id' => $pollinfo['id_poll'],
  429. 'question' => $pollinfo['question'],
  430. 'hide_results' => $pollinfo['hide_results'],
  431. 'max_votes' => $pollinfo['max_votes'],
  432. 'change_vote' => !empty($pollinfo['change_vote']),
  433. 'guest_vote' => !empty($pollinfo['guest_vote']),
  434. 'guest_vote_allowed' => in_array(-1, $groupsAllowedVote['allowed']),
  435. );
  436. // Poll expiration time?
  437. $context['poll']['expiration'] = empty($pollinfo['expire_time']) || !$context['can_moderate_poll'] ? '' : ceil($pollinfo['expire_time'] <= time() ? -1 : ($pollinfo['expire_time'] - time()) / (3600 * 24));
  438. // Get all the choices - if this is an edit.
  439. if ($context['is_edit'])
  440. {
  441. $request = $smcFunc['db_query']('', '
  442. SELECT label, votes, id_choice
  443. FROM {db_prefix}poll_choices
  444. WHERE id_poll = {int:id_poll}',
  445. array(
  446. 'id_poll' => $pollinfo['id_poll'],
  447. )
  448. );
  449. $context['choices'] = array();
  450. $number = 1;
  451. while ($row = $smcFunc['db_fetch_assoc']($request))
  452. {
  453. censorText($row['label']);
  454. $context['choices'][$row['id_choice']] = array(
  455. 'id' => $row['id_choice'],
  456. 'number' => $number++,
  457. 'votes' => $row['votes'],
  458. 'label' => $row['label'],
  459. 'is_last' => false
  460. );
  461. }
  462. $smcFunc['db_free_result']($request);
  463. $last_id = max(array_keys($context['choices'])) + 1;
  464. // Add an extra choice...
  465. $context['choices'][] = array(
  466. 'id' => $last_id,
  467. 'number' => $number,
  468. 'votes' => -1,
  469. 'label' => '',
  470. 'is_last' => true
  471. );
  472. $context['last_choice_id'] = $last_id;
  473. }
  474. // New poll?
  475. else
  476. {
  477. // Setup the default poll options.
  478. $context['poll'] = array(
  479. 'id' => 0,
  480. 'question' => '',
  481. 'hide_results' => 0,
  482. 'max_votes' => 1,
  483. 'change_vote' => 0,
  484. 'guest_vote' => 0,
  485. 'guest_vote_allowed' => in_array(-1, $groupsAllowedVote['allowed']),
  486. 'expiration' => '',
  487. );
  488. // Make all five poll choices empty.
  489. $context['choices'] = array(
  490. array('id' => 0, 'number' => 1, 'votes' => -1, 'label' => '', 'is_last' => false),
  491. array('id' => 1, 'number' => 2, 'votes' => -1, 'label' => '', 'is_last' => false),
  492. array('id' => 2, 'number' => 3, 'votes' => -1, 'label' => '', 'is_last' => false),
  493. array('id' => 3, 'number' => 4, 'votes' => -1, 'label' => '', 'is_last' => false),
  494. array('id' => 4, 'number' => 5, 'votes' => -1, 'label' => '', 'is_last' => true)
  495. );
  496. $context['last_choice_id'] = 4;
  497. }
  498. }
  499. $context['page_title'] = $context['is_edit'] ? $txt['poll_edit'] : $txt['add_poll'];
  500. // Build the link tree.
  501. censorText($pollinfo['subject']);
  502. $context['linktree'][] = array(
  503. 'url' => $scripturl . '?topic=' . $topic . '.0',
  504. 'name' => $pollinfo['subject'],
  505. );
  506. $context['linktree'][] = array(
  507. 'name' => $context['page_title'],
  508. );
  509. // Register this form in the session variables.
  510. checkSubmitOnce('register');
  511. }
  512. /**
  513. * Update the settings for a poll, or add a new one.
  514. * Must be called with a topic specified in the URL.
  515. * The user must have poll_edit_any/poll_add_any permission
  516. * for the relevant action. Otherwise they must be poll starter
  517. * with poll_edit_own permission for editing, or be topic starter
  518. * with poll_add_any permission for adding.
  519. * In the case of an error, this function will redirect back to
  520. * EditPoll and display the relevant error message.
  521. * Upon successful completion of action will direct user back to topic.
  522. * Accessed via ?action=editpoll2.
  523. */
  524. function EditPoll2()
  525. {
  526. global $txt, $topic, $board, $context;
  527. global $user_info, $smcFunc, $sourcedir;
  528. // Sneaking off, are we?
  529. if (empty($_POST))
  530. redirectexit('action=editpoll;topic=' . $topic . '.0');
  531. if (checkSession('post', '', false) != '')
  532. $poll_errors[] = 'session_timeout';
  533. if (isset($_POST['preview']))
  534. return EditPoll();
  535. // HACKERS (!!) can't edit :P.
  536. if (empty($topic))
  537. fatal_lang_error('no_access', false);
  538. // Is this a new poll, or editing an existing?
  539. $isEdit = isset($_REQUEST['add']) ? 0 : 1;
  540. // Get the starter and the poll's ID - if it's an edit.
  541. $request = $smcFunc['db_query']('', '
  542. SELECT t.id_member_started, t.id_poll, p.id_member AS poll_starter, p.expire_time
  543. FROM {db_prefix}topics AS t
  544. LEFT JOIN {db_prefix}polls AS p ON (p.id_poll = t.id_poll)
  545. WHERE t.id_topic = {int:current_topic}
  546. LIMIT 1',
  547. array(
  548. 'current_topic' => $topic,
  549. )
  550. );
  551. if ($smcFunc['db_num_rows']($request) == 0)
  552. fatal_lang_error('no_board');
  553. $bcinfo = $smcFunc['db_fetch_assoc']($request);
  554. $smcFunc['db_free_result']($request);
  555. // Check their adding/editing is valid.
  556. if (!$isEdit && !empty($bcinfo['id_poll']))
  557. fatal_lang_error('poll_already_exists');
  558. // Are we editing a poll which doesn't exist?
  559. elseif ($isEdit && empty($bcinfo['id_poll']))
  560. fatal_lang_error('poll_not_found');
  561. // Check if they have the power to add or edit the poll.
  562. if ($isEdit && !allowedTo('poll_edit_any'))
  563. isAllowedTo('poll_edit_' . ($user_info['id'] == $bcinfo['id_member_started'] || ($bcinfo['poll_starter'] != 0 && $user_info['id'] == $bcinfo['poll_starter']) ? 'own' : 'any'));
  564. elseif (!$isEdit && !allowedTo('poll_add_any'))
  565. isAllowedTo('poll_add_' . ($user_info['id'] == $bcinfo['id_member_started'] ? 'own' : 'any'));
  566. $optionCount = 0;
  567. $idCount = 0;
  568. // Ensure the user is leaving a valid amount of options - there must be at least two.
  569. foreach ($_POST['options'] as $k => $option)
  570. {
  571. if (trim($option) != '')
  572. {
  573. $optionCount++;
  574. $idCount = max($idCount, $k);
  575. }
  576. }
  577. if ($optionCount < 2)
  578. $poll_errors[] = 'poll_few';
  579. elseif ($optionCount > 256 || $idCount > 255)
  580. $poll_errors[] = 'poll_many';
  581. // Also - ensure they are not removing the question.
  582. if (trim($_POST['question']) == '')
  583. $poll_errors[] = 'no_question';
  584. // Got any errors to report?
  585. if (!empty($poll_errors))
  586. {
  587. loadLanguage('Errors');
  588. // Previewing.
  589. $_POST['preview'] = true;
  590. $context['poll_error'] = array('messages' => array());
  591. foreach ($poll_errors as $poll_error)
  592. {
  593. $context['poll_error'][$poll_error] = true;
  594. $context['poll_error']['messages'][] = $txt['error_' . $poll_error];
  595. }
  596. return EditPoll();
  597. }
  598. // Prevent double submission of this form.
  599. checkSubmitOnce('check');
  600. // Now we've done all our error checking, let's get the core poll information cleaned... question first.
  601. $_POST['question'] = $smcFunc['htmlspecialchars']($_POST['question']);
  602. $_POST['question'] = $smcFunc['truncate']($_POST['question'], 255);
  603. $_POST['poll_hide'] = (int) $_POST['poll_hide'];
  604. $_POST['poll_expire'] = isset($_POST['poll_expire']) ? (int) $_POST['poll_expire'] : 0;
  605. $_POST['poll_change_vote'] = isset($_POST['poll_change_vote']) ? 1 : 0;
  606. $_POST['poll_guest_vote'] = isset($_POST['poll_guest_vote']) ? 1 : 0;
  607. // Make sure guests are actually allowed to vote generally.
  608. if ($_POST['poll_guest_vote'])
  609. {
  610. require_once($sourcedir . '/Subs-Members.php');
  611. $allowedGroups = groupsAllowedTo('poll_vote', $board);
  612. if (!in_array(-1, $allowedGroups['allowed']))
  613. $_POST['poll_guest_vote'] = 0;
  614. }
  615. // Ensure that the number options allowed makes sense, and the expiration date is valid.
  616. if (!$isEdit || allowedTo('moderate_board'))
  617. {
  618. $_POST['poll_expire'] = $_POST['poll_expire'] > 9999 ? 9999 : ($_POST['poll_expire'] < 0 ? 0 : $_POST['poll_expire']);
  619. if (empty($_POST['poll_expire']) && $_POST['poll_hide'] == 2)
  620. $_POST['poll_hide'] = 1;
  621. elseif (!$isEdit || $_POST['poll_expire'] != ceil($bcinfo['expire_time'] <= time() ? -1 : ($bcinfo['expire_time'] - time()) / (3600 * 24)))
  622. $_POST['poll_expire'] = empty($_POST['poll_expire']) ? '0' : time() + $_POST['poll_expire'] * 3600 * 24;
  623. else
  624. $_POST['poll_expire'] = $bcinfo['expire_time'];
  625. if (empty($_POST['poll_max_votes']) || $_POST['poll_max_votes'] <= 0)
  626. $_POST['poll_max_votes'] = 1;
  627. else
  628. $_POST['poll_max_votes'] = (int) $_POST['poll_max_votes'];
  629. }
  630. // If we're editing, let's commit the changes.
  631. if ($isEdit)
  632. {
  633. $smcFunc['db_query']('', '
  634. UPDATE {db_prefix}polls
  635. SET question = {string:question}, change_vote = {int:change_vote},' . (allowedTo('moderate_board') ? '
  636. hide_results = {int:hide_results}, expire_time = {int:expire_time}, max_votes = {int:max_votes},
  637. guest_vote = {int:guest_vote}' : '
  638. hide_results = CASE WHEN expire_time = {int:expire_time_zero} AND {int:hide_results} = 2 THEN 1 ELSE {int:hide_results} END') . '
  639. WHERE id_poll = {int:id_poll}',
  640. array(
  641. 'change_vote' => $_POST['poll_change_vote'],
  642. 'hide_results' => $_POST['poll_hide'],
  643. 'expire_time' => !empty($_POST['poll_expire']) ? $_POST['poll_expire'] : 0,
  644. 'max_votes' => !empty($_POST['poll_max_votes']) ? $_POST['poll_max_votes'] : 0,
  645. 'guest_vote' => $_POST['poll_guest_vote'],
  646. 'expire_time_zero' => 0,
  647. 'id_poll' => $bcinfo['id_poll'],
  648. 'question' => $_POST['question'],
  649. )
  650. );
  651. }
  652. // Otherwise, let's get our poll going!
  653. else
  654. {
  655. // Create the poll.
  656. $smcFunc['db_insert']('',
  657. '{db_prefix}polls',
  658. array(
  659. 'question' => 'string-255', 'hide_results' => 'int', 'max_votes' => 'int', 'expire_time' => 'int', 'id_member' => 'int',
  660. 'poster_name' => 'string-255', 'change_vote' => 'int', 'guest_vote' => 'int'
  661. ),
  662. array(
  663. $_POST['question'], $_POST['poll_hide'], $_POST['poll_max_votes'], $_POST['poll_expire'], $user_info['id'],
  664. $user_info['username'], $_POST['poll_change_vote'], $_POST['poll_guest_vote'],
  665. ),
  666. array('id_poll')
  667. );
  668. // Set the poll ID.
  669. $bcinfo['id_poll'] = $smcFunc['db_insert_id']('{db_prefix}polls', 'id_poll');
  670. // Link the poll to the topic
  671. $smcFunc['db_query']('', '
  672. UPDATE {db_prefix}topics
  673. SET id_poll = {int:id_poll}
  674. WHERE id_topic = {int:current_topic}',
  675. array(
  676. 'current_topic' => $topic,
  677. 'id_poll' => $bcinfo['id_poll'],
  678. )
  679. );
  680. }
  681. // Get all the choices. (no better way to remove all emptied and add previously non-existent ones.)
  682. $request = $smcFunc['db_query']('', '
  683. SELECT id_choice
  684. FROM {db_prefix}poll_choices
  685. WHERE id_poll = {int:id_poll}',
  686. array(
  687. 'id_poll' => $bcinfo['id_poll'],
  688. )
  689. );
  690. $choices = array();
  691. while ($row = $smcFunc['db_fetch_assoc']($request))
  692. $choices[] = $row['id_choice'];
  693. $smcFunc['db_free_result']($request);
  694. $delete_options = array();
  695. foreach ($_POST['options'] as $k => $option)
  696. {
  697. // Make sure the key is numeric for sanity's sake.
  698. $k = (int) $k;
  699. // They've cleared the box. Either they want it deleted, or it never existed.
  700. if (trim($option) == '')
  701. {
  702. // They want it deleted. Bye.
  703. if (in_array($k, $choices))
  704. $delete_options[] = $k;
  705. // Skip the rest...
  706. continue;
  707. }
  708. // Dress the option up for its big date with the database.
  709. $option = $smcFunc['htmlspecialchars']($option);
  710. // If it's already there, update it. If it's not... add it.
  711. if (in_array($k, $choices))
  712. $smcFunc['db_query']('', '
  713. UPDATE {db_prefix}poll_choices
  714. SET label = {string:option_name}
  715. WHERE id_poll = {int:id_poll}
  716. AND id_choice = {int:id_choice}',
  717. array(
  718. 'id_poll' => $bcinfo['id_poll'],
  719. 'id_choice' => $k,
  720. 'option_name' => $option,
  721. )
  722. );
  723. else
  724. $smcFunc['db_insert']('',
  725. '{db_prefix}poll_choices',
  726. array(
  727. 'id_poll' => 'int', 'id_choice' => 'int', 'label' => 'string-255', 'votes' => 'int',
  728. ),
  729. array(
  730. $bcinfo['id_poll'], $k, $option, 0,
  731. ),
  732. array()
  733. );
  734. }
  735. // I'm sorry, but... well, no one was choosing you. Poor options, I'll put you out of your misery.
  736. if (!empty($delete_options))
  737. {
  738. $smcFunc['db_query']('', '
  739. DELETE FROM {db_prefix}log_polls
  740. WHERE id_poll = {int:id_poll}
  741. AND id_choice IN ({array_int:delete_options})',
  742. array(
  743. 'delete_options' => $delete_options,
  744. 'id_poll' => $bcinfo['id_poll'],
  745. )
  746. );
  747. $smcFunc['db_query']('', '
  748. DELETE FROM {db_prefix}poll_choices
  749. WHERE id_poll = {int:id_poll}
  750. AND id_choice IN ({array_int:delete_options})',
  751. array(
  752. 'delete_options' => $delete_options,
  753. 'id_poll' => $bcinfo['id_poll'],
  754. )
  755. );
  756. }
  757. // Shall I reset the vote count, sir?
  758. if (isset($_POST['resetVoteCount']))
  759. {
  760. $smcFunc['db_query']('', '
  761. UPDATE {db_prefix}polls
  762. SET num_guest_voters = {int:no_votes}, reset_poll = {int:time}
  763. WHERE id_poll = {int:id_poll}',
  764. array(
  765. 'no_votes' => 0,
  766. 'id_poll' => $bcinfo['id_poll'],
  767. 'time' => time(),
  768. )
  769. );
  770. $smcFunc['db_query']('', '
  771. UPDATE {db_prefix}poll_choices
  772. SET votes = {int:no_votes}
  773. WHERE id_poll = {int:id_poll}',
  774. array(
  775. 'no_votes' => 0,
  776. 'id_poll' => $bcinfo['id_poll'],
  777. )
  778. );
  779. $smcFunc['db_query']('', '
  780. DELETE FROM {db_prefix}log_polls
  781. WHERE id_poll = {int:id_poll}',
  782. array(
  783. 'id_poll' => $bcinfo['id_poll'],
  784. )
  785. );
  786. }
  787. call_integration_hook('integrate_poll_add_edit', array($bcinfo['id_poll'], $isEdit));
  788. /* Log this edit, but don't go crazy.
  789. Only specifically adding a poll or resetting votes is logged.
  790. Everything else is simply an edit.*/
  791. if (isset($_REQUEST['add']))
  792. {
  793. // Added a poll
  794. logAction('add_poll', array('topic' => $topic));
  795. }
  796. elseif (isset($_REQUEST['deletevotes']))
  797. {
  798. // Reset votes
  799. logAction('reset_poll', array('topic' => $topic));
  800. }
  801. else
  802. {
  803. // Something else
  804. logAction('editpoll', array('topic' => $topic));
  805. }
  806. // Off we go.
  807. redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
  808. }
  809. /**
  810. * Remove a poll from a topic without removing the topic.
  811. * Must be called with a topic specified in the URL.
  812. * Requires poll_remove_any permission, unless it's the poll starter
  813. * with poll_remove_own permission.
  814. * Upon successful completion of action will direct user back to topic.
  815. * Accessed via ?action=removepoll.
  816. */
  817. function RemovePoll()
  818. {
  819. global $topic, $user_info, $smcFunc;
  820. // Make sure the topic is not empty.
  821. if (empty($topic))
  822. fatal_lang_error('no_access', false);
  823. // Verify the session.
  824. checkSession('get');
  825. // Check permissions.
  826. if (!allowedTo('poll_remove_any'))
  827. {
  828. $request = $smcFunc['db_query']('', '
  829. SELECT t.id_member_started, p.id_member AS poll_starter
  830. FROM {db_prefix}topics AS t
  831. INNER JOIN {db_prefix}polls AS p ON (p.id_poll = t.id_poll)
  832. WHERE t.id_topic = {int:current_topic}
  833. LIMIT 1',
  834. array(
  835. 'current_topic' => $topic,
  836. )
  837. );
  838. if ($smcFunc['db_num_rows']($request) == 0)
  839. fatal_lang_error('no_access', false);
  840. list ($topicStarter, $pollStarter) = $smcFunc['db_fetch_row']($request);
  841. $smcFunc['db_free_result']($request);
  842. isAllowedTo('poll_remove_' . ($topicStarter == $user_info['id'] || ($pollStarter != 0 && $user_info['id'] == $pollStarter) ? 'own' : 'any'));
  843. }
  844. // Retrieve the poll ID.
  845. $request = $smcFunc['db_query']('', '
  846. SELECT id_poll
  847. FROM {db_prefix}topics
  848. WHERE id_topic = {int:current_topic}
  849. LIMIT 1',
  850. array(
  851. 'current_topic' => $topic,
  852. )
  853. );
  854. list ($pollID) = $smcFunc['db_fetch_row']($request);
  855. $smcFunc['db_free_result']($request);
  856. // Remove all user logs for this poll.
  857. $smcFunc['db_query']('', '
  858. DELETE FROM {db_prefix}log_polls
  859. WHERE id_poll = {int:id_poll}',
  860. array(
  861. 'id_poll' => $pollID,
  862. )
  863. );
  864. // Remove all poll choices.
  865. $smcFunc['db_query']('', '
  866. DELETE FROM {db_prefix}poll_choices
  867. WHERE id_poll = {int:id_poll}',
  868. array(
  869. 'id_poll' => $pollID,
  870. )
  871. );
  872. // Remove the poll itself.
  873. $smcFunc['db_query']('', '
  874. DELETE FROM {db_prefix}polls
  875. WHERE id_poll = {int:id_poll}',
  876. array(
  877. 'id_poll' => $pollID,
  878. )
  879. );
  880. // Finally set the topic poll ID back to 0!
  881. $smcFunc['db_query']('', '
  882. UPDATE {db_prefix}topics
  883. SET id_poll = {int:no_poll}
  884. WHERE id_topic = {int:current_topic}',
  885. array(
  886. 'current_topic' => $topic,
  887. 'no_poll' => 0,
  888. )
  889. );
  890. // A mod might have logged this (social network?), so let them remove, it too
  891. call_integration_hook('integrate_poll_remove', array($pollID));
  892. // Log this!
  893. logAction('remove_poll', array('topic' => $topic));
  894. // Take the moderator back to the topic.
  895. redirectexit('topic=' . $topic . '.' . $_REQUEST['start']);
  896. }
  897. ?>