3 require_once('include/Contact.php');
5 function contacts_init(&$a) {
6 require_once('include/group.php');
7 if(! x($a->page,'aside'))
8 $a->page['aside'] = '';
9 $a->page['aside'] .= group_side();
11 if($a->config['register_policy'] != REGISTER_CLOSED)
12 $a->page['aside'] .= '<div class="side-invite-link-wrapper" id="side-invite-link-wrapper" ><a href="invite" class="side-invite-link" id="side-invite-link">' . t("Invite Friends") . '</a></div>';
14 $tpl = load_view_file('view/follow.tpl');
15 $a->page['aside'] .= replace_macros($tpl,array(
16 '$label' => t('Connect/Follow'),
17 '$hint' => t('Example: bob@example.com, http://example.com/barbara'),
18 '$follow' => t('Follow')
23 function contacts_post(&$a) {
28 $contact_id = intval($a->argv[1]);
32 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
37 if(! count($orig_record)) {
38 notice( t('Could not access contact record.') . EOL);
39 goaway($a->get_baseurl() . '/contacts');
43 call_hooks('contact_edit_post', $_POST);
45 $profile_id = intval($_POST['profile-assign']);
47 $r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
52 notice( t('Could not locate selected profile.') . EOL);
56 logger('contact_edit ' . print_r($_POST,true));
58 $priority = intval($_POST['poll']);
61 if($priority > 5 || $priority < 0)
64 $rating = intval($_POST['reputation']);
65 if($rating > 5 || $rating < 0)
68 $reason = notags(trim($_POST['reason']));
70 $info = escape_tags(trim($_POST['info']));
72 $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `rating` = %d, `reason` = '%s', `info` = '%s'
73 WHERE `id` = %d AND `uid` = %d LIMIT 1",
83 notice( t('Contact updated.') . EOL);
85 notice( t('Failed to update contact record.') . EOL);
92 function contacts_content(&$a) {
96 $o .= '<script> $(document).ready(function() { $(\'#nav-contacts-link\').addClass(\'nav-selected\'); });</script>';
98 $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
101 notice( t('Permission denied.') . EOL);
107 $contact_id = intval($a->argv[1]);
113 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
118 if(! count($orig_record)) {
119 notice( t('Could not access contact record.') . EOL);
120 goaway($a->get_baseurl() . '/contacts');
121 return; // NOTREACHED
124 if($cmd === 'update') {
126 // pull feed and consume it, which should subscribe to the hub.
127 proc_run('php',"include/poller.php","$contact_id");
128 goaway($a->get_baseurl() . '/contacts/' . $contact_id);
132 if($cmd === 'block') {
133 $blocked = (($orig_record[0]['blocked']) ? 0 : 1);
134 $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
140 notice( t('Contact has been ') . (($blocked) ? t('blocked') : t('unblocked')) . EOL );
142 goaway($a->get_baseurl() . '/contacts/' . $contact_id);
143 return; // NOTREACHED
146 if($cmd === 'ignore') {
147 $readonly = (($orig_record[0]['readonly']) ? 0 : 1);
148 $r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
154 notice( t('Contact has been ') . (($readonly) ? t('ignored') : t('unignored')) . EOL );
156 goaway($a->get_baseurl() . '/contacts/' . $contact_id);
157 return; // NOTREACHED
160 if($cmd === 'drop') {
162 // create an unfollow slap
164 if($orig_record[0]['network'] === 'stat') {
165 $tpl = load_view_file('view/follow_slap.tpl');
166 $slap = replace_macros($tpl, array(
167 '$name' => $a->user['username'],
168 '$profile_page' => $a->get_baseurl() . '/profile/' . $a->user['nickname'],
169 '$photo' => $a->contact['photo'],
170 '$thumb' => $a->contact['thumb'],
171 '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME),
172 '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':unfollow:' . random_string(),
175 '$content' => t('stopped following'),
176 '$nick' => $a->user['nickname'],
177 '$verb' => ACTIVITY_UNFOLLOW,
178 '$ostat_follow' => '<as:verb>http://ostatus.org/schema/1.0/unfollow</as:verb>' . "\r\n"
181 if((x($orig_record[0],'notify')) && (strlen($orig_record[0]['notify']))) {
182 require_once('include/salmon.php');
183 slapper($a->user,$orig_record[0]['notify'],$slap);
187 if($orig_record[0]['network'] === 'dfrn') {
188 require_once('include/items.php');
189 dfrn_deliver($a->user,$orig_record[0],'placeholder', 1);
193 contact_remove($contact_id);
194 notice( t('Contact has been removed.') . EOL );
195 goaway($a->get_baseurl() . '/contacts');
196 return; // NOTREACHED
200 if(($a->argc == 2) && intval($a->argv[1])) {
202 $contact_id = intval($a->argv[1]);
203 $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
204 intval(local_user()),
208 notice( t('Contact not found.') . EOL);
212 $tpl = load_view_file('view/contact_head.tpl');
213 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
215 require_once('include/contact_selectors.php');
217 $tpl = load_view_file("view/contact_edit.tpl");
219 switch($r[0]['rel']) {
221 $dir_icon = 'images/lrarrow.gif';
222 $alt_text = t('Mutual Friendship');
225 $dir_icon = 'images/larrow.gif';
226 $alt_text = t('is a fan of yours');
230 $dir_icon = 'images/rarrow.gif';
231 $alt_text = t('you are a fan of');
237 if(($r[0]['network'] === 'dfrn') && ($r[0]['rel'])) {
238 $url = "redir/{$r[0]['id']}";
239 $sparkle = ' class="sparkle" ';
246 $last_update = (($r[0]['last-update'] == '0000-00-00 00:00:00')
248 : datetime_convert('UTC',date_default_timezone_get(),$r[0]['last-update'],'D, j M Y, g:i A'));
250 if($r[0]['last-update'] !== '0000-00-00 00:00:00')
251 $last_update .= ' ' . (($r[0]['last-update'] == $r[0]['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29"));
253 $o .= replace_macros($tpl,array(
254 '$header' => t('Contact Editor'),
255 '$visit' => t('Visit $name\'s profile'),
256 '$blockunblock' => t('Block/Unblock contact'),
257 '$ignorecont' => t('Ignore contact'),
258 '$delete' => t('Delete contact'),
259 '$poll_interval' => contact_poll_interval($r[0]['priority']),
260 '$lastupdtext' => t('Last updated: '),
261 '$updpub' => t('Update public posts: '),
262 '$last_update' => $last_update,
263 '$udnow' => t('Update now'),
264 '$profile_select' => contact_profile_assign($r[0]['profile-id'],(($r[0]['network'] !== 'dfrn') ? true : false)),
265 '$contact_id' => $r[0]['id'],
266 '$block_text' => (($r[0]['blocked']) ? t('Unblock this contact') : t('Block this contact') ),
267 '$ignore_text' => (($r[0]['readonly']) ? t('Unignore this contact') : t('Ignore this contact') ),
268 '$insecure' => (($r[0]['network'] === 'stat') ? load_view_file('view/insecure_net.tpl') : ''),
269 '$info' => $r[0]['info'],
270 '$blocked' => (($r[0]['blocked']) ? '<div id="block-message">' . t('Currently blocked') . '</div>' : ''),
271 '$ignored' => (($r[0]['readonly']) ? '<div id="ignore-message">' . t('Currently ignored') . '</div>' : ''),
272 '$rating' => contact_reputation($r[0]['rating']),
273 '$reason' => $r[0]['reason'],
274 '$groups' => '', // group_selector(),
275 '$photo' => $r[0]['photo'],
276 '$name' => $r[0]['name'],
277 '$dir_icon' => $dir_icon,
278 '$alt_text' => $alt_text,
279 '$sparkle' => $sparkle,
284 $arr = array('contact' => $r[0],'output' => $o);
286 call_hooks('contact_edit', $arr);
288 return $arr['output'];
293 if(($a->argc == 2) && ($a->argv[1] === 'all'))
296 $sql_extra = " AND `blocked` = 0 ";
298 $search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : '');
300 $tpl = load_view_file("view/contacts-top.tpl");
301 $o .= replace_macros($tpl,array(
302 '$header' => t('Contacts'),
303 '$hide_url' => ((strlen($sql_extra)) ? 'contacts/all' : 'contacts' ),
304 '$hide_text' => ((strlen($sql_extra)) ? t('Show Blocked Connections') : t('Hide Blocked Connections')),
305 '$search' => $search,
306 '$finding' => (strlen($search) ? '<h4>' . t('Finding: ') . "'" . $search . "'" . '</h4>' : ""),
307 '$submit' => t('Find'),
314 $search = dbesc($search.'*');
315 $sql_extra .= ((strlen($search)) ? " AND MATCH `name` AGAINST ('$search' IN BOOLEAN MODE) " : "");
317 $sql_extra2 = ((($sort_type > 0) && ($sort_type <= REL_BUD)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : '');
320 $r = q("SELECT COUNT(*) AS `total` FROM `contact`
321 WHERE `uid` = %d AND `pending` = 0 $sql_extra $sql_extra2 ",
322 intval($_SESSION['uid']));
324 $a->set_pager_total($r[0]['total']);
326 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `pending` = 0 $sql_extra $sql_extra2 ORDER BY `name` ASC LIMIT %d , %d ",
327 intval($_SESSION['uid']),
328 intval($a->pager['start']),
329 intval($a->pager['itemspage'])
334 $tpl = load_view_file("view/contact_template.tpl");
342 $dir_icon = 'images/lrarrow.gif';
343 $alt_text = t('Mutual Friendship');
346 $dir_icon = 'images/larrow.gif';
347 $alt_text = t('is a fan of yours');
350 $dir_icon = 'images/rarrow.gif';
351 $alt_text = t('you are a fan of');
356 if(($rr['network'] === 'dfrn') && ($rr['rel'])) {
357 $url = "redir/{$rr['id']}";
358 $sparkle = ' class="sparkle" ';
366 $o .= replace_macros($tpl, array(
367 '$img_hover' => t('Visit ') . $rr['name'] . t('\'s profile'),
368 '$edit_hover' => t('Edit contact'),
370 '$alt_text' => $alt_text,
371 '$dir_icon' => $dir_icon,
372 '$thumb' => $rr['thumb'],
373 '$name' => substr($rr['name'],0,20),
374 '$sparkle' => $sparkle,
379 $o .= '<div id="contact-edit-end"></div>';