| 1 | <?php |
|---|
| 2 | // +-----------------------------------------------------------------------+ |
|---|
| 3 | // | Piwigo - a PHP based photo gallery | |
|---|
| 4 | // +-----------------------------------------------------------------------+ |
|---|
| 5 | // | Copyright(C) 2008-2012 Piwigo Team http://piwigo.org | |
|---|
| 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
|---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
|---|
| 8 | // +-----------------------------------------------------------------------+ |
|---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
|---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
|---|
| 11 | // | the Free Software Foundation | |
|---|
| 12 | // | | |
|---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
|---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|---|
| 16 | // | General Public License for more details. | |
|---|
| 17 | // | | |
|---|
| 18 | // | You should have received a copy of the GNU General Public License | |
|---|
| 19 | // | along with this program; if not, write to the Free Software | |
|---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
|---|
| 21 | // | USA. | |
|---|
| 22 | // +-----------------------------------------------------------------------+ |
|---|
| 23 | |
|---|
| 24 | //----------------------------------------------------------- include |
|---|
| 25 | define('PHPWG_ROOT_PATH','./'); |
|---|
| 26 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
|---|
| 27 | |
|---|
| 28 | // +-----------------------------------------------------------------------+ |
|---|
| 29 | // | Check Access and exit when user status is not ok | |
|---|
| 30 | // +-----------------------------------------------------------------------+ |
|---|
| 31 | check_status(ACCESS_FREE); |
|---|
| 32 | |
|---|
| 33 | //----------------------------------------------------------- user registration |
|---|
| 34 | |
|---|
| 35 | if (!$conf['allow_user_registration']) |
|---|
| 36 | { |
|---|
| 37 | page_forbidden('User registration closed'); |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | if (isset($_POST['submit'])) |
|---|
| 41 | { |
|---|
| 42 | if (!verify_ephemeral_key(@$_POST['key'])) |
|---|
| 43 | { |
|---|
| 44 | set_status_header(403); |
|---|
| 45 | array_push($page['errors'], 'Invalid/expired form key'); |
|---|
| 46 | } |
|---|
| 47 | |
|---|
| 48 | if ($_POST['password'] != $_POST['password_conf']) |
|---|
| 49 | { |
|---|
| 50 | array_push($page['errors'], l10n('please enter your password again')); |
|---|
| 51 | } |
|---|
| 52 | |
|---|
| 53 | $page['errors'] = |
|---|
| 54 | register_user($_POST['login'], |
|---|
| 55 | $_POST['password'], |
|---|
| 56 | $_POST['mail_address'], |
|---|
| 57 | true, |
|---|
| 58 | $page['errors']); |
|---|
| 59 | |
|---|
| 60 | if (count($page['errors']) == 0) |
|---|
| 61 | { |
|---|
| 62 | // email notification |
|---|
| 63 | if (isset($_POST['send_password_by_mail']) and isset($_POST['mail_address'])) |
|---|
| 64 | { |
|---|
| 65 | include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php'); |
|---|
| 66 | |
|---|
| 67 | $keyargs_content = array( |
|---|
| 68 | get_l10n_args('Hello %s,', $_POST['login']), |
|---|
| 69 | get_l10n_args('Thank you for registering at %s!', $conf['gallery_title']), |
|---|
| 70 | get_l10n_args('', ''), |
|---|
| 71 | get_l10n_args('Here are your connection settings', ''), |
|---|
| 72 | get_l10n_args('Username: %s', $_POST['login']), |
|---|
| 73 | get_l10n_args('Password: %s', $_POST['password']), |
|---|
| 74 | get_l10n_args('Email: %s', $_POST['mail_address']), |
|---|
| 75 | get_l10n_args('', ''), |
|---|
| 76 | get_l10n_args('If you think you\'ve received this email in error, please contact us at %s', get_webmaster_mail_address()), |
|---|
| 77 | ); |
|---|
| 78 | |
|---|
| 79 | pwg_mail( |
|---|
| 80 | $_POST['mail_address'], |
|---|
| 81 | array( |
|---|
| 82 | 'subject' => '['.$conf['gallery_title'].'] '.l10n('Registration'), |
|---|
| 83 | 'content' => l10n_args($keyargs_content), |
|---|
| 84 | 'content_format' => 'text/plain', |
|---|
| 85 | ) |
|---|
| 86 | ); |
|---|
| 87 | |
|---|
| 88 | $_SESSION['page_infos'][] = l10n('Successfully registered, you will soon receive an email with your connection settings. Welcome!'); |
|---|
| 89 | } |
|---|
| 90 | |
|---|
| 91 | // log user and redirect |
|---|
| 92 | $user_id = get_userid($_POST['login']); |
|---|
| 93 | log_user($user_id, false); |
|---|
| 94 | redirect(make_index_url()); |
|---|
| 95 | } |
|---|
| 96 | $registration_post_key = get_ephemeral_key(2); |
|---|
| 97 | } |
|---|
| 98 | else |
|---|
| 99 | { |
|---|
| 100 | $registration_post_key = get_ephemeral_key(6); |
|---|
| 101 | } |
|---|
| 102 | |
|---|
| 103 | $login = !empty($_POST['login'])?htmlspecialchars(stripslashes($_POST['login'])):''; |
|---|
| 104 | $email = !empty($_POST['mail_address'])?htmlspecialchars(stripslashes($_POST['mail_address'])):''; |
|---|
| 105 | |
|---|
| 106 | //----------------------------------------------------- template initialization |
|---|
| 107 | // |
|---|
| 108 | // Start output of page |
|---|
| 109 | // |
|---|
| 110 | $title= l10n('Registration'); |
|---|
| 111 | $page['body_id'] = 'theRegisterPage'; |
|---|
| 112 | |
|---|
| 113 | $template->set_filenames( array('register'=>'register.tpl') ); |
|---|
| 114 | $template->assign(array( |
|---|
| 115 | 'U_HOME' => make_index_url(), |
|---|
| 116 | 'F_KEY' => $registration_post_key, |
|---|
| 117 | 'F_ACTION' => 'register.php', |
|---|
| 118 | 'F_LOGIN' => $login, |
|---|
| 119 | 'F_EMAIL' => $email, |
|---|
| 120 | 'obligatory_user_mail_address' => $conf['obligatory_user_mail_address'], |
|---|
| 121 | )); |
|---|
| 122 | |
|---|
| 123 | // include menubar |
|---|
| 124 | $themeconf = $template->get_template_vars('themeconf'); |
|---|
| 125 | if (!isset($themeconf['hide_menu_on']) OR !in_array('theRegisterPage', $themeconf['hide_menu_on'])) |
|---|
| 126 | { |
|---|
| 127 | include( PHPWG_ROOT_PATH.'include/menubar.inc.php'); |
|---|
| 128 | } |
|---|
| 129 | |
|---|
| 130 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
|---|
| 131 | $template->parse('register'); |
|---|
| 132 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
|---|
| 133 | ?> |
|---|