Karma.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <?php
  2. /**
  3. * This file contains one humble function, which applauds or smites a user.
  4. *
  5. * Simple Machines Forum (SMF)
  6. *
  7. * @package SMF
  8. * @author Simple Machines http://www.simplemachines.org
  9. * @copyright 2011 Simple Machines
  10. * @license http://www.simplemachines.org/about/smf/license.php BSD
  11. *
  12. * @version 2.0
  13. */
  14. if (!defined('SMF'))
  15. die('Hacking attempt...');
  16. /**
  17. * Modify a user's karma.
  18. * It redirects back to the referrer afterward, whether by javascript or the passed parameters.
  19. * Requires the karma_edit permission, and that the user isn't a guest.
  20. * It depends on the karmaMode, karmaWaitTime, and karmaTimeRestrictAdmins settings.
  21. * It is accessed via ?action=modifykarma.
  22. */
  23. function ModifyKarma()
  24. {
  25. global $modSettings, $txt, $user_info, $topic, $smcFunc, $context;
  26. // If the mod is disabled, show an error.
  27. if (empty($modSettings['karmaMode']))
  28. fatal_lang_error('feature_disabled', true);
  29. // If you're a guest or can't do this, blow you off...
  30. is_not_guest();
  31. isAllowedTo('karma_edit');
  32. checkSession('get');
  33. // If you don't have enough posts, tough luck.
  34. // !!! Should this be dropped in favor of post group permissions? Should this apply to the member you are smiting/applauding?
  35. if (!$user_info['is_admin'] && $user_info['posts'] < $modSettings['karmaMinPosts'])
  36. fatal_lang_error('not_enough_posts_karma', true, array($modSettings['karmaMinPosts']));
  37. // And you can't modify your own, punk! (use the profile if you need to.)
  38. if (empty($_REQUEST['uid']) || (int) $_REQUEST['uid'] == $user_info['id'])
  39. fatal_lang_error('cant_change_own_karma', false);
  40. // The user ID _must_ be a number, no matter what.
  41. $_REQUEST['uid'] = (int) $_REQUEST['uid'];
  42. // Applauding or smiting?
  43. $dir = $_REQUEST['sa'] != 'applaud' ? -1 : 1;
  44. // Delete any older items from the log. (karmaWaitTime is by hour.)
  45. $smcFunc['db_query']('', '
  46. DELETE FROM {db_prefix}log_karma
  47. WHERE {int:current_time} - log_time > {int:wait_time}',
  48. array(
  49. 'wait_time' => (int) ($modSettings['karmaWaitTime'] * 3600),
  50. 'current_time' => time(),
  51. )
  52. );
  53. // Start off with no change in karma.
  54. $action = 0;
  55. // Not an administrator... or one who is restricted as well.
  56. if (!empty($modSettings['karmaTimeRestrictAdmins']) || !allowedTo('moderate_forum'))
  57. {
  58. // Find out if this user has done this recently...
  59. $request = $smcFunc['db_query']('', '
  60. SELECT action
  61. FROM {db_prefix}log_karma
  62. WHERE id_target = {int:id_target}
  63. AND id_executor = {int:current_member}
  64. LIMIT 1',
  65. array(
  66. 'current_member' => $user_info['id'],
  67. 'id_target' => $_REQUEST['uid'],
  68. )
  69. );
  70. if ($smcFunc['db_num_rows']($request) > 0)
  71. list ($action) = $smcFunc['db_fetch_row']($request);
  72. $smcFunc['db_free_result']($request);
  73. }
  74. // They haven't, not before now, anyhow.
  75. if (empty($action) || empty($modSettings['karmaWaitTime']))
  76. {
  77. // Put it in the log.
  78. $smcFunc['db_insert']('replace',
  79. '{db_prefix}log_karma',
  80. array('action' => 'int', 'id_target' => 'int', 'id_executor' => 'int', 'log_time' => 'int'),
  81. array($dir, $_REQUEST['uid'], $user_info['id'], time()),
  82. array('id_target', 'id_executor')
  83. );
  84. // Change by one.
  85. updateMemberData($_REQUEST['uid'], array($dir == 1 ? 'karma_good' : 'karma_bad' => '+'));
  86. }
  87. else
  88. {
  89. // If you are gonna try to repeat.... don't allow it.
  90. if ($action == $dir)
  91. fatal_lang_error('karma_wait_time', false, array($modSettings['karmaWaitTime'], $txt['hours']));
  92. // You decided to go back on your previous choice?
  93. $smcFunc['db_query']('', '
  94. UPDATE {db_prefix}log_karma
  95. SET action = {int:action}, log_time = {int:current_time}
  96. WHERE id_target = {int:id_target}
  97. AND id_executor = {int:current_member}',
  98. array(
  99. 'current_member' => $user_info['id'],
  100. 'action' => $dir,
  101. 'current_time' => time(),
  102. 'id_target' => $_REQUEST['uid'],
  103. )
  104. );
  105. // It was recently changed the OTHER way... so... reverse it!
  106. if ($dir == 1)
  107. updateMemberData($_REQUEST['uid'], array('karma_good' => '+', 'karma_bad' => '-'));
  108. else
  109. updateMemberData($_REQUEST['uid'], array('karma_bad' => '+', 'karma_good' => '-'));
  110. }
  111. // Figure out where to go back to.... the topic?
  112. if (!empty($topic))
  113. redirectexit('topic=' . $topic . '.' . $_REQUEST['start'] . '#msg' . (int) $_REQUEST['m']);
  114. // Hrm... maybe a personal message?
  115. elseif (isset($_REQUEST['f']))
  116. redirectexit('action=pm;f=' . $_REQUEST['f'] . ';start=' . $_REQUEST['start'] . (isset($_REQUEST['l']) ? ';l=' . (int) $_REQUEST['l'] : '') . (isset($_REQUEST['pm']) ? '#' . (int) $_REQUEST['pm'] : ''));
  117. // JavaScript as a last resort.
  118. else
  119. {
  120. echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  121. <html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  122. <head>
  123. <title>...</title>
  124. <script type="text/javascript"><!-- // --><![CDATA[
  125. history.go(-1);
  126. // ]]></script>
  127. </head>
  128. <body>&laquo;</body>
  129. </html>';
  130. obExit(false);
  131. }
  132. }
  133. /**
  134. * What's this? I dunno, what are you talking about? Never seen this before, nope. No sir.
  135. */
  136. function BookOfUnknown()
  137. {
  138. global $context;
  139. if (strpos($_GET['action'], 'mozilla') !== false && !$context['browser']['is_gecko'])
  140. redirectexit('http://www.getfirefox.com/');
  141. elseif (strpos($_GET['action'], 'mozilla') !== false)
  142. redirectexit('about:mozilla');
  143. echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  144. <html xmlns="http://www.w3.org/1999/xhtml"', $context['right_to_left'] ? ' dir="rtl"' : '', '>
  145. <head>
  146. <title>The Book of Unknown, ', @$_GET['verse'] == '2:18' ? '2:18' : '4:16', '</title>
  147. <style type="text/css">
  148. em
  149. {
  150. font-size: 1.3em;
  151. line-height: 0;
  152. }
  153. </style>
  154. </head>
  155. <body style="background-color: #444455; color: white; font-style: italic; font-family: serif;">
  156. <div style="margin-top: 12%; font-size: 1.1em; line-height: 1.4; text-align: center;">';
  157. if (@$_GET['verse'] == '2:18')
  158. echo '
  159. Woe, it was that his name wasn\'t <em>known</em>, that he came in mystery, and was recognized by none.&nbsp;And it became to be in those days <em>something</em>.&nbsp; Something not yet <em id="unknown" name="[Unknown]">unknown</em> to mankind.&nbsp; And thus what was to be known the <em>secret project</em> began into its existence.&nbsp; Henceforth the opposition was only <em>weary</em> and <em>fearful</em>, for now their match was at arms against them.';
  160. else
  161. echo '
  162. And it came to pass that the <em>unbelievers</em> dwindled in number and saw rise of many <em>proselytizers</em>, and the opposition found fear in the face of the <em>x</em> and the <em>j</em> while those who stood with the <em>something</em> grew stronger and came together.&nbsp; Still, this was only the <em>beginning</em>, and what lay in the future was <em id="unknown" name="[Unknown]">unknown</em> to all, even those on the right side.';
  163. echo '
  164. </div>
  165. <div style="margin-top: 2ex; font-size: 2em; text-align: right;">';
  166. if (@$_GET['verse'] == '2:18')
  167. echo '
  168. from <span style="font-family: Georgia, serif;"><strong><a href="http://www.unknownbrackets.com/about:unknown" style="color: white; text-decoration: none; cursor: text;">The Book of Unknown</a></strong>, 2:18</span>';
  169. else
  170. echo '
  171. from <span style="font-family: Georgia, serif;"><strong><a href="http://www.unknownbrackets.com/about:unknown" style="color: white; text-decoration: none; cursor: text;">The Book of Unknown</a></strong>, 4:16</span>';
  172. echo '
  173. </div>
  174. </body>
  175. </html>';
  176. obExit(false);
  177. }
  178. ?>