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 $email_conversant = false;
20 foreach($links as $link) {
21 if($link['@attributes']['rel'] === NAMESPACE_DFRN)
22 $dfrn = unamp($link['@attributes']['href']);
23 if($link['@attributes']['rel'] === 'salmon')
24 $notify = unamp($link['@attributes']['href']);
25 if($link['@attributes']['rel'] === NAMESPACE_FEED)
26 $poll = unamp($link['@attributes']['href']);
27 if($link['@attributes']['rel'] === 'http://microformats.org/profile/hcard')
28 $hcard = unamp($link['@attributes']['href']);
29 if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')
30 $profile = unamp($link['@attributes']['href']);
34 // Status.Net can have more than one profile URL. We need to match the profile URL
35 // to a contact on incoming messages to prevent spam, and we won't know which one
36 // to match. So in case of two, one of them is stored as an alias. Only store URL's
37 // and not webfinger user@host aliases. If they've got more than two non-email style
38 // aliases, let's hope we're lucky and get one that matches the feed author-uri because
39 // otherwise we're screwed.
41 foreach($links as $link) {
42 if($link['@attributes']['rel'] === 'alias') {
43 if(strpos($link['@attributes']['href'],'@') === false) {
45 if($link['@attributes']['href'] !== $profile)
46 $alias = unamp($link['@attributes']['href']);
49 $profile = unamp($link['@attributes']['href']);
55 if((strpos($orig_url,'@')) && validate_email($orig_url)) {
56 $email_conversant = true;
61 // If we find a DFRN site, send our subscriber to the other person's
62 // dfrn_request page and all the other details will get sorted.
65 $ret = scrape_dfrn($dfrn);
66 if(is_array($ret) && x($ret,'dfrn-request')) {
68 $myaddr = bin2hex($a->get_baseurl() . '/profile/' . $a->user['nickname']);
70 $myaddr = bin2hex($a->user['nickname'] . '@' . $a->get_hostname());
72 goaway($ret['dfrn-request'] . "&addr=$myaddr");
82 $vcard = scrape_vcard($hcard);
84 // Google doesn't use absolute url in profile photos
86 if((x($vcard,'photo')) && substr($vcard['photo'],0,1) == '/') {
87 $h = @parse_url($hcard);
89 $vcard['photo'] = $h['scheme'] . '://' . $h['host'] . $vcard['photo'];
99 $vcard['fn'] = $vcard['nick'];
101 if((! isset($vcard)) && (! $poll)) {
103 $ret = scrape_feed($url);
105 if(count($ret) && ($ret['feed_atom'] || $ret['feed_rss'])) {
106 $poll = ((x($ret,'feed_atom')) ? unamp($ret['feed_atom']) : unamp($ret['feed_rss']));
108 require_once('simplepie/simplepie.inc');
109 $feed = new SimplePie();
110 $xml = fetch_url($poll);
112 $feed->set_raw_data($xml);
116 $vcard['photo'] = $feed->get_image_url();
117 $author = $feed->get_author();
119 $vcard['fn'] = unxmlify(trim($author->get_name()));
121 $vcard['fn'] = trim(unxmlify($author->get_email()));
122 if(strpos($vcard['fn'],'@') !== false)
123 $vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
124 $vcard['nick'] = strtolower(notags(unxmlify($vcard['fn'])));
125 if(strpos($vcard['nick'],' '))
126 $vcard['nick'] = trim(substr($vcard['nick'],0,strpos($vcard['nick'],' ')));
127 $email = unxmlify($author->get_email());
130 $item = $feed->get_item(0);
132 $author = $item->get_author();
134 $vcard['fn'] = trim(unxmlify($author->get_name()));
136 $vcard['fn'] = trim(unxmlify($author->get_email()));
137 if(strpos($vcard['fn'],'@') !== false)
138 $vcard['fn'] = substr($vcard['fn'],0,strpos($vcard['fn'],'@'));
139 $vcard['nick'] = strtolower(unxmlify($vcard['fn']));
140 if(strpos($vcard['nick'],' '))
141 $vcard['nick'] = trim(substr($vcard['nick'],0,strpos($vcard['nick'],' ')));
142 $email = unxmlify($author->get_email());
144 if(! $vcard['photo']) {
145 $rawmedia = $item->get_item_tags('http://search.yahoo.com/mrss/','thumbnail');
146 if($rawmedia && $rawmedia[0]['attribs']['']['url'])
147 $vcard['photo'] = unxmlify($rawmedia[0]['attribs']['']['url']);
151 if((! $vcard['photo']) && strlen($email))
152 $vcard['photo'] = gravatar_img($email);
159 logger('follow: poll=' . $poll . ' notify=' . $notify . ' profile=' . $profile . ' vcard=' . print_r($vcard,true));
161 $vcard['fn'] = notags($vcard['fn']);
162 $vcard['nick'] = notags($vcard['nick']);
164 // do we have enough information?
166 if(! ((x($vcard['fn'])) && ($poll) && ($profile))) {
167 notice( t('The profile address specified does not provide adequate information.') . EOL);
168 goaway($_SESSION['return_url']);
173 notice( t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL);
176 if(! x($vcard,'photo'))
177 $vcard['photo'] = $a->get_baseurl() . '/images/default-profile.jpg' ;
179 // check if we already have a contact
180 // the poll url is more reliable than the profile url, as we may have
181 // indirect links or webfinger links
183 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `poll` = '%s' LIMIT 1",
184 intval(local_user()),
190 if($r[0]['rel'] == REL_VIP) {
191 q("UPDATE `contact` SET `rel` = %d , `readonly` = 0 WHERE `id` = %d AND `uid` = %d LIMIT 1",
199 // create contact record
200 $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `alias`, `notify`, `poll`, `name`, `nick`, `photo`, `network`, `rel`, `priority`,
201 `blocked`, `readonly`, `pending` )
202 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, 0, 0, 0 ) ",
203 intval(local_user()),
204 dbesc(datetime_convert()),
210 dbesc($vcard['nick']),
211 dbesc($vcard['photo']),
218 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
224 notice( t('Unable to retrieve contact information.') . EOL);
225 goaway($_SESSION['return_url']);
230 $contact_id = $r[0]['id'];
232 require_once("Photo.php");
234 $photos = import_profile_photo($vcard['photo'],local_user(),$contact_id);
236 $r = q("UPDATE `contact` SET `photo` = '%s',
242 WHERE `id` = %d LIMIT 1
247 dbesc(datetime_convert()),
248 dbesc(datetime_convert()),
249 dbesc(datetime_convert()),
254 // pull feed and consume it, which should subscribe to the hub.
256 proc_run('php',"include/poller.php","$contact_id");
258 // create a follow slap
260 $tpl = load_view_file('view/follow_slap.tpl');
261 $slap = replace_macros($tpl, array(
262 '$name' => $a->user['username'],
263 '$profile_page' => $a->get_baseurl() . '/profile/' . $a->user['nickname'],
264 '$photo' => $a->contact['photo'],
265 '$thumb' => $a->contact['thumb'],
266 '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME),
267 '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':follow:' . random_string(),
270 '$content' => t('following'),
271 '$nick' => $a->user['nickname'],
272 '$verb' => ACTIVITY_FOLLOW,
273 '$ostat_follow' => ''
276 $r = q("SELECT `contact`.*, `user`.* FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
277 WHERE `user`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
282 if((count($r)) && (x($contact,'notify')) && (strlen($contact['notify']))) {
283 require_once('include/salmon.php');
284 slapper($r[0],$contact['notify'],$slap);
287 goaway($_SESSION['return_url']);