SimpleCaptchaPlugin.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /*
  3. * GNU Social - a federating social network
  4. * Copyright (C) 2014, Free Software Foundation, Inc.
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. if (!defined('GNUSOCIAL')) { exit(1); }
  20. /**
  21. * @package Plugin
  22. * @maintainer Mikael Nordfeldth <mmn@hethane.se>
  23. */
  24. class SimpleCaptchaPlugin extends Plugin
  25. {
  26. const PLUGIN_VERSION = '2.0.0';
  27. public function initialize()
  28. {
  29. // This probably needs some work. For example with IPv6 you can easily generate new IPs...
  30. $client_ip = common_client_ip();
  31. if (!empty($client_ip)) {
  32. $this->client_ip = $client_ip[0] ?: $client_ip[1]; // [0] is proxy, [1] should be the real IP
  33. }
  34. }
  35. public function onEndRegistrationFormData(Action $action)
  36. {
  37. $action->elementStart('li');
  38. // TRANS: Field label.
  39. $action->input('simplecaptcha', _m('Captcha'), null,
  40. // TRANS: The instruction box for our simple captcha plugin
  41. sprintf(_m('Copy this to the textbox: "%s"'), $this->getCaptchaText()),
  42. // TRANS: Placeholder in the text box
  43. /* name=id */ null, /* required */ true, ['placeholder'=>_m('Prove that you are sentient.')]);
  44. $action->elementEnd('li');
  45. return true;
  46. }
  47. protected function getCaptchaText()
  48. {
  49. return common_config('site', 'name');
  50. }
  51. public function onStartRegistrationTry(Action $action)
  52. {
  53. if ($action->arg('simplecaptcha') !== $this->getCaptchaText()) {
  54. common_log(LOG_INFO, 'Stopped non-sentient registration of nickname '._ve($action->trimmed('nickname')).' from IP: '._ve($this->client_ip));
  55. throw new ClientException(_m('Captcha does not match!'));
  56. }
  57. return true;
  58. }
  59. public function onPluginVersion(array &$versions): bool
  60. {
  61. $versions[] = array('name' => 'Simple Captcha',
  62. 'version' => self::PLUGIN_VERSION,
  63. 'author' => 'Mikael Nordfeldth',
  64. 'homepage' => GNUSOCIAL_ENGINE_URL,
  65. 'rawdescription' =>
  66. // TRANS: Plugin description.
  67. _m('A simple captcha to get rid of spambots.'));
  68. return true;
  69. }
  70. }