about summary refs log tree commit diff
path: root/search.c
blob: d2bd4cae091b64bfadf69cb6d7507305ec0e2021 (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
149
150
151
152
153
154
155
156
/* Copyright (C) 2020  C. McEnroe <june@causal.agency>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <sysexits.h>

#include "server.h"

const char *SearchQuery = SQL(
	SELECT
		events.event,
		events.time,
		contexts.network,
		contexts.name,
		events.type,
		names.nick,
		names.user,
		names.host,
		events.target,
		highlight(search, 6, :highlight, :highlight)
	FROM events
	JOIN contexts USING (context)
	JOIN names USING (name)
	JOIN search ON search.rowid = events.event
	WHERE coalesce(contexts.network = :network, true)
		AND coalesce(contexts.name = :context, true)
		AND contexts.query <= NOT :public
		AND search MATCH :query
	LIMIT :offset, :limit;
);

static char *offsetURL(
	const char *network, const char *context, const char *query, int64_t offset
) {
	char *url = khttp_urlpartx(
		NULL, NULL, Pages[Search],
		Keys[Query].name, KATTRX_STRING, query,
		Keys[Offset].name, KATTRX_INT, offset,
		(network ? Keys[Network].name : NULL), KATTRX_STRING, network,
		(context ? Keys[Context].name : NULL), KATTRX_STRING, context,
		NULL
	);
	if (!url) err(EX_OSERR, "khttp_urlpartx");
	return url;
}

enum kcgi_err searchPage(struct kreq *req) {
	if (!req->fieldmap[Query]) return httpFail(req, KHTTP_400);
	const char *query = req->fieldmap[Query]->parsed.s;
	const char *network = NULL;
	const char *context = NULL;
	int64_t offset = 0;
	if (req->fieldmap[Network]) network = req->fieldmap[Network]->parsed.s;
	if (req->fieldmap[Context]) context = req->fieldmap[Context]->parsed.s;
	if (req->fieldmap[Offset]) offset = req->fieldmap[Offset]->parsed.i;
	if (context && !network) return httpFail(req, KHTTP_400);

	enum kcgi_err error = 0
		|| httpHead(req, KHTTP_200, KMIME_TEXT_HTML)
		|| khttp_body(req);
	if (req->method == KMETHOD_HEAD) return error;

	struct khtmlreq html;
	error = error
		|| khtml_open(&html, req, 0)
		|| htmlHead(&html, req, query)
		|| htmlNav(&html, req)
		|| khtml_elem(&html, KELEM_TABLE);
	if (error) return error;

	if (offset && !req->fieldmap[Export]) {
		int64_t prev = offset - eventsLimit;
		char *href = offsetURL(network, context, query, (prev > 0 ? prev : 0));
		error = 0
			|| khtml_attr(&html, KELEM_TR, KATTR_CLASS, "page", KATTR__MAX)
			|| khtml_attr(&html, KELEM_TH, KATTR_COLSPAN, "5", KATTR__MAX)
			|| khtml_attr(&html, KELEM_A, KATTR_HREF, href, KATTR__MAX)
			|| khtml_puts(&html, "Earlier results")
			|| khtml_closeelem(&html, 3);
		free(href);
		if (error) return error;
	}

	sqlite3_reset(stmt.search);
	dbBindText(stmt.search, ":highlight", "\26");
	dbBindText(stmt.search, ":network", network);
	dbBindText(stmt.search, ":context", context);
	dbBindText(stmt.search, ":query", query);
	dbBindInt(stmt.search, ":public", contextsPublic);
	dbBindInt(stmt.search, ":limit", eventsLimit);
	dbBindInt(stmt.search, ":offset", offset);

	int rows;
	int result;
	for (rows = 0; SQLITE_ROW == (result = sqlite3_step(stmt.search)); ++rows) {
		int i = 0;
		struct Event event = {0};
		event.event = sqlite3_column_int64(stmt.search, i++);
		event.time = sqlite3_column_int64(stmt.search, i++);
		event.network = sqlite3_column_text(stmt.search, i++);
		event.context = sqlite3_column_text(stmt.search, i++);
		event.type = sqlite3_column_int(stmt.search, i++);
		event.nick = sqlite3_column_text(stmt.search, i++);
		event.user = sqlite3_column_text(stmt.search, i++);
		event.host = sqlite3_column_text(stmt.search, i++);
		event.target = sqlite3_column_text(stmt.search, i++);
		event.message = sqlite3_column_text(stmt.search, i++);
		error = htmlEvent(&html, req, &event);
		if (error) return error;
	}
	if (result != SQLITE_DONE) {
		return 0
			|| khtml_attr(&html, KELEM_TR, KATTR_CLASS, "error", KATTR__MAX)
			|| khtml_elem(&html, KELEM_TH)
			|| khtml_puts(&html, sqlite3_errmsg(db))
			|| htmlFooter(&html, req)
			|| khtml_close(&html);
	}

	if (rows == eventsLimit && !req->fieldmap[Export]) {
		char *href = offsetURL(network, context, query, offset + eventsLimit);
		error = 0
			|| khtml_attr(&html, KELEM_TR, KATTR_CLASS, "page", KATTR__MAX)
			|| khtml_attr(&html, KELEM_TH, KATTR_COLSPAN, "5", KATTR__MAX)
			|| khtml_attr(&html, KELEM_A, KATTR_HREF, href, KATTR__MAX)
			|| khtml_puts(&html, "Later results")
			|| khtml_closeelem(&html, 3);
		free(href);
		if (error) return error;
	}

	if (!rows) {
		error = 0
			|| khtml_elem(&html, KELEM_TR)
			|| khtml_elem(&html, KELEM_TH)
			|| khtml_puts(&html, "No matching messages");
		if (error) return error;
	}

	return htmlFooter(&html, req) || khtml_close(&html);
}