X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/311a57decd4bc956cbffdfdb35276895e382f8b1..89f040eddafe00b282a8e4c3db7bc3ca649ac77c:/login/edit.php?ds=sidebyside diff --git a/login/edit.php b/login/edit.php index 116abb3..017a562 100644 --- a/login/edit.php +++ b/login/edit.php @@ -1,57 +1,195 @@ "profile/$username", + 'name' => $username, + ]; +} + +$cols = [ + 'name' => [ + 'label' => 'volledige naam', + 'explain' => "Alleen zichtbaar voor andere leden.", + ], + 'email' => [ + 'label' => 'e-mailadres', + 'type' => 'email', + 'explain' => "Voor contact van of met deze site. Wij zullen dit nooit vrij- of doorgeven.", + ], + 'avatar' => [ + 'label' => 'portretfoto', + 'type' => 'file', + ], +]; + +foreach ($cols as $col => &$colconf) { + $filetype = @$colconf['type'] == 'file' ? 'jpg' : 'txt'; + $colpath = "{$user['dir']}/$col.$filetype"; + if (file_exists($colpath)) { + $colconf['value'] = $filetype != 'txt' ? '' : + file_get_contents($colpath); + } + if (file_exists($user['dir']) and !is_writable($user['dir'])) { + continue; # locked parent directory + } + if (isset($colconf['value']) and !is_writable($colpath)) { + continue; # locked column file + } + $colconf['target'] = $colpath; # editing allowed +} + +$cols = [ + 'login' => ['label' => 'login', 'value' => $user['name'], 'target' => NULL], +] + $cols; + +if (isset($user['pass'])) { + $cols['newpass'] = [ + 'label' => 'wachtwoord', + 'input' => <<<'EOT' + + + +EOT + , + 'hide' => 'pass', + ]; +} -$error = NULL; +$colwarn = []; if ($_POST) { - foreach (@$_POST['email'] as $val) { - if (!isset($val)) { + if (!file_exists($user['dir']) and !@mkdir($user['dir'])) { + print "

Fout bij het aanmaken van gebruikersprofiel voor {$user['name']}.

\n\n"; + return; + } + + foreach ($_POST as $col => $val) { + if (!isset($cols[$col])) { + continue; # unknown + } + if (isset($cols[$col]['value']) and $cols[$col]['value'] === $val) { + continue; # unaltered + } + $cols[$col]['value'] = $val; # update form value + if (empty($cols[$col]['target'])) { + $colwarn[$col] = "Kan niet worden aangepast."; continue; } - if (!is_writable(file_exists($setfile) ? $setfile : $userdir)) { - $error = "Kan niet worden aangepast."; + if (file_put_contents($cols[$col]['target'], $val) === FALSE) { + $colwarn[$col] = "Fout bij opslaan."; + } + } + + foreach ($_FILES as $col => $val) { + if (!isset($cols[$col]) and @$cols[$col]['type'] == 'file') { + continue; # unknown + } + switch ($val['error']) { + case UPLOAD_ERR_OK: + break; + case UPLOAD_ERR_NO_FILE: + continue 2; # current + default: + $colwarn[$col] = "Afbeelding niet goed ontvangen."; + continue 2; + } + if (empty($cols[$col]['target'])) { + $colwarn[$col] = "Kan niet worden aangepast."; continue; } - if (!file_put_contents($setfile, $val)) { - $error = "Fout bij opslaan."; + if (!@move_uploaded_file($val['tmp_name'], $cols[$col]['target'])) { + $colwarn[$col] = "Fout bij opslaan."; } + foreach (@glob('thumb/*/') as $thumbres) { + # attempt to remove old derivations + @unlink($thumbres.'/'.$cols[$col]['target']); + } + $cols[$col]['value'] = ''; } - if ($error) { + if (!empty($_POST['newpass'])) { + require_once('login/pass.inc.php'); + if ($error = passform($user, $_POST)) { + $colwarn['newpass'] = $error; + } + } + + if ($colwarn) { print "

Instellingen zijn niet (volledig) opgeslagen. Probeer het later nog eens.

\n\n"; } else { - print "

Het e-mailadres is ingesteld.

\n\n"; + print "

Alle instellingen zijn opgeslagen.

\n\n"; } } -$usermail = @file_get_contents($setfile); ?> -
-

- Geef een e-mailadres op waarmee we u kunnen bereiken indien nodig. - Wij zullen dit adres nooit vrij- of doorgeven. -

-

+ +

+