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

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

update for 2.6

File size: 3.0 KB
Line 
1<?php 
2/*
3Plugin Name: OAuth
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
22// try to load hybridauth config
23global $hybridauth_conf;
24
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
33add_event_handler('init', 'oauth_init');
34
35if (defined('IN_ADMIN'))
36{
37  add_event_handler('get_admin_plugin_menu_links', 'oauth_admin_plugin_menu_links');
38}
39else if (!empty($hybridauth_conf) and function_exists('curl_init'))
40{
41  add_event_handler('loc_begin_identification', 'oauth_begin_identification');
42  add_event_handler('loc_begin_register', 'oauth_begin_register');
43  add_event_handler('loc_begin_profile', 'oauth_begin_profile');
44 
45  add_event_handler('try_log_user', 'oauth_try_log_user', EVENT_HANDLER_PRIORITY_NEUTRAL-30, 2);
46  add_event_handler('user_logout', 'oauth_logout');
47 
48  add_event_handler('blockmanager_apply', 'oauth_blockmanager');
49 
50  include_once(OAUTH_PATH . 'include/public_events.inc.php');
51}
52
53
54/**
55 * plugin initialization
56 */
57function oauth_init()
58{
59  global $conf, $page, $hybridauth_conf;
60 
61  include_once(OAUTH_PATH . 'maintain.inc.php');
62  $maintain = new oAuth_maintain(OAUTH_ID);
63  $maintain->autoUpdate(OAUTH_VERSION, 'install');
64 
65  load_language('plugin.lang', OAUTH_PATH);
66 
67  $conf['oauth'] = unserialize($conf['oauth']);
68 
69  // check config
70  if (defined('IN_ADMIN'))
71  {
72    if (empty($hybridauth_conf) and strpos(@$_GET['page'],'plugin-'.OAUTH_ID)===false)
73    {
74      $page['warnings'][] = '<a href="'.OAUTH_ADMIN.'">'.l10n('OAuth: You need to configure the credentials').'</a>';
75    }
76    if (!function_exists('curl_init'))
77    {
78      $page['warnings'][] = l10n('OAuth: PHP Curl extension is needed');
79    }
80  }
81 
82  // in case of registration aborded
83  // DON'T WORK, because potentially executed by sub-scripts like Secureimage for Crypto Captcha
84  // if ( script_basename() != 'register' and ($data=pwg_get_session_var('oauth_new_user')) !== null )
85  // {
86    // pwg_unset_session_var('oauth_new_user');
87   
88    // require_once(OAUTH_PATH . 'include/hybridauth/Hybrid/Auth.php');
89   
90    // try {
91      // $hybridauth = new Hybrid_Auth($hybridauth_conf);
92      // $adapter = $hybridauth->getAdapter($data[0]);
93      // $adapter->logout();
94    // }
95    // catch (Exception $e) {
96    // }
97  // }
98}
99
100function oauth_admin_plugin_menu_links($menu) 
101{
102  $menu[] = array(
103    'NAME' => l10n('OAuth'),
104    'URL' => OAUTH_ADMIN,
105    );
106  return $menu;
107}
Note: See TracBrowser for help on using the repository browser.