. */ if (!defined('GNUSOCIAL')) { exit(1); } /** * @package Plugin * @maintainer Mikael Nordfeldth */ 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; } }