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

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

[Register_FluxBB]

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