summaryrefslogtreecommitdiff
path: root/plugins/AutoSandbox/AutoSandboxPlugin.php
blob: ffd8bf455e29c0e51d179d816d5ee4c8d598ace1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
/**
 * StatusNet, the distributed open-source microblogging tool
 *
 * Plugin to automatically sandbox newly registered users in an effort to beat
 * spammers. If the user proves to be legitimate, moderators can un-sandbox them.
 *
 * PHP version 5
 *
 * LICENCE: 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/>.
 *
 * @category  Plugin
 * @package   StatusNet
 * @author    Sean Carmody<seancarmody@gmail.com>
 * @copyright 2010
 * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
 * @link      http://status.net/
 */

if (!defined('STATUSNET') && !defined('LACONICA')) {
    exit(1);
}

define('AUTOSANDBOX', '0.1');

//require_once(INSTALLDIR.'/plugins/AutoSandbox/autosandbox.php');

class AutoSandboxPlugin extends Plugin
{
    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;
           }
        } 
    }

    function onPluginVersion(&$versions)
    {
        $versions[] = array('name' => 'AutoSandbox',
                            'version' => STATUSNET_VERSION,
                            'author' => 'Sean Carmody',
                            'homepage' => 'http://status.net/wiki/Plugin:AutoSandbox',
                            'rawdescription' =>
                            _m('Automatically sandboxes newly registered members.'));
        return true;
    }

    function onStartRegistrationFormData($action)
    {

         $instr = 'Note you will initially be "sandboxed" so your posts will not appear in the public timeline.';

         if (isset($this->contact)) {
             $contactuser = User::staticGet('nickname', $this->contact);
             if (!empty($contactuser)) {
                 $contactlink = "@<a href=\"$contactuser->uri\">$contactuser->nickname</a>";
                 $instr = $instr . " Send a message to $contactlink to speed up the unsandboxing process.";
             }
         } 

         $output = common_markup_to_html($instr);
         $action->elementStart('div', 'instructions');
         $action->raw($output);
         $action->elementEnd('div');
    }

    function onEndUserRegister(&$profile,&$user)
    {
	$profile->sandbox();
	if ($this->debug) {
	    common_log(LOG_WARNING, "AutoSandbox: sandboxed of $user->nickname");
        }
    }
}