]> git.mxchange.org Git - friendica.git/commitdiff
revised openid patch, added fix for Windows servers, make "is now friends with" comme...
authorFriendika <info@friendika.com>
Thu, 23 Dec 2010 22:40:32 +0000 (14:40 -0800)
committerFriendika <info@friendika.com>
Thu, 23 Dec 2010 22:40:32 +0000 (14:40 -0800)
boot.php
mod/dfrn_confirm.php
mod/profile.php
mod/settings.php
update.php
view/en/settings.tpl
view/it/settings.tpl

index 3a6886fd116767b68495c7307404f2c944d847db..57d69a5e1fb1480ca435ff9cba7e89a6bceac56d 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -2,7 +2,7 @@
 
 set_time_limit(0);
 
-define ( 'BUILD_ID',               1028   );
+define ( 'BUILD_ID',               1029   );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.0'  );
 
 define ( 'EOL',                    "<br />\r\n"     );
@@ -211,14 +211,14 @@ class App {
                if((x($_SERVER,'QUERY_STRING')) && substr($_SERVER['QUERY_STRING'],0,2) === "q=")
                        $this->query_string = substr($_SERVER['QUERY_STRING'],2);
                if(x($_GET,'q'))
-                       $this->cmd = trim($_GET['q'],'/');
+                       $this->cmd = trim($_GET['q'],'/\\');
 
                /** 
                 * Figure out if we are running at the top of a domain
                 * or in a sub-directory and adjust accordingly
                 */
 
-               $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/');
+               $path = trim(dirname($_SERVER['SCRIPT_NAME']),'/\\');
                if(isset($path) && strlen($path) && ($path != $this->path))
                        $this->path = $path;
 
index 6b9bbfe133b1adf22137ab05e5bf08c2255cc3cb..41e0771afa6f5b2fe3269517775cdb4004604011 100644 (file)
@@ -432,6 +432,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                                $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $contact['url'] . '" />' . "\n");
                                $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $contact['thumb'] . '" />' . "\n");
                                $arr['object'] .= '</link></object>' . "\n";
+                               $arr['last-child'] = 1;
 
                                $i = item_store($arr);
 
index a5f440f434356bf0940f2e494d0947c65e558443..ffc41280565405d60d769dcff5043449ab2c368f 100644 (file)
@@ -18,38 +18,19 @@ function profile_init(&$a) {
 
        profile_load($a,$which,$profile);
 
-       if (!get_config('system','no_openid') && $a->profile['openid']!=""){
-               if (!isset($a->profile['openidserver'])){
-                       logger('friendika user table must be updated. `openidserver` field is missing');
-               } else {
-                       if ($a->profile['openidserver']==''){
-                               require_once('library/openid.php');
-                               $openid = new LightOpenID;
-                               $openid->identity = $a->profile['openid'];
-                               $a->profile['openidserver'] = $openid->discover($openid->identity);
-
-                               q("UPDATE `user` SET `openidserver` = '%s' WHERE `uid` = %d LIMIT 1",
-                                       dbesc($a->profile['openidserver']),
-                                       intval($a->profile['uid'])
-                               );
-                       }
-               
-               
-                       $a->page['htmlhead'] .= '<link rel="openid.server" href="'.$a->profile['openidserver'].'" />'. "\r\n";
-                       $a->page['htmlhead'] .= '<link rel="openid.delegate" href="'.$a->profile['openid'].'" />'. "\r\n";
-               }                   
-
+       if(x($a->profile,'openidserver'))                               
+               $a->page['htmlhead'] .= '<link rel="openid.server" href="' . $a->profile['openidserver'] . '" />' . "\r\n";
+       if(x($a->profile,'openid')) {
+               $delegate = ((strstr($a->profile['openid'],'://')) ? $a->profile['openid'] : 'http://' . $a->profile['openid']);
+               $a->page['htmlhead'] .= '<link rel="openid.delegate" href="' . $delegate . '" />' . "\r\n";
        }
 
-       
-
        $a->page['htmlhead'] .= '<meta name="dfrn-global-visibility" content="' . (($a->profile['net-publish']) ? 'true' : 'false') . '" />' . "\r\n" ;
        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/dfrn_poll/' . $which .'" />' . "\r\n" ;
        $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . (($a->path) ? '/' . $a->path : ''));
        $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '" />' . "\r\n";
        header('Link: <' . $a->get_baseurl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
-  
-       
+       
        $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
        foreach($dfrn_pages as $dfrn)
                $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".$a->get_baseurl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
index af826c53b70c51cd269a9d497c0bd16525b9a404..6eaa17ad0c8e3f72ab6d2450c8b86a91243941fd 100644 (file)
@@ -109,12 +109,17 @@ function settings_post(&$a) {
        $str_group_deny    = perms2str($_POST['group_deny']);
        $str_contact_deny  = perms2str($_POST['contact_deny']);
 
-       $openidserver="";
-       if ($openid != $a->user['openid'] && isset($a->user['openidserver'])){
-               $openidserver = ", `openidserver` = ''";
+       $openidserver = $a->user['openidserver'];
+
+       if($openid != $a->user['openid']) {
+               logger('updating openidserver');
+               require_once('library/openid.php');
+               $open_id_obj = new LightOpenID;
+               $open_id_obj->identity = $openid;
+               $openidserver = $open_id_obj->discover($open_id_obj->identity);
        }
 
-       $r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s',  `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `theme` = '%s', `maxreq` = %d".$openidserver."  WHERE `uid` = %d LIMIT 1",
+       $r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s',  `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `theme` = '%s', `maxreq` = %d, `openidserver` = '%s'  WHERE `uid` = %d LIMIT 1",
                        dbesc($username),
                        dbesc($email),
                        dbesc($openid),
@@ -129,6 +134,7 @@ function settings_post(&$a) {
                        intval($allow_location),
                        dbesc($theme),
                        intval($maxreq),
+                       dbesc($openidserver),
                        intval(local_user())
        );
        if($r)
@@ -306,7 +312,9 @@ function settings_content(&$a) {
                '$pagetype' => $pagetype
        ));
 
-       call_hooks('settings_page',$o);
+       call_hooks('settings_form',$o);
+
+       $o .= '</form>' . "\r\n";
 
        return $o;
 
index 5807f1a34e2985d5b18d7f8d4e4ed350bb840cbf..d6fab4255a286e633b374ef4d2d1b027299469aa 100644 (file)
@@ -270,3 +270,7 @@ function update_1027() {
        ) ENGINE = MYISAM DEFAULT CHARSET=utf8 ");
 }
 
+function update_1028() {
+       q("ALTER TABLE `user` ADD `openidserver` text NOT NULL AFTER `deny_gid` ");
+}
+
index aea46374234c05e1e10c259aa19f36d05e9690d4..b29398a625688fdfa8e1d0e1dc683805e2cda7e7 100644 (file)
@@ -159,7 +159,3 @@ $pagetype
 </div>
 
 
-</form>
-
-
-
index f50a2151bbac8f010cc5452045da02a0770cebf2..eeea36dfdb863202bb6348f0aa2036ceb307673f 100644 (file)
@@ -159,7 +159,3 @@ $pagetype
 </div>
 
 
-</form>
-
-
-