]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/UserFlag/UserFlagPlugin.php
Merge activity plugin into mainline
[quix0rs-gnu-social.git] / plugins / UserFlag / UserFlagPlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Allows users to flag content and accounts as offensive/spam/whatever
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Plugin
23  * @package   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @copyright 2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 /**
35  * Allows users to flag content and accounts as offensive/spam/whatever
36  *
37  * @category Plugin
38  * @package  StatusNet
39  * @author   Evan Prodromou <evan@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
41  * @link     http://status.net/
42  */
43 class UserFlagPlugin extends Plugin
44 {
45     const REVIEWFLAGS = 'UserFlagPlugin::reviewflags';
46     const CLEARFLAGS  = 'UserFlagPlugin::clearflags';
47
48     public $flagOnBlock = true;
49
50     /**
51      * Hook for ensuring our tables are created
52      *
53      * Ensures that the user_flag_profile table exists
54      * and has the right columns.
55      *
56      * @return boolean hook return
57      */
58     function onCheckSchema()
59     {
60         $schema = Schema::get();
61
62         // For storing user-submitted flags on profiles
63
64         $schema->ensureTable('user_flag_profile',
65                              array(new ColumnDef('profile_id', 'integer', null,
66                                                  false, 'PRI'),
67                                    new ColumnDef('user_id', 'integer', null,
68                                                  false, 'PRI'),
69                                    new ColumnDef('created', 'datetime', null,
70                                                  false, 'MUL'),
71                                    new ColumnDef('cleared', 'datetime', null,
72                                                  true, 'MUL')));
73
74         return true;
75     }
76
77     /**
78      * Add our actions to the URL router
79      *
80      * @param Net_URL_Mapper $m URL mapper for this hit
81      *
82      * @return boolean hook return
83      */
84     function onRouterInitialized($m)
85     {
86         $m->connect('main/flag/profile', array('action' => 'flagprofile'));
87         $m->connect('main/flag/clear', array('action' => 'clearflag'));
88         $m->connect('panel/profile/flag', array('action' => 'adminprofileflag'));
89         return true;
90     }
91
92     /**
93      * Auto-load our classes if called
94      *
95      * @param string $cls Class to load
96      *
97      * @return boolean hook return
98      */
99     function onAutoload($cls)
100     {
101         switch (strtolower($cls))
102         {
103         case 'flagprofileaction':
104         case 'adminprofileflagaction':
105         case 'clearflagaction':
106             include_once INSTALLDIR.'/plugins/UserFlag/' .
107               strtolower(mb_substr($cls, 0, -6)) . '.php';
108             return false;
109         case 'flagprofileform':
110         case 'clearflagform':
111             include_once INSTALLDIR.'/plugins/UserFlag/' . strtolower($cls . '.php');
112             return false;
113         case 'user_flag_profile':
114             include_once INSTALLDIR.'/plugins/UserFlag/'.ucfirst(strtolower($cls)).'.php';
115             return false;
116         default:
117             return true;
118         }
119     }
120
121     /**
122      * Add a 'flag' button to profile page
123      *
124      * @param Action  $action The action being called
125      * @param Profile $profile Profile being shown
126      *
127      * @return boolean hook result
128      */
129     function onEndProfilePageActionsElements($action, $profile)
130     {
131         $this->showFlagButton($action, $profile,
132                               array('action' => 'showstream',
133                                     'nickname' => $profile->nickname));
134
135         return true;
136     }
137
138     /**
139      * Add a 'flag' button to profiles in a list
140      *
141      * @param ProfileListItem $item item being shown
142      *
143      * @return boolean hook result
144      */
145     function onEndProfileListItemActionElements($item)
146     {
147         list($action, $args) = $item->action->returnToArgs();
148         $args['action'] = $action;
149         $this->showFlagButton($item->action, $item->profile, $args);
150
151         return true;
152     }
153
154     /**
155      * Actually output a flag button. If the target profile has already been
156      * flagged by the current user, a null-action faux button is shown.
157      *
158      * @param Action $action
159      * @param Profile $profile
160      * @param array $returnToArgs
161      */
162     protected function showFlagButton($action, $profile, $returnToArgs)
163     {
164         $user = common_current_user();
165
166         if (!empty($user) && ($user->id != $profile->id)) {
167
168             $action->elementStart('li', 'entity_flag');
169
170             if (User_flag_profile::exists($profile->id, $user->id)) {
171                 // @todo FIXME: Add a title explaining what 'flagged' means?
172                 // TRANS: Message added to a profile if it has been flagged for review.
173                 $action->element('p', 'flagged', _m('Flagged'));
174             } else {
175                 $form = new FlagProfileForm($action, $profile, $returnToArgs);
176                 $form->show();
177             }
178
179             $action->elementEnd('li');
180         }
181     }
182
183     /**
184      * Check whether a user has one of our defined rights
185      *
186      * We define extra rights; this function checks to see if a
187      * user has one of them.
188      *
189      * @param User    $user    User being checked
190      * @param string  $right   Right we're checking
191      * @param boolean &$result out, result of the check
192      *
193      * @return boolean hook result
194      */
195     function onUserRightsCheck($user, $right, &$result)
196     {
197         switch ($right) {
198         case self::REVIEWFLAGS:
199         case self::CLEARFLAGS:
200             $result = $user->hasRole('moderator');
201             return false; // done processing!
202         }
203
204         return true; // unchanged!
205     }
206
207     /**
208      * Optionally flag profile when a block happens
209      *
210      * We optionally add a flag when a profile has been blocked
211      *
212      * @param User    $user    User doing the block
213      * @param Profile $profile Profile being blocked
214      *
215      * @return boolean hook result
216      */
217     function onEndBlockProfile($user, $profile)
218     {
219         if ($this->flagOnBlock && !User_flag_profile::exists($profile->id,
220                                                              $user->id)) {
221
222             User_flag_profile::create($user->id, $profile->id);
223         }
224         return true;
225     }
226
227     /**
228      * Ensure that flag entries for a profile are deleted
229      * along with the profile when deleting users.
230      * This prevents breakage of the admin profile flag UI.
231      *
232      * @param Profile $profile
233      * @param array &$related list of related tables; entries
234      *              with matching profile_id will be deleted.
235      *
236      * @return boolean hook result
237      */
238     function onProfileDeleteRelated($profile, &$related)
239     {
240         $related[] = 'user_flag_profile';
241         return true;
242     }
243
244     /**
245      * Ensure that flag entries created by a user are deleted
246      * when that user gets deleted.
247      *
248      * @param User $user
249      * @param array &$related list of related tables; entries
250      *              with matching user_id will be deleted.
251      *
252      * @return boolean hook result
253      */
254     function onUserDeleteRelated($user, &$related)
255     {
256         $related[] = 'user_flag_profile';
257         return true;
258     }
259
260     /**
261      * Provide plugin version information.
262      *
263      * This data is used when showing the version page.
264      *
265      * @param array &$versions array of version data arrays; see EVENTS.txt
266      *
267      * @return boolean hook value
268      */
269     function onPluginVersion(&$versions)
270     {
271         $url = 'http://status.net/wiki/Plugin:UserFlag';
272
273         $versions[] = array('name' => 'UserFlag',
274             'version' => STATUSNET_VERSION,
275             'author' => 'Evan Prodromou',
276             'homepage' => $url,
277             'rawdescription' =>
278             // TRANS: Plugin description.
279             _m('This plugin allows flagging of profiles for review and reviewing flagged profiles.'));
280
281         return true;
282     }
283 }