aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Search_ac.php
blob: 4e936d97b9d685b5eb506616c43ff573ca2334db (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
namespace Zotlabs\Module;

// Autocomplete for saved searches. Should probably be put in the same place as the other autocompletes

class Search_ac extends \Zotlabs\Web\Controller {

	function init(){
		if(!local_channel())
			killme();
	
	
		$start = (x($_REQUEST,'start')?$_REQUEST['start']:0);
		$count = (x($_REQUEST,'count')?$_REQUEST['count']:100);
		$search = (x($_REQUEST,'search')?$_REQUEST['search']:"");
	
		if(x($_REQUEST,'query') && strlen($_REQUEST['query'])) {
			$search = $_REQUEST['query'];
		}
	
		// Priority to people searches
	
		if ($search) {
			$people_sql_extra = protect_sprintf(" AND `xchan_name` LIKE '%". dbesc($search) . "%' ");
			$tag_sql_extra = protect_sprintf(" AND term LIKE '%". dbesc($search) . "%' ");
		}
	
	
		$r = q("SELECT `abook_id`, `xchan_name`, `xchan_photo_s`, `xchan_url`, `xchan_addr` FROM `abook` left join xchan on abook_xchan = xchan_hash WHERE abook_channel = %d 
			$people_sql_extra
			ORDER BY `xchan_name` ASC ",
			intval(local_channel())
		);
	
		$results = array();
		if($r) {
			foreach($r as $g) {
				$results[] = array(
					"photo"    => $g['xchan_photo_s'],
					"name"     => '@'.$g['xchan_name'],
					"id"       => $g['abook_id'],
					"link"     => $g['xchan_url'],
					"label"    => '',
					"nick"     => '',
				);
			}
		}
	
		$r = q("select distinct term, tid, url from term where ttype in ( %d, %d ) $tag_sql_extra group by term order by term asc",
			intval(TERM_HASHTAG),
			intval(TERM_COMMUNITYTAG)
		);
	
		if(count($r)) {
			foreach($r as $g) {
				$results[] = array(
					"photo"    => z_root() . '/images/hashtag.png',
					"name"     => '#'.$g['term'],
					"id"       => $g['tid'],
					"link"     => $g['url'],
					"label"    => '',
					"nick"     => '',
				);
			}
		}
	
		header("content-type: application/json");
		$o = array(
			'start' => $start,
			'count'	=> $count,
			'items'	=> $results,
		);
		echo json_encode($o);
	
		logger('search_ac: ' . print_r($x,true));
	
		killme();
	}
	
	
	
}