]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/theme.php
[frio] import contacts form was missing the enctype
[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\Hook;
14 use Friendica\Core\Logger;
15 use Friendica\Core\Renderer;
16 use Friendica\Core\Session;
17 use Friendica\Database\DBA;
18 use Friendica\DI;
19 use Friendica\Model;
20 use Friendica\Model\Contact;
21 use Friendica\Module;
22 use Friendica\Util\Strings;
23
24 const FRIO_SCHEME_ACCENT_BLUE   = '#1e87c2';
25 const FRIO_SCHEME_ACCENT_RED    = '#b50404';
26 const FRIO_SCHEME_ACCENT_PURPLE = '#a54bad';
27 const FRIO_SCHEME_ACCENT_GREEN  = '#218f39';
28 const FRIO_SCHEME_ACCENT_PINK   = '#d900a9';
29
30 function frio_init(App $a)
31 {
32         global $frio;
33         $frio = 'view/theme/frio';
34
35         // disable the events module link in the profile tab
36         $a->setThemeInfoValue('events_in_profile', false);
37         $a->setThemeInfoValue('videowidth', 622);
38
39         Renderer::setActiveTemplateEngine('smarty3');
40
41         // if the device is a mobile device set js is_mobile
42         // variable so the js scripts can use this information
43         if (DI::mode()->isMobile() || DI::mode()->isMobile()) {
44                 DI::page()['htmlhead'] .= <<< EOT
45                         <script type="text/javascript">
46                                 var is_mobile = 1;
47                         </script>
48 EOT;
49         }
50 }
51
52 function frio_install()
53 {
54         Hook::register('prepare_body_final', 'view/theme/frio/theme.php', 'frio_item_photo_links');
55         Hook::register('item_photo_menu', 'view/theme/frio/theme.php', 'frio_item_photo_menu');
56         Hook::register('contact_photo_menu', 'view/theme/frio/theme.php', 'frio_contact_photo_menu');
57         Hook::register('nav_info', 'view/theme/frio/theme.php', 'frio_remote_nav');
58         Hook::register('display_item', 'view/theme/frio/theme.php', 'frio_display_item');
59
60         Logger::info('installed theme frio');
61 }
62
63 /**
64  * Replace friendica photo links hook
65  *
66  *  This function does replace the links to photos
67  *  of other friendica users. Original the photos are
68  *  linked to the photo page. Now they will linked directly
69  *  to the photo file. This function is nessesary to use colorbox
70  *  in the network stream
71  *
72  * @param App $a Unused but required by hook definition
73  * @param array $body_info The item and its html output
74  */
75 function frio_item_photo_links(App $a, &$body_info)
76 {
77         $occurence = 0;
78         $p = Plaintext::getBoundariesPosition($body_info['html'], '<a', '>');
79         while ($p !== false && ($occurence++ < 500)) {
80                 $link = substr($body_info['html'], $p['start'], $p['end'] - $p['start']);
81                 $matches = [];
82
83                 preg_match('/\/photos\/[\w]+\/image\/([\w]+)/', $link, $matches);
84                 if ($matches) {
85                         // Replace the link for the photo's page with a direct link to the photo itself
86                         $newlink = str_replace($matches[0], "/photo/{$matches[1]}", $link);
87
88                         // Add a "quiet" parameter to any redir links to prevent the "XX welcomes YY" info boxes
89                         $newlink = preg_replace('/href="([^"]+)\/redir\/([^"]+)&url=([^"]+)"/', 'href="$1/redir/$2&quiet=1&url=$3"', $newlink);
90
91                         // Having any arguments to the link for Colorbox causes it to fetch base64 code instead of the image
92                         $newlink = preg_replace('/\/[?&]zrl=([^&"]+)/', '', $newlink);
93
94                         $body_info['html'] = str_replace($link, $newlink, $body_info['html']);
95                 }
96
97                 $p = Plaintext::getBoundariesPosition($body_info['html'], '<a', '>', $occurence);
98         }
99 }
100
101 /**
102  * Replace links of the item_photo_menu hook
103  *
104  *  This function replaces the original poke and the message links
105  *  to call the addToModal javascript function so this pages can
106  *  be loaded in a bootstrap modal
107  *
108  * @param App $a Unused but required by the hook definition
109  * @param array $arr Contains item data and the original photo_menu
110  */
111 function frio_item_photo_menu(App $a, &$arr)
112 {
113         foreach ($arr['menu'] as $k => $v) {
114                 if (strpos($v, '/poke') === 0 || strpos($v, 'message/new/') === 0) {
115                         $v = 'javascript:addToModal(\'' . $v . '\'); return false;';
116                         $arr['menu'][$k] = $v;
117                 }
118         }
119 }
120
121 /**
122  * Replace links of the contact_photo_menu
123  *
124  *  This function replaces the original poke and the message links
125  *  to call the addToModal javascript function so this pages can
126  *  be loaded in a bootstrap modal
127  *  Additionally the profile, status and photo page links  will be changed
128  *  to don't open in a new tab if the contact is a friendica contact.
129  *
130  * @param App $a The app data
131  * @param array $args Contains contact data and the original photo_menu
132  */
133 function frio_contact_photo_menu(App $a, &$args)
134 {
135         $cid = $args['contact']['id'];
136
137         if (!empty($args['menu']['poke'])) {
138                 $pokelink = $args['menu']['poke'][1];
139         } else {
140                 $pokelink = '';
141         }
142
143         if (!empty($args['menu']['poke'])) {
144                 $pmlink = $args['menu']['pm'][1];
145         } else {
146                 $pmlink = '';
147         }
148
149         // Set the the indicator for opening the status, profile and photo pages
150         // in a new tab to false if the contact a dfrn (friendica) contact
151         // We do this because we can go back on foreign friendica pages throuhg
152         // friendicas "magic-link" which indicates a friendica user on froreign
153         // friendica servers as remote user or visitor
154         //
155         // The value for opening in a new tab is e.g. when
156         // $args['menu']['status'][2] is true. If the value of the [2] key is true
157         // and if it's a friendica contact we set it to false
158         foreach ($args['menu'] as $k => $v) {
159                 if ($k === 'status' || $k === 'profile' || $k === 'photos') {
160                         $v[2] = (($args['contact']['network'] === 'dfrn') ? false : true);
161                         $args['menu'][$k][2] = $v[2];
162                 }
163         }
164
165         // Add to pm and poke links a new key with the value 'modal'.
166         // Later we can make conditions in the corresponing templates (e.g.
167         // contact_template.tpl)
168         if (strpos($pokelink, $cid . '/poke') !== false) {
169                 $args['menu']['poke'][3] = 'modal';
170         }
171
172         if (strpos($pmlink, 'message/new/' . $cid) !== false) {
173                 $args['menu']['pm'][3] = 'modal';
174         }
175 }
176
177 /**
178  * Construct remote nav menu
179  *
180  *  It creates a remote baseurl form $_SESSION for remote users and friendica
181  *  visitors. This url will be added to some of the nav links. With this behaviour
182  *  the user will come back to her/his own pages on his/her friendica server.
183  *  Not all possible links are available (notifications, administrator, manage,
184  *  notes aren't available because we have no way the check remote permissions)..
185  *  Some links will point to the local pages because the user would expect
186  *  local page (these pages are: search, community, help, apps, directory).
187  *
188  * @param App   $a        The App class
189  * @param array $nav_info The original nav info array: nav, banner, userinfo, sitelocation
190  * @throws Exception
191  */
192 function frio_remote_nav(App $a, array &$nav_info)
193 {
194         // get the homelink from $_XSESSION
195         $homelink = Model\Profile::getMyURL();
196         if (!$homelink) {
197                 $homelink = Session::get('visitor_home', '');
198         }
199
200         // since $userinfo isn't available for the hook we write it to the nav array
201         // this isn't optimal because the contact query will be done now twice
202         $fields = ['id', 'url', 'avatar', 'micro', 'name', 'nick', 'baseurl', 'updated'];
203         if ($a->isLoggedIn()) {
204                 $remoteUser = Contact::selectFirst($fields, ['uid' => $a->getLoggedInUserId(), 'self' => true]);
205         } elseif (!local_user() && remote_user()) {
206                 $remoteUser = Contact::getById(remote_user(), $fields);
207                 $nav_info['nav']['remote'] = DI::l10n()->t('Guest');
208         } elseif (Model\Profile::getMyURL()) {
209                 $remoteUser = Contact::getByURL($homelink, null, $fields);
210                 $nav_info['nav']['remote'] = DI::l10n()->t('Visitor');
211         } else {
212                 $remoteUser = null;
213         }
214
215         if (DBA::isResult($remoteUser)) {
216                 $nav_info['userinfo'] = [
217                         'icon' => Contact::getMicro($remoteUser),
218                         'name' => $remoteUser['name'],
219                 ];
220                 $server_url = $remoteUser['baseurl'];
221         }
222
223         if (!local_user() && !empty($server_url) && !is_null($remoteUser)) {
224                 // user menu
225                 $nav_info['nav']['usermenu'][] = [$server_url . '/profile/' . $remoteUser['nick'], DI::l10n()->t('Status'), '', DI::l10n()->t('Your posts and conversations')];
226                 $nav_info['nav']['usermenu'][] = [$server_url . '/profile/' . $remoteUser['nick'] . '/profile', DI::l10n()->t('Profile'), '', DI::l10n()->t('Your profile page')];
227                 $nav_info['nav']['usermenu'][] = [$server_url . '/photos/' . $remoteUser['nick'], DI::l10n()->t('Photos'), '', DI::l10n()->t('Your photos')];
228                 $nav_info['nav']['usermenu'][] = [$server_url . '/profile/' . $remoteUser['nick'] . '/media', DI::l10n()->t('Media'), '', DI::l10n()->t('Your postings with media')];
229                 $nav_info['nav']['usermenu'][] = [$server_url . '/events/', DI::l10n()->t('Events'), '', DI::l10n()->t('Your events')];
230
231                 // navbar links
232                 $nav_info['nav']['network'] = [$server_url . '/network', DI::l10n()->t('Network'), '', DI::l10n()->t('Conversations from your friends')];
233                 $nav_info['nav']['events'] = [$server_url . '/events', DI::l10n()->t('Events'), '', DI::l10n()->t('Events and Calendar')];
234                 $nav_info['nav']['messages'] = [$server_url . '/message', DI::l10n()->t('Messages'), '', DI::l10n()->t('Private mail')];
235                 $nav_info['nav']['settings'] = [$server_url . '/settings', DI::l10n()->t('Settings'), '', DI::l10n()->t('Account settings')];
236                 $nav_info['nav']['contacts'] = [$server_url . '/contact', DI::l10n()->t('Contacts'), '', DI::l10n()->t('Manage/edit friends and contacts')];
237                 $nav_info['nav']['sitename'] = DI::config()->get('config', 'sitename');
238         }
239 }
240
241 function frio_display_item(App $a, &$arr)
242 {
243         // Add follow to the item menu
244         $followThread = [];
245         if (
246                 local_user()
247                 && in_array($arr['item']['uid'], [0, local_user()])
248                 && $arr['item']['gravity'] == GRAVITY_PARENT
249                 && !$arr['item']['self']
250                 && !$arr['item']['mention']
251         ) {
252                 $followThread = [
253                         'menu'   => 'follow_thread',
254                         'title'  => DI::l10n()->t('Follow Thread'),
255                         'action' => 'doFollowThread(' . $arr['item']['id'] . ');',
256                         'href'   => '#'
257                 ];
258         }
259         $arr['output']['follow_thread'] = $followThread;
260 }