source: extensions/Register_FluxBB/trunk/main.inc.php @ 6310

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

[Register_FluxBB]

main.inc.php information update

  • Property svn:eol-style set to LF
File size: 6.7 KB
Line 
1<?php
2/*
3Plugin Name: Register FluxBB
4Version: 2.2.3
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
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
472.2.1     - 04/04/10  - Bug 1577 fixed : Multiple database support
48
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
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)
54--------------------------------------------------------------------------------
55*/
56
57// pour faciliter le debug - make debug easier :o)
58//ini_set('error_reporting', E_ALL);
59//ini_set('display_errors', true);
60
61if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
62
63if (!defined('REGFLUXBB_DIR')) define('REGFLUXBB_DIR' , basename(dirname(__FILE__)));
64if (!defined('REGFLUXBB_PATH')) define('REGFLUXBB_PATH' , PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
65
66include_once (REGFLUXBB_PATH.'include/constants.php');
67include_once (REGFLUXBB_PATH.'include/functions.inc.php');
68
69
70/* plugin administration */
71add_event_handler('get_admin_plugin_menu_links', 'Register_FluxBB_admin_menu');
72
73function Register_FluxBB_admin_menu($menu)
74{
75  array_push($menu, array(
76    'NAME' => 'Register FluxBB',
77    'URL'  => get_admin_plugin_menu_link(REGFLUXBB_PATH.'admin/admin.php')));
78  return $menu;
79}
80
81
82/* user creation*/
83add_event_handler('register_user', 'Register_FluxBB_Adduser');
84
85function Register_FluxBB_Adduser($register_user)
86{
87  global $conf;
88       
89  include_once (REGFLUXBB_PATH.'include/functions.inc.php');
90
91  // Warning : FluxBB uses Sha1 hash instead of md5 for Piwigo !
92  FluxBB_Adduser($register_user['id'], $register_user['username'], sha1($_POST['password']), $register_user['email']);
93}
94
95
96/* user deletion */
97add_event_handler('delete_user', 'Register_FluxBB_Deluser');
98
99function Register_FluxBB_Deluser($user_id)
100{
101  include_once (REGFLUXBB_PATH.'include/functions.inc.php');
102
103  FluxBB_Deluser( FluxBB_Searchuser($user_id), true );
104}
105
106
107
108add_event_handler('init', 'Register_FluxBB_InitPage');
109 
110function Register_FluxBB_InitPage()
111{
112  global $conf, $user ;
113  include_once (REGFLUXBB_PATH.'include/functions.inc.php');
114
115/* user update */
116  if (script_basename() == 'profile')
117  {
118    if (isset($_POST['validate']))
119    {
120      $errors = array();
121
122      $int_pattern = '/^\d+$/';
123      if (empty($_POST['nb_image_line'])
124        or (!preg_match($int_pattern, $_POST['nb_image_line'])))
125      {
126        $errors[] = l10n('nb_image_line_error');
127      }
128   
129      if (empty($_POST['nb_line_page'])
130        or (!preg_match($int_pattern, $_POST['nb_line_page'])))
131      {
132        $errors[] = l10n('nb_line_page_error');
133      }
134   
135      if ($_POST['maxwidth'] != ''
136        and (!preg_match($int_pattern, $_POST['maxwidth'])
137        or $_POST['maxwidth'] < 50))
138      {
139        $errors[] = l10n('maxwidth_error');
140      }
141
142      if ($_POST['maxheight']
143        and (!preg_match($int_pattern, $_POST['maxheight'])
144        or $_POST['maxheight'] < 50))
145      {
146        $errors[] = l10n('maxheight_error');
147      }
148
149      if (isset($_POST['mail_address']))
150      {
151        $mail_error = validate_mail_address($user['id'],$_POST['mail_address']);
152        if (!empty($mail_error))
153        {
154          $errors[] = $mail_error;
155        }
156      }
157   
158      if (!empty($_POST['use_new_pwd']))
159      {
160        // password must be the same as its confirmation
161        if ($_POST['use_new_pwd'] != $_POST['passwordConf'])
162        {
163          $errors[] = l10n('New password confirmation does not correspond');
164        }
165   
166        if ( !defined('IN_ADMIN') )
167        {// changing password requires old password
168          $query = '
169SELECT '.$conf['user_fields']['password'].' AS password
170FROM '.USERS_TABLE.'
171WHERE '.$conf['user_fields']['id'].' = \''.$user['id'].'\'
172;';
173
174          list($current_password) = pwg_db_fetch_row(pwg_query($query));
175     
176          if ($conf['pass_convert']($_POST['password']) != $current_password)
177          {
178            $errors[] = l10n('Current password is wrong');
179          }
180        }
181      }
182   
183      if (count($errors) == 0)
184      {
185        include_once (REGFLUXBB_PATH.'include/functions.inc.php');
186     
187        $query = '
188SELECT '.$conf['user_fields']['username'].' AS username
189FROM '.USERS_TABLE.'
190WHERE '.$conf['user_fields']['id'].' = \''.$user['id'].'\'
191;';
192
193        list($username) = pwg_db_fetch_row(pwg_query($query));
194
195        FluxBB_Updateuser($user['id'], stripslashes($username), sha1($_POST['use_new_pwd']), $_POST['mail_address']);
196      }
197    }
198  }
199}
200?>
Note: See TracBrowser for help on using the repository browser.