source: extensions/oAuth/main.inc.php @ 26608

Last change on this file since 26608 was 26605, checked in by mistic100, 10 years ago

add Persona authentification

File size: 3.2 KB
Line 
1<?php 
2/*
3Plugin Name: Social Connect
4Version: auto
5Description: Provides various ways to sign in your gallery (Twitter, Facebook, Google, etc.)
6Plugin URI: auto
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
12
13
14define('OAUTH_ID',      basename(dirname(__FILE__)));
15define('OAUTH_PATH' ,   PHPWG_PLUGINS_PATH . OAUTH_ID . '/');
16define('OAUTH_ADMIN',   get_root_url() . 'admin.php?page=plugin-' . OAUTH_ID);
17define('OAUTH_CONFIG',  PWG_LOCAL_DIR . 'config/hybridauth.inc.php');
18define('OAUTH_PUBLIC',  get_absolute_root_url() . ltrim(OAUTH_PATH,'./') . 'include/hybridauth/');
19define('OAUTH_VERSION', 'auto');
20
21
22global $hybridauth_conf, $conf;
23
24// try to load hybridauth config
25include_once(OAUTH_PATH . 'include/functions.inc.php');
26
27if (file_exists(PHPWG_ROOT_PATH.OAUTH_CONFIG))
28{
29  load_hybridauth_conf();
30}
31
32// force getuserdata() to retrieve 'oauth_id' field
33$conf['user_fields']['oauth_id'] = 'oauth_id';
34
35
36add_event_handler('init', 'oauth_init');
37
38if (defined('IN_ADMIN'))
39{
40  add_event_handler('get_admin_plugin_menu_links', 'oauth_admin_plugin_menu_links');
41}
42else if (!empty($hybridauth_conf) and function_exists('curl_init'))
43{
44  add_event_handler('loc_begin_identification', 'oauth_begin_identification');
45  add_event_handler('loc_begin_register', 'oauth_begin_register');
46  add_event_handler('loc_begin_profile', 'oauth_begin_profile');
47 
48  add_event_handler('loc_after_page_header', 'oauth_page_header');
49 
50  add_event_handler('try_log_user', 'oauth_try_log_user', EVENT_HANDLER_PRIORITY_NEUTRAL-30, 2);
51  add_event_handler('user_logout', 'oauth_logout');
52 
53  add_event_handler('blockmanager_apply', 'oauth_blockmanager');
54 
55  include_once(OAUTH_PATH . 'include/public_events.inc.php');
56}
57
58
59/**
60 * plugin initialization
61 */
62function oauth_init()
63{
64  global $conf, $page, $hybridauth_conf;
65 
66  include_once(OAUTH_PATH . 'maintain.inc.php');
67  $maintain = new oAuth_maintain(OAUTH_ID);
68  $maintain->autoUpdate(OAUTH_VERSION, 'install');
69 
70  load_language('plugin.lang', OAUTH_PATH);
71 
72  $conf['oauth'] = unserialize($conf['oauth']);
73 
74  // check config
75  if (defined('IN_ADMIN'))
76  {
77    if (empty($hybridauth_conf) and strpos(@$_GET['page'],'plugin-'.OAUTH_ID)===false)
78    {
79      $page['warnings'][] = '<a href="'.OAUTH_ADMIN.'">'.l10n('Social Connect: You need to configure the credentials').'</a>';
80    }
81    if (!function_exists('curl_init'))
82    {
83      $page['warnings'][] = l10n('Social Connect: PHP Curl extension is needed');
84    }
85  }
86 
87  // in case of registration aborded
88  // DON'T WORK, because potentially executed by sub-scripts like Secureimage for Crypto Captcha
89  // if ( script_basename() != 'register' and ($data=pwg_get_session_var('oauth_new_user')) !== null )
90  // {
91    // pwg_unset_session_var('oauth_new_user');
92   
93    // require_once(OAUTH_PATH . 'include/hybridauth/Hybrid/Auth.php');
94   
95    // try {
96      // $hybridauth = new Hybrid_Auth($hybridauth_conf);
97      // $adapter = $hybridauth->getAdapter($data[0]);
98      // $adapter->logout();
99    // }
100    // catch (Exception $e) {
101    // }
102  // }
103 
104  // pwg_unset_session_var('persona_logout');
105}
106
107function oauth_admin_plugin_menu_links($menu) 
108{
109  $menu[] = array(
110    'NAME' => 'Social Connect',
111    'URL' => OAUTH_ADMIN,
112    );
113  return $menu;
114}
Note: See TracBrowser for help on using the repository browser.