1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
---|
5 | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | |
---|
6 | // +-----------------------------------------------------------------------+ |
---|
7 | // | branch : BSF (Best So Far) |
---|
8 | // | file : $Id: register.php 1901 2007-03-12 23:10:35Z rub $ |
---|
9 | // | last update : $Date: 2007-03-12 23:10:35 +0000 (Mon, 12 Mar 2007) $ |
---|
10 | // | last modifier : $Author: rub $ |
---|
11 | // | revision : $Revision: 1901 $ |
---|
12 | // +-----------------------------------------------------------------------+ |
---|
13 | // | This program is free software; you can redistribute it and/or modify | |
---|
14 | // | it under the terms of the GNU General Public License as published by | |
---|
15 | // | the Free Software Foundation | |
---|
16 | // | | |
---|
17 | // | This program is distributed in the hope that it will be useful, but | |
---|
18 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
19 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
20 | // | General Public License for more details. | |
---|
21 | // | | |
---|
22 | // | You should have received a copy of the GNU General Public License | |
---|
23 | // | along with this program; if not, write to the Free Software | |
---|
24 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
25 | // | USA. | |
---|
26 | // +-----------------------------------------------------------------------+ |
---|
27 | |
---|
28 | //----------------------------------------------------------- include |
---|
29 | define('PHPWG_ROOT_PATH','./'); |
---|
30 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
31 | |
---|
32 | // +-----------------------------------------------------------------------+ |
---|
33 | // | Check Access and exit when user status is not ok | |
---|
34 | // +-----------------------------------------------------------------------+ |
---|
35 | check_status(ACCESS_NONE); |
---|
36 | |
---|
37 | //----------------------------------------------------------- user registration |
---|
38 | |
---|
39 | if (!$conf['allow_user_registration']) |
---|
40 | { |
---|
41 | page_forbidden('User registration closed'); |
---|
42 | } |
---|
43 | |
---|
44 | $errors = array(); |
---|
45 | if (isset($_POST['submit'])) |
---|
46 | { |
---|
47 | if ($_POST['password'] != $_POST['password_conf']) |
---|
48 | { |
---|
49 | array_push($errors, $lang['reg_err_pass']); |
---|
50 | } |
---|
51 | |
---|
52 | $errors = |
---|
53 | array_merge( |
---|
54 | $errors, |
---|
55 | register_user($_POST['login'], |
---|
56 | $_POST['password'], |
---|
57 | $_POST['mail_address']) |
---|
58 | ); |
---|
59 | |
---|
60 | if (count($errors) == 0) |
---|
61 | { |
---|
62 | $user_id = get_userid($_POST['login']); |
---|
63 | log_user( $user_id, false); |
---|
64 | |
---|
65 | if ($conf['email_admin_on_new_user']) |
---|
66 | { |
---|
67 | include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php'); |
---|
68 | $username = $_POST['login']; |
---|
69 | $admin_url = get_absolute_root_url() |
---|
70 | .'admin.php?page=user_list&username='.$username; |
---|
71 | |
---|
72 | $content = |
---|
73 | 'User: '.$username."\n" |
---|
74 | .'Mail: '.$_POST['mail_address']."\n" |
---|
75 | .get_block_mail_admin_info() |
---|
76 | .'Admin'.': '.$admin_url; |
---|
77 | |
---|
78 | pwg_mail |
---|
79 | ( |
---|
80 | format_email('administrators', get_webmaster_mail_address()), |
---|
81 | array |
---|
82 | ( |
---|
83 | 'subject' => 'PWG '.l10n('register_title').' '.$username, |
---|
84 | 'content' => $content, |
---|
85 | 'Bcc' => get_administrators_email() |
---|
86 | ) |
---|
87 | ); |
---|
88 | } |
---|
89 | redirect(make_index_url()); |
---|
90 | } |
---|
91 | } |
---|
92 | |
---|
93 | $login = !empty($_POST['login'])?$_POST['login']:''; |
---|
94 | $email = !empty($_POST['mail_address'])?$_POST['mail_address']:''; |
---|
95 | |
---|
96 | //----------------------------------------------------- template initialization |
---|
97 | // |
---|
98 | // Start output of page |
---|
99 | // |
---|
100 | $title= $lang['register_page_title']; |
---|
101 | $page['body_id'] = 'theRegisterPage'; |
---|
102 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
103 | |
---|
104 | $template->set_filenames( array('register'=>'register.tpl') ); |
---|
105 | $template->assign_vars(array( |
---|
106 | 'U_HOME' => make_index_url(), |
---|
107 | |
---|
108 | 'F_ACTION' => 'register.php', |
---|
109 | 'F_LOGIN' => $login, |
---|
110 | 'F_EMAIL' => $email |
---|
111 | )); |
---|
112 | |
---|
113 | //-------------------------------------------------------------- errors display |
---|
114 | if ( sizeof( $errors ) != 0 ) |
---|
115 | { |
---|
116 | $template->assign_block_vars('errors',array()); |
---|
117 | for ( $i = 0; $i < sizeof( $errors ); $i++ ) |
---|
118 | { |
---|
119 | $template->assign_block_vars('errors.error',array('ERROR'=>$errors[$i])); |
---|
120 | } |
---|
121 | } |
---|
122 | |
---|
123 | $template->parse('register'); |
---|
124 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
125 | ?> |
---|