]> git.mxchange.org Git - friendica.git/blob - mod/display.php
statusnet improvements
[friendica.git] / mod / display.php
1 <?php
2
3
4 function display_content(&$a) {
5
6         if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
7                 notice( t('Public access denied.') . EOL);
8                 return;
9         }
10
11         require_once("include/bbcode.php");
12         require_once('include/security.php');
13         require_once('include/conversation.php');
14
15
16         $o = '<div id="live-display"></div>' . "\r\n";
17
18         $nick = (($a->argc > 1) ? $a->argv[1] : '');
19         profile_load($a,$nick);
20
21         $item_id = (($a->argc > 2) ? intval($a->argv[2]) : 0);
22
23         if(! $item_id) {
24                 $a->error = 404;
25                 notice( t('Item not found.') . EOL);
26                 return;
27         }
28
29
30
31         $groups = array();
32
33         $contact = null;
34         $remote_contact = false;
35
36         if(remote_user()) {
37                 $contact_id = $_SESSION['visitor_id'];
38                 $groups = init_groups_visitor($contact_id);
39                 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
40                         intval($contact_id),
41                         intval($a->profile['uid'])
42                 );
43                 if(count($r)) {
44                         $contact = $r[0];
45                         $remote_contact = true;
46                 }
47         }
48
49         if(! $remote_contact) {
50                 if(local_user()) {
51                         $contact_id = $_SESSION['cid'];
52                         $contact = $a->contact;
53                 }
54         }
55
56         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1",
57                 intval($a->profile['uid'])
58         );
59         if(count($r))
60                 $a->page_contact = $r[0];
61
62         $sql_extra = permissions_sql($a->profile['uid'],$remote_contact,$groups);
63
64         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
65                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
66                 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
67                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
68                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
69                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
70                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
71                 AND `item`.`parent` = ( SELECT `parent` FROM `item` WHERE ( `id` = '%s' OR `uri` = '%s' ))
72                 $sql_extra
73                 ORDER BY `parent` DESC, `gravity` ASC, `id` ASC ",
74                 intval($a->profile['uid']),
75                 dbesc($item_id),
76                 dbesc($item_id)
77         );
78
79
80         if(count($r)) {
81
82                 if((local_user()) && (local_user() == $a->profile['uid'])) {
83                         q("UPDATE `item` SET `unseen` = 0 
84                                 WHERE `parent` = %d AND `unseen` = 1",
85                                 intval($r[0]['parent'])
86                         );
87                 }
88
89
90                 $o .= conversation($a,$r,'display', false);
91
92         }
93         else {
94                 $r = q("SELECT `id` FROM `item` WHERE `id` = '%s' OR `uri` = '%s' LIMIT 1",
95                         dbesc($item_id),
96                         dbesc($item_id)
97                 );
98                 if(count($r)) {
99                         if($r[0]['deleted']) {
100                                 notice( t('Item has been removed.') . EOL );
101                         }
102                         else {  
103                                 notice( t('Permission denied.') . EOL ); 
104                         }
105                 }
106                 else {
107                         notice( t('Item not found.') . EOL );
108                 }
109
110         }
111
112         $o .= '<div class="cc-license">' . t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.') . '</div>';
113
114         return $o;
115 }
116