]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/theme.php
change links from /contacts to /contact
[friendica.git] / view / theme / frio / theme.php
1 <?php
2 /*
3  * Name: frio
4  * Description: Bootstrap V3 theme. The theme is currently under construction, so it is far from finished. For further information have a look at the <a href="https://github.com/friendica/friendica/tree/develop/view/theme/frio/README.md">ReadMe</a>.
5  * Version: V.0.8.5
6  * Author: Rabuzarus <https://friendica.kommune4.de/profile/rabuzarus>
7  *
8  */
9
10 use Friendica\App;
11 use Friendica\Content\Text\Plaintext;
12 use Friendica\Content\Widget;
13 use Friendica\Core\Addon;
14 use Friendica\Core\Config;
15 use Friendica\Core\L10n;
16 use Friendica\Core\PConfig;
17 use Friendica\Core\System;
18 use Friendica\Database\DBA;
19 use Friendica\Model;
20 use Friendica\Module\Contact;
21
22 $frio = 'view/theme/frio';
23
24 global $frio;
25
26 function frio_init(App $a)
27 {
28         // disable the events module link in the profile tab
29         $a->theme_events_in_profile = false;
30         $a->videowidth = 622;
31
32         $a->setActiveTemplateEngine('smarty3');
33
34         $baseurl = System::baseUrl();
35
36         $style = PConfig::get(local_user(), 'frio', 'style');
37
38         $frio = 'view/theme/frio';
39
40         global $frio;
41
42         // if the device is a mobile device set js is_mobile
43         // variable so the js scripts can use this information
44         if ($a->is_mobile || $a->is_tablet) {
45                 $a->page['htmlhead'] .= <<< EOT
46                         <script type="text/javascript">
47                                 var is_mobile = 1;
48                         </script>
49 EOT;
50         }
51
52         if ($style == '') {
53                 $style = Config::get('frio', 'style');
54         }
55 }
56
57 function frio_install()
58 {
59         Addon::registerHook('prepare_body_final', 'view/theme/frio/theme.php', 'frio_item_photo_links');
60         Addon::registerHook('item_photo_menu', 'view/theme/frio/theme.php', 'frio_item_photo_menu');
61         Addon::registerHook('contact_photo_menu', 'view/theme/frio/theme.php', 'frio_contact_photo_menu');
62         Addon::registerHook('nav_info', 'view/theme/frio/theme.php', 'frio_remote_nav');
63         Addon::registerHook('acl_lookup_end', 'view/theme/frio/theme.php', 'frio_acl_lookup');
64         Addon::registerHook('display_item', 'view/theme/frio/theme.php', 'frio_display_item');
65
66         logger('installed theme frio');
67 }
68
69 function frio_uninstall()
70 {
71         Addon::unregisterHook('prepare_body_final', 'view/theme/frio/theme.php', 'frio_item_photo_links');
72         Addon::unregisterHook('item_photo_menu', 'view/theme/frio/theme.php', 'frio_item_photo_menu');
73         Addon::unregisterHook('contact_photo_menu', 'view/theme/frio/theme.php', 'frio_contact_photo_menu');
74         Addon::unregisterHook('nav_info', 'view/theme/frio/theme.php', 'frio_remote_nav');
75         Addon::unregisterHook('acl_lookup_end', 'view/theme/frio/theme.php', 'frio_acl_lookup');
76         Addon::unregisterHook('display_item', 'view/theme/frio/theme.php', 'frio_display_item');
77
78         logger('uninstalled theme frio');
79 }
80
81 /**
82  * @brief Replace friendica photo links hook
83  *
84  *  This function does replace the links to photos
85  *  of other friendica users. Original the photos are
86  *  linked to the photo page. Now they will linked directly
87  *  to the photo file. This function is nessesary to use colorbox
88  *  in the network stream
89  *
90  * @param App $a Unused but required by hook definition
91  * @param array $body_info The item and its html output
92  */
93 function frio_item_photo_links(App $a, &$body_info)
94 {
95         $occurence = 0;
96         $p = Plaintext::getBoundariesPosition($body_info['html'], '<a', '>');
97         while ($p !== false && ($occurence++ < 500)) {
98                 $link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']);
99                 $matches = [];
100
101                 preg_match('/\/photos\/[\w]+\/image\/([\w]+)/', $link, $matches);
102                 if ($matches) {
103                         // Replace the link for the photo's page with a direct link to the photo itself
104                         $newlink = str_replace($matches[0], "/photo/{$matches[1]}", $link);
105
106                         // Add a "quiet" parameter to any redir links to prevent the "XX welcomes YY" info boxes
107                         $newlink = preg_replace('/href="([^"]+)\/redir\/([^"]+)&url=([^"]+)"/', 'href="$1/redir/$2&quiet=1&url=$3"', $newlink);
108
109                         // Having any arguments to the link for Colorbox causes it to fetch base64 code instead of the image
110                         $newlink = preg_replace('/\/[?&]zrl=([^&"]+)/', '', $newlink);
111
112                         $body_info['html'] = str_replace($link, $newlink, $body_info['html']);
113                 }
114
115                 $p = Plaintext::getBoundariesPosition($body_info['html'], '<a', '>', $occurence);
116         }
117 }
118
119 /**
120  * @brief Replace links of the item_photo_menu hook
121  *
122  *  This function replaces the original poke and the message links
123  *  to call the addToModal javascript function so this pages can
124  *  be loaded in a bootstrap modal
125  *
126  * @param App $a Unused but required by the hook definition
127  * @param array $arr Contains item data and the original photo_menu
128  */
129 function frio_item_photo_menu(App $a, &$arr)
130 {
131         foreach ($arr['menu'] as $k => $v) {
132                 if (strpos($v, 'poke/?f=&c=') === 0 || strpos($v, 'message/new/') === 0) {
133                         $v = 'javascript:addToModal(\'' . $v . '\'); return false;';
134                         $arr['menu'][$k] = $v;
135                 }
136         }
137 }
138
139 /**
140  * @brief Replace links of the contact_photo_menu
141  *
142  *  This function replaces the original poke and the message links
143  *  to call the addToModal javascript function so this pages can
144  *  be loaded in a bootstrap modal
145  *  Additionally the profile, status and photo page links  will be changed
146  *  to don't open in a new tab if the contact is a friendica contact.
147  *
148  * @param App $a The app data
149  * @param array $args Contains contact data and the original photo_menu
150  */
151 function frio_contact_photo_menu(App $a, &$args)
152 {
153         $cid = $args['contact']['id'];
154
155         if (!empty($args['menu']['poke'])) {
156                 $pokelink = $args['menu']['poke'][1];
157         } else {
158                 $pokelink = '';
159         }
160
161         if (!empty($args['menu']['poke'])) {
162                 $pmlink = $args['menu']['pm'][1];
163         } else {
164                 $pmlink = '';
165         }
166
167         // Set the the indicator for opening the status, profile and photo pages
168         // in a new tab to false if the contact a dfrn (friendica) contact
169         // We do this because we can go back on foreign friendica pages throuhg
170         // friendicas "magic-link" which indicates a friendica user on froreign
171         // friendica servers as remote user or visitor
172         //
173         // The value for opening in a new tab is e.g. when
174         // $args['menu']['status'][2] is true. If the value of the [2] key is true
175         // and if it's a friendica contact we set it to false
176         foreach ($args['menu'] as $k => $v) {
177                 if ($k === 'status' || $k === 'profile' || $k === 'photos') {
178                         $v[2] = (($args['contact']['network'] === 'dfrn') ? false : true);
179                         $args['menu'][$k][2] = $v[2];
180                 }
181         }
182
183         // Add to pm and poke links a new key with the value 'modal'.
184         // Later we can make conditions in the corresponing templates (e.g.
185         // contact_template.tpl)
186         if (strpos($pokelink, 'poke/?f=&c=' . $cid) !== false) {
187                 $args['menu']['poke'][3] = 'modal';
188         }
189
190         if (strpos($pmlink, 'message/new/' . $cid) !== false) {
191                 $args['menu']['pm'][3] = 'modal';
192         }
193 }
194
195 /**
196  * @brief Construct remote nav menu
197  *
198  *  It creates a remote baseurl form $_SESSION for remote users and friendica
199  *  visitors. This url will be added to some of the nav links. With this behaviour
200  *  the user will come back to her/his own pages on his/her friendica server.
201  *  Not all possible links are available (notifications, administrator, manage,
202  *  notes aren't available because we have no way the check remote permissions)..
203  *  Some links will point to the local pages because the user would expect
204  *  local page (these pages are: search, community, help, apps, directory).
205  *
206  * @param App $a The App class
207  * @param array $nav The original nav menu
208  */
209 function frio_remote_nav($a, &$nav)
210 {
211         // get the homelink from $_XSESSION
212         $homelink = Model\Profile::getMyURL();
213         if (!$homelink) {
214                 $homelink = defaults($_SESSION, 'visitor_home', '');
215         }
216
217         // split up the url in it's parts (protocol,domain/directory, /profile/, nickname
218         // I'm not familiar with regex, so someone might find a better solutionen
219         //
220         // E.g $homelink = 'https://friendica.domain.com/profile/mickey' should result in an array
221         // with 0 => 'https://friendica.domain.com/profile/mickey' 1 => 'https://',
222         // 2 => 'friendica.domain.com' 3 => '/profile/' 4 => 'mickey'
223         //
224         //$server_url = preg_match('/^(https?:\/\/.*?)\/profile\//2', $homelink);
225         preg_match('/^(https?:\/\/)?(.*?)(\/profile\/)(.*)/', $homelink, $url_parts);
226
227         // Construct the server url of the visitor. So we could link back to his/her own menu.
228         // And construct a webbie (e.g. mickey@friendica.domain.com for the search in gcontact
229         // We use the webbie for search in gcontact because we don't know if gcontact table stores
230         // the right value if its http or https protocol
231         $webbie = '';
232         if (count($url_parts)) {
233                 $server_url = $url_parts[1] . $url_parts[2];
234                 $webbie = $url_parts[4] . '@' . $url_parts[2];
235         }
236
237         // since $userinfo isn't available for the hook we write it to the nav array
238         // this isn't optimal because the contact query will be done now twice
239         if (local_user()) {
240                 // empty the server url for local user because we won't need it
241                 $server_url = '';
242                 // user info
243                 $r = q("SELECT `micro` FROM `contact` WHERE `uid` = %d AND `self`", intval($a->user['uid']));
244
245                 $r[0]['photo'] = (DBA::isResult($r) ? $a->removeBaseURL($r[0]['micro']) : 'images/person-48.jpg');
246                 $r[0]['name'] = $a->user['username'];
247         } elseif (!local_user() && remote_user()) {
248                 $r = q("SELECT `name`, `nick`, `micro` AS `photo` FROM `contact` WHERE `id` = %d", intval(remote_user()));
249                 $nav['remote'] = L10n::t('Guest');
250         } elseif (Model\Profile::getMyURL()) {
251                 $r = q("SELECT `name`, `nick`, `photo` FROM `gcontact`
252                                 WHERE `addr` = '%s' AND `network` = 'dfrn'",
253                         DBA::escape($webbie));
254                 $nav['remote'] = L10n::t('Visitor');
255         } else {
256                 $r = false;
257         }
258
259         if (DBA::isResult($r)) {
260                 $nav['userinfo'] = [
261                         'icon' => (DBA::isResult($r) ? $r[0]['photo'] : 'images/person-48.jpg'),
262                         'name' => $r[0]['name'],
263                 ];
264         }
265
266         if (!local_user() && !empty($server_url)) {
267                 $nav['logout'] = [$server_url . '/logout', L10n::t('Logout'), '', L10n::t('End this session')];
268
269                 // user menu
270                 $nav['usermenu'][] = [$server_url . '/profile/' . $a->user['nickname'], L10n::t('Status'), '', L10n::t('Your posts and conversations')];
271                 $nav['usermenu'][] = [$server_url . '/profile/' . $a->user['nickname'] . '?tab=profile', L10n::t('Profile'), '', L10n::t('Your profile page')];
272                 $nav['usermenu'][] = [$server_url . '/photos/' . $a->user['nickname'], L10n::t('Photos'), '', L10n::t('Your photos')];
273                 $nav['usermenu'][] = [$server_url . '/videos/' . $a->user['nickname'], L10n::t('Videos'), '', L10n::t('Your videos')];
274                 $nav['usermenu'][] = [$server_url . '/events/', L10n::t('Events'), '', L10n::t('Your events')];
275
276                 // navbar links
277                 $nav['network'] = [$server_url . '/network', L10n::t('Network'), '', L10n::t('Conversations from your friends')];
278                 $nav['events'] = [$server_url . '/events', L10n::t('Events'), '', L10n::t('Events and Calendar')];
279                 $nav['messages'] = [$server_url . '/message', L10n::t('Messages'), '', L10n::t('Private mail')];
280                 $nav['settings'] = [$server_url . '/settings', L10n::t('Settings'), '', L10n::t('Account settings')];
281                 $nav['contacts'] = [$server_url . '/contact', L10n::t('Contacts'), '', L10n::t('Manage/edit friends and contacts')];
282                 $nav['sitename'] = Config::get('config', 'sitename');
283         }
284 }
285
286 /**
287  * @brief: Search for contacts
288  *
289  * This function search for a users contacts. The code is copied from contact search
290  * in /src/Module/Contact.php. With this function the contacts will permitted to acl_lookup()
291  * and can grabbed as json. For this we use the type="r". This is usful to to let js
292  * grab the contact data.
293  * We use this to give the data to textcomplete and have a filter function at the
294  * contact page.
295  *
296  * @param App $a The app data @TODO Unused
297  * @param array $results The array with the originals from acl_lookup()
298  */
299 function frio_acl_lookup(App $a, &$results)
300 {
301         $nets = x($_GET, 'nets') ? notags(trim($_GET['nets'])) : '';
302
303         // we introduce a new search type, r should do the same query like it's
304         // done in /src/Module/Contact.php for connections
305         if ($results['type'] !== 'r') {
306                 return;
307         }
308
309         $sql_extra = '';
310         if ($results['search']) {
311                 $search_txt = DBA::escape(protect_sprintf(preg_quote($results['search'])));
312                 $sql_extra .= " AND (`attag` LIKE '%%" . $search_txt . "%%' OR `name` LIKE '%%" . $search_txt . "%%' OR `nick` LIKE '%%" . $search_txt . "%%') ";
313         }
314
315         if ($nets) {
316                 $sql_extra .= sprintf(" AND network = '%s' ", DBA::escape($nets));
317         }
318
319         $total = 0;
320         $r = q("SELECT COUNT(*) AS `total` FROM `contact`
321                 WHERE `uid` = %d AND NOT `self` AND NOT `pending` $sql_extra ", intval($_SESSION['uid']));
322         if (DBA::isResult($r)) {
323                 $total = $r[0]['total'];
324         }
325
326         $sql_extra3 = Widget::unavailableNetworks();
327
328         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `self` AND NOT `pending` $sql_extra $sql_extra3 ORDER BY `name` ASC LIMIT %d, %d ",
329                 intval($_SESSION['uid']), intval($results['start']), intval($results['count'])
330         );
331
332         $contacts = [];
333
334         if (DBA::isResult($r)) {
335                 foreach ($r as $rr) {
336                         $contacts[] = Model\Contact::getContactTemplateVars($rr);
337                 }
338         }
339
340         $results['items'] = $contacts;
341         $results['tot'] = $total;
342 }
343
344 /**
345  * @brief Manipulate the data of the item
346  *
347  * At the moment we use this function to add some own stuff to the item menu
348  *
349  * @param App $a App $a The app data
350  * @param array $arr Array with the item and the item actions<br>
351  *     'item' => Array with item data<br>
352  *     'output' => Array with item actions<br>
353  */
354 function frio_display_item(App $a, &$arr)
355 {
356         // Add subthread to the item menu
357         $subthread = [];
358         if (
359                 local_user()
360                 && local_user() == $arr['item']['uid']
361                 && $arr['item']['parent'] == $arr['item']['id']
362                 && !$arr['item']['self'])
363         {
364                 $subthread = [
365                         'menu'   => 'follow_thread',
366                         'title'  => L10n::t('Follow Thread'),
367                         'action' => 'dosubthread(' . $arr['item']['id'] . '); return false;',
368                         'href'   => '#'
369                 ];
370         }
371         $arr['output']['subthread'] = $subthread;
372 }