X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FRegisterThrottle%2FRegisterThrottlePlugin.php;h=d09642a6330872d0206d5a00406674c87ae4a3ee;hb=d6b28c64830f632bb2f4b6f3c9369b9e56ad217a;hp=1e686bd62bc70f077a0892324faed1ffe0b97f7b;hpb=b4da5f3785de138b9b7c3672d331676ea7929c16;p=quix0rs-gnu-social.git diff --git a/plugins/RegisterThrottle/RegisterThrottlePlugin.php b/plugins/RegisterThrottle/RegisterThrottlePlugin.php index 1e686bd62b..d09642a633 100644 --- a/plugins/RegisterThrottle/RegisterThrottlePlugin.php +++ b/plugins/RegisterThrottle/RegisterThrottlePlugin.php @@ -28,9 +28,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET')) { - exit(1); -} +if (!defined('GNUSOCIAL')) { exit(1); } /** * Throttle registration by IP address @@ -74,41 +72,15 @@ class RegisterThrottlePlugin extends Plugin * * @return boolean hook value; true means continue processing, false means stop. */ - function onCheckSchema() + public function onCheckSchema() { $schema = Schema::get(); // For storing user-submitted flags on profiles - $schema->ensureTable('registration_ip', - array(new ColumnDef('user_id', 'integer', null, - false, 'PRI'), - new ColumnDef('ipaddress', 'varchar', 15, false, 'MUL'), - new ColumnDef('created', 'timestamp', null, false, 'MUL'))); - + $schema->ensureTable('registration_ip', Registration_ip::schemaDef()); return true; } - /** - * Load related modules when needed - * - * @param string $cls Name of the class to be loaded - * - * @return boolean hook value; true means continue processing, false means stop. - */ - function onAutoload($cls) - { - $dir = dirname(__FILE__); - - switch ($cls) - { - case 'Registration_ip': - include_once $dir . '/'.$cls.'.php'; - return false; - default: - return true; - } - } - /** * Called when someone tries to register. * @@ -119,7 +91,7 @@ class RegisterThrottlePlugin extends Plugin * * @return boolean hook value */ - function onStartRegistrationTry($action) + public function onStartRegistrationTry(Action $action) { $ipaddress = $this->_getIpAddress(); @@ -151,7 +123,7 @@ class RegisterThrottlePlugin extends Plugin if ($this->silenced) { $ids = Registration_ip::usersByIP($ipaddress); foreach ($ids as $id) { - $profile = Profile::staticGet('id', $id); + $profile = Profile::getKV('id', $id); if ($profile && $profile->isSilenced()) { // TRANS: Exception thrown when attempting to register from an IP address from which silenced users have registered. throw new Exception(_m('A banned user has registered from this address.')); @@ -168,11 +140,10 @@ class RegisterThrottlePlugin extends Plugin * We record the successful registration and IP address. * * @param Profile $profile new user's profile - * @param User $user new user * * @return boolean hook value */ - function onEndUserRegister($profile, $user) + public function onEndUserRegister(Profile $profile) { $ipaddress = $this->_getIpAddress(); @@ -183,12 +154,13 @@ class RegisterThrottlePlugin extends Plugin $reg = new Registration_ip(); - $reg->user_id = $user->id; + $reg->user_id = $profile->id; $reg->ipaddress = $ipaddress; + $reg->created = common_sql_now(); $result = $reg->insert(); - if (!$result) { + if ($result === false) { common_log_db_error($reg, 'INSERT', __FILE__); // @todo throw an exception? } @@ -203,10 +175,10 @@ class RegisterThrottlePlugin extends Plugin * * @return boolean hook value */ - function onPluginVersion(&$versions) + public function onPluginVersion(array &$versions) { $versions[] = array('name' => 'RegisterThrottle', - 'version' => STATUSNET_VERSION, + 'version' => GNUSOCIAL_VERSION, 'author' => 'Evan Prodromou', 'homepage' => 'http://status.net/wiki/Plugin:RegisterThrottle', 'description' => @@ -269,7 +241,7 @@ class RegisterThrottlePlugin extends Plugin * * @return boolean hook value */ - function onEndGrantRole($profile, $role) + public function onEndGrantRole(Profile $profile, $role) { if (!self::$enabled) { return true; @@ -283,7 +255,7 @@ class RegisterThrottlePlugin extends Plugin return true; } - $ri = Registration_ip::staticGet('user_id', $profile->id); + $ri = Registration_ip::getKV('user_id', $profile->id); if (empty($ri)) { return true; @@ -296,7 +268,7 @@ class RegisterThrottlePlugin extends Plugin continue; } - $other = Profile::staticGet('id', $id); + $other = Profile::getKV('id', $id); if (empty($other)) { continue;