aboutsummaryrefslogtreecommitdiffstats
path: root/mod/follow.php
blob: 05d1eee73af0c110ca8d9033b0b9936cd228fdba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php

require_once('Scrape.php');
require_once('include/follow.php');

function follow_init(&$a) {

	if(! local_user()) {
		notice( t('Permission denied.') . EOL);
		goaway($_SESSION['return_url']);
		// NOTREACHED
	}

	$uid = local_user();
	$url = notags(trim($_REQUEST['url']));
	$return_url = $_SESSION['return_url'];


	$result = new_contact($uid,$url,$a->get_channel(),true);

	if($result['success'] == false) {
		if($result['message'])
			notice($result['message']);
		goaway($return_url);
	}

	info( t('Channel added') . EOL);

	if(strstr($return_url,'channel'))
		goaway($a->get_baseurl() . '/channel/' . $result['channel_id']);

	goaway($return_url);
	// NOTREACHED
}