CLEANUP: clean up the preferences html output a bit
[e-DoKo.git] / include / preferences.php
index 3e25d316e95378067af136b70ca2dfc36f985e97..6557330f32825e50b7c3732989bfdad727b82193 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/* make sure that we are not called from outside the scripts, 
+/* make sure that we are not called from outside the scripts,
  * use a variable defined in config.php to check this
  */
 if(!isset($HOST))
@@ -12,13 +12,16 @@ if(!$myid)
   return;
 
 /* track what got changed */
-$changed_notify          = 0;
-$changed_password = 0;
-$changed_cards   = 0;
-$changed_timezone = 0;
+$changed_notify              = 0;
+$changed_password     = 0;
+$changed_cards       = 0;
+$changed_timezone     = 0;
+$changed_autosetup    = 0;
+$changed_sorting      = 0;
+$changed_openforgames = 0;
+$changed_vacation     = 0;
 
-output_status();
-display_user_menu();
+display_user_menu($myid);
 
 /* get old infos */
 $PREF = DB_get_PREF($myid);
@@ -26,10 +29,13 @@ $timezone =  DB_get_user_timezone($myid);
 
 DB_update_user_timestamp($myid);
 
-/* does the user want to change some preferences? */
+/* does the user want to change some preferences?
+ * update the database and track changes with a variable, so that
+ * we can later highlight the changed value
+ */
 if(myisset("timezone"))
   {
-    $newtimezone=$_REQUEST['timezone'];
+    $newtimezone = $_REQUEST['timezone'];
     if($newtimezone != $timezone)
       {
        DB_query("UPDATE User SET timezone=".DB_quote_smart($newtimezone).
@@ -74,6 +80,61 @@ if(myisset("notify"))
       }
   }
 
+if(myisset("autosetup"))
+  {
+    $autosetup = $_REQUEST['autosetup'];
+    if($autosetup != $PREF['autosetup'])
+      {
+       /* check if we already have an entry for the user, if so change it, if not create new one */
+       $result = DB_query("SELECT * from User_Prefs".
+                          " WHERE user_id='$myid' AND pref_key='autosetup'" );
+       if( DB_fetch_array($result))
+         $result = DB_query("UPDATE User_Prefs SET value=".DB_quote_smart($autosetup).
+                            " WHERE user_id='$myid' AND pref_key='autosetup'" );
+       else
+         $result = DB_query("INSERT INTO User_Prefs VALUES(NULL,'$myid','autosetup',".
+                            DB_quote_smart($autosetup).")");
+       $changed_autosetup=1;
+      }
+  }
+
+if(myisset("sorting"))
+  {
+    $sorting = $_REQUEST['sorting'];
+    if($sorting != $PREF['sorting'])
+      {
+       /* check if we already have an entry for the user, if so change it, if not create new one */
+       $result = DB_query("SELECT * from User_Prefs".
+                          " WHERE user_id='$myid' AND pref_key='sorting'" );
+       if( DB_fetch_array($result))
+         $result = DB_query("UPDATE User_Prefs SET value=".DB_quote_smart($sorting).
+                            " WHERE user_id='$myid' AND pref_key='sorting'" );
+       else
+         $result = DB_query("INSERT INTO User_Prefs VALUES(NULL,'$myid','sorting',".
+                            DB_quote_smart($sorting).")");
+       $changed_sorting=1;
+      }
+  }
+
+if(myisset("open_for_games"))
+  {
+    $openforgames = $_REQUEST['open_for_games'];
+    if($openforgames != $PREF['open_for_games'])
+      {
+       /* check if we already have an entry for the user, if so change it, if not create new one */
+       $result = DB_query("SELECT * from User_Prefs".
+                          " WHERE user_id='$myid' AND pref_key='open for games'" );
+       if( DB_fetch_array($result))
+         $result = DB_query("UPDATE User_Prefs SET value=".DB_quote_smart($openforgames).
+                            " WHERE user_id='$myid' AND pref_key='open for games'" );
+       else
+         $result = DB_query("INSERT INTO User_Prefs VALUES(NULL,'$myid','open for games',".
+                            DB_quote_smart($openforgames).")");
+       $changed_openforgames=1;
+      }
+  }
+
+
 if(myisset("password0") &&  $_REQUEST["password0"]!="" )
   {
     $changed_password = 1;
@@ -84,10 +145,14 @@ if(myisset("password0") &&  $_REQUEST["password0"]!="" )
     if(!( ($password == $oldpasswd) || DB_check_recovery_passwords($oldpasswd,$email) ))
       $changed_password = -1;
 
-    /* check if new passwords are types the same twice */
+    /* check if new password has been typed in correctly */
     if($_REQUEST["password1"] != $_REQUEST["password2"] )
       $changed_password = -2;
-    
+
+    /* check if new password is long enough */
+    if(strlen($_REQUEST["password1"])<4)
+      $changed_password = -3;
+
     if($changed_password==1)
       {
        DB_query("UPDATE User SET password='".md5($_REQUEST["password1"]).
@@ -100,53 +165,113 @@ if(myisset("password0") &&  $_REQUEST["password0"]!="" )
 $PREF     = DB_get_PREF($myid);
 $timezone = DB_get_user_timezone($myid);
 
-/* output settings */
+/*
+ * output settings
+ */
 
 echo "<div class=\"user\">\n";
 echo "  <form action=\"index.php?action=prefs\" method=\"post\">\n";
 echo "  <h2>Your settings are</h2>\n";
-echo "    <table>\n";
-echo "    <tr><td>Email:                 </td><td> $email    </td></tr>\n";
-echo "    <tr><td>Timezone:              </td><td>";
+echo "    <fieldset>\n";
+echo "    <legend>Game-related</legend>\n";
+
+echo "      <table>\n";
+echo "        <tr><td>Notification:          </td><td>\n";
+echo "          <select id=\"notify\" name=\"notify\" size=\"1\">\n";
+if($PREF['email']=="emailaddict")
+  {
+    echo "            <option value=\"emailaddict\" selected=\"selected\">less emails</option>\n";
+    echo "            <option value=\"emailnonaddict\">lots of emails</option>\n";
+  }
+ else
+   {
+     echo "            <option value=\"emailaddict\">less email</option>\n";
+     echo "            <option value=\"emailnonaddict\" selected=\"selected\">lots of email</option>\n";
+   }
+echo "          </select>";
+if($changed_notify) echo "changed";
+echo " </td></tr>\n";
+
+echo "        <tr><td>Autosetup:          </td><td>\n";
+echo "          <select id=\"autosetup\" name=\"autosetup\" size=\"1\">\n";
+if($PREF['autosetup']=="yes")
+  {
+    echo "           <option value=\"yes\" selected=\"selected\">accept every game</option>\n";
+    echo "           <option value=\"no\">ask for games</option>\n";
+  }
+ else
+   {
+     echo "           <option value=\"yes\">accept every game</option>\n";
+     echo "           <option value=\"no\" selected=\"selected\">ask for games</option>\n";
+   }
+echo "         </select>";
+if($changed_autosetup) echo "changed";
+echo " </td></tr>\n";
+echo "    <tr><td>Sorting:          </td><td>\n";
+
+echo "         <select id=\"sorting\" name=\"sorting\" size=\"1\">\n";
+if($PREF['sorting']=="high-low")
+  {
+    echo "           <option value=\"high-low\" selected=\"selected\">high to low</option>\n";
+    echo "           <option value=\"low-high\">low to high</option>\n";
+  }
+ else
+   {
+     echo "           <option value=\"high-low\">high to low</option>\n";
+     echo "           <option value=\"low-high\" selected=\"selected\">low to high</option>\n";
+   }
+echo "         </select>";
+if($changed_sorting) echo "changed";
+echo " </td></tr>\n";
+echo "        <tr><td>Open for new games:          </td><td>\n";
+echo "         <select id=\"open_for_games\" name=\"open_for_games\" size=\"1\">\n";
+if($PREF['open_for_games']=="no")
+  {
+    echo "           <option value=\"yes\">yes</option>\n";
+    echo "           <option value=\"no\" selected=\"selected\">no</option>\n";
+  }
+ else /* default */
+   {
+     echo "           <option value=\"yes\" selected=\"selected\">yes</option>\n";
+     echo "           <option value=\"no\">no</option>\n";
+   }
+echo "         </select>";
+if($changed_openforgames) echo "changed";
+echo " </td></tr>\n";
+
+echo "    <tr><td>Card set:              </td><td>\n";
+echo "         <select id=\"cards\" name=\"cards\" size=\"1\">\n";
+if($PREF['cardset']=="altenburg")
+  {
+    echo "           <option value=\"altenburg\" selected=\"selected\">German cards</option>\n";
+    echo "           <option value=\"english\">English cards</option>\n";
+  }
+ else
+   {
+     echo "           <option value=\"altenburg\">German cards</option>\n";
+     echo "           <option value=\"english\" selected=\"selected\">English cards</option>\n";
+   }
+echo "         </select>";
+if($changed_cards) echo "changed";
+echo " </td></tr>\n";
+echo "      </table>\n";
+echo "    </fieldset>\n";
+echo "    <fieldset>\n";
+echo "      <legend>Personal</legend>\n";
+echo "      <table>\n";
+echo "        <tr><td>Email:                 </td><td> $email    </td></tr>\n";
+echo "        <tr><td>Timezone:              </td><td>\n";
 output_select_timezone("timezone",$timezone);
 if($changed_timezone) echo "changed";
 echo "</td></tr>\n";
-echo "    <tr><td>Notification:          </td><td>";
-
-echo "  <select id=\"notify\" name=\"notify\" size=\"1\">\n";
-      if($PREF['email']=="emailaddict")
-       {
-         echo "   <option value=\"emailaddict\" selected=\"selected\">less emails</option>\n";
-         echo "   <option value=\"emailnonaddict\">lots of emails</option>\n";
-       }
-      else
-       {
-         echo "   <option value=\"emailaddict\">less email</option>\n";
-         echo "   <option value=\"emailnonaddict\" selected=\"selected\">lots of email</option>\n";
-       }
-  echo "  </select>\n";
-if($changed_notify) echo "changed";
-echo " </td></tr>\n";    
-echo "    <tr><td>Card set:              </td><td>";
-
-echo "  <select id=\"cards\" name=\"cards\" size=\"1\">\n";
-      if($PREF['cardset']=="altenburg")
-       {
-         echo "   <option value=\"altenburg\" selected=\"selected\">German cards</option>\n";
-         echo "   <option value=\"english\">English cards</option>\n";
-       }
-      else
-       {
-         echo "   <option value=\"altenburg\">German cards</option>\n";
-         echo "   <option value=\"english\" selected=\"selected\">English cards</option>\n";
-       }
-  echo "  </select>\n";
-if($changed_cards) echo "changed";
-echo " </td></tr>\n";    
-echo "    <tr><td>Password(old):         </td><td>",
+
+echo "        <tr><td>Password(old):         </td><td>",
   "<input type=\"password\" id=\"password0\" name=\"password0\" size=\"20\" maxlength=\"30\" />";
 switch($changed_password)
   {
+  case '-3':
+    echo "The new passwords is not long enough (you need at least 4 characters).";
+    break;
   case '-2':
     echo "The new passwords don't match.";
     break;
@@ -157,21 +282,18 @@ switch($changed_password)
     echo "changed";
     break;
   }
-echo  " </td></tr>\n";
-echo "    <tr><td>Password(new):         </td><td>",
+echo " </td></tr>\n";
+echo "        <tr><td>Password(new):         </td><td>",
   "<input type=\"password\" id=\"password1\" name=\"password1\" size=\"20\" maxlength=\"30\" />",
   " </td></tr>\n";
-echo "    <tr><td>Password(new, retype): </td><td>",
+echo "        <tr><td>Password(new, retype): </td><td>",
   "<input type=\"password\" id=\"password2\" name=\"password2\" size=\"20\" maxlength=\"30\" />",
   " </td></tr>\n";
-echo "    <tr><td><input type=\"submit\" class=\"submitbutton\" name=\"passwd\" value=\"set\" /></td>",
-  "<td></td></tr>\n";
-echo "    </table>\n";
+echo "      </table>\n";
+echo "    </fieldset>\n";
+echo "    <fieldset><legend>Submit</legend><input type=\"submit\"  name=\"passwd\" value=\"set\" /></fieldset>\n";
 echo "  </form>\n";
-echo "</div>\n";    
-
-output_footer();
-DB_close();
-exit();
+echo "</div>\n";
 
+return;
 ?>
\ No newline at end of file