| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | Plugin Name: Register FluxBB |
|---|
| 4 | Version: 2.2.2 |
|---|
| 5 | Description: 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 |
|---|
| 6 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=252 |
|---|
| 7 | Author: Eric |
|---|
| 8 | Author 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 | |
|---|
| 21 | 2.0.0b - 23/11/08 - Initial release. Basic changes to be available for Piwigo 2.0RC4 |
|---|
| 22 | |
|---|
| 23 | 2.0.1b - 24/11/08 - Small bug correction on submit button display |
|---|
| 24 | |
|---|
| 25 | 2.0.2 - 19/02/09 - Language pack correction |
|---|
| 26 | |
|---|
| 27 | 2.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 | |
|---|
| 31 | 2.1.1 - 30/04/09 - Bug fixed on profile update |
|---|
| 32 | |
|---|
| 33 | 2.1.2 - 22/08/09 - Compatibility bug fixed when used with DynamicRecentPeriod plugin |
|---|
| 34 | |
|---|
| 35 | 2.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 | |
|---|
| 40 | 2.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 | |
|---|
| 47 | 2.2.1 - 04/04/10 - Bug 1577 fixed : Multiple database support |
|---|
| 48 | |
|---|
| 49 | 2.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 | |
|---|
| 52 | -------------------------------------------------------------------------------- |
|---|
| 53 | */ |
|---|
| 54 | |
|---|
| 55 | // pour faciliter le debug - make debug easier :o) |
|---|
| 56 | //ini_set('error_reporting', E_ALL); |
|---|
| 57 | //ini_set('display_errors', true); |
|---|
| 58 | |
|---|
| 59 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
|---|
| 60 | |
|---|
| 61 | if (!defined('REGFLUXBB_DIR')) define('REGFLUXBB_DIR' , basename(dirname(__FILE__))); |
|---|
| 62 | if (!defined('REGFLUXBB_PATH')) define('REGFLUXBB_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/'); |
|---|
| 63 | |
|---|
| 64 | include_once (REGFLUXBB_PATH.'include/constants.php'); |
|---|
| 65 | include_once (REGFLUXBB_PATH.'include/functions.inc.php'); |
|---|
| 66 | |
|---|
| 67 | |
|---|
| 68 | /* plugin administration */ |
|---|
| 69 | add_event_handler('get_admin_plugin_menu_links', 'Register_FluxBB_admin_menu'); |
|---|
| 70 | |
|---|
| 71 | function Register_FluxBB_admin_menu($menu) |
|---|
| 72 | { |
|---|
| 73 | array_push($menu, array( |
|---|
| 74 | 'NAME' => 'Register FluxBB', |
|---|
| 75 | 'URL' => get_admin_plugin_menu_link(REGFLUXBB_PATH.'admin/admin.php'))); |
|---|
| 76 | return $menu; |
|---|
| 77 | } |
|---|
| 78 | |
|---|
| 79 | |
|---|
| 80 | /* user creation*/ |
|---|
| 81 | add_event_handler('register_user', 'Register_FluxBB_Adduser'); |
|---|
| 82 | |
|---|
| 83 | function Register_FluxBB_Adduser($register_user) |
|---|
| 84 | { |
|---|
| 85 | global $conf; |
|---|
| 86 | |
|---|
| 87 | include_once (REGFLUXBB_PATH.'include/functions.inc.php'); |
|---|
| 88 | |
|---|
| 89 | // Warning : FluxBB uses Sha1 hash instead of md5 for Piwigo ! |
|---|
| 90 | FluxBB_Adduser($register_user['id'], $register_user['username'], sha1($_POST['password']), $register_user['email']); |
|---|
| 91 | } |
|---|
| 92 | |
|---|
| 93 | |
|---|
| 94 | /* user deletion */ |
|---|
| 95 | add_event_handler('delete_user', 'Register_FluxBB_Deluser'); |
|---|
| 96 | |
|---|
| 97 | function Register_FluxBB_Deluser($user_id) |
|---|
| 98 | { |
|---|
| 99 | include_once (REGFLUXBB_PATH.'include/functions.inc.php'); |
|---|
| 100 | |
|---|
| 101 | FluxBB_Deluser( FluxBB_Searchuser($user_id), true ); |
|---|
| 102 | } |
|---|
| 103 | |
|---|
| 104 | |
|---|
| 105 | |
|---|
| 106 | add_event_handler('init', 'Register_FluxBB_InitPage'); |
|---|
| 107 | |
|---|
| 108 | function Register_FluxBB_InitPage() |
|---|
| 109 | { |
|---|
| 110 | global $conf, $user ; |
|---|
| 111 | include_once (REGFLUXBB_PATH.'include/functions.inc.php'); |
|---|
| 112 | |
|---|
| 113 | /* user update */ |
|---|
| 114 | if (script_basename() == 'profile') |
|---|
| 115 | { |
|---|
| 116 | if (isset($_POST['validate'])) |
|---|
| 117 | { |
|---|
| 118 | $errors = array(); |
|---|
| 119 | |
|---|
| 120 | $int_pattern = '/^\d+$/'; |
|---|
| 121 | if (empty($_POST['nb_image_line']) |
|---|
| 122 | or (!preg_match($int_pattern, $_POST['nb_image_line']))) |
|---|
| 123 | { |
|---|
| 124 | $errors[] = l10n('nb_image_line_error'); |
|---|
| 125 | } |
|---|
| 126 | |
|---|
| 127 | if (empty($_POST['nb_line_page']) |
|---|
| 128 | or (!preg_match($int_pattern, $_POST['nb_line_page']))) |
|---|
| 129 | { |
|---|
| 130 | $errors[] = l10n('nb_line_page_error'); |
|---|
| 131 | } |
|---|
| 132 | |
|---|
| 133 | if ($_POST['maxwidth'] != '' |
|---|
| 134 | and (!preg_match($int_pattern, $_POST['maxwidth']) |
|---|
| 135 | or $_POST['maxwidth'] < 50)) |
|---|
| 136 | { |
|---|
| 137 | $errors[] = l10n('maxwidth_error'); |
|---|
| 138 | } |
|---|
| 139 | |
|---|
| 140 | if ($_POST['maxheight'] |
|---|
| 141 | and (!preg_match($int_pattern, $_POST['maxheight']) |
|---|
| 142 | or $_POST['maxheight'] < 50)) |
|---|
| 143 | { |
|---|
| 144 | $errors[] = l10n('maxheight_error'); |
|---|
| 145 | } |
|---|
| 146 | |
|---|
| 147 | if (isset($_POST['mail_address'])) |
|---|
| 148 | { |
|---|
| 149 | $mail_error = validate_mail_address($user['id'],$_POST['mail_address']); |
|---|
| 150 | if (!empty($mail_error)) |
|---|
| 151 | { |
|---|
| 152 | $errors[] = $mail_error; |
|---|
| 153 | } |
|---|
| 154 | } |
|---|
| 155 | |
|---|
| 156 | if (!empty($_POST['use_new_pwd'])) |
|---|
| 157 | { |
|---|
| 158 | // password must be the same as its confirmation |
|---|
| 159 | if ($_POST['use_new_pwd'] != $_POST['passwordConf']) |
|---|
| 160 | { |
|---|
| 161 | $errors[] = l10n('New password confirmation does not correspond'); |
|---|
| 162 | } |
|---|
| 163 | |
|---|
| 164 | if ( !defined('IN_ADMIN') ) |
|---|
| 165 | {// changing password requires old password |
|---|
| 166 | $query = ' |
|---|
| 167 | SELECT '.$conf['user_fields']['password'].' AS password |
|---|
| 168 | FROM '.USERS_TABLE.' |
|---|
| 169 | WHERE '.$conf['user_fields']['id'].' = \''.$user['id'].'\' |
|---|
| 170 | ;'; |
|---|
| 171 | |
|---|
| 172 | list($current_password) = pwg_db_fetch_row(pwg_query($query)); |
|---|
| 173 | |
|---|
| 174 | if ($conf['pass_convert']($_POST['password']) != $current_password) |
|---|
| 175 | { |
|---|
| 176 | $errors[] = l10n('Current password is wrong'); |
|---|
| 177 | } |
|---|
| 178 | } |
|---|
| 179 | } |
|---|
| 180 | |
|---|
| 181 | if (count($errors) == 0) |
|---|
| 182 | { |
|---|
| 183 | include_once (REGFLUXBB_PATH.'include/functions.inc.php'); |
|---|
| 184 | |
|---|
| 185 | $query = ' |
|---|
| 186 | SELECT '.$conf['user_fields']['username'].' AS username |
|---|
| 187 | FROM '.USERS_TABLE.' |
|---|
| 188 | WHERE '.$conf['user_fields']['id'].' = \''.$user['id'].'\' |
|---|
| 189 | ;'; |
|---|
| 190 | |
|---|
| 191 | list($username) = pwg_db_fetch_row(pwg_query($query)); |
|---|
| 192 | |
|---|
| 193 | FluxBB_Updateuser($user['id'], stripslashes($username), sha1($_POST['use_new_pwd']), $_POST['mail_address']); |
|---|
| 194 | } |
|---|
| 195 | } |
|---|
| 196 | } |
|---|
| 197 | } |
|---|
| 198 | ?> |
|---|