]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OpenID/OpenIDPlugin.php
Added more checked type-hints.
[quix0rs-gnu-social.git] / plugins / OpenID / OpenIDPlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * PHP version 5
6  *
7  * LICENCE: This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  * @category  Plugin
21  * @package   StatusNet
22  * @author    Evan Prodromou <evan@status.net>
23  * @author    Craig Andrews <candrews@integralblue.com>
24  * @copyright 2009-2010 StatusNet, Inc.
25  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
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  * Plugin for OpenID authentication and identity
36  *
37  * This class enables consumer support for OpenID, the distributed authentication
38  * and identity system.
39  *
40  * Depends on: WebFinger plugin for HostMeta-lookup (user@host format)
41  *
42  * @category Plugin
43  * @package  StatusNet
44  * @author   Evan Prodromou <evan@status.net>
45  * @author   Craig Andrews <candrews@integralblue.com>
46  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
47  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
48  * @link     http://status.net/
49  * @link     http://openid.net/
50  */
51 class OpenIDPlugin extends Plugin
52 {
53     // Plugin parameter: set true to disallow non-OpenID logins
54     // If set, overrides the setting in database or $config['site']['openidonly']
55     public $openidOnly = null;
56
57     function initialize()
58     {
59         parent::initialize();
60         if ($this->openidOnly !== null) {
61             global $config;
62             $config['site']['openidonly'] = (bool)$this->openidOnly;
63         }
64     }
65
66     /**
67      * Add OpenID-related paths to the router table
68      *
69      * Hook for RouterInitialized event.
70      *
71      * @param URLMapper $m URL mapper
72      *
73      * @return boolean hook return
74      */
75     public function onStartInitializeRouter(URLMapper $m)
76     {
77         $m->connect('main/openid', array('action' => 'openidlogin'));
78         $m->connect('main/openidtrust', array('action' => 'openidtrust'));
79         $m->connect('settings/openid', array('action' => 'openidsettings'));
80         $m->connect('index.php?action=finishopenidlogin',
81                     array('action' => 'finishopenidlogin'));
82         $m->connect('index.php?action=finishaddopenid',
83                     array('action' => 'finishaddopenid'));
84         $m->connect('main/openidserver', array('action' => 'openidserver'));
85         $m->connect('panel/openid', array('action' => 'openidadminpanel'));
86
87         return true;
88     }
89
90     /**
91      * In OpenID-only mode, disable paths for password stuff
92      *
93      * @param string $path     path to connect
94      * @param array  $defaults path defaults
95      * @param array  $rules    path rules
96      * @param array  $result   unused
97      *
98      * @return boolean hook return
99      */
100     function onStartConnectPath(&$path, &$defaults, &$rules, &$result)
101     {
102         if (common_config('site', 'openidonly')) {
103             // Note that we should not remove the login and register
104             // actions. Lots of auth-related things link to them,
105             // such as when visiting a private site without a session
106             // or revalidating a remembered login for admin work.
107             //
108             // We take those two over with redirects to ourselves
109             // over in onArgsInitialize().
110             static $block = array('main/recoverpassword',
111                                   'settings/password');
112
113             if (in_array($path, $block)) {
114                 return false;
115             }
116         }
117
118         return true;
119     }
120
121     /**
122      * If we've been hit with password-login args, redirect
123      *
124      * @param array $args args (URL, Get, post)
125      *
126      * @return boolean hook return
127      */
128     function onArgsInitialize($args)
129     {
130         if (common_config('site', 'openidonly')) {
131             if (array_key_exists('action', $args)) {
132                 $action = trim($args['action']);
133                 if (in_array($action, array('login', 'register'))) {
134                     common_redirect(common_local_url('openidlogin'));
135                 } else if ($action == 'passwordsettings') {
136                     common_redirect(common_local_url('openidsettings'));
137                 } else if ($action == 'recoverpassword') {
138                     // TRANS: Client exception thrown when an action is not available.
139                     throw new ClientException(_m('Unavailable action.'));
140                 }
141             }
142         }
143         return true;
144     }
145
146     /**
147      * Public XRDS output hook
148      *
149      * Puts the bits of code needed by some OpenID providers to show
150      * we're good citizens.
151      *
152      * @param Action       $action         Action being executed
153      * @param XMLOutputter &$xrdsOutputter Output channel
154      *
155      * @return boolean hook return
156      */
157     function onEndPublicXRDS($action, &$xrdsOutputter)
158     {
159         $xrdsOutputter->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
160                                                   'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
161                                                   'version' => '2.0'));
162         $xrdsOutputter->element('Type', null, 'xri://$xrds*simple');
163         //consumer
164         foreach (array('finishopenidlogin', 'finishaddopenid') as $finish) {
165             $xrdsOutputter->showXrdsService(Auth_OpenID_RP_RETURN_TO_URL_TYPE,
166                                             common_local_url($finish));
167         }
168         //provider
169         $xrdsOutputter->showXrdsService('http://specs.openid.net/auth/2.0/server',
170                                         common_local_url('openidserver'),
171                                         null,
172                                         null,
173                                         'http://specs.openid.net/auth/2.0/identifier_select');
174         $xrdsOutputter->elementEnd('XRD');
175     }
176
177     /**
178      * User XRDS output hook
179      *
180      * Puts the bits of code needed to discover OpenID endpoints.
181      *
182      * @param Action       $action         Action being executed
183      * @param XMLOutputter &$xrdsOutputter Output channel
184      *
185      * @return boolean hook return
186      */
187     function onEndUserXRDS($action, &$xrdsOutputter)
188     {
189         $xrdsOutputter->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
190                                                   'xml:id' => 'openid',
191                                                   'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
192                                                   'version' => '2.0'));
193         $xrdsOutputter->element('Type', null, 'xri://$xrds*simple');
194
195         //consumer
196         $xrdsOutputter->showXrdsService('http://specs.openid.net/auth/2.0/return_to',
197                                         common_local_url('finishopenidlogin'));
198
199         //provider
200         $xrdsOutputter->showXrdsService('http://specs.openid.net/auth/2.0/signon',
201                                         common_local_url('openidserver'),
202                                         null,
203                                         null,
204                                         common_profile_url($action->user->nickname));
205         $xrdsOutputter->elementEnd('XRD');
206     }
207
208     /**
209      * If we're in OpenID-only mode, hide all the main menu except OpenID login.
210      *
211      * @param Action $action Action being run
212      *
213      * @return boolean hook return
214      */
215     function onStartPrimaryNav($action)
216     {
217         if (common_config('site', 'openidonly') && !common_logged_in()) {
218             // TRANS: Tooltip for main menu option "Login"
219             $tooltip = _m('TOOLTIP', 'Login to the site.');
220             $action->menuItem(common_local_url('openidlogin'),
221                               // TRANS: Main menu option when not logged in to log in
222                               _m('MENU', 'Login'),
223                               $tooltip,
224                               false,
225                               'nav_login');
226             // TRANS: Tooltip for main menu option "Help"
227             $tooltip = _m('TOOLTIP', 'Help me!');
228             $action->menuItem(common_local_url('doc', array('title' => 'help')),
229                               // TRANS: Main menu option for help on the StatusNet site
230                               _m('MENU', 'Help'),
231                               $tooltip,
232                               false,
233                               'nav_help');
234             if (!common_config('site', 'private')) {
235                 // TRANS: Tooltip for main menu option "Search"
236                 $tooltip = _m('TOOLTIP', 'Search for people or text.');
237                 $action->menuItem(common_local_url('peoplesearch'),
238                                   // TRANS: Main menu option when logged in or when the StatusNet instance is not private
239                                   _m('MENU', 'Search'), $tooltip, false, 'nav_search');
240             }
241             Event::handle('EndPrimaryNav', array($action));
242             return false;
243         }
244         return true;
245     }
246
247     /**
248      * Menu for login
249      *
250      * If we're in openidOnly mode, we disable the menu for all other login.
251      *
252      * @param Action $action Action being executed
253      *
254      * @return boolean hook return
255      */
256     function onStartLoginGroupNav($action)
257     {
258         if (common_config('site', 'openidonly')) {
259             $this->showOpenIDLoginTab($action);
260             // Even though we replace this code, we
261             // DON'T run the End* hook, to keep others from
262             // adding tabs. Not nice, but.
263             return false;
264         }
265
266         return true;
267     }
268
269     /**
270      * Menu item for login
271      *
272      * @param Action $action Action being executed
273      *
274      * @return boolean hook return
275      */
276     function onEndLoginGroupNav($action)
277     {
278         $this->showOpenIDLoginTab($action);
279
280         return true;
281     }
282
283     /**
284      * Show menu item for login
285      *
286      * @param Action $action Action being executed
287      *
288      * @return void
289      */
290     function showOpenIDLoginTab($action)
291     {
292         $action_name = $action->trimmed('action');
293
294         $action->menuItem(common_local_url('openidlogin'),
295                           // TRANS: OpenID plugin menu item on site logon page.
296                           _m('MENU', 'OpenID'),
297                           // TRANS: OpenID plugin tooltip for logon menu item.
298                           _m('Login or register with OpenID.'),
299                           $action_name === 'openidlogin');
300     }
301
302     /**
303      * Show menu item for password
304      *
305      * We hide it in openID-only mode
306      *
307      * @param Action $menu    Widget for menu
308      * @param void   &$unused Unused value
309      *
310      * @return void
311      */
312     function onStartAccountSettingsPasswordMenuItem($menu, &$unused) {
313         if (common_config('site', 'openidonly')) {
314             return false;
315         }
316         return true;
317     }
318
319     /**
320      * Menu item for OpenID settings
321      *
322      * @param Action $action Action being executed
323      *
324      * @return boolean hook return
325      */
326     function onEndAccountSettingsNav($action)
327     {
328         $action_name = $action->trimmed('action');
329
330         $action->menuItem(common_local_url('openidsettings'),
331                           // TRANS: OpenID plugin menu item on user settings page.
332                           _m('MENU', 'OpenID'),
333                           // TRANS: OpenID plugin tooltip for user settings menu item.
334                           _m('Add or remove OpenIDs.'),
335                           $action_name === 'openidsettings');
336
337         return true;
338     }
339
340     /**
341      * Autoloader
342      *
343      * Loads our classes if they're requested.
344      *
345      * @param string $cls Class requested
346      *
347      * @return boolean hook return
348      */
349     function onAutoload($cls)
350     {
351         switch ($cls)
352         {
353         case 'Auth_OpenID_TeamsExtension':
354         case 'Auth_OpenID_TeamsRequest':
355         case 'Auth_OpenID_TeamsResponse':
356             require_once dirname(__FILE__) . '/extlib/teams-extension.php';
357             return false;
358         }
359
360         return parent::onAutoload($cls);
361     }
362
363     /**
364      * Sensitive actions
365      *
366      * These actions should use https when SSL support is 'sometimes'
367      *
368      * @param Action  $action Action to form an URL for
369      * @param boolean &$ssl   Whether to mark it for SSL
370      *
371      * @return boolean hook return
372      */
373     function onSensitiveAction($action, &$ssl)
374     {
375         switch ($action)
376         {
377         case 'finishopenidlogin':
378         case 'finishaddopenid':
379             $ssl = true;
380             return false;
381         default:
382             return true;
383         }
384     }
385
386     /**
387      * Login actions
388      *
389      * These actions should be visible even when the site is marked private
390      *
391      * @param Action  $action Action to show
392      * @param boolean &$login Whether it's a login action
393      *
394      * @return boolean hook return
395      */
396     function onLoginAction($action, &$login)
397     {
398         switch ($action)
399         {
400         case 'openidlogin':
401         case 'finishopenidlogin':
402         case 'openidserver':
403             $login = true;
404             return false;
405         default:
406             return true;
407         }
408     }
409
410     /**
411      * We include a <meta> element linking to the webfinger resource page,
412      * for OpenID client-side authentication.
413      *
414      * @param Action $action Action being shown
415      *
416      * @return void
417      */
418     function onEndShowHeadElements($action)
419     {
420         if ($action instanceof ShowstreamAction) {
421             $action->element('link', array('rel' => 'openid2.provider',
422                                            'href' => common_local_url('openidserver')));
423             $action->element('link', array('rel' => 'openid2.local_id',
424                                            'href' => $action->profile->profileurl));
425             $action->element('link', array('rel' => 'openid.server',
426                                            'href' => common_local_url('openidserver')));
427             $action->element('link', array('rel' => 'openid.delegate',
428                                            'href' => $action->profile->profileurl));
429         }
430         return true;
431     }
432
433     /**
434      * Redirect to OpenID login if they have an OpenID
435      *
436      * @param Action $action Action being executed
437      * @param User   $user   User doing the action
438      *
439      * @return boolean whether to continue
440      */
441     function onRedirectToLogin($action, $user)
442     {
443         if (common_config('site', 'openid_only') || (!empty($user) && User_openid::hasOpenID($user->id))) {
444             common_redirect(common_local_url('openidlogin'), 303);
445         }
446         return true;
447     }
448
449     /**
450      * Show some extra instructions for using OpenID
451      *
452      * @param Action $action Action being executed
453      *
454      * @return boolean hook value
455      */
456     function onEndShowPageNotice($action)
457     {
458         $name = $action->trimmed('action');
459
460         switch ($name)
461         {
462         case 'register':
463             if (common_logged_in()) {
464                 // TRANS: Page notice for logged in users to try and get them to add an OpenID account to their StatusNet account.
465                 // TRANS: This message contains Markdown links in the form (description)[link].
466                 $instr = _m('(Have an [OpenID](http://openid.net/)? ' .
467                   '[Add an OpenID to your account](%%action.openidsettings%%)!');
468             } else {
469                 // TRANS: Page notice for anonymous users to try and get them to register with an OpenID account.
470                 // TRANS: This message contains Markdown links in the form (description)[link].
471                 $instr = _m('(Have an [OpenID](http://openid.net/)? ' .
472                   'Try our [OpenID registration]'.
473                   '(%%action.openidlogin%%)!)');
474             }
475             break;
476         case 'login':
477             // TRANS: Page notice on the login page to try and get them to log on with an OpenID account.
478             // TRANS: This message contains Markdown links in the form (description)[link].
479             $instr = _m('(Have an [OpenID](http://openid.net/)? ' .
480               'Try our [OpenID login]'.
481               '(%%action.openidlogin%%)!)');
482             break;
483         default:
484             return true;
485         }
486
487         $output = common_markup_to_html($instr);
488         $action->raw($output);
489         return true;
490     }
491
492     /**
493      * Load our document if requested
494      *
495      * @param string &$title  Title to fetch
496      * @param string &$output HTML to output
497      *
498      * @return boolean hook value
499      */
500     function onStartLoadDoc(&$title, &$output)
501     {
502         if ($title == 'openid') {
503             $filename = INSTALLDIR.'/plugins/OpenID/doc-src/openid';
504
505             $c      = file_get_contents($filename);
506             $output = common_markup_to_html($c);
507             return false; // success!
508         }
509
510         return true;
511     }
512
513     /**
514      * Add our document to the global menu
515      *
516      * @param string $title   Title being fetched
517      * @param string &$output HTML being output
518      *
519      * @return boolean hook value
520      */
521     function onEndDocsMenu(&$items) {
522         $items[] = array('doc', 
523                          array('title' => 'openid'),
524                          _m('MENU', 'OpenID'),
525                          _('Logging in with OpenID'),
526                          'nav_doc_openid');
527         return true;
528     }
529
530     /**
531      * Data definitions
532      *
533      * Assure that our data objects are available in the DB
534      *
535      * @return boolean hook value
536      */
537     function onCheckSchema()
538     {
539         $schema = Schema::get();
540         $schema->ensureTable('user_openid', User_openid::schemaDef());
541         $schema->ensureTable('user_openid_trustroot', User_openid_trustroot::schemaDef());
542         $schema->ensureTable('user_openid_prefs', User_openid_prefs::schemaDef());
543
544         /* These are used by JanRain OpenID library */
545
546         $schema->ensureTable('oid_associations',
547                              array(
548                                  'fields' => array(
549                                      'server_url' => array('type' => 'blob', 'not null' => true),
550                                      'handle' => array('type' => 'varchar', 'length' => 255, 'not null' => true, 'default' => ''), // character set latin1,
551                                      'secret' => array('type' => 'blob'),
552                                      'issued' => array('type' => 'int'),
553                                      'lifetime' => array('type' => 'int'),
554                                      'assoc_type' => array('type' => 'varchar', 'length' => 64),
555                                  ),
556                                  'primary key' => array(array('server_url', 255), 'handle'),
557                              ));
558         $schema->ensureTable('oid_nonces',
559                              array(
560                                  'fields' => array(
561                                      'server_url' => array('type' => 'varchar', 'length' => 2047),
562                                      'timestamp' => array('type' => 'int'),
563                                      'salt' => array('type' => 'char', 'length' => 40),
564                                  ),
565                                  'unique keys' => array(
566                                      'oid_nonces_server_url_timestamp_salt_key' => array(array('server_url', 255), 'timestamp', 'salt'),
567                                  ),
568                              ));
569
570         return true;
571     }
572
573     /**
574      * Add our tables to be deleted when a user is deleted
575      *
576      * @param User  $user    User being deleted
577      * @param array &$tables Array of table names
578      *
579      * @return boolean hook value
580      */
581     function onUserDeleteRelated($user, &$tables)
582     {
583         $tables[] = 'User_openid';
584         $tables[] = 'User_openid_trustroot';
585         return true;
586     }
587
588     /**
589      * Add an OpenID tab to the admin panel
590      *
591      * @param Widget $nav Admin panel nav
592      *
593      * @return boolean hook value
594      */
595     function onEndAdminPanelNav(Menu $nav)
596     {
597         if (AdminPanelAction::canAdmin('openid')) {
598
599             $action_name = $nav->action->trimmed('action');
600
601             $nav->out->menuItem(
602                 common_local_url('openidadminpanel'),
603                 // TRANS: OpenID configuration menu item.
604                 _m('MENU','OpenID'),
605                 // TRANS: Tooltip for OpenID configuration menu item.
606                 _m('OpenID configuration.'),
607                 $action_name == 'openidadminpanel',
608                 'nav_openid_admin_panel'
609             );
610         }
611
612         return true;
613     }
614
615     /**
616      * Add OpenID information to the Account Management Control Document
617      * Event supplied by the Account Manager plugin
618      *
619      * @param array &$amcd Array that expresses the AMCD
620      *
621      * @return boolean hook value
622      */
623
624     function onEndAccountManagementControlDocument(&$amcd)
625     {
626         $amcd['auth-methods']['openid'] = array(
627             'connect' => array(
628                 'method' => 'POST',
629                 'path' => common_local_url('openidlogin'),
630                 'params' => array(
631                     'identity' => 'openid_url'
632                 )
633             )
634         );
635     }
636
637     /**
638      * Add our version information to output
639      *
640      * @param array &$versions Array of version-data arrays
641      *
642      * @return boolean hook value
643      */
644     function onPluginVersion(array &$versions)
645     {
646         $versions[] = array('name' => 'OpenID',
647                             'version' => GNUSOCIAL_VERSION,
648                             'author' => 'Evan Prodromou, Craig Andrews',
649                             'homepage' => 'http://status.net/wiki/Plugin:OpenID',
650                             'rawdescription' =>
651                             // TRANS: Plugin description.
652                             _m('Use <a href="http://openid.net/">OpenID</a> to login to the site.'));
653         return true;
654     }
655
656     function onStartOAuthLoginForm($action, &$button)
657     {
658         if (common_config('site', 'openidonly')) {
659             // Cancel the regular password login form, we won't need it.
660             $this->showOAuthLoginForm($action);
661             // TRANS: button label for OAuth authorization page when needing OpenID authentication first.
662             $button = _m('BUTTON', 'Continue');
663             return false;
664         } else {
665             // Leave the regular password login form in place.
666             // We'll add an OpenID link at bottom...?
667             return true;
668         }
669     }
670
671     /**
672      * @fixme merge with common code for main OpenID login form
673      * @param HTMLOutputter $action
674      */
675     protected function showOAuthLoginForm($action)
676     {
677         $action->elementStart('fieldset');
678         // TRANS: OpenID plugin logon form legend.
679         $action->element('legend', null, _m('LEGEND','OpenID login'));
680
681         $action->elementStart('ul', 'form_data');
682         $action->elementStart('li');
683         $provider = common_config('openid', 'trusted_provider');
684         $appendUsername = common_config('openid', 'append_username');
685         if ($provider) {
686             // TRANS: Field label.
687             $action->element('label', array(), _m('OpenID provider'));
688             $action->element('span', array(), $provider);
689             if ($appendUsername) {
690                 $action->element('input', array('id' => 'openid_username',
691                                               'name' => 'openid_username',
692                                               'style' => 'float: none'));
693             }
694             $action->element('p', 'form_guide',
695                            // TRANS: Form guide.
696                            ($appendUsername ? _m('Enter your username.') . ' ' : '') .
697                            // TRANS: Form guide.
698                            _m('You will be sent to the provider\'s site for authentication.'));
699             $action->hidden('openid_url', $provider);
700         } else {
701             // TRANS: OpenID plugin logon form field label.
702             $action->input('openid_url', _m('OpenID URL'),
703                          '',
704                         // TRANS: OpenID plugin logon form field instructions.
705                          _m('Your OpenID URL.'));
706         }
707         $action->elementEnd('li');
708         $action->elementEnd('ul');
709
710         $action->elementEnd('fieldset');
711     }
712
713     /**
714      * Handle a POST user credential check in apioauthauthorization.
715      * If given an OpenID URL, we'll pass us over to the regular things
716      * and then redirect back here on completion.
717      *
718      * @fixme merge with common code for main OpenID login form
719      * @param HTMLOutputter $action
720      */
721     function onStartOAuthLoginCheck($action, &$user)
722     {
723         $provider = common_config('openid', 'trusted_provider');
724         if ($provider) {
725             $openid_url = $provider;
726             if (common_config('openid', 'append_username')) {
727                 $openid_url .= $action->trimmed('openid_username');
728             }
729         } else {
730             $openid_url = $action->trimmed('openid_url');
731         }
732
733         if ($openid_url) {
734             require_once dirname(__FILE__) . '/openid.php';
735             oid_assert_allowed($openid_url);
736
737             $returnto = common_local_url(
738                 'ApiOAuthAuthorize',
739                 array(),
740                 array(
741                     'oauth_token' => $action->arg('oauth_token'),
742                     'mode'        => $action->arg('mode')
743                 )
744             );
745             common_set_returnto($returnto);
746
747             // This will redirect if functional...
748             $result = oid_authenticate($openid_url,
749                                        'finishopenidlogin');
750             if (is_string($result)) { # error message
751                 throw new ServerException($result);
752             } else {
753                 exit(0);
754             }
755         }
756
757         return true;
758     }
759
760     /**
761      * Add link in user's XRD file to allow OpenID login.
762      *
763      * This link in the XRD should let users log in with their
764      * Webfinger identity to services that support it. See
765      * http://webfinger.org/login for an example.
766      *
767      * @param XML_XRD   $xrd    Currently-displaying resource descriptor
768      * @param Profile   $target The profile that it's for
769      *
770      * @return boolean hook value (always true)
771      */
772
773     function onEndWebFingerProfileLinks(XML_XRD $xrd, Profile $target)
774     {
775         $xrd->links[] = new XML_XRD_Element_Link(
776                             'http://specs.openid.net/auth/2.0/provider',
777                             $target->profileurl);
778
779         return true;
780     }
781
782     /**
783      * Add links in the user's profile block to their OpenID URLs.
784      *
785      * @param Profile $profile The profile being shown
786      * @param Array   &$links  Writeable array of arrays (href, text, image).
787      *
788      * @return boolean hook value (true)
789      */
790     
791     function onOtherAccountProfiles($profile, &$links)
792     {
793         $prefs = User_openid_prefs::getKV('user_id', $profile->id);
794
795         if (empty($prefs) || !$prefs->hide_profile_link) {
796
797             $oid = new User_openid();
798
799             $oid->user_id = $profile->id;
800
801             if ($oid->find()) {
802                 while ($oid->fetch()) {
803                     $links[] = array('href' => $oid->display,
804                                      'text' => _('OpenID'),
805                                      'image' => $this->path("icons/openid-16x16.gif"));
806                 }
807             }
808         }
809
810         return true;
811     }
812 }