engelsystem/includes/pages/guest_login.php

314 lines
12 KiB
PHP
Raw Normal View History

2011-06-02 00:48:29 +02:00
<?php
2014-09-28 14:14:04 +02:00
2013-11-25 21:56:56 +01:00
function login_title() {
return _("Login");
}
function register_title() {
return _("Register");
}
function logout_title() {
return _("Logout");
}
2011-06-02 00:48:29 +02:00
// Engel registrieren
function guest_register() {
2014-03-09 13:39:04 +01:00
global $tshirt_sizes, $enable_tshirt_size, $default_theme;
2013-11-25 21:04:58 +01:00
$msg = "";
$nick = "";
$lastname = "";
$prename = "";
2013-11-25 19:12:19 +01:00
$age = "";
$tel = "";
$dect = "";
$mobile = "";
$mail = "";
2014-12-06 18:37:34 +01:00
$email_shiftinfo = false;
$jabber = "";
$hometown = "";
$comment = "";
$tshirt_size = '';
$password_hash = "";
2013-11-25 21:04:58 +01:00
$selected_angel_types = array();
$angel_types_source = sql_select("SELECT * FROM `AngelTypes` ORDER BY `name`");
2013-11-25 21:04:58 +01:00
$angel_types = array();
2014-08-23 15:47:06 +02:00
foreach ($angel_types_source as $angel_type) {
$angel_types[$angel_type['id']] = $angel_type['name'] . ($angel_type['restricted'] ? " (restricted)" : "");
2014-08-23 15:47:06 +02:00
if (! $angel_type['restricted'])
$selected_angel_types[] = $angel_type['id'];
}
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['submit'])) {
$ok = true;
2013-11-25 21:04:58 +01:00
2013-12-27 19:45:50 +01:00
if (isset($_REQUEST['nick']) && strlen(User_validate_Nick($_REQUEST['nick'])) > 1) {
$nick = User_validate_Nick($_REQUEST['nick']);
if (sql_num_query("SELECT * FROM `User` WHERE `Nick`='" . sql_escape($nick) . "' LIMIT 1") > 0) {
$ok = false;
2013-11-25 21:04:58 +01:00
$msg .= error(sprintf(_("Your nick &quot;%s&quot; already exists."), $nick), true);
}
} else {
$ok = false;
$msg .= error(sprintf(_("Your nick &quot;%s&quot; is too short (min. 2 characters)."), User_validate_Nick($_REQUEST['nick'])), true);
}
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['mail']) && strlen(strip_request_item('mail')) > 0) {
$mail = strip_request_item('mail');
2013-11-25 21:04:58 +01:00
if (! check_email($mail)) {
$ok = false;
2013-11-25 21:04:58 +01:00
$msg .= error(_("E-mail address is not correct."), true);
}
} else {
$ok = false;
2013-11-25 21:04:58 +01:00
$msg .= error(_("Please enter your e-mail."), true);
}
2013-11-25 21:04:58 +01:00
2014-12-06 18:37:34 +01:00
if (isset($_REQUEST['email_shiftinfo']))
$email_shiftinfo = true;
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['jabber']) && strlen(strip_request_item('jabber')) > 0) {
$jabber = strip_request_item('jabber');
2013-11-25 21:04:58 +01:00
if (! check_email($jabber)) {
$ok = false;
2013-11-25 21:04:58 +01:00
$msg .= error(_("Please check your jabber account information."), true);
}
}
2013-11-25 21:04:58 +01:00
if ($enable_tshirt_size) {
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['tshirt_size']) && isset($tshirt_sizes[$_REQUEST['tshirt_size']]) && $_REQUEST['tshirt_size'] != '')
$tshirt_size = $_REQUEST['tshirt_size'];
else {
$ok = false;
2013-11-25 21:04:58 +01:00
$msg .= error(_("Please select your shirt size."), true);
}
}
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['password']) && strlen($_REQUEST['password']) >= MIN_PASSWORD_LENGTH) {
if ($_REQUEST['password'] != $_REQUEST['password2']) {
$ok = false;
2013-11-25 21:04:58 +01:00
$msg .= error(_("Your passwords don't match."), true);
}
} else {
$ok = false;
$msg .= error(sprintf(_("Your password is too short (please use at least %s characters)."), MIN_PASSWORD_LENGTH), true);
}
2013-11-25 21:04:58 +01:00
$selected_angel_types = array();
foreach ($angel_types as $angel_type_id => $angel_type_name)
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['angel_types_' . $angel_type_id]))
$selected_angel_types[] = $angel_type_id;
// Trivia
if (isset($_REQUEST['lastname']))
$lastname = strip_request_item('lastname');
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['prename']))
$prename = strip_request_item('prename');
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['age']) && preg_match("/^[0-9]{0,4}$/", $_REQUEST['age']))
$age = strip_request_item('age');
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['tel']))
$tel = strip_request_item('tel');
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['dect']))
$dect = strip_request_item('dect');
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['mobile']))
$mobile = strip_request_item('mobile');
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['hometown']))
$hometown = strip_request_item('hometown');
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['comment']))
$comment = strip_request_item_nl('comment');
2013-11-25 21:04:58 +01:00
if ($ok) {
2014-12-06 18:37:34 +01:00
sql_query("
INSERT INTO `User` SET
`color`=" . sql_escape($default_theme) . ",
`Nick`='" . sql_escape($nick) . "',
`Vorname`='" . sql_escape($prename) . "',
`Name`='" . sql_escape($lastname) . "',
`Alter`='" . sql_escape($age) . "',
`Telefon`='" . sql_escape($tel) . "',
`DECT`='" . sql_escape($dect) . "',
`Handy`='" . sql_escape($mobile) . "',
`email`='" . sql_escape($mail) . "',
`email_shiftinfo`=" . sql_escape($email_shiftinfo ? 'TRUE' : 'FALSE') . ",
`jabber`='" . sql_escape($jabber) . "',
`Size`='" . sql_escape($tshirt_size) . "',
`Passwort`='" . sql_escape($password_hash) . "',
`kommentar`='" . sql_escape($comment) . "',
`Hometown`='" . sql_escape($hometown) . "',
`CreateDate`=NOW(),
`Sprache`='" . sql_escape($_SESSION["locale"]) . "'");
2013-11-25 21:04:58 +01:00
// Assign user-group and set password
$user_id = sql_id();
sql_query("INSERT INTO `UserGroups` SET `uid`=" . sql_escape($user_id) . ", `group_id`=-2");
set_password($user_id, $_REQUEST['password']);
2013-11-25 21:04:58 +01:00
// Assign angel-types
2012-12-26 19:53:27 +01:00
$user_angel_types_info = array();
foreach ($selected_angel_types as $selected_angel_type_id) {
sql_query("INSERT INTO `UserAngelTypes` SET `user_id`=" . sql_escape($user_id) . ", `angeltype_id`=" . sql_escape($selected_angel_type_id));
2012-12-27 03:32:15 +01:00
$user_angel_types_info[] = $angel_types[$selected_angel_type_id];
2012-12-26 19:53:27 +01:00
}
engelsystem_log("User " . $nick . " signed up as: " . join(", ", $user_angel_types_info));
2013-11-25 21:04:58 +01:00
success(_("Angel registration successful!"));
2014-05-13 14:44:04 +02:00
redirect('?');
}
}
2013-11-25 21:04:58 +01:00
2014-08-22 22:34:13 +02:00
return page_with_title(register_title(), array(
2013-11-25 21:04:58 +01:00
_("By completing this form you're registering as a Chaos-Angel. This script will create you an account in the angel task sheduler."),
$msg,
msg(),
form(array(
2014-08-23 15:35:25 +02:00
div('row', array(
div('col-md-6', array(
div('row', array(
2014-12-06 18:37:34 +01:00
div('col-sm-4', array(
2014-08-23 15:35:25 +02:00
form_text('nick', _("Nick") . ' ' . entry_required(), $nick)
)),
2014-12-06 18:37:34 +01:00
div('col-sm-8', array(
form_text('mail', _("E-Mail") . ' ' . entry_required(), $mail),
form_checkbox('email_shiftinfo', _("Please send me an email if my shifts change"), $email_shiftinfo)
2014-08-23 15:35:25 +02:00
))
)),
$enable_tshirt_size ? form_select('tshirt_size', _("Shirt size") . ' ' . entry_required(), $tshirt_sizes, $tshirt_size) : '',
div('row', array(
2014-12-06 18:37:34 +01:00
div('col-sm-6', array(
2014-08-23 15:35:25 +02:00
form_password('password', _("Password") . ' ' . entry_required())
)),
2014-12-06 18:37:34 +01:00
div('col-sm-6', array(
2014-08-23 15:35:25 +02:00
form_password('password2', _("Confirm password") . ' ' . entry_required())
))
)),
form_checkboxes('angel_types', _("What do you want to do?") . sprintf(" (<a href=\"%s\">%s</a>)", page_link_to('angeltypes') . '&action=about', _("Description of job types")), $angel_types, $selected_angel_types),
form_info("", _("Restricted angel types need will be confirmed later by an archangel. You can change your selection in the options section."))
)),
div('col-md-6', array(
div('row', array(
2014-12-06 18:37:34 +01:00
div('col-sm-4', array(
2014-08-23 15:35:25 +02:00
form_text('dect', _("DECT"), $dect)
)),
2014-12-06 18:37:34 +01:00
div('col-sm-4', array(
2014-08-23 15:35:25 +02:00
form_text('mobile', _("Mobile"), $mobile)
)),
2014-12-06 18:37:34 +01:00
div('col-sm-4', array(
2014-08-23 15:35:25 +02:00
form_text('tel', _("Phone"), $tel)
))
)),
form_text('jabber', _("Jabber"), $jabber),
div('row', array(
2014-12-06 18:37:34 +01:00
div('col-sm-6', array(
2014-08-23 15:35:25 +02:00
form_text('prename', _("First name"), $prename)
)),
2014-12-06 18:37:34 +01:00
div('col-sm-6', array(
2014-08-23 15:35:25 +02:00
form_text('lastname', _("Last name"), $lastname)
))
)),
div('row', array(
2014-12-06 18:37:34 +01:00
div('col-sm-3', array(
2014-08-23 15:35:25 +02:00
form_text('age', _("Age"), $age)
)),
2014-12-06 18:37:34 +01:00
div('col-sm-9', array(
2014-08-23 15:35:25 +02:00
form_text('hometown', _("Hometown"), $hometown)
))
)),
form_info(entry_required() . ' = ' . _("Entry required!"))
))
)),
2013-11-28 22:40:48 +01:00
// form_textarea('comment', _("Did you help at former CCC events and which tasks have you performed then?"), $comment),
2013-11-25 21:04:58 +01:00
form_submit('submit', _("Register"))
))
));
2011-06-02 00:48:29 +02:00
}
2014-08-23 15:35:25 +02:00
function entry_required() {
return '<span class="text-info glyphicon glyphicon-warning-sign"></span>';
}
2011-06-02 00:48:29 +02:00
function guest_logout() {
session_destroy();
2012-12-30 18:27:45 +01:00
redirect(page_link_to("start"));
2011-06-02 00:48:29 +02:00
}
function guest_login() {
2014-09-28 19:47:57 +02:00
global $user, $privileges;
2013-11-25 21:04:58 +01:00
$nick = "";
2013-11-25 21:04:58 +01:00
unset($_SESSION['uid']);
if (isset($_REQUEST['submit'])) {
$ok = true;
2013-11-25 21:04:58 +01:00
2013-12-27 19:45:50 +01:00
if (isset($_REQUEST['nick']) && strlen(User_validate_Nick($_REQUEST['nick'])) > 0) {
$nick = User_validate_Nick($_REQUEST['nick']);
$login_user = sql_select("SELECT * FROM `User` WHERE `Nick`='" . sql_escape($nick) . "'");
if (count($login_user) > 0) {
$login_user = $login_user[0];
2013-11-25 21:04:58 +01:00
if (isset($_REQUEST['password'])) {
if (! verify_password($_REQUEST['password'], $login_user['Passwort'], $login_user['UID'])) {
$ok = false;
2013-11-28 22:40:48 +01:00
error(_("Your password is incorrect. Please try it again."));
}
} else {
$ok = false;
2013-11-28 22:40:48 +01:00
error(_("Please enter a password."));
}
} else {
$ok = false;
2013-11-28 22:40:48 +01:00
error(_("No user was found with that Nickname. Please try again. If you are still having problems, ask an Dispatcher."));
}
} else {
$ok = false;
2013-11-28 22:40:48 +01:00
error(_("Please enter a nickname."));
}
2013-11-25 21:04:58 +01:00
if ($ok) {
$_SESSION['uid'] = $login_user['UID'];
2013-11-25 21:04:58 +01:00
$_SESSION['locale'] = $login_user['Sprache'];
redirect(page_link_to('news'));
}
}
2013-11-25 21:04:58 +01:00
2014-09-28 14:14:04 +02:00
if (in_array('register', $privileges)) {
$register_hint = join('', array(
'<p>' . _("Please sign up, if you want to help us!") . '</p>',
buttons(array(
button(page_link_to('register'), register_title() . ' &raquo;')
))
));
} else {
$register_hint = join('', array(
error(_('Registration is disabled.'), true)
));
}
2014-08-22 22:34:13 +02:00
return page_with_title(login_title(), array(
2013-11-25 21:04:58 +01:00
msg(),
2014-09-06 15:03:08 +02:00
'<div class="row"><div class="col-md-6">',
2013-11-25 21:04:58 +01:00
form(array(
form_text('nick', _("Nick"), $nick),
form_password('password', _("Password")),
2014-08-22 22:34:13 +02:00
form_submit('submit', _("Login")),
2014-03-09 16:00:13 +01:00
form_info("", buttons(array(
button(page_link_to('user_password_recovery'), _("I forgot my password"))
))),
info(_("Please note: You have to activate cookies!"), true)
2013-11-25 21:04:58 +01:00
)),
2014-08-22 22:34:13 +02:00
'</div>',
'<div class="col-md-6">',
2014-03-09 16:00:13 +01:00
'<h2>' . register_title() . '</h2>',
2014-09-28 14:14:04 +02:00
$register_hint,
2014-03-09 16:00:13 +01:00
'<h2>' . _("What can I do?") . '</h2>',
'<p>' . _("Please read about the jobs you can do to help us.") . '</p>',
buttons(array(
button(page_link_to('angeltypes') . '&action=about', _("Teams/Job description") . ' &raquo;')
2014-08-22 22:34:13 +02:00
)),
'</div></div>'
));
2011-06-02 00:48:29 +02:00
}
?>