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