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

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

clean templating + allow to use Steam/Wordpress/Flickr without displaying OpenID

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