]> jfr.im git - erebus.git/blame - TODO
TODO
[erebus.git] / TODO
CommitLineData
f8a35028
JR
1vim: expandtab sw=2 ts=2
2
ef3b759c
JR
3- add (optional) timeout for wait_for_hidden_host
4
fe0673bc
JR
5- ability for modules to register additional sockets to monitor
6 - this is basically done but needs more testing on non-TCP and error conditions
7 the module interface should probably be simplified too
8 - also FDs so the bot can monitor a pipe
9 - add a pipe which allows to input commands even when IRC connection is gone
10 this might be difficult since there won't be a bot or user or chan object...
13ccb3ee
JR
11
12- implement timers in the core and/or modlib, by adjusting the select timeout whenever a timer is pending.
13 call timers as part of the event loop.
14 this has the potential to remove a LOT of the threading.
6037142c 15
5f685f53 16- fix crash when joining a channel that is forwarded (or otherwise force-joined by the server)
f8a35028
JR
17
18- fix urls:
19 - disallow private addresses as much as possible
20 - add a time limit if possible
0034a8f9
JR
21
22- add module with !join / !part / is there clevel management? etc
5f685f53
JR
23
24- add SQL "migrations" support to core for modules
25 and store module data in SQL instead of json's
d04cbd33
JR
26
27- better config... or better yet just move non-DB-related config into the database
28 - needs a better format if its used for generic module data; particularly because /\s#/ starts a comment instead of naming a channel
29 - needs to retain comments when config file is saved
25bf8fc5
JR
30
31- a module for administering channel users (copy from admin_user) and adding/removing channels
de66fe6d
JR
32
33- modlib function for parsing option arguments (like !MODLOAD has now)
90d2a7cc
JR
34
35- modlib 'onload' hook so modules can easily do stuff on loading
36 (if this exists use it to replace _key() in steam.py)
37
38- modlib 'need_config' function to tell the modlib you refuse to start without
39 a config value being specified
db733102
JR
40
41- add new hook types
42 - 'regexhook' for watching messages matching a regex
43 (should this be supported in core or
44 just by modlib translating into a numhook('PRIVMSG')?)
45 - 'msghook' for watching all messages (like numhook('PRIVMSG') but
46 you don't have to handle parsing)
47 - add a way to specify a config value as a hook parameter without needing
48 parent (i.e. delayed resolution)
acecba1e
JR
49
50- weather module using accuweather API, forecasts
715f4b1e
JR
51
52- fix softdeps, if they're used through lib.mod() or parent.module() they break, need a `'mod' in modules` check somewhere
1d5a167a
JR
53
54- ctlmod.unload: track what modules are unloaded and return that info to caller