login/edit: create missing user profiles
[minimedit.git] / login / edit.php
index 563a3a567b6771c2962ea03a08589acce23676f5..75811ed82d2581fa1a03d0c4482d2cd6b9a89f86 100644 (file)
@@ -1,19 +1,15 @@
 <?php
 global $User;
-if (empty($user = $User)) {
+if (empty($user = &$User)) {
        return;
 }
 
 if (!empty($User['admin']) and $Page == 'login/edit' and $Args) {
-       $username = ltrim($Args, '/');
+       $username = strtolower(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;
-       }
 }
 
 $cols = [
@@ -26,7 +22,7 @@ foreach ($cols as $col => &$colconf) {
        if (file_exists($colpath)) {
                $colconf['value'] = 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)) {
@@ -41,6 +37,10 @@ $cols = [
 
 $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;
+       }
        foreach ($_POST as $col => $val) {
                if (!isset($cols[$col])) {
                        continue; # unknown
@@ -53,11 +53,18 @@ 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.";
                }
        }
 
+       if (!empty($_POST['newpass'])) {
+               require_once('login/pass.inc.php');
+               if ($error = passform($user, $_POST)) {
+                       $colwarn['pass'] = $error;
+               }
+       }
+
        if ($colwarn) {
                print "<p class=warn>Instellingen zijn niet (volledig) opgeslagen. Probeer het later nog eens.</p>\n\n";
        }
@@ -72,7 +79,6 @@ if ($_POST) {
        Geef een e-mailadres op waarmee we u kunnen bereiken indien nodig.
        Wij zullen dit adres nooit vrij- of doorgeven.
        </p>
-       <p>
 <?php
 foreach ($cols as $col => &$colconf) {
        print "\t";
@@ -92,7 +98,27 @@ foreach ($cols as $col => &$colconf) {
        }
        print "<br />\n";
 }
+
+if (isset($user['pass'])) {
+       if ($hide = empty($_POST['newpass'])) {
+?>
+       <p><a onclick="document.getElementById('pass').removeAttribute('hidden'); this.remove()">Wachtwoord wijzigen</a></p>
+<?php
+       }
+?>
+       <div id="pass"<?php if ($hide) print ' hidden'; ?>>
+               <label for="newpass">Wachtwoord:</label>
+               <input type="password" name="oldpass" value="" placeholder="Huidig wachtwoord" />
+               <input type="password" name="newpass" value="" placeholder="Nieuw wachtwoord" />
+               <input type="password" name="passconf" value="" placeholder="Nogmaals" />
+<?php
+       if ($error = @$colwarn['pass']) {
+               print " <span class=warn>$error</span>\n";
+       }
+?>
+       </div>
+<?php
+}
 ?>
        <input type="submit" value="Opslaan" />
-       </p>
 </form>