123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- define('AUTOSANDBOX', '0.1');
- class AutoSandboxPlugin extends Plugin
- {
- const PLUGIN_VERSION = '2.0.0';
- var $contact;
- var $debug;
- function onInitializePlugin()
- {
- if(!isset($this->debug))
- {
- $this->debug = 0;
- }
- if(!isset($this->contact)) {
- $default = common_config('newuser', 'default');
- if (!empty($default)) {
- $this->contact = $default;
- }
- }
- }
- public function onPluginVersion(array &$versions): bool
- {
- $versions[] = array('name' => 'AutoSandbox',
- 'version' => self::PLUGIN_VERSION,
- 'author' => 'Sean Carmody',
- 'homepage' => GNUSOCIAL_ENGINE_REPO_URL . 'tree/master/plugins/AutoSandbox',
- 'rawdescription' =>
-
- _m('Automatically sandboxes newly registered members.'));
- return true;
- }
- function onStartRegistrationFormData($action)
- {
-
- $instr = _m('Note you will initially be "sandboxed" so your posts will not appear in the public timeline.');
- if (isset($this->contact)) {
- $contactuser = User::getKV('nickname', $this->contact);
- if ($contactuser instanceof User) {
- $contactlink = sprintf('@<a href="%s">%s</a>',
- htmlspecialchars($contactuser->getProfile()->getUrl()),
- htmlspecialchars($contactuser->getProfile()->getNickname()));
-
-
- $instr = sprintf(_m('Note you will initially be "sandboxed" so your posts will not appear in the public timeline. '.
- 'Send a message to %s to speed up the unsandboxing process.'),$contactlink);
- }
- }
- $output = common_markup_to_html($instr);
- $action->elementStart('div', 'instructions');
- $action->raw($output);
- $action->elementEnd('div');
- }
- public function onEndUserRegister(Profile $profile)
- {
- $profile->sandbox();
- if ($this->debug) {
- common_log(LOG_WARNING, "AutoSandbox: sandboxed of $profile->nickname");
- }
- }
- }
|