]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Directory/DirectoryPlugin.php
06cfca02efa5a54492009fc251157a8774eb4958
[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      * Load related modules when needed
73      *
74      * @param string $cls Name of the class to be loaded
75      *
76      * @return boolean hook value; true means continue processing,
77      *         false means stop.
78      */
79     function onAutoload($cls)
80     {
81         // common_debug("class = $cls");
82
83         $dir = dirname(__FILE__);
84
85         switch ($cls)
86         {
87         case 'UserdirectoryAction':
88         case 'GroupdirectoryAction':
89             include_once $dir
90                 . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
91             return false;
92         case 'AlphaNav':
93             include_once $dir
94                 . '/lib/' . strtolower($cls) . '.php';
95             return false;
96         case 'SortableSubscriptionList':
97         case 'SortableGroupList':
98             include_once $dir
99                 . '/lib/' . strtolower($cls) . '.php';
100             return false;
101         default:
102             return true;
103         }
104     }
105
106     /**
107      * Map URLs to actions
108      *
109      * @param Net_URL_Mapper $m path-to-action mapper
110      *
111      * @return boolean hook value; true means continue processing,
112      *         false means stop.
113      */
114     function onRouterInitialized($m)
115     {
116
117         $m->connect(
118             'directory/users',
119             array('action' => 'userdirectory'),
120             array('filter' => 'all')
121         );
122
123         $m->connect(
124             'directory/users/:filter',
125             array('action' => 'userdirectory'),
126             array('filter' => '([0-9a-zA-Z_]{1,64}|0-9)')
127         );
128
129         $m->connect(
130             'groups/:filter',
131             array('action' => 'groupdirectory'),
132             array('filter' => '([0-9a-zA-Z_]{1,64}|0-9)')
133         );
134
135         $m->connect(
136             'groups',
137             array('action' => 'groupdirectory')
138         );
139
140         return true;
141     }
142
143     /**
144      * Hijack the routing (URL -> Action) for the normal directory page
145      * and substitute our group directory action
146      *
147      * @param string $path     path to connect
148      * @param array  $defaults path defaults
149      * @param array  $rules    path rules
150      * @param array  $result   unused
151      *
152      * @return boolean hook return
153      */
154     function onStartConnectPath(&$path, &$defaults, &$rules, &$result)
155     {
156         if (in_array($path, array('group', 'group/', 'groups', 'groups/'))) {
157             $defaults['action'] = 'groupdirectory';
158             return true;
159         }
160         return true;
161     }
162
163     // The following three function are to replace the existing groups
164     // list page with the directory plugin's group directory page
165
166     /**
167      * Hijack the mapping (Action -> URL) and return the URL to our
168      * group directory page instead of the normal groups page
169      *
170      * @param Action    $action     action to find a path for
171      * @param array     $params     parameters to pass to the action
172      * @param string    $fragment   any url fragement
173      * @param boolean   $addSession whether to add session variable
174      * @param string    $url        resulting URL to local resource
175      *
176      * @return string the local URL
177      */
178     function onEndLocalURL(&$action, &$params, &$fragment, &$addSession, &$url) {
179         if (in_array($action, array('group', 'group/', 'groups', 'groups/'))) {
180                 $url = common_local_url('groupdirectory');
181         }
182         return true;
183     }
184
185     /**
186      * Link in a styelsheet for the onboarding actions
187      *
188      * @param Action $action Action being shown
189      *
190      * @return boolean hook flag
191      */
192     function onEndShowStatusNetStyles($action)
193     {
194         if (in_array(
195             $action->trimmed('action'),
196             array('userdirectory', 'groupdirectory'))
197         ) {
198             $action->cssLink($this->path('css/directory.css'));
199         }
200
201         return true;
202     }
203
204     /**
205      * Fool the public nav into thinking it's on the regular
206      * group page when it's actually on our injected group
207      * directory page. This way "Groups" gets hilighted when
208      * when we're on the groups directory page.
209      *
210      * @param type $action the current action
211      *
212      * @return boolean hook flag
213      */
214     function onStartPublicGroupNav($action)
215     {
216         if ($action->trimmed('action') == 'groupdirectory') {
217             $action->actionName = 'groups';
218         }
219         return true;
220     }
221
222     /**
223      * Modify the public local nav to add a link to the user directory
224      *
225      * @param Action $action The current action handler. Use this to
226      *                       do any output.
227      *
228      * @return boolean hook value; true means continue processing,
229      *         false means stop.
230      *
231      * @see Action
232      */
233     function onEndPublicGroupNav($nav)
234     {
235         // XXX: Maybe this should go under search instead?
236
237         $actionName = $nav->action->trimmed('action');
238
239         $nav->out->menuItem(
240             common_local_url('userdirectory'),
241             // TRANS: Menu item text for user directory.
242             _m('MENU','Directory'),
243             // TRANS: Menu item title for user directory.
244             _m('User Directory.'),
245             $actionName == 'userdirectory',
246             'nav_directory'
247         );
248
249         return true;
250     }
251
252     /*
253      * Version info
254      */
255     function onPluginVersion(&$versions)
256     {
257         $versions[] = array(
258             'name' => 'Directory',
259             'version' => STATUSNET_VERSION,
260             'author' => 'Zach Copley',
261             'homepage' => 'http://status.net/wiki/Plugin:Directory',
262             // TRANS: Plugin description.
263             'rawdescription' => _m('Add a user directory.')
264         );
265
266         return true;
267     }
268 }