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