source: extensions/Register_FluxBB/branches/2.3/main.inc.php @ 6827

Last change on this file since 6827 was 6827, checked in by Eric, 14 years ago

Merge from Trunk to Branch 2.3

  • Property svn:eol-style set to LF
File size: 7.2 KB
RevLine 
[4287]1<?php
2/*
3Plugin Name: Register FluxBB
[6827]4Version: 2.3.1
[4287]5Description: Link user registration from Piwigo to FluxBB forum (registration, password changing, deletion) - Original Nicco's NBC_LinkUser2PunBB plugin upgraded to Piwigo / Liez l'inscription des utilisateurs de Piwigo avec votre forum FluxBB - Portage du plugin NBC_LinkUser2PunBB de Nicco vers Piwigo
6Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=252
7Author: Eric
8Author URI: http://www.infernoweb.net
9*/
10
11/*
12--------------------------------------------------------------------------------
13  Author     : Eric
14    email    : lucifer@infernoweb.net
15    website  : http://www.infernoweb.net
16    PWG user : http://forum.phpwebgallery.net/profile.php?id=1106
17--------------------------------------------------------------------------------
18
19:: HISTORY
20
212.0.0b          - 23/11/08  - Initial release. Basic changes to be available for Piwigo 2.0RC4
22
232.0.1b          - 24/11/08  - Small bug correction on submit button display
24
252.0.2                   - 19/02/09      - Language pack correction
26
272.1.0                   - 25/04/09  - Admin panel with tabsheets
28                      - Radio buttons functionnalities corrections (now radio buttons show the configuration saved in database)
29                      - Language files (fr - en) improvement
30
312.1.1                   - 30/04/09      - Bug fixed on profile update
32
332.1.2                   - 22/08/09      - Compatibility bug fixed when used with DynamicRecentPeriod plugin
34
352.1.3     - 16/11/09  - Using sha1 hash instead of md5 for password hashing in FluxBB
36                      - Escaping all characters in login names and be able to retreive them without slashes - FluxBB does not allow this so Piwigo's user names with escaped characters will not been escaped in FluxBB (ie : "it's" in Piwigo will be "It\'s" in FluxBB)
37                      - Code refactoring
38                      - Full HTML 4.0 for tpl
39
[5606]402.2.0     - 03/04/10  - Piwigo 2.1 compatibility
41                      - Adding css file
42                      - Templates refactory: Moved with css in a "template" subdirectory of admin directory, Moving icons in template directory, using css rules to improve important text display
43                      - functions_Register_FluxBB.inc.php renamed in functions.inc.php
44                      - Language files revision
45                      - Obsolete files management
46
[5638]472.2.1     - 04/04/10  - Bug 1577 fixed : Multiple database support
48
[6294]492.2.2     - 23/05/10  - Bug 1674 fixed : Adding of mods for Fluxbb when users loose their password
50                      - Adding of German language (Thx to duke)
51
[6310]522.2.3     - 23/05/10  - Bug 1674 re-fixed : Bad link fixed
53                      - Re-adding of German language that was missed at last release :-( (Thx to duke)
[6791]54
552.2.4     - 22/08/10  - Bug 1812 fixed : Compliance with FluxBB 1.4
[6815]56
[6827]572.3.0     - 28/08/10  - Bug 1434 fixed : Bridge between Register_FluxBB and UserAdvManager for new users validation
58
592.3.1     - 31/08/10  - Bug 1825 fixed : Password corruption after Piwigo's profile page visit
[4287]60--------------------------------------------------------------------------------
61*/
62
63// pour faciliter le debug - make debug easier :o)
64//ini_set('error_reporting', E_ALL);
65//ini_set('display_errors', true);
66
67if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
68
[5606]69if (!defined('REGFLUXBB_DIR')) define('REGFLUXBB_DIR' , basename(dirname(__FILE__)));
70if (!defined('REGFLUXBB_PATH')) define('REGFLUXBB_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
[4287]71
[5606]72include_once (REGFLUXBB_PATH.'include/constants.php');
73include_once (REGFLUXBB_PATH.'include/functions.inc.php');
74
75
[4287]76/* plugin administration */
77add_event_handler('get_admin_plugin_menu_links', 'Register_FluxBB_admin_menu');
78
79function Register_FluxBB_admin_menu($menu)
80{
81  array_push($menu, array(
82    'NAME' => 'Register FluxBB',
[5606]83    'URL'  => get_admin_plugin_menu_link(REGFLUXBB_PATH.'admin/admin.php')));
[4287]84  return $menu;
85}
86
87
88/* user creation*/
89add_event_handler('register_user', 'Register_FluxBB_Adduser');
90
91function Register_FluxBB_Adduser($register_user)
92{
93  global $conf;
94       
[5606]95  include_once (REGFLUXBB_PATH.'include/functions.inc.php');
[4287]96
[6815]97  // Warning : FluxBB uses Sha1 hash instead of md5 for Piwigo!
[4287]98  FluxBB_Adduser($register_user['id'], $register_user['username'], sha1($_POST['password']), $register_user['email']);
99}
100
101
102/* user deletion */
103add_event_handler('delete_user', 'Register_FluxBB_Deluser');
104
105function Register_FluxBB_Deluser($user_id)
106{
[5606]107  include_once (REGFLUXBB_PATH.'include/functions.inc.php');
[4287]108
109  FluxBB_Deluser( FluxBB_Searchuser($user_id), true );
110}
111
112
[6827]113/* Profile management */
114if (script_basename() == 'profile')
[4287]115{
[6827]116  add_event_handler('loc_begin_profile', 'Register_FluxBB_InitPage', EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
[4287]117
[6827]118  function Register_FluxBB_InitPage()
[4287]119  {
[6827]120    global $conf, $user;
121    include_once (REGFLUXBB_PATH.'include/functions.inc.php');
122   
123    if (isset($_POST['validate']) and !is_admin())
[4287]124    {
[6827]125    if (!empty($_POST['use_new_pwd']))
[4287]126      {
[6827]127      $query = '
[4287]128SELECT '.$conf['user_fields']['username'].' AS username
129FROM '.USERS_TABLE.'
130WHERE '.$conf['user_fields']['id'].' = \''.$user['id'].'\'
131;';
132
[6827]133      list($username) = pwg_db_fetch_row(pwg_query($query));
[4287]134
[6827]135      FluxBB_Updateuser($user['id'], stripslashes($username), sha1($_POST['use_new_pwd']), $_POST['mail_address']);
[4287]136      }
137    }
138  }
139}
[6815]140
141
142/* Access validation in FluxBB when validated in Piwigo through UAM plugin */
[6827]143add_event_handler('login_success', 'UAM_Bridge', EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
[6815]144
145function UAM_Bridge()
146{
147  global $conf, $user;
148 
149  $conf_Register_FluxBB = isset($conf['Register_FluxBB']) ? explode(";" , $conf['Register_FluxBB']) : array();
150 
151  // Check if UAM is installed and if bridge is set - Exception for admins and webmasters
152  if (function_exists('FindAvailableConfirmMailID') and isset($conf_Register_FluxBB[6]) and $conf_Register_FluxBB[6] == 'true' and !is_admin() and !is_webmaster())
153  {
154    $conf_UAM = unserialize($conf['UserAdvManager']);
155   
156    // Getting unvalidated users group else Piwigo's default group
157    if (isset($conf_UAM[2]) and $conf_UAM[2] != '-1')
158    {
159      $Waitingroup = $conf_UAM[2];
160    }
161    else
162    {
163      $query = '
164SELECT id
165FROM '.GROUPS_TABLE.'
166WHERE is_default = "true"
167LIMIT 1
168;';
169      $data = pwg_db_fetch_assoc(pwg_query($query));
170      $Waitingroup = $data['id'];
171    }
172   
173    // check if logged in user is in a Piwigo's validated or unvalidated users group
174    $query = '
175SELECT *
176FROM '.USER_GROUP_TABLE.'
177WHERE user_id = '.$user['id'].'
178AND group_id = '.$Waitingroup.'
179;';
180    $count = pwg_db_num_rows(pwg_query($query));
181
182    // Check if logged in user is in a FluxBB's unvalidated group
183    $query = "
184SELECT group_id
185FROM ".FluxBB_USERS_TABLE."
186WHERE id = ".FluxBB_Searchuser($user['id'])."
187;";
188
189    $data = pwg_db_fetch_assoc(pwg_query($query));
190
191    // Logged in user switch to the default FluxBB's group if he'is validated
192    if ($count == 0 and $data['group_id'] = $conf_Register_FluxBB[7])
193    {
194      $query = "
195SELECT conf_value
196FROM ".FluxBB_CONFIG_TABLE."
197WHERE conf_name = 'o_default_user_group'
198;";
199
200      $o_default_user_group = pwg_db_fetch_assoc(pwg_query($query));
201     
202      $query = "
203UPDATE ".FluxBB_USERS_TABLE."
204SET group_id = ".$o_default_user_group['conf_value']."
205WHERE id = ".FluxBB_Searchuser($user['id'])."
206;";
207      pwg_query($query);
208    }
209  }
210}
[4287]211?>
Note: See TracBrowser for help on using the repository browser.