]> git.mxchange.org Git - friendica.git/blob - mod/profile.php
more live update
[friendica.git] / mod / profile.php
1 <?php
2
3 if(! function_exists('profile_load')) {
4 function profile_load(&$a, $username, $profile = 0) {
5
6         if(remote_user()) {
7                 $r = q("SELECT `profile-id` FROM `contact` WHERE `id` = %d LIMIT 1",
8                         intval($_SESSION['visitor_id']));
9                 if(count($r))
10                         $profile = $r[0]['profile-id'];
11         } 
12
13         if($profile) {
14                 $profile_int = intval($profile);
15                 $sql_which = " AND `profile`.`id` = $profile_int ";
16         }
17         else
18                 $sql_which = " AND `profile`.`is-default` = 1 "; 
19
20         $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
21                 LEFT JOIN `user` ON `profile`.`uid` = `user`.`uid`
22                 WHERE `user`.`nickname` = '%s' $sql_which LIMIT 1",
23                 dbesc($username)
24         );
25
26         if(($r === false) || (! count($r))) {
27                 notice("No profile" . EOL );
28                 $a->error = 404;
29                 return;
30         }
31
32         $a->profile = $r[0];
33
34         $a->page['template'] = 'profile';
35
36         $a->page['title'] = $a->profile['name'];
37
38         return;
39 }}
40
41 function profile_init(&$a) {
42
43         if($a->argc > 1)
44                 $which = $a->argv[1];
45         else {
46                 notice("No profile" . EOL );
47                 $a->error = 404;
48                 return;
49         }
50
51         if((remote_user()) && ($a->argc > 2) && ($a->argv[2] == 'visit'))
52                 $_SESSION['is_visitor'] = 1;
53         else {
54                 unset($_SESSION['is_visitor']);
55                 unset($_SESSION['visitor_id']);
56                 if(! $_SESSION['uid'])
57                         unset($_SESSION['authenticated']);
58         }
59
60         profile_load($a,$which);
61         $a->page['htmlhead'] .= "<meta name=\"dfrn-template\" content=\"" . $a->get_baseurl() . "/profile/%s" . "\" />\r\n";
62         
63         $dfrn_pages = array('request', 'confirm', 'notify', 'poll');
64         foreach($dfrn_pages as $dfrn)
65                 $a->page['htmlhead'] .= "<link rel=\"dfrn-{$dfrn}\" href=\"".$a->get_baseurl()."/dfrn_{$dfrn}/{$which}\" />\r\n";
66
67 }
68
69
70 function profile_content(&$a, $update = false) {
71
72         require_once("include/bbcode.php");
73         require_once('include/security.php');
74
75         $groups = array();
76
77         $tab = 'posts';
78
79
80
81
82         if(remote_user()) {
83                 $contact_id = $_SESSION['visitor_id'];
84                 $groups = init_groups_visitor($contact_id);
85         }
86         if(local_user()) {
87                 $contact_id = $_SESSION['cid'];
88         }
89
90         if($update) {
91                 if(! local_user())
92                         return '';
93                 $a->profile['uid'] = $_SESSION['uid'];
94         }
95
96         else {
97                 if(x($_GET,'tab'))
98                         $tab = notags(trim($_GET['tab']));
99
100                 $tpl = file_get_contents('view/profile_tabs.tpl');
101
102                 $o .= replace_macros($tpl,array(
103                         '$url' => $a->get_baseurl() . '/' . $a->cmd
104                 ));
105
106
107                 if($tab == 'profile') {
108                         require_once('view/profile_advanced.php');
109                         return $o;
110                 }
111
112                 if(can_write_wall($a,$a->profile['profile_uid'])) {
113                         $tpl = file_get_contents('view/jot-header.tpl');
114         
115                         $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
116                         require_once('view/acl_selectors.php');
117
118                         $tpl = file_get_contents("view/jot.tpl");
119
120                         $o .= replace_macros($tpl,array(
121                                 '$baseurl' => $a->get_baseurl(),
122                                 '$return_path' => $a->cmd,
123                                 '$visitor' => (($_SESSION['uid'] == $a->profile['profile_uid']) ? 'block' : 'none'),
124                                 '$lockstate' => 'unlock',
125                                 '$acl' => (($_SESSION['uid'] == $a->profile['profile_uid']) ? populate_acl() : ''),
126                                 '$profile_uid' => $a->profile['profile_uid']
127                         ));
128                 }
129
130                 if($tab == 'posts' && (! $a->pager['start']))
131                         $o .= '<div id="live-profile"></div>' . "\r\n";
132         }
133
134         // TODO alter registration and settings and profile to update contact table when names and  photos change.  
135
136         // default permissions - anonymous user
137
138         $sql_extra = " AND `allow_cid` = '' AND `allow_gid` = '' AND `deny_cid` = '' AND `deny_gid` = '' ";
139
140         // Profile owner - everything is visible
141
142         if(local_user() && ($_SESSION['uid'] == $a->profile['uid'])) {
143                 $sql_extra = ''; 
144                 
145                 // Oh - while we're here... reset the Unseen messages
146
147                 $r = q("UPDATE `item` SET `unseen` = 0 
148                         WHERE `type` != 'remote' AND `unseen` = 1 AND `uid` = %d",
149                         intval($_SESSION['uid'])
150                 );
151
152         }
153
154         // authenticated visitor - here lie dragons
155         elseif(remote_user()) {
156                 $gs = '<<>>'; // should be impossible to match
157                 if(count($groups)) {
158                         foreach($groups as $g)
159                                 $gs .= '|<' . intval($g) . '>';
160                 } 
161                 $sql_extra = sprintf(
162                         " AND ( `allow_cid` = '' OR `allow_cid` REGEXP '<%d>' ) 
163                           AND ( `deny_cid`  = '' OR  NOT `deny_cid` REGEXP '<%d>' ) 
164                           AND ( `allow_gid` = '' OR `allow_gid` REGEXP '%s' )
165                           AND ( `deny_gid`  = '' OR NOT `deny_gid` REGEXP '%s') ",
166
167                         intval($_SESSION['visitor_id']),
168                         intval($_SESSION['visitor_id']),
169                         dbesc($gs),
170                         dbesc($gs)
171                 );
172         }
173
174         $r = q("SELECT COUNT(*) AS `total`
175                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
176                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
177                 AND `item`.`type` != 'remote' AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
178                 $sql_extra ",
179                 intval($a->profile['uid'])
180
181         );
182
183         if(count($r))
184                 $a->set_pager_total($r[0]['total']);
185
186
187         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
188                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
189                 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
190                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
191                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
192                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
193                 AND `item`.`type` != 'remote' AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
194                 $sql_extra
195                 ORDER BY `parent` DESC, `id` ASC LIMIT %d ,%d ",
196                 intval($a->profile['uid']),
197                 intval($a->pager['start']),
198                 intval($a->pager['itemspage'])
199
200         );
201
202
203         $cmnt_tpl = file_get_contents('view/comment_item.tpl');
204
205         $tpl = file_get_contents('view/wall_item.tpl');
206
207
208         if(count($r)) {
209                 foreach($r as $item) {
210                         $comment = '';
211                         $template = $tpl;
212                         
213                         $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
214                         
215                         if(can_write_wall($a,$a->profile['profile_uid'])) {
216                                 if($item['last-child']) {
217                                         $comment = replace_macros($cmnt_tpl,array(
218                                                 '$return_path' => $a->cmd,
219                                                 '$id' => $item['item_id'],
220                                                 '$parent' => $item['parent'],
221                                                 '$profile_uid' =>  $a->profile['profile_uid'],
222                                                 '$ww' => ''
223                                         ));
224                                 }
225                         }
226
227
228                         $profile_url = $item['url'];
229
230                         // 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,
231                         // I can go directly to their profile as an authenticated guest.
232
233                         if(local_user() && ($item['contact-uid'] == $_SESSION['uid']) && (strlen($item['dfrn-id'])) && (! $item['self'] ))
234                                 $profile_url = $redirect_url;
235
236                         // FIXME tryng to solve the mishmash of profile photos. 
237
238                 //      $photo = (($item['self']) ? $a->profile['photo'] : $item['photo']);
239                 //      $thumb = (($item['self']) ? $a->profile['thumb'] : $item['thumb']);
240         
241
242                         // We received this post via a remote feed. It's either a wall-to-wall or a remote comment. The author is
243                         // known to us and is reflected in the contact-id for this item. We can use the contact url or redirect rather than 
244                         // use the link in the feed. This is different than on the network page where we may not know the author.
245  
246                         $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
247                         $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']);
248                         $profile_link = $profile_url;
249
250                         $o .= replace_macros($template,array(
251                                 '$id' => $item['item_id'],
252                                 '$profile_url' => $profile_link,
253                                 '$name' => $profile_name,
254                                 '$thumb' => $profile_avatar,
255                                 '$body' => bbcode($item['body']),
256                                 '$ago' => relative_date($item['created']),
257                                 '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
258                                 '$comment' => $comment
259                         ));
260                 }
261         }
262
263         if($update) {
264                 return $o;
265         }
266                 
267         $o .= paginate($a);
268
269         return $o;
270 }