irkerd: Store less state in IRCServerConnection.connect()
[irker.git] / install.txt
1 = Forge installation instructions =
2
3 irker and irkerhook.py are intended to be installed on forge sites
4 such as SourceForge, GitHub, Gitorious, Gna, and Savannah.  This
5 file explains the theory of operation, how to install the code,
6 and how to test it.
7
8 == Theory of operation ==
9
10 irkerhook.py creates JSON notification requests and ships them to
11 irkerd's listener socket.  irkerd run as a daemon in order to maintain
12 all the client state required to post multiple notifications while generating
13 minimum of join/leave messages (which, from the point of view of
14 humans watching irkerd's output, are mere spam).
15
16 See the security.txt document for a detailed discussion of security
17 and DoS vulnerabilities related to irker.
18
19 == Prerequisites ==
20
21 You will need either 
22
23 1. Python at version 2.6 or later, which has JSON built in
24
25 2. Python at version no older than 2.4, and a version of the
26    simplejson library installed that it can use.  Some newer
27    versions of simplejson discard 2.4 compatibility; 2.0.9
28    is known to work.
29
30 == Installing irkerd ==
31
32 irker needs to run constantly, watching for TCP and UDP traffic on
33 port 6659.  Install it accordingly. It has no config file; you can
34 just start it up with no arguments.  If you want to see what it's
35 doing, give it command-line options -d 1 for sparse messages and -d 2
36 to show all traffic with IRC servers.
37
38 You should *not* make irker visible from outside the site firewall, as
39 it can be used to spam IRC channels while masking the source address.
40
41 The file org.catb.irkerd.plist is a Mac OS/X plist that can be
42 installed to launch irkerd as a boot-time service on that system.
43
44 == Installing irkerhook.py ==
45
46 Under git, a call to irkerhook.py should be installed in the update 
47 hook script of your repo.  Under Subversion, the call goes in your
48 repo's post-commit script. Under Mercurial there are two different
49 ways to install it. See the irkerhook manual page for details; the
50 source is irkerhook.xml in this distribution.
51
52 Note that if you were using the CIA service and have ciabot.py in your
53 git update script, you can simply replace this
54
55 /path/to/ciabot.py ${refname} $(git rev-list ${oldhead}..${newhead} | tac)
56
57 with this:
58
59 /path/to/irkerhook.py --refname=${refname} $(git rev-list ${oldhead}..${newhead} | tac)
60
61 SourceForge is a special case: see
62
63 https://github.com/AI0867/sf-git-irker-pipeline
64
65 for tools and instructions on how to work around its limitations.
66
67 == Testing ==
68
69 To verify that your repo produces well-formed JSON notifications,
70 you can run irkerhook.py in the repo directory using the -n switch,
71 which emits JSON to standard output rather than attempting to ship
72 to an irkerd instance.
73
74 Then, start irkerd and call irkerhook.py while watching the freenode
75 #commits channel.
76
77 The 'irk' script is a little test tool that takes two arguments,
78 a channel and a message, and does what you'd expect.
79
80 If you need help, there's a project chat channel at 
81
82    irc://chat.freenode.net/#irker
83
84 == Read-only access ==
85
86 If, for whatever reason, you can't modify the hook scripts in your 
87 repository, there is still hope.
88
89 There's a proxy that takes CIA XML-RPC notifications 
90 and passes them to a local irker instance. Find it here:
91
92     https://github.com/nenolod/irker-cia-proxy
93
94 There's also a poller daemon that can watch activity in a Subversion
95 repository and ship notifications via an irker instance.
96
97     https://github.com/shikadilord/irker-svnpoller
98