X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=e-DoKo.git;a=blobdiff_plain;f=include%2Fpreferences.php;h=43f97dfa1402ebd1e657ae9e7080ee346158f378;hp=f42ae82a19aa8385418bcba2c46fdbae47600f90;hb=85a23dab031d48ce76cadb985a0cbc671914246a;hpb=397a0a16021c28327d45568637cbcc7c05c1c27d diff --git a/include/preferences.php b/include/preferences.php index f42ae82..43f97df 100644 --- a/include/preferences.php +++ b/include/preferences.php @@ -1,10 +1,31 @@ + * + * This file is part of e-DoKo. + * + * e-DoKo is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * e-DoKo is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with e-DoKo. If not, see . + * + */ + /* make sure that we are not called from outside the scripts, * use a variable defined in config.php to check this */ if(!isset($HOST)) exit; +include_once('openid.php'); + $name = $_SESSION["name"]; $email = DB_get_email('name',$name); $myid = DB_get_userid('email',$email); @@ -20,6 +41,9 @@ $changed_autosetup = 0; $changed_sorting = 0; $changed_openforgames = 0; $changed_vacation = 0; +$changed_openid = 0; +$changed_digest = 0; +$changed_language = 0; display_user_menu($myid); @@ -33,6 +57,20 @@ DB_update_user_timestamp($myid); * update the database and track changes with a variable, so that * we can later highlight the changed value */ + +/* check for deleted openids */ +foreach($_REQUEST as $key=>$value) +{ + if(strstr($key,"delete-openid-")) + { + /* found and openid to delete */ + $DelOpenID = substr(str_replace("_",".",$key),14); + DB_DetachOpenID($DelOpenID, $myid); + $changed_openid = 1; + } +} + + if(myisset('vacation_start','vacation_stop','vacation_comment') && ($_REQUEST['vacation_start']!='' || $_REQUEST['vacation_stop']!='') ) @@ -155,6 +193,24 @@ if(myisset("notify")) } } +if(myisset("digest")) + { + $digest=$_REQUEST['digest']; + if($digest != $PREF['digest']) + { + /* 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='digest'" ); + if( DB_fetch_array($result)) + $result = DB_query("UPDATE User_Prefs SET value=".DB_quote_smart($digest). + " WHERE user_id='$myid' AND pref_key='digest'" ); + else + $result = DB_query("INSERT INTO User_Prefs VALUES(NULL,'$myid','digest',". + DB_quote_smart($digest).")"); + $changed_digest=1; + } + } + if(myisset("autosetup")) { $autosetup = $_REQUEST['autosetup']; @@ -210,7 +266,7 @@ if(myisset("open_for_games")) } -if(myisset("password0") && $_REQUEST["password0"]!="" ) +if(myisset("password0","password1","password2") && $_REQUEST["password0"]!="" && $_REQUEST["password0"]!= $_REQUEST["password1"]) { $changed_password = 1; @@ -236,6 +292,31 @@ if(myisset("password0") && $_REQUEST["password0"]!="" ) /* error output below */ } +if(myisset("openid_url") && $_REQUEST['openid_url']!='') + { + $openid_url = OpenIDUrlEncode($_REQUEST['openid_url']); + DB_AttachOpenID($openid_url, $myid); + } + +if(myisset("language")) + { + $language = $_REQUEST['language']; + if($language != $PREF['language']) + { + /* 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='language'" ); + if( DB_fetch_array($result)) + $result = DB_query("UPDATE User_Prefs SET value=".DB_quote_smart($language). + " WHERE user_id='$myid' AND pref_key='language'" ); + else + $result = DB_query("INSERT INTO User_Prefs VALUES(NULL,'$myid','language',". + DB_quote_smart($language).")"); + $changed_language = 1; + } + } + + /* get infos again in case they have changed */ $PREF = DB_get_PREF($myid); $timezone = DB_get_user_timezone($myid); @@ -278,15 +359,56 @@ if($PREF['email']=="emailaddict") echo " \n"; echo " \n"; } - else - { - echo " \n"; - echo " \n"; - } +else + { + echo " \n"; + echo " \n"; + } echo " "; if($changed_notify) echo "changed"; echo " \n"; +echo " Digest: \n"; +echo " "; +if($changed_digest) echo "changed"; +echo " \n"; + + echo " Autosetup: \n"; echo " "; switch($changed_password) @@ -386,8 +511,34 @@ echo " Password(new, retype): ", " \n"; echo " \n"; echo " \n"; +echo "
\n"; +echo " OpenID\n"; + +$openids = array(); +$openids = DB_GetOpenIDsByUser($myid); + +if(sizeof($openids)) + { + echo " \n"; + echo " \n"; + echo " \n"; + foreach ($openids as $ids) + { + $id=($ids[0]); + echo " \n"; + } + echo " \n"; + echo "
Delete?OpenId
",$id, "
\n"; + } + +echo " add OpenID: ", + ""; +if($changed_openid) + echo " Deleted some OpenIDs!
\n"; +echo "
\n"; echo "
Submit
\n"; echo " \n"; +echo "

E-DoKo uses gravatars as icons.

"; echo "\n"; return;