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