aboutsummaryrefslogtreecommitdiffstats
path: root/mod/search.php
blob: 561bb6c620e58a4f026b164e0552a125bfe5e95b (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<?php


function search_post(&$a) {
	if(x($_POST,'search'))
		$a->data['search'] = $_POST['search'];
}


function search_content(&$a) {

	if(x($_SESSION,'theme'))
		unset($_SESSION['theme']);

	$o = '<div id="live-search"></div>' . "\r\n";

	$o .= '<h3>' . t('Search') . '</h3>';

	if(x($a->data,'search'))
		$search = notags(trim($a->data['search']));
	else
		$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');

	$o .= search($search);

	if(! $search)
		return $o;

	require_once("include/bbcode.php");
	require_once('include/security.php');

	$sql_extra = "
		AND `item`.`allow_cid` = '' 
		AND `item`.`allow_gid` = '' 
		AND `item`.`deny_cid`  = '' 
		AND `item`.`deny_gid`  = '' 
	";

	$r = q("SELECT COUNT(*) AS `total`
		FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
		WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0
		AND ( `wall` = 1 OR `contact`.`uid` = %d )
		AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
		AND MATCH (`item`.`body`) AGAINST ( '%s' IN BOOLEAN MODE )
		$sql_extra ",
		intval(local_user()),
		dbesc($search)
	);

	if(count($r))
		$a->set_pager_total($r[0]['total']);

	if(! $r[0]['total']) {
		notice('No results.');
		return $o;
	}

	$r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
		`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
		`contact`.`network`, `contact`.`thumb`, `contact`.`self`, 
		`contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`,
		`user`.`nickname`
		FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
		LEFT JOIN `user` ON `user`.`uid` = `item`.`uid` 
		WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0
		AND ( `wall` = 1 OR `contact`.`uid` = %d )
		AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
		AND MATCH (`item`.`body`) AGAINST ( '%s' IN BOOLEAN MODE )
		$sql_extra
		ORDER BY `parent` DESC ",
		intval(local_user()),
		dbesc($search)
	);

	$tpl = load_view_file('view/search_item.tpl');
	$droptpl = load_view_file('view/wall_fake_drop.tpl');

	$return_url = $_SESSION['return_url'] = $a->cmd;

	if(count($r)) {

		foreach($r as $item) {

			$total       = 0;
			$comment     = '';
			$owner_url   = '';
			$owner_photo = '';
			$owner_name  = '';
			$sparkle     = '';
			
			if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE))) 
				&& ($item['id'] != $item['parent']))
				continue;

			$total ++;

			$profile_name   = ((strlen($item['author-name']))   ? $item['author-name']   : $item['name']);
			$profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']);
			$profile_link   = ((strlen($item['author-link']))   ? $item['author-link']   : $item['url']);


			$location = (($item['location']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
			$coord = (($item['coord']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
			if($coord) {
				if($location)
					$location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
				else
					$location = '<span class="smalltext">' . $coord . '</span>';
			}

			$drop = replace_macros($droptpl,array('$id' => $item['id']));
			$lock = '<div class="wall-item-lock"></div>';

			$o .= replace_macros($tpl,array(
				'$id' => $item['item_id'],
				'$linktitle' => t('View $name\'s profile'),
				'$profile_url' => $profile_link,
				'$name' => $profile_name,
				'$sparkle' => $sparkle,
				'$lock' => $lock,
				'$thumb' => $profile_avatar,
				'$title' => $item['title'],
				'$body' => bbcode($item['body']),
				'$ago' => relative_date($item['created']),
				'$location' => $location,
				'$indent' => '',
				'$owner_url' => $owner_url,
				'$owner_photo' => $owner_photo,
				'$owner_name' => $owner_name,
				'$drop' => $drop,
				'$conv' => '<a href="' . $a->get_baseurl() . '/display/' . $item['nickname'] . '/' . $item['id'] . '">' . t('View in context') . '</a>'
			));

		}
	}


	if(! $r[0]['total']) {
		notice('No results.');
		return $o;
	}


	$o .= paginate($a);

	return $o;
}