]> git.mxchange.org Git - friendica.git/blob - view/theme/diabook/theme.php
Merge remote branch 'upstream/master'
[friendica.git] / view / theme / diabook / theme.php
1 <?php
2
3 /*
4  * Name: Diabook
5  * Description: Diabook: report bugs and request here: http://pad.toktan.org/p/diabook or contact me : thomas_bierey@friendica.eu
6  * Version: 
7  * Author: 
8  */
9
10
11 //change css on network and profilepages
12 $cssFile = null;
13
14
15 /**
16  * prints last community activity
17  */
18
19
20  
21 function diabook_community_info(){
22         $a = get_app();
23         //right_aside at networkpages
24
25         // last 12 users
26         $aside['$lastusers_title'] = t('Last users');
27         $aside['$lastusers_items'] = array();
28         $sql_extra = "";
29         $publish = (get_config('system','publish_all') ? '' : " AND `publish` = 1 " );
30         $order = " ORDER BY `register_date` DESC ";
31
32         $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`
33                         FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` 
34                         WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d ",
35                 0,
36                 9
37         );
38         $tpl = file_get_contents( dirname(__file__).'/directory_item.tpl');
39         if(count($r)) {
40                 $photo = 'thumb';
41                 foreach($r as $rr) {
42                         $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
43                         $entry = replace_macros($tpl,array(
44                                 '$id' => $rr['id'],
45                                 '$profile-link' => $profile_link,
46                                 '$photo' => $rr[$photo],
47                                 '$alt-text' => $rr['name'],
48                         ));
49                         $aside['$lastusers_items'][] = $entry;
50                 }
51         }
52         
53         
54         // last 10 liked items
55         $aside['$like_title'] = t('Last likes');
56         $aside['$like_items'] = array();
57         $r = q("SELECT `T1`.`created`, `T1`.`liker`, `T1`.`liker-link`, `item`.* FROM 
58                         (SELECT `parent-uri`, `created`, `author-name` AS `liker`,`author-link` AS `liker-link` 
59                                 FROM `item` WHERE `verb`='http://activitystrea.ms/schema/1.0/like' GROUP BY `parent-uri` ORDER BY `created` DESC) AS T1
60                         INNER JOIN `item` ON `item`.`uri`=`T1`.`parent-uri` 
61                         WHERE `T1`.`liker-link` LIKE '%s%%' OR `item`.`author-link` LIKE '%s%%'
62                         GROUP BY `uri`
63                         ORDER BY `T1`.`created` DESC
64                         LIMIT 0,5",
65                         $a->get_baseurl(),$a->get_baseurl()
66                         );
67
68         foreach ($r as $rr) {
69                 $author  = '<a href="' . $rr['liker-link'] . '">' . $rr['liker'] . '</a>';
70                 $objauthor =  '<a href="' . $rr['author-link'] . '">' . $rr['author-name'] . '</a>';
71                 
72                 //var_dump($rr['verb'],$rr['object-type']); killme();
73                 switch($rr['verb']){
74                         case 'http://activitystrea.ms/schema/1.0/post':
75                                 switch ($rr['object-type']){
76                                         case 'http://activitystrea.ms/schema/1.0/event':
77                                                 $post_type = t('event');
78                                                 break;
79                                         default:
80                                                 $post_type = t('status');
81                                 }
82                                 break;
83                         default:
84                                 if ($rr['resource-id']){
85                                         $post_type = t('photo');
86                                         $m=array();     preg_match("/\[url=([^]]*)\]/", $rr['body'], $m);
87                                         $rr['plink'] = $m[1];
88                                 } else {
89                                         $post_type = t('status');
90                                 }
91                 }
92                 $plink = '<a href="' . $rr['plink'] . '">' . $post_type . '</a>';
93
94                 $aside['$like_items'][] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
95                 
96         }
97         
98         
99         // last 12 photos
100         $aside['$photos_title'] = t('Last photos');
101         $aside['$photos_items'] = array();
102         $r = q("SELECT `photo`.`id`, `photo`.`resource-id`, `photo`.`scale`, `photo`.`desc`, `user`.`nickname`, `user`.`username` FROM 
103                                 (SELECT `resource-id`, MAX(`scale`) as maxscale FROM `photo` 
104                                         WHERE `profile`=0 AND `contact-id`=0 AND `album` NOT IN ('Contact Photos', '%s', 'Profile Photos', '%s')
105                                                 AND `allow_cid`='' AND `allow_gid`='' AND `deny_cid`='' AND `deny_gid`='' GROUP BY `resource-id`) AS `t1`
106                                 INNER JOIN `photo` ON `photo`.`resource-id`=`t1`.`resource-id` AND `photo`.`scale` = `t1`.`maxscale`,
107                                 `user` 
108                                 WHERE `user`.`uid` = `photo`.`uid`
109                                 AND `user`.`blockwall`=0
110                                 AND `user`.`hidewall`=0
111                                 ORDER BY `photo`.`edited` DESC
112                                 LIMIT 0, 9",
113                                 dbesc(t('Contact Photos')),
114                                 dbesc(t('Profile Photos'))
115                                 );
116                 if(count($r)) {
117                 $tpl = file_get_contents( dirname(__file__).'/directory_item.tpl');
118                 foreach($r as $rr) {
119                         $photo_page = $a->get_baseurl() . '/photos/' . $rr['nickname'] . '/image/' . $rr['resource-id'];
120                         $photo_url = $a->get_baseurl() . '/photo/' .  $rr['resource-id'] . '-' . $rr['scale'] .'.jpg';
121                 
122                         $entry = replace_macros($tpl,array(
123                                 '$id' => $rr['id'],
124                                 '$profile-link' => $photo_page,
125                                 '$photo' => $photo_url,
126                                 '$alt-text' => $rr['username']." : ".$rr['desc'],
127                         ));
128
129                         $aside['$photos_items'][] = $entry;
130                 }
131         }
132         
133         $fostitJS = "javascript: (function() {
134                                         the_url = '".$a->get_baseurl($ssl_state)."/view/theme/diabook/fpostit/fpostit.php?url=' + encodeURIComponent(window.location.href) + '&title=' + encodeURIComponent(document.title) + '&text=' + encodeURIComponent(''+(window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRange().text));
135                                                 a_funct = function() {
136                                                         if (!window.open(the_url, 'fpostit', 'location=yes,links=no,scrollbars=no,toolbar=no,width=600,height=300')) location.href = the_url};
137                                                         if (/Firefox/.test(navigator.userAgent)) {setTimeout(a_funct, 0)} 
138                                                         else {a_funct()}})()" ;
139   
140    $aside['$fostitJS'] = $fostitJS;
141    
142    //right_aside FIND FRIENDS
143         if(local_user()) {
144         $nv = array();
145         $nv['directory'] = Array('directory', t('Directory'), "", "");
146         $nv['match'] = Array('match', t('Similar Interests'), "", "");
147         $nv['suggest'] = Array('suggest', t('Friend Suggestions'), "", "");
148         $nv['invite'] = Array('invite', t('Invite Friends'), "", "");
149         
150         $nv['search'] = '<form name="simple_bar" method="get" action="http://dir.friendika.com/directory">
151                                                 <span class="sbox_l"></span>
152                                                 <span class="sbox">
153                                                 <input type="text" name="search" size="13" maxlength="50">
154                                                 </span>
155                                                 <span class="sbox_r" id="srch_clear"></span>';
156         
157         $aside['$nv'] = $nv;
158         };
159    
160    //Community Page
161    if(local_user()) {
162    $page = '<div id="page-sidebar-right_aside" class="widget">
163                         <div class="title tool">
164                         <h3>'.t("Community Pages").'<a id="close_pages_icon"  onClick="close_pages()" class="icon close_box" title="close"></a></h3></div>
165                         <div id="sidebar-page-list"><ul>';
166
167         $pagelist = array();
168
169         $contacts = q("SELECT `id`, `url`, `name`, `micro`FROM `contact`
170                         WHERE `network`= 'dfrn' AND `forum` = 1 AND `uid` = %d",
171                         intval($a->user['uid'])
172         );
173
174         $pageD = array();
175
176         // Look if the profile is a community page
177         foreach($contacts as $contact) {
178                 $pageD[] = array("url"=>$contact["url"], "name"=>$contact["name"], "id"=>$contact["id"], "micro"=>$contact['micro']);
179         };
180         
181
182         $contacts = $pageD;
183
184         foreach($contacts as $contact) {
185                 $page .= '<li style="list-style-type: none;" class="tool"><img height="20" width="20" style="float: left; margin-right: 3px;" src="' . $contact['micro'] .'" alt="' . $contact['url'] . '" /> <a href="'.$a->get_baseurl().'/redir/'.$contact["id"].'" style="margin-top: 2px;" title="' . $contact['url'] . '" class="label" target="external-link">'.
186                                 $contact["name"]."</a></li>";
187         }
188         $page .= '</ul></div></div>';
189         //if (sizeof($contacts) > 0)
190                 
191                 $aside['$page'] = $page;        
192         }
193   //END Community Page          
194      
195    
196    $url = $a->get_baseurl($ssl_state);   
197    $aside['$url'] = $url;
198
199         $tpl = file_get_contents(dirname(__file__).'/communityhome.tpl');
200         $a->page['right_aside'] = replace_macros($tpl, $aside);
201         
202         
203         
204         
205 }
206
207
208 //profile_side at networkpages
209 if ($a->argv[0] === "network" && local_user()){
210
211         // USER MENU
212         if(local_user()) {
213                 
214                 $r = q("SELECT micro FROM contact WHERE uid=%d AND self=1", intval($a->user['uid']));
215                                 
216                 $userinfo = array(
217                                         'icon' => (count($r) ? $r[0]['micro']: $a->get_baseurl()."/images/default-profile-mm.jpg"),
218                                         'name' => $a->user['username'],
219                                 );      
220                 $ps = array('usermenu'=>array());
221                 $ps['usermenu']['status'] = Array('profile/' . $a->user['nickname'], t('Home'), "", t('Your posts and conversations'));
222                 $ps['usermenu']['profile'] = Array('profile/' . $a->user['nickname']. '?tab=profile', t('Profile'), "", t('Your profile page'));
223                 $ps['usermenu']['contacts'] = Array('contacts' , t('Contacts'), "", t('Your contacts'));                                
224                 $ps['usermenu']['photos'] = Array('photos/' . $a->user['nickname'], t('Photos'), "", t('Your photos'));
225                 $ps['usermenu']['events'] = Array('events/', t('Events'), "", t('Your events'));
226                 $ps['usermenu']['notes'] = Array('notes/', t('Personal notes'), "", t('Your personal photos'));
227                 $ps['usermenu']['community'] = Array('community/', t('Community'), "", "");
228                 $ps['usermenu']['pgroups'] = Array('http://dir.friendica.com/directory/forum', t('Community Pages'), "", "");
229
230                 $tpl = get_markup_template('profile_side.tpl');
231
232                 $a->page['aside'] .= replace_macros($tpl, array(
233                                 '$userinfo' => $userinfo,
234                                 '$ps' => $ps,
235                         ));
236
237         }
238         
239         $ccCookie = $_COOKIE['close_pages'] + $_COOKIE['close_helpers'] + $_COOKIE['close_services'] + $_COOKIE['close_friends'] + $_COOKIE['close_postit'] + $_COOKIE['close_lastusers'] + $_COOKIE['close_lastphotos'] + $_COOKIE['close_lastlikes'];
240         
241         if($ccCookie != "8") {
242         // COMMUNITY
243         diabook_community_info();
244         
245         // CUSTOM CSS
246         $cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook/style-network.css";
247         }
248 }
249
250
251
252 //right_aside at profile pages
253 if ($a->argv[0].$a->argv[1] === "profile".$a->user['nickname']){
254         if($ccCookie != "8") {
255         // COMMUNITY
256         diabook_community_info();
257         
258         // CUSTOM CSS
259         $cssFile = $a->get_baseurl($ssl_state)."/view/theme/diabook/style-profile.css";
260         
261         
262         }
263 }
264
265 // custom css
266 if (!is_null($cssFile)) $a->page['htmlhead'] .= sprintf('<link rel="stylesheet" type="text/css" href="%s" />', $cssFile);
267
268 //load jquery.cookie.js
269 $cookieJS = $a->get_baseurl($ssl_state)."/view/theme/diabook-blue/js/jquery.cookie.js";
270 $a->page['htmlhead'] .= sprintf('<script language="JavaScript" src="%s" />', $cookieJS);
271
272 //js scripts
273
274 $a->page['htmlhead'] .= <<< EOT
275
276 <script>
277  $(function() {
278         $('a.lightbox').fancybox(); // Select all links with lightbox class
279  });
280   
281  </script>
282
283 <script>
284
285 $("right_aside").ready(function(){
286         
287         if($.cookie('close_pages') == '1') 
288                 {
289                 document.getElementById( "close_pages" ).style.display = "none";
290                         };
291         
292         if($.cookie('close_helpers') == '1') 
293                 {
294                 document.getElementById( "close_helpers" ).style.display = "none";
295                         };
296                         
297         if($.cookie('close_services') == '1') 
298                 {
299                 document.getElementById( "close_services" ).style.display = "none";
300                         };
301                         
302         if($.cookie('close_friends') == '1') 
303                 {
304                 document.getElementById( "close_friends" ).style.display = "none";
305                         };
306         
307         if($.cookie('close_postit') == '1') 
308                 {
309                 document.getElementById( "close_postit" ).style.display = "none";
310                         };
311                         
312         if($.cookie('close_lastusers') == '1') 
313                 {
314                 document.getElementById( "close_lastusers" ).style.display = "none";
315                         };
316                         
317         if($.cookie('close_lastphotos') == '1') 
318                 {
319                 document.getElementById( "close_lastphotos" ).style.display = "none";
320                         };
321                         
322         if($.cookie('close_lastlikes') == '1') 
323                 {
324                 document.getElementById( "close_lastlikes" ).style.display = "none";
325                         };}
326
327 );
328
329 function close_pages(){
330  document.getElementById( "close_pages" ).style.display = "none";
331  $.cookie('close_pages','1', { expires: 365, path: '/' });
332  };
333  
334 function close_helpers(){
335  document.getElementById( "close_helpers" ).style.display = "none";
336   $.cookie('close_helpers','1', { expires: 365, path: '/' });
337  };
338
339 function close_services(){
340  document.getElementById( "close_services" ).style.display = "none";
341  $.cookie('close_services','1', { expires: 365, path: '/' });
342  };
343  
344 function close_friends(){
345  document.getElementById( "close_friends" ).style.display = "none";
346  $.cookie('close_friends','1', { expires: 365, path: '/' });
347  };
348
349 function close_postit(){
350  document.getElementById( "close_postit" ).style.display = "none";
351  $.cookie('close_postit','1', { expires: 365, path: '/' });
352  };
353  
354 function close_lastusers(){
355  document.getElementById( "close_lastusers" ).style.display = "none";
356  $.cookie('close_lastusers','1', { expires: 365, path: '/' });
357  };
358
359 function close_lastphotos(){
360  document.getElementById( "close_lastphotos" ).style.display = "none";
361  $.cookie('close_lastphotos','1', { expires: 365, path: '/' });
362  };
363  
364 function close_lastlikes(){
365  document.getElementById( "close_lastlikes" ).style.display = "none";
366  $.cookie('close_lastlikes','1', { expires: 365, path: '/' });
367  };
368  
369  
370
371 function restore_boxes(){
372         $.cookie('close_pages','2', { expires: 365, path: '/' });
373         $.cookie('close_helpers','2', { expires: 365, path: '/' });
374         $.cookie('close_services','2', { expires: 365, path: '/' });
375         $.cookie('close_friends','2', { expires: 365, path: '/' });
376         $.cookie('close_postit','2', { expires: 365, path: '/' });
377         $.cookie('close_lastusers','2', { expires: 365, path: '/' });
378         $.cookie('close_lastphotos','2', { expires: 365, path: '/' });
379         $.cookie('close_lastlikes','2', { expires: 365, path: '/' });
380         alert('Right-hand column was restored. Please refresh your browser');
381   };
382
383  
384 </script>
385  
386  
387 EOT;