]> git.mxchange.org Git - friendica.git/blobdiff - mod/profile.php
fix intro bug
[friendica.git] / mod / profile.php
index f3ec57329cacc037380383a84b29e2dbe70ac3e4..bb7357e5b7e70e1aefd9bb94cee15160c24cf2d5 100644 (file)
@@ -1,11 +1,7 @@
 <?php
 
 if(! function_exists('profile_load')) {
-function profile_load(&$a,$uid,$profile = 0) {
-
-       $sql_extra = (($uid) && (intval($uid)) 
-               ? " WHERE `user`.`uid` = " . intval($uid) 
-               : " WHERE `user`.`nickname` = '" . dbesc($uid) . "' " ); 
+function profile_load(&$a, $username, $profile = 0) {
 
        if(remote_user()) {
                $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
@@ -23,11 +19,12 @@ function profile_load(&$a,$uid,$profile = 0) {
 
        $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
                LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
-               $sql_extra $sql_which LIMIT 1"
+               WHERE `user`.`nickname` = '%s' $sql_which LIMIT 1",
+               dbesc($username)
        );
 
        if(($r === false) || (! count($r))) {
-               $_SESSION['sysmsg'] .= "No profile" . EOL ;
+               notice("No profile" . EOL );
                $a->error = 404;
                return;
        }
@@ -46,7 +43,7 @@ function profile_init(&$a) {
        if($a->argc > 1)
                $which = $a->argv[1];
        else {
-               $_SESSION['sysmsg'] .= "No profile" . EOL ;
+               notice("No profile" . EOL );
                $a->error = 404;
                return;
        }
@@ -75,7 +72,6 @@ function profile_content(&$a) {
        require_once("include/bbcode.php");
        require_once('include/security.php');
 
-       $a->page['htmlhead'] .= '<script type="text/javascript" src="include/jquery.js" ></script>';
        $groups = array();
 
        $tab = 'posts';
@@ -95,19 +91,14 @@ function profile_content(&$a) {
                $groups = init_groups_visitor($contact_id);
        }
        if(local_user()) {
-               $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
-                       $_SESSION['uid']
-               );
-               if(count($r))
-                       $contact_id = $r[0]['id'];
+               $contact_id = $_SESSION['cid'];
        }
 
        if($tab == 'profile') {
-
                require_once('view/profile_advanced.php');
-
                return $o;
        }
+
        if(can_write_wall($a,$a->profile['profile_uid'])) {
                $tpl = file_get_contents('view/jot-header.tpl');
        
@@ -127,21 +118,25 @@ function profile_content(&$a) {
        }
 
 
-       // TODO 
-       // Alter registration and settings 
-       // and profile to update contact table when names and  photos change.  
-       // work on item_display and can_write_wall
-
-       // Add comments. 
+       // TODO alter registration and settings and profile to update contact table when names and  photos change.  
 
-       // default - anonymous user
+       // default permissions - anonymous user
 
        $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
 
        // Profile owner - everything is visible
 
-       if(local_user() && ($_SESSION['uid'] == $a->profile['profile_uid']))
+       if(local_user() && ($_SESSION['uid'] == $a->profile['profile_uid'])) {
                $sql_extra = ''; 
+               
+               // Oh - while we're here... reset the Unseen messages
+
+               $r = q("UPDATE `item` SET `unseen` = 0 
+                       WHERE `type` != 'remote' AND `unseen` = 1 AND `uid` = %d",
+                       intval($_SESSION['uid'])
+               );
+
+       }
 
        // authenticated visitor - here lie dragons
        elseif(remote_user()) {
@@ -152,9 +147,9 @@ function profile_content(&$a) {
                } 
                $sql_extra = sprintf(
                        " AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' ) 
-                       AND ( `deny_cid` = '' OR  NOT `deny_cid` REGEXP '<%d>' ) 
-                       AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
-                       AND ( `deny_gid` = '' OR NOT `deny_gid` REGEXP '%s') ",
+                         AND ( `deny_cid`  = '' OR  NOT `deny_cid` REGEXP '<%d>' ) 
+                         AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
+                         AND ( `deny_gid`  = '' OR NOT `deny_gid` REGEXP '%s') ",
 
                        intval($_SESSION['visitor_id']),
                        intval($_SESSION['visitor_id']),
@@ -166,7 +161,7 @@ function profile_content(&$a) {
        $r = q("SELECT COUNT(*) AS `total`
                FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
                WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
-               AND `contact`.`blocked` = 0 
+               AND `item`.`type` != 'remote' AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
                $sql_extra ",
                intval($a->profile['uid'])
 
@@ -174,7 +169,7 @@ function profile_content(&$a) {
 
        if(count($r))
                $a->set_pager_total($r[0]['total']);
-dbg(2);
+
 
        $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
                `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
@@ -182,7 +177,7 @@ dbg(2);
                `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
                FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
                WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
-               AND `item`.`type` != 'remote' AND `contact`.`blocked` = 0 
+               AND `item`.`type` != 'remote' AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
                $sql_extra
                ORDER BY `parent` DESC, `id` ASC LIMIT %d ,%d ",
                intval($a->profile['uid']),
@@ -195,40 +190,23 @@ dbg(2);
        $cmnt_tpl = file_get_contents('view/comment_item.tpl');
 
        $tpl = file_get_contents('view/wall_item.tpl');
-       $wallwall = file_get_contents('view/wallwall_item.tpl');
 
 
        if(count($r)) {
                foreach($r as $item) {
                        $comment = '';
                        $template = $tpl;
-                       $commentww = '';
-                       if(($item['parent'] == $item['item_id']) && (! $item['self'])) {
-                               if($item['type'] == 'wall') {
-                                       $owner_url = $a->contact['url'];
-                                       $owner_photo = $a->contact['thumb'];
-                                       $owner_name = $a->contact['name'];
-                                       $template = $wallwall;
-                                       $commentww = 'ww';      
-                               }
-                               if($item['type'] == 'remote' && ($item['owner-link'] != $item['remote-link'])) {
-                                       $owner_url = $item['owner-link'];
-                                       $owner_photo = $item['owner-avatar'];
-                                       $owner_name = $item['owner-name'];
-                                       $template = $wallwall;
-                                       $commentww = 'ww';      
-                               }
-                       }
-
-
-
+                       
+                       $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
+                       
                        if(can_write_wall($a,$a->profile['profile_uid'])) {
                                if($item['last-child']) {
                                        $comment = replace_macros($cmnt_tpl,array(
+                                               '$return_path' => $a->cmd,
                                                '$id' => $item['item_id'],
                                                '$parent' => $item['parent'],
                                                '$profile_uid' =>  $a->profile['profile_uid'],
-                                               '$ww' => $commentww
+                                               '$ww' => ''
                                        ));
                                }
                        }
@@ -236,47 +214,40 @@ dbg(2);
 
                        $profile_url = $item['url'];
 
+                       // This is my profile but I'm not the author of this post/comment. If it's somebody that's a fan or mutual friend,
+                       // I can go directly to their profile as an authenticated guest.
+
                        if(local_user() && ($item['contact-uid'] == $_SESSION['uid']) && (strlen($item['dfrn-id'])) && (! $item['self'] ))
-                               $profile_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
+                               $profile_url = $redirect_url;
+
+                       // FIXME tryng to solve the mishmash of profile photos. 
 
                //      $photo = (($item['self']) ? $a->profile['photo'] : $item['photo']);
                //      $thumb = (($item['self']) ? $a->profile['thumb'] : $item['thumb']);
        
-                       $profile_name = ((strlen($item['remote-name'])) ? $item['remote-name'] : $item['name']);
-                       $profile_link = ((strlen($item['remote-link'])) ? $item['remote-link'] : $profile_url);
-                       $profile_avatar = ((strlen($item['remote-avatar'])) ? $item['remote-avatar'] : $item['thumb']);
-
 
+                       // We received this post via a remote feed. It's either a wall-to-wall or a remote comment. The author is
+                       // known to us and is reflected in the contact-id for this item. We can use the contact url or redirect rather than 
+                       // use the link in the feed. This is different than on the network page where we may not know the author.
+                       $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
+                       $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']);
+                       $profile_link = $profile_url;
 
                        $o .= replace_macros($template,array(
-                       '$id' => $item['item_id'],
-                       '$profile_url' => $profile_link,
-                       '$name' => $profile_name,
-                       '$thumb' => $profile_avatar,
-                       '$body' => bbcode($item['body']),
-                       '$ago' => relative_date($item['created']),
-                       '$indent' => (($item['parent'] != $item['item_id']) ? 'comment-' : ''),
-                       '$owner_url' => $owner_url,
-                       '$owner_photo' => $owner_photo,
-                       '$owner_name' => $owner_name,
-                       '$comment' => $comment
-               ));
-
-
-
-
-
-
-
-
-
-
+                               '$id' => $item['item_id'],
+                               '$profile_url' => $profile_link,
+                               '$name' => $profile_name,
+                               '$thumb' => $profile_avatar,
+                               '$body' => bbcode($item['body']),
+                               '$ago' => relative_date($item['created']),
+                               '$indent' => (($item['parent'] != $item['item_id']) ? 'comment-' : ''),
+                               '$comment' => $comment
+                       ));
                }
        }
 
        $o .= paginate($a);
 
        return $o;
-
-
 }
\ No newline at end of file