login/edit: password input from common form option
[minimedit.git] / login / edit.php
index 7ebe7b907ad2875a7653de76b6984347e99123ae..bd39f5eba87f096bcdc6a96dab172f5886f9cfec 100644 (file)
 <?php
 global $User;
+if (empty($user = &$User)) {
+       return;
+}
+
+if (!empty($User['admin']) and $Page == 'login/edit' and $Args) {
+       $username = strtolower(ltrim($Args, '/'));
+       $user = [
+               'dir' => "profile/$username",
+               'name' => $username,
+       ];
+}
+
+$cols = [
+       'name'  => ['label' => 'volledige naam'],
+       'email' => ['label' => 'e-mailadres', 'type' => 'email'],
+       'avatar' => [
+               'label' => 'portretfoto',
+               'type' => 'file',
+       ],
+];
 
-if ($_POST and isset($_POST['email'])) {
-       if ($error = setmailform($_POST)) {
-               print "<p class=warn>$error</p>\n\n";
+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);
        }
-       else {
-               print "<p>Het e-mailadres is ingesteld.</p>\n\n";
+       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'
+                       <input type="password" name="oldpass" value="" placeholder="Huidig wachtwoord" />
+                       <input type="password" id="newpass" name="newpass" value="" placeholder="Nieuw wachtwoord" />
+                       <input type="password" name="passconf" value="" placeholder="Nogmaals" />
+EOT
+               ,
+               'hide'  => 'pass',
+       ];
 }
 
-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.";
+$colwarn = [];
+if ($_POST) {
+       if (!file_exists($user['dir']) and !@mkdir($user['dir'])) {
+               print "<p class=warn>Fout bij het aanmaken van gebruikersprofiel voor <em>{$user['name']}</em>.</p>\n\n";
+               return;
        }
-       if (!file_put_contents($setfile, @$_POST['email'])) {
-               return "Het e-mailadres kon niet worden opgeslagen. Probeer het later nog eens.";
+
+       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) === 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.";
+               }
+               foreach (@glob('thumb/*/') as $thumbres) {
+                       # attempt to remove old derivations
+                       @unlink($thumbres.'/'.$cols[$col]['target']);
+               }
+               $cols[$col]['value'] = '';
+       }
+
+       if (!empty($_POST['newpass'])) {
+               require_once('login/pass.inc.php');
+               if ($error = passform($user, $_POST)) {
+                       $colwarn['newpass'] = $error;
+               }
+       }
+
+       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" enctype="multipart/form-data">
        <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" />
-       <input type="submit" value="Opslaan" />
-       </p>
+       <ul class="grid">
+<?php
+foreach ($cols as $col => &$colconf) {
+       print "\t";
+       printf('<li><label for="%s">%s:</label>', $col, ucfirst($colconf['label']));
+       if (@$colconf['type'] == 'file' and isset($colconf['value'])) {
+               printf('<a href="/%s"><img src="/thumb/%s/%s?%s" /></a><br />',
+                       $colconf['target'],
+                       200, $colconf['target'], filemtime($colconf['target'])
+               );
+       }
+
+       if ($hide = @$colconf['hide'] and empty($_POST[$col])) {
+               printf('<a onclick="%s">Wijzigen</a><span id="%s" hidden>',
+                       "document.getElementById('$hide').removeAttribute('hidden'); this.remove()",
+                       $hide
+               );
+       }
+
+       if (isset($colconf['input'])) {
+               print $colconf['input'];
+       }
+       else {
+               $attrs = [
+                       'type'        => @$colconf['type'] ?: 'text',
+                       'name'        => $col,
+                       'id'          => $col,
+                       'value'       => htmlspecialchars(@$colconf['value']),
+                       'placeholder' => "Niet ingesteld",
+                       'readonly'    => empty($colconf['target']),
+               ];
+               if (@$colconf['type'] == 'file') {
+                       $attrs['accept'] = "image/jpeg";
+               }
+
+               print '<input';
+               foreach ($attrs as $attr => $attrval) {
+                       if ($attrval === FALSE) {
+                               continue;
+                       }
+                       print ' ' . $attr;
+                       if ($attrval !== TRUE) {
+                               printf('="%s"', $attrval);
+                       }
+               }
+               print ' />';
+       }
+
+       if ($hide) {
+               print '</span>';
+       }
+
+       if ($error = @$colwarn[$col]) {
+               print " <span class=warn>$error</span>\n";
+       }
+       print "</li>\n";
+}
+?>
+       </ul>
+       <p><input type="submit" value="Opslaan" /></p>
 </form>