0ee94759f7
Previously, we would pass SQLite FTS5 MATCH queries as is from the SEARCH parameter, when searching for messages. By default FTS5 queries follow a specific syntax, e.g. AND, OR, ... can be used to filter searches logically. Passing special characters in these unescaped queries, like `.`, would be rejected by SQLite, failing the SEARCH request. Here, in order to replicate PostgreSQL and FS behavior, we simply want to search for the string as is, and not give it glob or logic operators semantics. To do that, we quote each token of the string, skipping over separators. |
||
---|---|---|
auth | ||
cmd | ||
config | ||
contrib | ||
database | ||
doc | ||
identd | ||
msgstore | ||
xirc | ||
.build.yml | ||
.editorconfig | ||
.gitignore | ||
certfp.go | ||
config.in | ||
conn.go | ||
downstream.go | ||
go.mod | ||
go.sum | ||
irc_test.go | ||
irc.go | ||
LICENSE | ||
Makefile | ||
rate.go | ||
README.md | ||
server_test.go | ||
server.go | ||
service_test.go | ||
service.go | ||
upstream.go | ||
user.go |
soju
soju is a user-friendly IRC bouncer. soju connects to upstream IRC servers on behalf of the user to provide extra functionality. soju supports many features such as multiple users, numerous IRCv3 extensions, chat history playback and detached channels. It is well-suited for both small and large deployments.
Usage
Building and installing
Dependencies:
- Go
- BSD or GNU make
- a C89 compiler (optional, for SQLite)
- scdoc (optional, for man pages)
For end users, a Makefile
is provided:
make
sudo make install
For development, you can use go run ./cmd/soju
as usual.
To link with the system libsqlite3, set GOFLAGS="-tags=libsqlite3"
. To disable
SQLite support, set GOFLAGS="-tags=nosqlite"
. To use an alternative SQLite
library that does not require CGO, set GOFLAGS="-tags=moderncsqlite"
. To
build with PAM authentication support, set GOFLAGS="-tags=pam"
.
Contributing
Send patches on the mailing list or on GitHub, report bugs on the issue tracker. Discuss in #soju on Libera Chat.
License
AGPLv3, see LICENSE.
Copyright (C) 2020 The soju Contributors