3 require_once('Scrape.php');
5 function follow_post(&$a) {
8 notice( t('Permission denied.') . EOL);
9 goaway($_SESSION['return_url']);
13 $url = $orig_url = notags(trim($_POST['url']));
15 // remove ajax junk, e.g. Twitter
17 $url = str_replace('/#!/','/',$url);
19 if(! allowed_url($url)) {
20 notice( t('Disallowed profile URL.') . EOL);
21 goaway($_SESSION['return_url']);
25 $ret = probe_url($url);
27 if($ret['network'] === NETWORK_DFRN) {
29 $myaddr = bin2hex($a->get_baseurl() . '/profile/' . $a->user['nickname']);
31 $myaddr = bin2hex($a->user['nickname'] . '@' . $a->get_hostname());
33 goaway($ret['request'] . "&addr=$myaddr");
38 // do we have enough information?
40 if(! ((x($ret,'name')) && (x($ret,'poll')) && ((x($ret,'url')) || (x($ret,'addr'))))) {
41 notice( t('The profile address specified does not provide adequate information.') . EOL);
43 notice( t('No compatible communication protocols or feeds were discovered.') . EOL);
45 notice( t('An author or name was not found.') . EOL);
47 notice( t('No browser URL could be matched to this address.') . EOL);
48 if(strpos($url,'@') !== false)
49 notice('Unable to match @-style Identity Address with a known protocol or email contact');
50 goaway($_SESSION['return_url']);
54 if(! $ret['notify']) {
55 notice( t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL);
58 $writeable = ((($ret['network'] === NETWORK_OSTATUS) && ($ret['notify'])) ? 1 : 0);
59 if($ret['network'] === NETWORK_MAIL) {
63 // check if we already have a contact
64 // the poll url is more reliable than the profile url, as we may have
65 // indirect links or webfinger links
67 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `poll` = '%s' LIMIT 1",
74 if($r[0]['rel'] == REL_VIP) {
75 q("UPDATE `contact` SET `rel` = %d , `readonly` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1",
83 // create contact record
84 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `addr`, `alias`, `notify`, `poll`, `name`, `nick`, `photo`, `network`, `rel`, `priority`,
85 `writable`, `blocked`, `readonly`, `pending` )
86 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0 ) ",
88 dbesc(datetime_convert()),
92 dbesc($ret['notify']),
97 dbesc($ret['network']),
98 intval(($ret['network'] === NETWORK_MAIL) ? REL_BUD : REL_FAN),
99 intval($ret['priority']),
104 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
110 notice( t('Unable to retrieve contact information.') . EOL);
111 goaway($_SESSION['return_url']);
116 $contact_id = $r[0]['id'];
118 require_once("Photo.php");
120 $photos = import_profile_photo($ret['photo'],local_user(),$contact_id);
122 $r = q("UPDATE `contact` SET `photo` = '%s',
128 WHERE `id` = %d LIMIT 1
133 dbesc(datetime_convert()),
134 dbesc(datetime_convert()),
135 dbesc(datetime_convert()),
140 // pull feed and consume it, which should subscribe to the hub.
142 proc_run('php',"include/poller.php","$contact_id");
144 // create a follow slap
146 $tpl = get_markup_template('follow_slap.tpl');
147 $slap = replace_macros($tpl, array(
148 '$name' => $a->user['username'],
149 '$profile_page' => $a->get_baseurl() . '/profile/' . $a->user['nickname'],
150 '$photo' => $a->contact['photo'],
151 '$thumb' => $a->contact['thumb'],
152 '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME),
153 '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':follow:' . random_string(),
156 '$content' => t('following'),
157 '$nick' => $a->user['nickname'],
158 '$verb' => ACTIVITY_FOLLOW,
159 '$ostat_follow' => ''
162 $r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
163 WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
168 if((count($r)) && (x($contact,'notify')) && (strlen($contact['notify']))) {
169 require_once('include/salmon.php');
170 slapper($r[0],$contact['notify'],$slap);
173 goaway($_SESSION['return_url']);