aboutsummaryrefslogtreecommitdiffstats
path: root/mod/zfinger.php
blob: 1da5c613b466366cf0fcf3632bf30bc09199b14d (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
<?php

function zfinger_init(&$a) {

	require_once('include/zot.php');

	$ret = array('success' => false, 'message' => '');
	if(argc() > 1) {
		$zguid = argv(1);
		
		if(strlen($zguid)) {
			$r = q("select * from entity where entity_global_id = '%s' limit 1",
				dbesc($zguid)
			);
			if(! ($r && count($r))) {
				$ret['message'] = 'Item not found.';
				json_return_and_die($ret);
			}
		}
		else {
			$ret['message'] = 'Invalid request';
			json_return_and_die($ret);
		}
		$e = $r[0];

		$ret['success'] = true;

		$ret['guid'] = $e['entity_global_id'];
		$ret['url'] = z_root();
		$ret['primary'] = (bool) $e['entity_primary'];
		$ret['callback'] = z_root() . '/' . 'post';
		$ret['sitekey'] = get_config('system','pubkey');
		$ret['key'] = $e['pubkey'];

		$ret['hubs'] = array();
		$x = zot_get_hubloc(array($e['entity_global_id']));
		if($x && count($x)) {
			foreach($x as $hub) {
				$ret['hubs'][] = array(
						'primary' => (bool) $hub['hubloc_primary'],
						'url' => $hub['hubloc_url'],
						'callback' => $hub['hubloc_callback'],
						'sitekey' => $hub['hubloc_sitekey']
				);
			}
		}

			// more stuff

		json_return_and_die($ret);

	}
	$ret['message'] = 'Item not found.';
	json_return_and_die($ret);
}