2009-10-22 19:54:53 +00:00
|
|
|
<?
|
2025-01-29 03:30:48 +00:00
|
|
|
// 149 user inc works fine here
|
|
|
|
include 'db.update.149.user.inc.php';
|
2009-10-22 19:54:53 +00:00
|
|
|
|
2025-01-29 03:30:48 +00:00
|
|
|
global $pdo;
|
|
|
|
|
|
|
|
function db_update_149_post()
|
|
|
|
{
|
|
|
|
$q = $pdo->prepare('SELECT * FROM emergencycontact');
|
2024-12-12 16:24:45 -05:00
|
|
|
$q->execute();
|
2025-01-29 03:30:48 +00:00
|
|
|
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
|
|
|
|
$relation = strtolower(trim($r->relation));
|
|
|
|
if (levenshtein('parent', $relation) < 2 ||
|
|
|
|
levenshtein('mother', $relation) < 3 ||
|
|
|
|
levenshtein('father', $relation) < 3 ||
|
|
|
|
levenshtein('mom', $relation) < 2 ||
|
|
|
|
levenshtein('mere', $relation) < 3 ||
|
|
|
|
levenshtein('dad', $relation) < 2 ||
|
|
|
|
levenshtein('pere', $relation) < 3 ||
|
|
|
|
strstr($relation, 'dad') ||
|
|
|
|
strstr($relation, 'mom') ||
|
|
|
|
(strstr($relation, 'mother') && !strstr($relation, 'grand')) ||
|
|
|
|
(strstr($relation, 'father') && !strstr($relation, 'grand'))) {
|
2009-10-22 19:54:53 +00:00
|
|
|
echo "YES: $r->firstname $r->lastname with relation '$r->relation' looks like a parent\n";
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($r->email) {
|
2009-10-22 19:54:53 +00:00
|
|
|
echo " Have email, creating record - $r->email\n";
|
2025-01-29 03:30:48 +00:00
|
|
|
if ($u = db149_user_load_by_email($r->email)) {
|
2009-10-22 20:31:52 +00:00
|
|
|
echo " This user already exists, linking parent record to their account!\n";
|
2025-01-29 03:30:48 +00:00
|
|
|
if (!in_array('parent', $u['types']))
|
|
|
|
db149_user_create('parent', $r->email, $u);
|
2009-10-22 20:31:52 +00:00
|
|
|
else
|
|
|
|
echo " - Already a parent, no need to re-add!\n";
|
2025-01-29 03:30:48 +00:00
|
|
|
} else {
|
2009-10-22 19:54:53 +00:00
|
|
|
echo "Creating new parent record\n";
|
2025-01-29 03:30:48 +00:00
|
|
|
$u = db149_user_create('parent', $r->email);
|
|
|
|
$u['firstname'] = $r->firstname;
|
|
|
|
$u['lastname'] = $r->lastname;
|
|
|
|
$u['phonehome'] = $r->phone1;
|
|
|
|
$u['phonework'] = $r->phone2;
|
2009-10-22 20:46:12 +00:00
|
|
|
db149_user_save($u);
|
2009-10-22 19:54:53 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
} else {
|
2009-10-22 20:31:52 +00:00
|
|
|
echo " No email address, skipping\n";
|
2009-10-22 19:54:53 +00:00
|
|
|
}
|
2025-01-29 03:30:48 +00:00
|
|
|
} else {
|
2009-10-22 19:54:53 +00:00
|
|
|
echo "NO: $r->firstname $r->lastname with relation '$r->relation' is NOT a parent\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|