X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/2f8daf093a4587ca30630d2aaa7e0a373d4afb45..73eec3eb33d28775d3aff4d87e3ab9399c001fed:/login/edit.php diff --git a/login/edit.php b/login/edit.php index 0a90e0e..fe70ef9 100644 --- a/login/edit.php +++ b/login/edit.php @@ -1,30 +1,34 @@ "profile/$username", + 'name' => $username, ]; - if (!is_writable($user['dir'])) { - print "

Het is niet mogelijk om de gebruiker {$user['name']} aan te passen.

\n\n"; - return; - } } $cols = [ + 'name' => ['label' => 'volledige naam'], 'email' => ['label' => 'e-mailadres', 'type' => 'email'], + 'avatar' => [ + 'label' => 'portretfoto', + 'type' => 'file', + ], ]; foreach ($cols as $col => &$colconf) { - $colpath = "{$user['dir']}/$col.txt"; + $filetype = @$colconf['type'] == 'file' ? 'jpg' : 'txt'; + $colpath = "{$user['dir']}/$col.$filetype"; if (file_exists($colpath)) { - $colconf['value'] = file_get_contents($colpath); + $colconf['value'] = $filetype != 'txt' ? '' : + file_get_contents($colpath); } - if (!is_writable($user['dir'])) { + if (file_exists($user['dir']) and !is_writable($user['dir'])) { continue; # locked parent directory } if (isset($colconf['value']) and !is_writable($colpath)) { @@ -33,8 +37,17 @@ foreach ($cols as $col => &$colconf) { $colconf['target'] = $colpath; # editing allowed } +$cols = [ + 'login' => ['label' => 'login', 'value' => $user['name'], 'target' => NULL], +] + $cols; + $colwarn = []; if ($_POST) { + 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 @@ -47,9 +60,39 @@ if ($_POST) { $colwarn[$col] = "Kan niet worden aangepast."; continue; } - if (!file_put_contents($cols[$col]['target'], $val)) { + 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 (!@move_uploaded_file($val['tmp_name'], $cols[$col]['target'])) { $colwarn[$col] = "Fout bij opslaan."; } + $cols[$col]['value'] = ''; + } + + if (!empty($_POST['newpass'])) { + require_once('login/pass.inc.php'); + if ($error = passform($user, $_POST)) { + $colwarn['pass'] = $error; + } } if ($colwarn) { @@ -61,29 +104,60 @@ if ($_POST) { } ?> -
+

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

-

&$colconf) { - print "\t%s: ', $col, ucfirst($colconf['label'])); + if (@$colconf['type'] == 'file' and isset($colconf['value'])) { + printf('
', + $colconf['target'], + 200, $colconf['target'] + ); + } + print "\n"; + if (@$colconf['type'] == 'file') { + printf(' accept="%s"', 'image/jpeg'); + } + print ' placeholder="Niet ingesteld"'; + print " />"; if ($error = @$colwarn[$col]) { - print "$error\n"; + print " $error\n"; } + print "
\n"; +} + +if (isset($user['pass'])) { + if ($hide = empty($_POST['newpass'])) { +?> +

Wachtwoord wijzigen

+ +
> + + + + +$error\n"; + } +?> +
+ -