]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/SubMirror/SubMirrorPlugin.php
Merge branch 'compound-keys-fix' into 1.0.x
[quix0rs-gnu-social.git] / plugins / SubMirror / SubMirrorPlugin.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2009-2010, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 /**
23  * @package SubMirrorPlugin
24  * @maintainer Brion Vibber <brion@status.net>
25  */
26 class SubMirrorPlugin extends Plugin
27 {
28     /**
29      * Hook for RouterInitialized event.
30      *
31      * @param Net_URL_Mapper $m path-to-action mapper
32      * @return boolean hook return
33      */
34     function onRouterInitialized($m)
35     {
36         $m->connect('settings/mirror',
37                     array('action' => 'mirrorsettings'));
38         $m->connect('settings/mirror/add/:provider',
39                     array('action' => 'mirrorsettings'),
40                     array('provider' => '[A-Za-z0-9_-]+'));
41         $m->connect('settings/mirror/add',
42                     array('action' => 'addmirror'));
43         $m->connect('settings/mirror/edit',
44                     array('action' => 'editmirror'));
45         return true;
46     }
47
48     /**
49      * Automatically load the actions and libraries used by the plugin
50      *
51      * @param Class $cls the class
52      *
53      * @return boolean hook return
54      *
55      */
56     function onAutoload($cls)
57     {
58         $base = dirname(__FILE__);
59         $lower = strtolower($cls);
60         $files = array("$base/lib/$lower.php",
61                        "$base/classes/$cls.php");
62         if (substr($lower, -6) == 'action') {
63             $files[] = "$base/actions/" . substr($lower, 0, -6) . ".php";
64         }
65         foreach ($files as $file) {
66             if (file_exists($file)) {
67                 include_once $file;
68                 return false;
69             }
70         }
71         return true;
72     }
73
74     function handle($notice)
75     {
76         // Is anybody mirroring?
77         $mirror = new SubMirror();
78         $mirror->subscribed = $notice->profile_id;
79         if ($mirror->find()) {
80             while ($mirror->fetch()) {
81                 $mirror->repeat($notice);
82             }
83         }
84     }
85
86     function onPluginVersion(&$versions)
87     {
88         $versions[] = array('name' => 'SubMirror',
89                             'version' => STATUSNET_VERSION,
90                             'author' => 'Brion Vibber',
91                             'homepage' => 'http://status.net/wiki/Plugin:SubMirror',
92                             'rawdescription' =>
93                             // TRANS: Plugin description.
94                             _m('Pull feeds into your timeline!'));
95
96         return true;
97     }
98
99     /**
100      * Menu item for personal subscriptions/groups area
101      *
102      * @param Action $action action being executed
103      *
104      * @return boolean hook return
105      */
106     function onEndAccountSettingsNav($action)
107     {
108         $action_name = $action->trimmed('action');
109
110         common_debug("ACTION NAME = " . $action_name);
111
112         $action->menuItem(common_local_url('mirrorsettings'),
113                           // TRANS: SubMirror plugin menu item on user settings page.
114                           _m('MENU', 'Mirroring'),
115                           // TRANS: SubMirror plugin tooltip for user settings menu item.
116                           _m('Configure mirroring of posts from other feeds'),
117                           $action_name === 'mirrorsettings');
118
119         return true;
120     }
121
122     function onCheckSchema()
123     {
124         $schema = Schema::get();
125         $schema->ensureTable('submirror', SubMirror::schemaDef());
126
127         // @hack until key definition support is merged
128         SubMirror::fixIndexes($schema);
129         return true;
130     }
131
132     /**
133      * Set up queue handlers for outgoing hub pushes
134      * @param QueueManager $qm
135      * @return boolean hook return
136      */
137     function onEndInitializeQueueManager(QueueManager $qm)
138     {
139         // After each notice save, check if there's any repeat mirrors.
140         $qm->connect('mirror', 'MirrorQueueHandler');
141         return true;
142     }
143
144     function onStartEnqueueNotice($notice, &$transports)
145     {
146         $transports[] = 'mirror';
147     }
148
149     /**
150      * Let the OStatus subscription garbage collection know if we're
151      * making use of a remote feed, so it doesn't get dropped out
152      * from under us.
153      *
154      * @param Ostatus_profile $oprofile
155      * @param int $count in/out
156      * @return mixed hook return value
157      */
158     function onOstatus_profileSubscriberCount($oprofile, &$count)
159     {
160         if ($oprofile->profile_id) {
161             $mirror = new SubMirror();
162             $mirror->subscribed = $oprofile->profile_id;
163             if ($mirror->find()) {
164                 while ($mirror->fetch()) {
165                     $count++;
166                 }
167             }
168         }
169         return true;
170     }
171
172     /**
173      * Add a count of mirrored feeds into a user's profile sidebar stats.
174      *
175      * @param Profile $profile
176      * @param array $stats
177      * @return boolean hook return value
178      */
179     function onProfileStats($profile, &$stats)
180     {
181         $cur = common_current_user();
182         if (!empty($cur) && $cur->id == $profile->id) {
183             $mirror = new SubMirror();
184             $mirror->subscriber = $profile->id;
185             $entry = array(
186                 'id' => 'mirrors',
187                 // TRANS: Label in profile statistics section, followed by a count.
188                 'label' => _m('Mirrored feeds'),
189                 'link' => common_local_url('mirrorsettings'),
190                 'value' => $mirror->count(),
191             );
192
193             $insertAt = count($stats);
194             foreach ($stats as $i => $row) {
195                 if ($row['id'] == 'groups') {
196                     // Slip us in after them.
197                     $insertAt = $i + 1;
198                     break;
199                 }
200             }
201             array_splice($stats, $insertAt, 0, array($entry));
202         }
203         return true;
204     }
205 }