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
83
84
85
86
87
88
|
<?php
function search_ac_init(&$a){
if(!local_user())
return "";
$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'];
}
$sql_extra = '';
$x = array();
$x['query'] = $search;
$x['photos'] = array();
$x['links'] = array();
$x['suggestions'] = array();
$x['data'] = array();
// Priority to people searches
if ($search) {
$people_sql_extra = protect_sprintf(" AND `name` LIKE '%". dbesc($search) . "%' ");
$tag_sql_extra = protect_sprintf(" AND term LIKE '%". dbesc($search) . "%' ");
}
$r = q("SELECT `id`, `name`, `micro`, `url` FROM `contact`
WHERE `uid` = %d AND `pending` = 0
$people_sql_extra
ORDER BY `name` ASC ",
intval(local_user())
);
if(count($r)) {
foreach($r as $g) {
$x['photos'][] = $g['micro'];
$x['links'][] = $g['url'];
$x['suggestions'][] = '@' . $g['name'];
$x['data'][] = intval($g['id']);
}
}
// FIXME - extend search to non-connnections if you couldn't find any connections with that name, use poco or directory
// else {
//
// $r = q("SELECT `id`, `name`, `photo`, `url` FROM `gcontact` where 1
// $people_sql_extra
// ORDER BY `name` ASC "
// );
// if(count($r)) {
// foreach($r as $g) {
// $x['photos'][] = $g['photo'];
// $x['links'][] = $g['url'];
// $x['suggestions'][] = '@' . $g['name'];
// $x['data'][] = intval($g['id']);
// }
// }
// }
$r = q("select tid, term, url from term where type = %d $tag_sql_extra order by term asc",
intval(TERM_HASHTAG)
);
if(count($r)) {
foreach($r as $g) {
$x['photos'][] = $a->get_baseurl() . '/images/hashtag.png';
$x['links'][] = $g['url'];
$x['suggestions'][] = '#' . $g['term'];
$x['data'][] = intval($g['tid']);
}
}
header("content-type: application/json");
echo json_encode($x);
logger('search_ac: ' . print_r($x,true));
killme();
}
|