login/edit: labeled fields with login and full name
[minimedit.git] / login / edit.php
index 7ebe7b907ad2875a7653de76b6984347e99123ae..563a3a567b6771c2962ea03a08589acce23676f5 100644 (file)
@@ -1,37 +1,98 @@
 <?php
 global $User;
+if (empty($user = $User)) {
+       return;
+}
 
-if ($_POST and isset($_POST['email'])) {
-       if ($error = setmailform($_POST)) {
-               print "<p class=warn>$error</p>\n\n";
+if (!empty($User['admin']) and $Page == 'login/edit' and $Args) {
+       $username = ltrim($Args, '/');
+       $user = [
+               'dir' => "profile/$username",
+               'name' => $username,
+       ];
+       if (!is_writable($user['dir'])) {
+               print "<p class=warn>Het is niet mogelijk om de gebruiker <em>{$user['name']}</em> aan te passen.</p>\n\n";
+               return;
        }
-       else {
-               print "<p>Het e-mailadres is ingesteld.</p>\n\n";
+}
+
+$cols = [
+       'name'  => ['label' => 'volledige naam'],
+       'email' => ['label' => 'e-mailadres', 'type' => 'email'],
+];
+
+foreach ($cols as $col => &$colconf) {
+       $colpath = "{$user['dir']}/$col.txt";
+       if (file_exists($colpath)) {
+               $colconf['value'] = file_get_contents($colpath);
+       }
+       if (!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
 }
 
-function setmailform($input = [])
-{
-       global $User;
-       $setfile = "{$User['dir']}/email.txt";
-       if (!is_writable(file_exists($setfile) ? $setfile : dirname($setfile))) {
-               return "Het e-mailadres kan niet worden aangepast voor deze gebruiker.";
+$cols = [
+       'login' => ['label' => 'login', 'value' => $user['name'], 'target' => NULL],
+] + $cols;
+
+$colwarn = [];
+if ($_POST) {
+       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 (!file_put_contents($cols[$col]['target'], $val)) {
+                       $colwarn[$col] = "Fout bij opslaan.";
+               }
        }
-       if (!file_put_contents($setfile, @$_POST['email'])) {
-               return "Het e-mailadres kon niet worden opgeslagen. Probeer het later nog eens.";
+
+       if ($colwarn) {
+               print "<p class=warn>Instellingen zijn niet (volledig) opgeslagen. Probeer het later nog eens.</p>\n\n";
+       }
+       else {
+               print "<p>Alle instellingen zijn opgeslagen.</p>\n\n";
        }
-       return;
 }
 
-$usermail = @file_get_contents("{$User['dir']}/email.txt");
 ?>
-<form method="post" class="inline">
+<form method="post">
        <p>
        Geef een e-mailadres op waarmee we u kunnen bereiken indien nodig.
        Wij zullen dit adres nooit vrij- of doorgeven.
        </p>
        <p>
-       <input type="email" name="email" id="email" value="<?= htmlspecialchars($usermail) ?>" placeholder="Geen e-mailadres ingesteld" />
+<?php
+foreach ($cols as $col => &$colconf) {
+       print "\t";
+       printf('<label for="%s">%s:</label> ', $col, ucfirst($colconf['label']));
+       print "<input";
+       if (empty($colconf['target'])) print ' readonly';
+       printf(' type="%s" name="%s" id="%1$s" value="%s"',
+               @$colconf['type'] ?: 'text',
+               $col,
+               htmlspecialchars(@$colconf['value'])
+       );
+       print ' placeholder="Niet ingesteld"';
+       print " />";
+
+       if ($error = @$colwarn[$col]) {
+               print " <span class=warn>$error</span>\n";
+       }
+       print "<br />\n";
+}
+?>
        <input type="submit" value="Opslaan" />
        </p>
 </form>