]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
SimpleCaptcha plugin to stop basic bots
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 8 Feb 2016 16:47:09 +0000 (17:47 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 8 Feb 2016 16:47:09 +0000 (17:47 +0100)
actions/register.php
lib/default.php
plugins/SimpleCaptcha/SimpleCaptchaPlugin.php [new file with mode: 0644]

index 15b6b23cabed0c6c0c347bfadd768248fd9dcf3d..0d020663b9788717df84912907dc348f251f22ac 100644 (file)
@@ -131,7 +131,11 @@ class RegisterAction extends Action
             // TRANS: Client error displayed when trying to register while already logged in.
             $this->clientError(_('Already logged in.'));
         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
-            $this->tryRegister();
+            try {
+                $this->tryRegister();
+            } catch (ClientException $e) {
+                $this->showForm($e->getMessage());
+            }
         } else {
             $this->showForm();
         }
index f0430ee2fdc2192014f7e233f9b7075311936fdc..c17c2e0bf46d45dd696bf97defed654d9a2d2f7c 100644 (file)
@@ -324,6 +324,7 @@ $default =
                             'OStatus' => array(),
                             'Poll' => array(),
                             'SearchSub' => array(),
+                            'SimpleCaptcha' => array(),
                             'TagSub' => array(),
                             'WebFinger' => array(),
                         ),
diff --git a/plugins/SimpleCaptcha/SimpleCaptchaPlugin.php b/plugins/SimpleCaptcha/SimpleCaptchaPlugin.php
new file mode 100644 (file)
index 0000000..9a3f5c7
--- /dev/null
@@ -0,0 +1,66 @@
+<?php
+/*
+ * GNU Social - a federating social network
+ * Copyright (C) 2014, Free Software Foundation, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+if (!defined('GNUSOCIAL')) { exit(1); }
+
+/**
+ * @package     Plugin
+ * @maintainer  Mikael Nordfeldth <mmn@hethane.se>
+ */
+class SimpleCaptchaPlugin extends Plugin
+{
+    public function onEndRegistrationFormData(Action $action)
+    {
+        $action->elementStart('li');
+        // TRANS: Field label.
+        $action->input('simplecaptcha', _m('Captcha'), null,
+                        // TRANS: The instruction box for our simple captcha plugin
+                        sprintf(_m('Copy this to the textbox: "%s"'), $this->getCaptchaText()),
+                        // TRANS: Placeholder in the text box
+                        /* name=id */ null, /* required */ true, ['placeholder'=>_m('Prove that you are sentient.')]);
+        $action->elementEnd('li');
+        return true;
+    }
+
+    protected function getCaptchaText()
+    {
+        return common_config('site', 'name');
+    }
+
+    public function onStartRegistrationTry(Action $action)
+    {
+        if ($action->arg('simplecaptcha') !== $this->getCaptchaText()) {
+            throw new ClientException(_m('Captcha does not match!'));
+        }
+        return true;
+    }
+
+    public function onPluginVersion(array &$versions)
+    {
+        $versions[] = array('name' => 'Simple Captcha',
+                            'version' => GNUSOCIAL_VERSION,
+                            'author' => 'Mikael Nordfeldth',
+                            'homepage' => 'https://gnu.io/social',
+                            'rawdescription' =>
+                            // TRANS: Plugin description.
+                            _m('A simple captcha to get rid of spambots.'));
+
+        return true;
+    }
+}