science-ation/db/db.update.146.php

71 lines
1.6 KiB
PHP
Raw Normal View History

2009-10-11 19:49:21 +00:00
<?
require_once ('db.update.146.user.inc.php');
2009-10-11 19:49:21 +00:00
function db_update_146_pre() {}
2009-10-11 19:49:21 +00:00
function db_update_146_handle($name, $email, $phone, $type)
{
$un = $email;
list($first, $last) = split(' ', $name, 2);
/* Find the user */
if ($email != '') {
$u = db146_user_load_by_email($email);
2009-10-11 19:49:21 +00:00
} else {
$u = false;
/* Random username */
$un = "$first$last" . db146_user_generate_password();
2009-10-11 19:49:21 +00:00
}
if ($u != false) {
2009-10-11 19:49:21 +00:00
/* Found the user */
$u['types'][] = $type;
} else {
/* Create the user */
$u = db146_user_create($type, db146_user_generate_password());
2009-10-11 19:49:21 +00:00
$u['firstname'] = $first;
$u['lastname'] = $last;
$u['email'] = $email;
$u['username'] = $un;
$u['phone'] = $phone;
}
/* Save the user */
$uid = $u['uid'];
db146_user_save($u);
2009-10-11 19:49:21 +00:00
return $u;
}
function db_update_146_post()
2009-10-11 19:49:21 +00:00
{
global $config, $pdo;
2025-02-09 17:24:37 +00:00
$q = $pdo->prepare("SELECT * FROM schools WHERE year=?");
$q->execute([$config['FAIRYEAR']]);
while ($s = $q->fetch(PDO::FETCH_ASSOC)) {
2009-10-11 19:49:21 +00:00
/* Science head */
if (trim($s['sciencehead']) != '') {
2009-10-11 19:49:21 +00:00
$u = db_update_146_handle($s['sciencehead'],
$s['scienceheademail'],
$s['scienceheadphone'],
'teacher');
if ($u != false) {
2025-02-09 17:24:37 +00:00
$stmt = $pdo->prepare("UPDATE schools SET sciencehead_uid=? WHERE id=?");
$stmt->execute([$u['uid'],$s['id']]);
2009-10-11 19:49:21 +00:00
}
}
/* Now the principal */
if (trim($s['principal']) != '') {
2009-10-11 19:49:21 +00:00
$u = db_update_146_handle($s['principal'],
$s['schoolemail'],
$s['phone'],
'principal');
if ($u != false) {
2025-02-09 17:24:37 +00:00
$stmt = $pdo->prepare("UPDATE schools SET principal_uid=? WHERE id=?");
$stmt->execute([$u['uid'],$s['id']]);
}
2009-10-11 19:49:21 +00:00
}
}
2009-10-11 19:49:21 +00:00
}
?>