]> git.mxchange.org Git - friendica.git/blob - include/contact_widgets.php
And some more changed lines
[friendica.git] / include / contact_widgets.php
1 <?php
2
3 use Friendica\App;
4 use Friendica\Core\Config;
5
6 function follow_widget($value = "") {
7
8         return replace_macros(get_markup_template('follow.tpl'), array(
9                 '$connect' => t('Add New Contact'),
10                 '$desc' => t('Enter address or web location'),
11                 '$hint' => t('Example: bob@example.com, http://example.com/barbara'),
12                 '$value' => $value,
13                 '$follow' => t('Connect')
14         ));
15
16 }
17
18 function findpeople_widget() {
19         require_once 'include/Contact.php';
20
21         $a = get_app();
22         $global_dir = Config::get('system', 'directory');
23
24         if (get_config('system', 'invitation_only')) {
25                 $x = get_pconfig(local_user(), 'system', 'invites_remaining');
26                 if ($x || is_site_admin()) {
27                         $a->page['aside'] .= '<div class="side-link" id="side-invite-remain">'
28                         . sprintf( tt('%d invitation available', '%d invitations available', $x), $x)
29                         . '</div>' . $inv;
30                 }
31         }
32
33         return replace_macros(get_markup_template('peoplefind.tpl'), array(
34                 '$findpeople' => t('Find People'),
35                 '$desc' => t('Enter name or interest'),
36                 '$label' => t('Connect/Follow'),
37                 '$hint' => t('Examples: Robert Morgenstein, Fishing'),
38                 '$findthem' => t('Find'),
39                 '$suggest' => t('Friend Suggestions'),
40                 '$similar' => t('Similar Interests'),
41                 '$random' => t('Random Profile'),
42                 '$inv' => t('Invite Friends'),
43                 '$directory' => t('View Global Directory'),
44                 '$global_dir' => $global_dir
45         ));
46
47 }
48
49 function unavailable_networks() {
50         $network_filter = "";
51
52         $networks = array();
53
54         if (!plugin_enabled("appnet")) {
55                 $networks[] = NETWORK_APPNET;
56         }
57
58         if (!plugin_enabled("fbpost") && !plugin_enabled("facebook")) {
59                 $networks[] = NETWORK_FACEBOOK;
60         }
61
62         if (!plugin_enabled("statusnet")) {
63                 $networks[] = NETWORK_STATUSNET;
64         }
65
66         if (!plugin_enabled("pumpio")) {
67                 $networks[] = NETWORK_PUMPIO;
68         }
69
70         if (!plugin_enabled("twitter")) {
71                 $networks[] = NETWORK_TWITTER;
72         }
73
74         if (get_config("system", "ostatus_disabled")) {
75                 $networks[] = NETWORK_OSTATUS;
76         }
77
78         if (!get_config("system", "diaspora_enabled")) {
79                 $networks[] = NETWORK_DIASPORA;
80         }
81
82         if (!plugin_enabled("pnut")) {
83                 $networks[] = NETWORK_PNUT;
84         }
85
86         if (!sizeof($networks)) {
87                 return "";
88         }
89
90         $network_filter = implode("','", $networks);
91
92         $network_filter = "AND `network` NOT IN ('$network_filter')";
93
94         return $network_filter;
95 }
96
97 function networks_widget($baseurl, $selected = '') {
98
99         $a = get_app();
100
101         if (!local_user()) {
102                 return '';
103         }
104
105         if (!feature_enabled(local_user(), 'networks')) {
106                 return '';
107         }
108
109         $extra_sql = unavailable_networks();
110
111         $r = dba::p("SELECT DISTINCT(`network`) FROM `contact` WHERE `uid` = ? AND `network` != '' $extra_sql ORDER BY `network`",
112                 local_user()
113         );
114
115         $nets = array();
116         if (dbm::is_result($r)) {
117                 require_once 'include/contact_selectors.php';
118                 while ($rr = dba::fetch($r)) {
119                         /// @TODO If 'network' is not there, this triggers an E_NOTICE
120                         if ($rr['network']) {
121                                 $nets[] = array('ref' => $rr['network'], 'name' => network_to_name($rr['network']), 'selected' => (($selected == $rr['network']) ? 'selected' : '' ));
122                         }
123                 }
124                 dba::close($r);
125         }
126
127         if (count($nets) < 2) {
128                 return '';
129         }
130
131         return replace_macros(get_markup_template('nets.tpl'), array(
132                 '$title' => t('Networks'),
133                 '$desc' => '',
134                 '$sel_all' => (($selected == '') ? 'selected' : ''),
135                 '$all' => t('All Networks'),
136                 '$nets' => $nets,
137                 '$base' => $baseurl,
138
139         ));
140 }
141
142 function fileas_widget($baseurl, $selected = '') {
143         if (! local_user()) {
144                 return '';
145         }
146
147         if (! feature_enabled(local_user(), 'filing')) {
148                 return '';
149         }
150
151         $saved = get_pconfig(local_user(), 'system', 'filetags');
152         if (! strlen($saved)) {
153                 return;
154         }
155
156         $matches = false;
157         $terms = array();
158         $cnt = preg_match_all('/\[(.*?)\]/', $saved, $matches, PREG_SET_ORDER);
159         if ($cnt) {
160                 foreach ($matches as $mtch) {
161                         $unescaped = xmlify(file_tag_decode($mtch[1]));
162                         $terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : ''));
163                 }
164         }
165
166         return replace_macros(get_markup_template('fileas_widget.tpl'), array(
167                 '$title' => t('Saved Folders'),
168                 '$desc' => '',
169                 '$sel_all' => (($selected == '') ? 'selected' : ''),
170                 '$all' => t('Everything'),
171                 '$terms' => $terms,
172                 '$base' => $baseurl,
173
174         ));
175 }
176
177 function categories_widget($baseurl, $selected = '') {
178
179         $a = get_app();
180
181         if (! feature_enabled($a->profile['profile_uid'], 'categories')) {
182                 return '';
183         }
184
185         $saved = get_pconfig($a->profile['profile_uid'], 'system', 'filetags');
186         if (! strlen($saved)) {
187                 return;
188         }
189
190         $matches = false;
191         $terms = array();
192         $cnt = preg_match_all('/<(.*?)>/', $saved, $matches, PREG_SET_ORDER);
193
194         if ($cnt) {
195                 foreach ($matches as $mtch) {
196                         $unescaped = xmlify(file_tag_decode($mtch[1]));
197                         $terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : ''));
198                 }
199         }
200
201         return replace_macros(get_markup_template('categories_widget.tpl'), array(
202                 '$title' => t('Categories'),
203                 '$desc' => '',
204                 '$sel_all' => (($selected == '') ? 'selected' : ''),
205                 '$all' => t('Everything'),
206                 '$terms' => $terms,
207                 '$base' => $baseurl,
208
209         ));
210 }
211
212 function common_friends_visitor_widget($profile_uid) {
213
214         $a = get_app();
215
216         if (local_user() == $profile_uid) {
217                 return;
218         }
219
220         $cid = $zcid = 0;
221
222         if (is_array($_SESSION['remote'])) {
223                 foreach ($_SESSION['remote'] as $visitor) {
224                         if ($visitor['uid'] == $profile_uid) {
225                                 $cid = $visitor['cid'];
226                                 break;
227                         }
228                 }
229         }
230
231         if (! $cid) {
232                 if (get_my_url()) {
233                         $r = dba::select('contact', array('id'),
234                                         array('nurl' => normalise_link(get_my_url()), 'uid' => $profile_uid), array('limit' => 1));
235                         if (dbm::is_result($r)) {
236                                 $cid = $r['id'];
237                         } else {
238                                 $r = dba::select('gcontact', array('id'), array('nurl' => normalise_link(get_my_url())), array('limit' => 1));
239                                 if (dbm::is_result($r))
240                                         $zcid = $r['id'];
241                         }
242                 }
243         }
244
245         if ($cid == 0 && $zcid == 0) {
246                 return;
247         }
248
249         require_once 'include/socgraph.php';
250
251         if ($cid) {
252                 $t = count_common_friends($profile_uid, $cid);
253         } else {
254                 $t = count_common_friends_zcid($profile_uid, $zcid);
255         }
256         if (! $t) {
257                 return;
258         }
259
260         if ($cid) {
261                 $r = common_friends($profile_uid, $cid, 0, 5, true);
262         } else {
263                 $r = common_friends_zcid($profile_uid, $zcid, 0, 5, true);
264         }
265
266         return replace_macros(get_markup_template('remote_friends_common.tpl'), array(
267                 '$desc' =>  sprintf( tt("%d contact in common", "%d contacts in common", $t), $t),
268                 '$base' => App::get_baseurl(),
269                 '$uid' => $profile_uid,
270                 '$cid' => (($cid) ? $cid : '0'),
271                 '$linkmore' => (($t > 5) ? 'true' : ''),
272                 '$more' => t('show more'),
273                 '$items' => $r
274         ));
275
276 };