aboutsummaryrefslogtreecommitdiff
path: root/README.adoc
blob: 3db0db4e1816efe600ac88a83205477d36e00f7f (plain)
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
xK
==

'xK' (chat kit) is an IRC software suite consisting of a daemon, bot, notifier,
terminal client, and web/Windows/macOS frontends for the client.  It's all
you're ever going to need for chatting, so long as you can make do with slightly
minimalist software.

They're all lean on dependencies, and offer a maximally permissive licence.

xC
--
The IRC client, and the core of 'xK'.  It is largely defined by building on top
of GNU Readline or BSD Editline that have been hacked to death.  Its interface
should feel somewhat familiar for weechat or irssi users.

image::xC.webp[align="center"]

It has most features you'd expect of an IRC client, such as being multiserver,
a powerful configuration system, integrated help, text formatting, automatic
message splitting, multiline editing, bracketed paste support, word wrapping
that doesn't break links, autocomplete, logging, CTCP queries, auto-away,
command aliases, SOCKS proxying, SASL EXTERNAL authentication using TLS client
certificates, a remote relay interface, or basic support for Lua scripting.
As a unique bonus, you can launch a full text editor from within.

xP
--
The web frontend for 'xC', making use of its networked relay interface.
It intentionally differs in that it uses a sans-serif font, and it shows
the list of all buffers in a side panel.  Otherwise it is a near replica,
including link:xC.adoc#_key_bindings[keyboard shortcuts].

image::xP.webp[align="center"]

xF
--
The X11 frontend for 'xC', still under development.

xD
--
The IRC daemon.  It is designed for use as a regular user application rather
than a system-wide daemon, and follows the XDG Base Directory Specification.
If all you want is a decent, minimal IRCd for testing purposes or a small
network of respectful users (or bots), this one will do it just fine.

