]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Directory/DirectoryPlugin.php
Merge remote-tracking branch 'upstream/master' into social-master
[quix0rs-gnu-social.git] / plugins / Directory / DirectoryPlugin.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2011, StatusNet, Inc.
5  *
6  * Adds a user directory
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @category  Plugin
24  * @package   StatusNet
25  * @author    Zach Copely <zach@status.net>
26  * @copyright 2011 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET')) {
32     exit(1);
33 }
34
35 /**
36  * Directory plugin main class
37  *
38  * @category  Plugin
39  * @package   StatusNet
40  * @author    Zach Copley <zach@status.net>
41  * @copyright 2011 StatusNet, Inc.
42  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
43  * @link      http://status.net/
44  */
45 class DirectoryPlugin extends Plugin
46 {
47     private $dir = null;
48
49     /**
50      * Initializer for this plugin
51      *
52      * @return boolean hook value; true means continue processing,
53      *         false means stop.
54      */
55     function initialize()
56     {
57         return true;
58     }
59
60     /**
61      * Cleanup for this plugin.
62      *
63      * @return boolean hook value; true means continue processing,
64      *         false means stop.
65      */
66     function cleanup()
67     {
68         return true;
69     }
70
71     /**
72      * Map URLs to actions
73      *
74      * @param URLMapper $m path-to-action mapper
75      *
76      * @return boolean hook value; true means continue processing,
77      *         false means stop.
78      */
79     public function onRouterInitialized(URLMapper $m)
80     {
81
82         $m->connect(
83             'directory/users/:filter/sort_by/:sort/reverse/:reverse',
84             array('action' => 'userdirectory'),
85             array('filter' => '[0-9a-zA-Z]|(0-9)'),
86             array('sort' => '[a-z]+'),
87             array('reverse' => '[0-9]')
88         );
89
90         $m->connect(
91             'directory/users/:filter/sort_by/:sort',
92             array('action' => 'userdirectory'),
93             array('filter' => '[0-9a-zA-Z]|(0-9)'),
94             array('sort' => '[a-z]+')
95         );
96
97         $m->connect(
98             'directory/users/:filter',
99             array('action' => 'userdirectory'),
100             array('filter' => '[0-9a-zA-Z]|(0-9)')
101         );
102
103         $m->connect(
104             'directory/users/sort_by/:sort/reverse/:reverse',
105             array('action' => 'userdirectory'),
106             array('sort' => '[a-z]+'),
107             array('reverse' => '[0-9]')
108         );
109
110         $m->connect(
111             'directory/users/sort_by/:sort',
112             array('action' => 'userdirectory'),
113             array('sort' => '[a-z]+')
114         );
115
116         $m->connect(
117             'directory/users',
118             array('action' => 'userdirectory')
119         );
120
121         $m->connect(
122             'groups/:filter',
123             array('action' => 'groupdirectory'),
124             array('filter' => '[0-9a-zA-Z]|(0-9)')
125         );
126
127         $m->connect(
128             'groups',
129             array('action' => 'groupdirectory')
130         );
131
132         $m->connect(
133             'groups/all',
134             array('action' => 'groupdirectory')
135         );
136
137         return true;
138     }
139
140     /**
141      * Hijack the routing (URL -> Action) for the normal directory page
142      * and substitute our group directory action
143      *
144      * @param string $path     path to connect
145      * @param array  $defaults path defaults
146      * @param array  $rules    path rules
147      * @param array  $result   unused
148      *
149      * @return boolean hook return
150      */
151     function onStartConnectPath(&$path, &$defaults, &$rules, &$result)
152     {
153         if (in_array($path, array('group', 'group/', 'groups', 'groups/'))) {
154             $defaults['action'] = 'groupdirectory';
155             return true;
156         }
157         return true;
158     }
159
160     // The following three function are to replace the existing groups
161     // list page with the directory plugin's group directory page
162
163     /**
164      * Hijack the mapping (Action -> URL) and return the URL to our
165      * group directory page instead of the normal groups page
166      *
167      * @param Action    $action     action to find a path for
168      * @param array     $params     parameters to pass to the action
169      * @param string    $fragment   any url fragement
170      * @param boolean   $addSession whether to add session variable
171      * @param string    $url        resulting URL to local resource
172      *
173      * @return string the local URL
174      */
175     function onEndLocalURL(&$action, &$params, &$fragment, &$addSession, &$url) {
176         if (in_array($action, array('group', 'group/', 'groups', 'groups/'))) {
177                 $url = common_local_url('groupdirectory');
178         }
179         return true;
180     }
181
182     /**
183      * Link in a styelsheet for the onboarding actions
184      *
185      * @param Action $action Action being shown
186      *
187      * @return boolean hook flag
188      */
189     public function onEndShowStylesheets(Action $action)
190     {
191         if (in_array(
192             $action->trimmed('action'),
193             array('userdirectory', 'groupdirectory'))
194         ) {
195             $action->cssLink($this->path('css/directory.css'));
196         }
197
198         return true;
199     }
200
201     /**
202      * Fool the public nav into thinking it's on the regular
203      * group page when it's actually on our injected group
204      * directory page. This way "Groups" gets hilighted when
205      * when we're on the groups directory page.
206      *
207      * @param type $action the current action
208      *
209      * @return boolean hook flag
210      */
211     function onStartPublicGroupNav($action)
212     {
213         if ($action->trimmed('action') == 'groupdirectory') {
214             $action->actionName = 'groups';
215         }
216         return true;
217     }
218
219     /**
220      * Modify the public local nav to add a link to the user directory
221      *
222      * @param Action $action The current action handler. Use this to
223      *                       do any output.
224      *
225      * @return boolean hook value; true means continue processing,
226      *         false means stop.
227      *
228      * @see Action
229      */
230     function onEndPublicGroupNav($nav)
231     {
232         // XXX: Maybe this should go under search instead?
233
234         $actionName = $nav->action->trimmed('action');
235
236         $nav->out->menuItem(
237             common_local_url('userdirectory'),
238             // TRANS: Menu item text for user directory.
239             _m('MENU','People'),
240             // TRANS: Menu item title for user directory.
241             _m('People.'),
242             $actionName == 'userdirectory',
243             'nav_directory'
244         );
245
246         return true;
247     }
248
249     /*
250      * Version info
251      */
252     function onPluginVersion(array &$versions)
253     {
254         $versions[] = array(
255             'name' => 'Directory',
256             'version' => GNUSOCIAL_VERSION,
257             'author' => 'Zach Copley',
258             'homepage' => 'http://status.net/wiki/Plugin:Directory',
259             // TRANS: Plugin description.
260             'rawdescription' => _m('Add a user directory.')
261         );
262
263         return true;
264     }
265 }