1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
<?php
/**
* Elgg OpenID client
*
* This is a rewrite of the OpenID client written by Kevin Jardine for
* Curverider Ltd for Elgg 1.0-1.7.
*/
elgg_register_event_handler('init', 'system', 'openid_client_init');
/**
* OpenID client initialization
*/
function openid_client_init() {
elgg_extend_view('css/elgg', 'openid_client/css');
elgg_extend_view('js/elgg', 'openid_client/js');
elgg_extend_view('core/account/login_box', 'openid_client/login');
elgg_register_plugin_hook_handler('register', 'menu:openid_login', 'openid_client_setup_menu');
$base = elgg_get_plugins_path() . 'openid_client/actions/openid_client';
elgg_register_action('openid_client/login', "$base/login.php", 'public');
elgg_register_action('openid_client/register', "$base/register.php", 'public');
$base = elgg_get_plugins_path() . 'openid_client/lib';
elgg_register_library('openid_client', "$base/helpers.php");
// don't let OpenID users set their passwords
elgg_register_event_handler('pagesetup', 'system', 'openid_client_remove_password');
// the return to page needs to be public
elgg_register_plugin_hook_handler('public_pages', 'walled_garden', 'openid_client_public');
}
/**
* Set the correct subtype for OpenID users
*
* @param ElggUser $user New user
* @return void
*/
function openid_client_set_subtype($user) {
$db_prefix = elgg_get_config('dbprefix');
$guid = (int)$user->getGUID();
$subtype_id = (int)add_subtype('user', 'openid');
$query = "UPDATE {$db_prefix}entities SET subtype = $subtype_id WHERE guid = $guid";
update_data($query);
}
/**
* Register login options
*
* @param string $hook
* @param string $type
* @param array $menu
* @param array $params
* @return array
*/
function openid_client_setup_menu($hook, $type, $menu, $params) {
$items = array(
'large' => array(
'google' => '',
'yahoo' => '',
),
'small' => array(
'blogger' => 'toggle',
'wordpress' => 'toggle',
),
);
$items = elgg_trigger_plugin_hook('register', 'openid_client:login', null, $items);
$priority = 100;
foreach ($items as $type => $providers) {
foreach ($providers as $provider => $toggle) {
$provider_name = elgg_echo("openid_client:provider:$provider");
$options = array(
'name' => $provider,
'text' => '<span></span>',
'title' => elgg_echo('openid_client:login:instructs', array($provider_name)),
'href' => "action/openid_client/login?openid_provider=$provider",
'is_action' => true,
'section' => $type,
'priority' => $priority,
);
if ($toggle) {
$options['link_class'] = 'openid-client-toggle';
$options['rel'] = $provider;
}
$menu[] = ElggMenuItem::factory($options);
$priority += 10;
}
}
return $menu;
}
/**
* Remove the password view from the account settings form
*/
function openid_client_remove_password() {
$page_owner = elgg_get_page_owner_entity();
if ($page_owner && elgg_instanceof($page_owner, 'user', 'openid')) {
elgg_unextend_view('forms/account/settings', 'core/settings/account/password');
}
}
/**
* Add pages to the list of public pages for walled garden needed for OpenID
* transaction
*
* @param string $hook Hook name
* @param string $type Hook type
* @param array $pages Array of public pages
* @return array
*/
function openid_client_public($hook, $type, $pages) {
$pages[] = 'action/openid_client/login';
$pages[] = 'mod/openid_client/return.php';
$pages[] = 'action/openid_client/register';
return $pages;
}
|