It autodetects TLS on incoming connections (I'm still wondering why everyone
doesn't have this), authenticates operators via TLS client certificate
fingerprints, and supports a number of IRCv3 capabilities.

What it notably doesn't support is online changes to configuration, any limits
besides the total number of connections and mode `+l`, or server linking
(which also means no services).

xS
--
The IRC daemon again, this time ported to Go, additionally supporting WEBIRC,
and thus ideal for pairing with, e.g.,
https://github.com/kiwiirc/webircgateway[].
Any further development, such as P10 or TS6 linking for IRC services,
or plugin support for arbitrary bridges, will happen here.

xN
--
The IRC notifier, should you ever need to send automated messages from a script.

xB
--
The IRC bot.  While originally intended to be a simple rewrite of my old GNU AWK
bot in C, it fairly quickly became a playground, and it eventually got me into
writing the rest of this package.

Its main characteristic is that it runs plugins as coprocesses, allowing for
enhanced reliability and programming language freedom.  Moreover, it recovers
from any crashes, and offers native SOCKS support (even though socksify can add
that easily to any program).

Packages
--------
Regular releases are sporadic.  git master should be stable enough.
You can get a package with the latest development version using Arch Linux's
https://aur.archlinux.org/packages/xk-git[AUR],
or as a https://git.janouch.name/p/nixexprs[Nix derivation].

Building
--------
Build-only dependencies: CMake, pkg-config, awk, liberty (included),
 asciidoctor or asciidoc (recommended but optional), rsvg-convert (for 'xF') +
Common runtime dependencies: openssl +
Additionally for 'xC': curses, libffi, readline >= 6.0 or libedit >= 2013-07-12,
 lua >= 5.3 (optional) +
Additionally for 'xF': x11, xrender, xft, fontconfig, libpng

 $ git clone --recursive https://git.janouch.name/p/xK.git
 $ mkdir xK/build
 $ cd xK/build
 $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo \
            -DWANT_READLINE=ON -DWANT_LIBEDIT=OFF -DWITH_LUA=ON -DWITH_XF=OFF
 $ make

To install the application, you can do either the usual:

 # make install

Or you can try telling CMake to make a package for you:

 $ cpack -G DEB  # also supported: RPM, FreeBSD
 # dpkg -i xK-*.deb

Usage
-----
'xC' has in-program configuration.  Just run it and read the instructions.
Consult its link:xC.adoc[man page] for details about the interface.

For the rest you might want to generate a configuration file:

 $ xB --write-default-config
 $ xD --write-default-config

After making any necessary edits to the file (there are comments to aid you in
doing that), simply run the appropriate program with no arguments:

 $ xB
 $ xD

'xB' stays running in the foreground, therefore I recommend launching it inside
a Screen or tmux session.

'xD', on the other hand, immediately forks into the background.  Use the PID
file or something like `killall` if you want to terminate it.  You can run it
as a `forking` type systemd user service.

xP
~~
The precondition for running 'xC' frontends is enabling its relay interface:

 /set general.relay_bind = "127.0.0.1:9000"

To build the web server, you'll need to install the Go compiler, and run `make`
from the _xP_ directory.  Then start it from the _public_ subdirectory,
and navigate to the adress you gave it as its first argument--in the following
example, that would be http://localhost:8080[]:

 $ ../xP 127.0.0.1:8080 127.0.0.1:9000

For remote use, it's recommended to put 'xP' behind a reverse proxy, with TLS,
and some form of HTTP authentication.  Pass the external URL of the WebSocket
endpoint as the third command line argument in this case.

xW
~~
The Win32 frontend is a separate CMake subproject that should be compiled
using MinGW-w64.  To avoid having to specify the relay address each time you
run it, create a shortcut for the executable and include the address in its
_Target_ field:

 C:\...\xW.exe 127.0.0.1 9000

It works reasonably well starting with Windows 7.

xM
~~
The Cocoa frontend is a separate CMake subproject that requires Xcode to build.
It is currently not that usable.  The relay address can either be passed on
the command line, or preset in the _defaults_ database:

 $ defaults write name.janouch.xM relayHost 127.0.0.1
 $ defaults write name.janouch.xM relayPort 9000

Client Certificates
-------------------
'xC' will use the SASL EXTERNAL method to authenticate using the TLS client
certificate specified by the respective server's `tls_cert` option if you add
`sasl` to the `capabilities` option and the server supports this.

'xD' and 'xS' use SHA-256 fingerprints of TLS client certificates
to authenticate users.  To get the fingerprint from a certificate file
in the required form, use:

 $ openssl x509 -in public.pem -outform DER | sha256sum

Custom Key Bindings in xC
-------------------------
The default and preferred frontend used in 'xC' is GNU Readline.  This means
that you can change your bindings by editing '~/.inputrc'.  For example:

....
# Preload with system-wide settings
$include /etc/inputrc

# Make M-left and M-right reorder buffers
$if xC
"\e\e[C": move-buffer-right
"\e\e[D": move-buffer-left
$endif
....

Consult the source code and the GNU Readline manual for a list of available
functions.  Also refer to the latter for the exact syntax of this file.
Beware that you can easily break the program if you're not careful.

How do I make xC look like the screenshot?
------------------------------------------
With the defaults, 'xC' doesn't look too fancy because I don't want to have
a hard dependency on either Lua for the bundled script that provides an easily
adjustable enhanced prompt, or on 256-colour terminals.  Moreover, it's nearly
impossible to come up with a colour theme that would work well with both
black-on-white and white-on-black terminals, or anything wild in between.

Assuming that your build supports Lua plugins, and that you have a decent,
properly set-up terminal emulator, it suffices to run:

 /set general.pager = Press Tab here and change +Gb to +Gb1d
 /set general.date_change_line = "%a %e %b %Y"
 /set general.plugin_autoload += "fancy-prompt.lua"
 /set theme.userhost = "109"
 /set theme.join = "108"
 /set theme.part = "138"
 /set theme.external = "248"
 /set theme.timestamp = "250 255"
 /set theme.read_marker = "202"

Configuration profiles
----------------------
Even though the applications don't directly support configuration profiles,
they conform to the XDG standard, and thus you can change the location they
load configuration from via XDG_CONFIG_HOME (normally '~/.config') and the
location where store their data via XDG_DATA_HOME (normally '~/.local/share').

It would be relatively easy to make the applications assume whatever name you
run them under (for example by using symbolic links), and load different
configurations accordingly, but I consider it rather messy and unnecessary.

Contributing and Support
------------------------
Use https://git.janouch.name/p/xK to report any bugs, request features,
or submit pull requests.  `git send-email` is tolerated.  If you want to discuss
the project, feel free to join me at ircs://irc.janouch.name, channel #dev.

Bitcoin donations are accepted at: 12r5uEWEgcHC46xd64tt3hHt9EUvYYDHe9

License
-------
This software is released under the terms of the 0BSD license, the text of which
is included within the package along with the list of authors.

Note that 'xC' becomes GPL-licensed when you link it against GNU Readline,
but that is not a concern of this source package.  The licenses are compatible.