aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Follow.php
blob: 3641330c90a0deb871a2cd0f8bd94593f150c88a (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
namespace Zotlabs\Module;


require_once('include/follow.php');


class Follow extends \Zotlabs\Web\Controller {

	function init() {
	
		if(! local_channel()) {
			return;
		}
	
		$uid = local_channel();
		$url = notags(trim($_REQUEST['url']));
		$return_url = $_SESSION['return_url'];
		$confirm = intval($_REQUEST['confirm']);
	
		$channel = \App::get_channel();

		// Warning: Do not edit the following line. The first symbol is UTF-8 &#65312; 
		$url = str_replace('@','@',$url);	

		$result = new_contact($uid,$url,$channel,true,$confirm);
		
		if($result['success'] == false) {
			if($result['message'])
				notice($result['message']);
			goaway($return_url);
		}
	
		info( t('Channel added.') . EOL);
	
		$clone = array();
		foreach($result['abook'] as $k => $v) {
			if(strpos($k,'abook_') === 0) {
				$clone[$k] = $v;
			}
		}
		unset($clone['abook_id']);
		unset($clone['abook_account']);
		unset($clone['abook_channel']);
	
		$abconfig = load_abconfig($channel['channel_id'],$clone['abook_xchan']);
		if($abconfig)
			$clone['abconfig'] = $abconfig;
	
		build_sync_packet(0 /* use the current local_channel */, array('abook' => array($clone)));
	
	
		// If we can view their stream, pull in some posts
	
		if(($result['abook']['abook_their_perms'] & PERMS_R_STREAM) || ($result['abook']['xchan_network'] === 'rss'))
			\Zotlabs\Daemon\Master::Summon(array('Onepoll',$result['abook']['abook_id']));
	
		goaway(z_root() . '/connedit/' . $result['abook']['abook_id'] . '?f=&follow=1');
	
	}
	
	function get() {
		if(! local_channel()) {
			return login();
		}
	}
}