ManageBans.template.php 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. <?php
  2. /**
  3. * Simple Machines Forum (SMF)
  4. *
  5. * @package SMF
  6. * @author Simple Machines
  7. * @copyright 2011 Simple Machines
  8. * @license http://www.simplemachines.org/about/smf/license.php BSD
  9. *
  10. * @version 2.1 Alpha 1
  11. */
  12. function template_ban_edit()
  13. {
  14. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  15. echo '
  16. <div id="manage_bans">
  17. <div class="cat_bar">
  18. <h3 class="catbg">
  19. ', $context['ban']['is_new'] ? $txt['ban_add_new'] : $txt['ban_edit'] . ' \'' . $context['ban']['name'] . '\'', '
  20. </h3>
  21. </div>';
  22. if ($context['ban']['is_new'])
  23. echo '
  24. <div class="information">', $txt['ban_add_notes'], '</div>';
  25. echo '
  26. <div class="windowbg">
  27. <div class="content">
  28. <form action="', $scripturl, '?action=admin;area=ban;sa=edit" method="post" accept-charset="', $context['character_set'], '" onsubmit="if (this.ban_name.value == \'\') {alert(\'', $txt['ban_name_empty'], '\'); return false;} if (this.partial_ban.checked &amp;&amp; !(this.cannot_post.checked || this.cannot_register.checked || this.cannot_login.checked)) {alert(\'', $txt['ban_restriction_empty'], '\'); return false;}">
  29. <dl class="settings">
  30. <dt>
  31. <strong><label for="ban_name">', $txt['ban_name'], ':</label></strong>
  32. </dt>
  33. <dd>
  34. <input type="text" name="ban_name" id="ban_name" value="', $context['ban']['name'], '" size="47" maxlength="60" class="input_text" />
  35. </dd>
  36. <dt>
  37. <strong><label for="reason">', $txt['ban_reason'], ':</label></strong><br />
  38. <span class="smalltext">', $txt['ban_reason_desc'], '</span>
  39. </dt>
  40. <dd>
  41. <textarea name="reason" id="reason" cols="40" rows="3" style="min-height: 64px; max-height: 64px; min-width: 50%; max-width: 99%;">', $context['ban']['reason'], '</textarea>
  42. </dd>
  43. <dt>
  44. <strong><label for="ban_notes">', $txt['ban_notes'], ':</label></strong><br />
  45. <span class="smalltext">', $txt['ban_notes_desc'], '</span>
  46. </dt>
  47. <dd>
  48. <textarea name="notes" id="ban_notes" cols="40" rows="3" style="min-height: 64px; max-height: 64px; min-width: 50%; max-width: 99%;">', $context['ban']['notes'], '</textarea>
  49. </dd>
  50. </dl>
  51. <fieldset class="ban_settings floatleft">
  52. <legend>
  53. ', $txt['ban_expiration'], '
  54. </legend>
  55. <input type="radio" name="expiration" value="never" id="never_expires" onclick="fUpdateStatus();"', $context['ban']['expiration']['status'] == 'never' ? ' checked="checked"' : '', ' class="input_radio" /> <label for="never_expires">', $txt['never'], '</label><br />
  56. <input type="radio" name="expiration" value="one_day" id="expires_one_day" onclick="fUpdateStatus();"', $context['ban']['expiration']['status'] == 'still_active_but_we_re_counting_the_days' ? ' checked="checked"' : '', ' class="input_radio" /> <label for="expires_one_day">', $txt['ban_will_expire_within'], '</label>: <input type="text" name="expire_date" id="expire_date" size="3" value="', $context['ban']['expiration']['days'], '" class="input_text" /> ', $txt['ban_days'], '<br />
  57. <input type="radio" name="expiration" value="expired" id="already_expired" onclick="fUpdateStatus();"', $context['ban']['expiration']['status'] == 'expired' ? ' checked="checked"' : '', ' class="input_radio" /> <label for="already_expired">', $txt['ban_expired'], '</label>
  58. </fieldset>
  59. <fieldset class="ban_settings floatright">
  60. <legend>
  61. ', $txt['ban_restriction'], '
  62. </legend>
  63. <input type="radio" name="full_ban" id="full_ban" value="1" onclick="fUpdateStatus();"', $context['ban']['cannot']['access'] ? ' checked="checked"' : '', ' class="input_radio" /> <label for="full_ban">', $txt['ban_full_ban'], '</label><br />
  64. <input type="radio" name="full_ban" id="partial_ban" value="0" onclick="fUpdateStatus();"', !$context['ban']['cannot']['access'] ? ' checked="checked"' : '', ' class="input_radio" /> <label for="partial_ban">', $txt['ban_partial_ban'], '</label><br />
  65. <input type="checkbox" name="cannot_post" id="cannot_post" value="1"', $context['ban']['cannot']['post'] ? ' checked="checked"' : '', ' class="ban_restriction input_radio" /> <label for="cannot_post">', $txt['ban_cannot_post'], '</label> (<a href="', $scripturl, '?action=helpadmin;help=ban_cannot_post" onclick="return reqOverlayDiv(this.href);">?</a>)<br />
  66. <input type="checkbox" name="cannot_register" id="cannot_register" value="1"', $context['ban']['cannot']['register'] ? ' checked="checked"' : '', ' class="ban_restriction input_radio" /> <label for="cannot_register">', $txt['ban_cannot_register'], '</label><br />
  67. <input type="checkbox" name="cannot_login" id="cannot_login" value="1"', $context['ban']['cannot']['login'] ? ' checked="checked"' : '', ' class="ban_restriction input_radio" /> <label for="cannot_login">', $txt['ban_cannot_login'], '</label><br />
  68. </fieldset>
  69. <br class="clear_right" />';
  70. if (!empty($context['ban_suggestions']))
  71. {
  72. echo '
  73. <fieldset>
  74. <legend>
  75. ', $txt['ban_triggers'], '
  76. </legend>
  77. <dl class="settings">
  78. <dt>
  79. <input type="checkbox" name="ban_suggestion[]" id="main_ip_check" value="main_ip" class="input_check" />
  80. <label for="main_ip_check">', $txt['ban_on_ip'], '</label>
  81. </dt>
  82. <dd>
  83. <input type="text" name="main_ip" value="', $context['ban_suggestions']['main_ip'], '" size="44" onfocus="document.getElementById(\'main_ip_check\').checked = true;" class="input_text" />
  84. </dd>';
  85. if (empty($modSettings['disableHostnameLookup']))
  86. echo '
  87. <dt>
  88. <input type="checkbox" name="ban_suggestion[]" id="hostname_check" value="hostname" class="input_check" />
  89. <label for="hostname_check">', $txt['ban_on_hostname'], '</label>
  90. </dt>
  91. <dd>
  92. <input type="text" name="hostname" value="', $context['ban_suggestions']['hostname'], '" size="44" onfocus="document.getElementById(\'hostname_check\').checked = true;" class="input_text" />
  93. </dd>';
  94. echo '
  95. <dt>
  96. <input type="checkbox" name="ban_suggestion[]" id="email_check" value="email" class="input_check" checked="checked" />
  97. <label for="email_check">', $txt['ban_on_email'], '</label>
  98. </dt>
  99. <dd>
  100. <input type="text" name="email" value="', $context['ban_suggestions']['email'], '" size="44" onfocus="document.getElementById(\'email_check\').checked = true;" class="input_text" />
  101. </dd>
  102. <dt>
  103. <input type="checkbox" name="ban_suggestion[]" id="user_check" value="user" class="input_check" checked="checked" />
  104. <label for="user_check">', $txt['ban_on_username'], '</label>:
  105. </dt>
  106. <dd>';
  107. if (empty($context['ban_suggestions']['member']['id']))
  108. echo '
  109. <input type="text" name="user" id="user" value="" size="44" class="input_text" />';
  110. else
  111. echo '
  112. ', $context['ban_suggestions']['member']['link'], '
  113. <input type="hidden" name="bannedUser" value="', $context['ban_suggestions']['member']['id'], '" />';
  114. echo '
  115. </dd>';
  116. if (!empty($context['ban_suggestions']['message_ips']))
  117. {
  118. echo '
  119. </dl>
  120. <div>', $txt['ips_in_messages'], ':</div>
  121. <dl class="settings">';
  122. foreach ($context['ban_suggestions']['message_ips'] as $ip)
  123. echo '
  124. <dt>
  125. <input type="checkbox" name="ban_suggestion[ips][]" value="', $ip, '" class="input_check" />
  126. </dt>
  127. <dd>
  128. ', $ip, '
  129. </dd>';
  130. }
  131. if (!empty($context['ban_suggestions']['error_ips']))
  132. {
  133. echo '
  134. </dl>
  135. <div>', $txt['ips_in_errors'], '</div>
  136. <dl class="settings">';
  137. foreach ($context['ban_suggestions']['error_ips'] as $ip)
  138. echo '
  139. <dt>
  140. <input type="checkbox" name="ban_suggestion[ips][]" value="', $ip, '" class="input_check" />
  141. </dt>
  142. <dd>
  143. ', $ip, '
  144. </dd>';
  145. }
  146. echo '
  147. </dl>
  148. </fieldset>';
  149. }
  150. echo '
  151. <hr class="hrcolor" />
  152. <input type="submit" name="', $context['ban']['is_new'] ? 'add_ban' : 'modify_ban', '" value="', $context['ban']['is_new'] ? $txt['ban_add'] : $txt['ban_modify'], '" class="button_submit" />
  153. <input type="hidden" name="old_expire" value="', $context['ban']['expiration']['days'], '" />
  154. <input type="hidden" name="bg" value="', $context['ban']['id'], '" />
  155. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  156. <input type="hidden" name="', $context['admin-bet_token_var'], '" value="', $context['admin-bet_token'], '" />
  157. <br class="clear_right" />
  158. </form>
  159. </div>
  160. </div>';
  161. if (!$context['ban']['is_new'] && empty($context['ban_suggestions']))
  162. {
  163. echo '
  164. <br />
  165. <form action="', $scripturl, '?action=admin;area=ban;sa=edit" method="post" accept-charset="', $context['character_set'], '" style="padding: 0px;margin: 0px;" onsubmit="return confirm(\'', $txt['ban_remove_selected_triggers_confirm'], '\');">
  166. <table class="table_grid" width="100%">
  167. <thead>
  168. <tr class="catbg">
  169. <th scope="col" class="first_th" width="65%" align="left">', $txt['ban_banned_entity'], '</th>
  170. <th scope="col" width="15%" align="center">', $txt['ban_hits'], '</th>
  171. <th scope="col" width="15%" align="center">', $txt['ban_actions'], '</th>
  172. <th scope="col" class="last_th" width="5%" align="center"><input type="checkbox" onclick="invertAll(this, this.form, \'ban_items\');" class="input_check" /></th>
  173. </tr>
  174. </thead>
  175. <tbody>';
  176. if (empty($context['ban_items']))
  177. echo '
  178. <tr class="windowbg2">
  179. <td colspan="4">(', $txt['ban_no_triggers'], ')</td>
  180. </tr>';
  181. else
  182. {
  183. $alternate = true;
  184. foreach ($context['ban_items'] as $ban_item)
  185. {
  186. echo '
  187. <tr class="', $alternate ? 'windowbg' : 'windowbg2', '" align="left">
  188. <td>';
  189. if ($ban_item['type'] == 'ip')
  190. echo ' <strong>', $txt['ip'], ':</strong>&nbsp;', $ban_item['ip'];
  191. elseif ($ban_item['type'] == 'hostname')
  192. echo ' <strong>', $txt['hostname'], ':</strong>&nbsp;', $ban_item['hostname'];
  193. elseif ($ban_item['type'] == 'email')
  194. echo ' <strong>', $txt['email'], ':</strong>&nbsp;', $ban_item['email'];
  195. elseif ($ban_item['type'] == 'user')
  196. echo ' <strong>', $txt['username'], ':</strong>&nbsp;', $ban_item['user']['link'];
  197. echo '
  198. </td>
  199. <td align="center">', $ban_item['hits'], '</td>
  200. <td align="center"><a href="', $scripturl, '?action=admin;area=ban;sa=edittrigger;bg=', $context['ban']['id'], ';bi=', $ban_item['id'], '">', $txt['ban_edit_trigger'], '</a></td>
  201. <td align="center"><input type="checkbox" name="ban_items[]" value="', $ban_item['id'], '" class="input_check" /></td>
  202. </tr>';
  203. $alternate = !$alternate;
  204. }
  205. }
  206. echo '
  207. </tbody>
  208. </table>
  209. <div class="flow_auto">
  210. <div class="floatright">
  211. <div class="additional_row">
  212. <input type="submit" name="remove_selection" value="', $txt['ban_remove_selected_triggers'], '" class="button_submit" />
  213. <a class="button_link" href="', $scripturl, '?action=admin;area=ban;sa=edittrigger;bg=', $context['ban']['id'], '">', $txt['ban_add_trigger'], '</a>
  214. </div>
  215. </div>
  216. </div>
  217. <br class="clear" />
  218. <input type="hidden" name="bg" value="', $context['ban']['id'], '" />
  219. <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '" />
  220. <input type="hidden" name="', $context['admin-bet_token_var'], '" value="', $context['admin-bet_token'], '" />
  221. </form>';
  222. }
  223. echo '
  224. </div>
  225. <br class="clear" />
  226. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/suggest.js?alp21"></script>
  227. <script type="text/javascript"><!-- // --><![CDATA[
  228. var fUpdateStatus = function ()
  229. {
  230. document.getElementById("expire_date").disabled = !document.getElementById("expires_one_day").checked;
  231. document.getElementById("cannot_post").disabled = document.getElementById("full_ban").checked;
  232. document.getElementById("cannot_register").disabled = document.getElementById("full_ban").checked;
  233. document.getElementById("cannot_login").disabled = document.getElementById("full_ban").checked;
  234. }
  235. addLoadEvent(fUpdateStatus);';
  236. // Auto suggest only needed for adding new bans, not editing
  237. if ($context['ban']['is_new'] && empty($_REQUEST['u']))
  238. echo '
  239. var oAddMemberSuggest = new smc_AutoSuggest({
  240. sSelf: \'oAddMemberSuggest\',
  241. sSessionId: smf_session_id,
  242. sSessionVar: smf_session_var,
  243. sSuggestId: \'user\',
  244. sControlId: \'user\',
  245. sSearchType: \'member\',
  246. sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
  247. bItemList: false
  248. });
  249. function onUpdateName(oAutoSuggest)
  250. {
  251. document.getElementById(\'user_check\').checked = true;
  252. return true;
  253. }
  254. oAddMemberSuggest.registerCallback(\'onBeforeUpdate\', \'onUpdateName\');';
  255. echo '// ]]></script>';
  256. }
  257. function template_ban_edit_trigger()
  258. {
  259. global $context, $settings, $options, $scripturl, $txt, $modSettings;
  260. echo '
  261. <div id="manage_bans">
  262. <form action="', $scripturl, '?action=admin;area=ban;sa=edit" method="post" accept-charset="', $context['character_set'], '">
  263. <div class="cat_bar">
  264. <h3 class="catbg">
  265. ', $context['ban_trigger']['is_new'] ? $txt['ban_add_trigger'] : $txt['ban_edit_trigger_title'], '
  266. </h3>
  267. </div>
  268. <div class="windowbg">
  269. <div class="content">
  270. <fieldset>
  271. <legend>
  272. ', $txt['ban_triggers'], '
  273. </legend>
  274. <dl class="settings">
  275. <dt>
  276. <input type="radio" name="bantype" value="ip_ban"', $context['ban_trigger']['ip']['selected'] ? ' checked="checked"' : '', ' class="input_radio" />
  277. ', $txt['ban_on_ip'], '
  278. </dt>
  279. <dd>
  280. <input type="text" name="ip" value="', $context['ban_trigger']['ip']['value'], '" size="50" onfocus="selectRadioByName(this.form.bantype, \'ip_ban\');" class="input_text" />
  281. </dd>';
  282. if (empty($modSettings['disableHostnameLookup']))
  283. echo '
  284. <dt>
  285. <input type="radio" name="bantype" value="hostname_ban"', $context['ban_trigger']['hostname']['selected'] ? ' checked="checked"' : '', ' class="input_radio" />
  286. ', $txt['ban_on_hostname'], '
  287. </dt>
  288. <dd>
  289. <input type="text" name="hostname" value="', $context['ban_trigger']['hostname']['value'], '" size="50" onfocus="selectRadioByName(this.form.bantype, \'hostname_ban\');" class="input_text" />
  290. </dd>';
  291. echo '
  292. <dt>
  293. <input type="radio" name="bantype" value="email_ban"', $context['ban_trigger']['email']['selected'] ? ' checked="checked"' : '', ' class="input_radio" />
  294. ', $txt['ban_on_email'], '
  295. </dt>
  296. <dd>
  297. <input type="text" name="email" value="', $context['ban_trigger']['email']['value'], '" size="50" onfocus="selectRadioByName(this.form.bantype, \'email_ban\');" class="input_text" />
  298. </dd>
  299. <dt>
  300. <input type="radio" name="bantype" value="user_ban"', $context['ban_trigger']['banneduser']['selected'] ? ' checked="checked"' : '', ' class="input_radio" />
  301. ', $txt['ban_on_username'], '
  302. </dt>
  303. <dd>
  304. <input type="text" name="user" id="user" value="', $context['ban_trigger']['banneduser']['value'], '" size="50" onfocus="selectRadioByName(this.form.bantype, \'user_ban\');" class="input_text" />
  305. </dd>
  306. </dl>
  307. </fieldset>
  308. <input type="submit" name="', $context['ban_trigger']['is_new'] ? 'add_new_trigger' : 'edit_trigger', '" value="', $context['ban_trigger']['is_new'] ? $txt['ban_add_trigger_submit'] : $txt['ban_edit_trigger_submit'], '" class="button_submit" />
  309. <br class="clear_right" />
  310. </div>
  311. </div>
  312. <input type="hidden" name="bi" value="' . $context['ban_trigger']['id'] . '" />
  313. <input type="hidden" name="bg" value="' . $context['ban_trigger']['group'] . '" />
  314. <input type="hidden" name="' . $context['session_var'] . '" value="' . $context['session_id'] . '" />
  315. <input type="hidden" name="', $context['admin-bet_token_var'], '" value="', $context['admin-bet_token'], '" />
  316. </form>
  317. </div>
  318. <br class="clear" />
  319. <script type="text/javascript" src="', $settings['default_theme_url'], '/scripts/suggest.js?alp21"></script>
  320. <script type="text/javascript"><!-- // --><![CDATA[
  321. var oAddMemberSuggest = new smc_AutoSuggest({
  322. sSelf: \'oAddMemberSuggest\',
  323. sSessionId: smf_session_id,
  324. sSessionVar: smf_session_var,
  325. sSuggestId: \'username\',
  326. sControlId: \'user\',
  327. sSearchType: \'member\',
  328. sTextDeleteItem: \'', $txt['autosuggest_delete_item'], '\',
  329. bItemList: false
  330. });
  331. function onUpdateName(oAutoSuggest)
  332. {
  333. selectRadioByName(oAutoSuggest.oTextHandle.form.bantype, \'user_ban\');
  334. return true;
  335. }
  336. oAddMemberSuggest.registerCallback(\'onBeforeUpdate\', \'onUpdateName\');
  337. // ]]></script>';
  338. }
  339. ?>