rbot 0.9.10 → 0.9.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (706) hide show
  1. data/AUTHORS +22 -4
  2. data/COPYING +5 -18
  3. data/ChangeLog +396 -0
  4. data/README +23 -25
  5. data/REQUIREMENTS +58 -12
  6. data/Rakefile +215 -0
  7. data/bin/rbot +47 -25
  8. data/bin/rbot-remote +76 -0
  9. data/data/rbot/languages/french.lang +5 -5
  10. data/data/rbot/languages/german.lang +4 -4
  11. data/data/rbot/languages/italian.lang +53 -0
  12. data/data/rbot/languages/japanese.lang +43 -0
  13. data/data/rbot/languages/russian.lang +60 -60
  14. data/data/rbot/languages/traditional_chinese.lang +75 -0
  15. data/data/rbot/plugins/alias.rb +192 -0
  16. data/data/rbot/plugins/autoop.rb +74 -37
  17. data/data/rbot/plugins/autorejoin.rb +15 -5
  18. data/data/rbot/plugins/bans.rb +454 -150
  19. data/data/rbot/plugins/bash.rb +173 -31
  20. data/data/rbot/plugins/botsnack.rb +37 -0
  21. data/data/rbot/plugins/cal.rb +11 -2
  22. data/data/rbot/plugins/chanserv.rb +132 -0
  23. data/data/rbot/plugins/chucknorris.rb +2 -2
  24. data/data/rbot/plugins/chucknorris.yml.gz +0 -0
  25. data/data/rbot/plugins/debugger.rb +136 -0
  26. data/data/rbot/plugins/deepthoughts.rb +89 -95
  27. data/data/rbot/plugins/delicious.rb +109 -0
  28. data/data/rbot/plugins/dice.rb +77 -25
  29. data/data/rbot/plugins/dict.rb +243 -0
  30. data/data/rbot/plugins/dictclient.rb +211 -0
  31. data/data/rbot/plugins/digg.rb +2 -2
  32. data/data/rbot/plugins/excuse.rb +4 -4
  33. data/data/rbot/plugins/factoids.rb +506 -0
  34. data/data/rbot/plugins/figlet.rb +127 -18
  35. data/data/rbot/plugins/fish.rb +93 -33
  36. data/data/rbot/plugins/forecast.rb +40 -27
  37. data/data/rbot/plugins/fortune.rb +86 -11
  38. data/data/rbot/plugins/freshmeat.rb +46 -12
  39. data/data/rbot/plugins/games/azgame.rb +565 -0
  40. data/data/rbot/plugins/games/quiz.rb +961 -0
  41. data/data/rbot/plugins/games/roshambo.rb +62 -0
  42. data/data/rbot/plugins/{roulette.rb → games/roulette.rb} +58 -8
  43. data/data/rbot/plugins/games/shiritori.rb +485 -0
  44. data/data/rbot/plugins/games/uno.rb +1205 -0
  45. data/data/rbot/plugins/games/wheelfortune.rb +615 -0
  46. data/data/rbot/plugins/grouphug.rb +76 -22
  47. data/data/rbot/plugins/hl2.rb +97 -0
  48. data/data/rbot/plugins/host.rb +10 -1
  49. data/data/rbot/plugins/httpd.rb.disabled +1 -0
  50. data/data/rbot/plugins/imdb.rb +511 -47
  51. data/data/rbot/plugins/insult.rb +32 -37
  52. data/data/rbot/plugins/iplookup.rb +224 -224
  53. data/data/rbot/plugins/karma.rb +45 -21
  54. data/data/rbot/plugins/keywords.rb +258 -160
  55. data/data/rbot/plugins/lart.rb +126 -95
  56. data/data/rbot/plugins/lastfm.rb +421 -12
  57. data/data/rbot/plugins/linkbot.rb +75 -0
  58. data/data/rbot/plugins/markov.rb +103 -46
  59. data/data/rbot/plugins/math.rb +6 -5
  60. data/data/rbot/plugins/modes.rb +114 -0
  61. data/data/rbot/plugins/nickrecover.rb +97 -0
  62. data/data/rbot/plugins/nickserv.rb +111 -48
  63. data/data/rbot/plugins/nslookup.rb +15 -19
  64. data/data/rbot/plugins/plugin.header +11 -0
  65. data/data/rbot/plugins/quakeauth.rb +74 -11
  66. data/data/rbot/plugins/quotes.rb +189 -233
  67. data/data/rbot/plugins/reaction.rb +415 -0
  68. data/data/rbot/plugins/remind.rb +11 -15
  69. data/data/rbot/plugins/remotectl.rb +29 -0
  70. data/data/rbot/plugins/ri.rb +74 -0
  71. data/data/rbot/plugins/rot13.rb +16 -1
  72. data/data/rbot/plugins/rss.rb +1219 -585
  73. data/data/rbot/plugins/salut.rb +226 -0
  74. data/data/rbot/plugins/script.rb +184 -0
  75. data/data/rbot/plugins/search.rb +233 -0
  76. data/data/rbot/plugins/seen.rb +44 -40
  77. data/data/rbot/plugins/shortenurls.rb +93 -0
  78. data/data/rbot/plugins/slashdot.rb +49 -11
  79. data/data/rbot/plugins/spell.rb +37 -27
  80. data/data/rbot/plugins/theyfightcrime.rb +36 -39
  81. data/data/rbot/plugins/threat.rb +25 -22
  82. data/data/rbot/plugins/time.rb +135 -0
  83. data/data/rbot/plugins/topic.rb +107 -50
  84. data/data/rbot/plugins/translator.rb +360 -0
  85. data/data/rbot/plugins/tube.rb +28 -40
  86. data/data/rbot/plugins/twitter.rb +187 -0
  87. data/data/rbot/plugins/urban.rb +62 -53
  88. data/data/rbot/plugins/url.rb +193 -409
  89. data/data/rbot/plugins/usermodes.rb +26 -0
  90. data/data/rbot/plugins/wall.rb +60 -0
  91. data/data/rbot/plugins/weather.rb +254 -598
  92. data/data/rbot/plugins/wow.rb +41 -37
  93. data/data/rbot/plugins/wserver.rb +17 -25
  94. data/data/rbot/plugins/youtube.rb +237 -0
  95. data/data/rbot/templates/lart/{larts → larts-english} +0 -0
  96. data/data/rbot/templates/lart/larts-italian +25 -0
  97. data/data/rbot/templates/lart/larts-japanese +10 -0
  98. data/data/rbot/templates/lart/{praises → praises-english} +0 -0
  99. data/data/rbot/templates/lart/praises-italian +4 -0
  100. data/data/rbot/templates/lart/praises-japanese +3 -0
  101. data/data/rbot/templates/quiz/win_messages +11 -0
  102. data/data/rbot/templates/salut/salut-english +40 -0
  103. data/data/rbot/templates/salut/salut-french +29 -0
  104. data/data/rbot/templates/salut/salut-italian +51 -0
  105. data/data/rbot/templates/salut/salut-japanese +31 -0
  106. data/lib/rbot/botuser.rb +940 -0
  107. data/lib/rbot/config-compat.rb +23 -0
  108. data/lib/rbot/config.rb +211 -276
  109. data/lib/rbot/core/auth.rb +1063 -0
  110. data/lib/rbot/core/basics.rb +214 -0
  111. data/lib/rbot/core/config.rb +330 -0
  112. data/lib/rbot/core/filters_ui.rb +64 -0
  113. data/lib/rbot/core/irclog.rb +292 -0
  114. data/lib/rbot/core/remote.rb +401 -0
  115. data/lib/rbot/core/unicode.rb +91 -0
  116. data/lib/rbot/core/userdata.rb +200 -0
  117. data/lib/rbot/core/utils/extends.rb +444 -0
  118. data/lib/rbot/core/utils/filters.rb +154 -0
  119. data/lib/rbot/core/utils/httputil.rb +689 -0
  120. data/lib/rbot/core/utils/utils.rb +717 -0
  121. data/lib/rbot/dbhash.rb +30 -9
  122. data/lib/rbot/irc.rb +1966 -0
  123. data/lib/rbot/ircbot.rb +816 -675
  124. data/lib/rbot/ircsocket.rb +246 -232
  125. data/lib/rbot/language.rb +86 -8
  126. data/lib/rbot/load-gettext.rb +154 -0
  127. data/lib/rbot/maskdb.rb +162 -0
  128. data/lib/rbot/message.rb +392 -65
  129. data/lib/rbot/messagemapper.rb +438 -94
  130. data/lib/rbot/pkgconfig.rb +6 -0
  131. data/lib/rbot/plugins.rb +713 -172
  132. data/lib/rbot/post-config.rb +1 -0
  133. data/lib/rbot/rbotconfig.rb +31 -12
  134. data/lib/rbot/registry.rb +79 -48
  135. data/lib/rbot/rfc2812.rb +927 -519
  136. data/lib/rbot/timer.rb +232 -167
  137. data/po/en_US/rbot-alias.po +82 -0
  138. data/po/en_US/rbot-autoop.po +0 -0
  139. data/po/en_US/rbot-autorejoin.po +0 -0
  140. data/po/en_US/rbot-azgame.po +200 -0
  141. data/po/en_US/rbot-bans.po +0 -0
  142. data/po/en_US/rbot-bash.po +0 -0
  143. data/po/en_US/rbot-botsnack.po +0 -0
  144. data/po/en_US/rbot-cal.po +3 -0
  145. data/po/en_US/rbot-chanserv.po +0 -0
  146. data/po/en_US/rbot-chucknorris.po +0 -0
  147. data/po/en_US/rbot-debugger.po +0 -0
  148. data/po/en_US/rbot-deepthoughts.po +0 -0
  149. data/po/en_US/rbot-delicious.po +0 -0
  150. data/po/en_US/rbot-dice.po +0 -0
  151. data/po/en_US/rbot-dict.po +0 -0
  152. data/po/en_US/rbot-dictclient.po +124 -0
  153. data/po/en_US/rbot-digg.po +0 -0
  154. data/po/en_US/rbot-eightball.po +0 -0
  155. data/po/en_US/rbot-excuse.po +0 -0
  156. data/po/en_US/rbot-factoids.po +107 -0
  157. data/po/en_US/rbot-figlet.po +36 -0
  158. data/po/en_US/rbot-fish.po +0 -0
  159. data/po/en_US/rbot-forecast.po +0 -0
  160. data/po/en_US/rbot-fortune.po +0 -0
  161. data/po/en_US/rbot-freshmeat.po +0 -0
  162. data/po/en_US/rbot-grouphug.po +18 -0
  163. data/po/en_US/rbot-hl2.po +0 -0
  164. data/po/en_US/rbot-host.po +3 -0
  165. data/po/en_US/rbot-imdb.po +0 -0
  166. data/po/en_US/rbot-insult.po +0 -0
  167. data/po/en_US/rbot-iplookup.po +0 -0
  168. data/po/en_US/rbot-karma.po +0 -0
  169. data/po/en_US/rbot-keywords.po +24 -0
  170. data/po/en_US/rbot-lart.po +0 -0
  171. data/po/en_US/rbot-lastfm.po +172 -0
  172. data/po/en_US/rbot-linkbot.po +0 -0
  173. data/po/en_US/rbot-markov.po +20 -0
  174. data/po/en_US/rbot-math.po +0 -0
  175. data/po/en_US/rbot-modes.po +0 -0
  176. data/po/en_US/rbot-nickrecover.po +40 -0
  177. data/po/en_US/rbot-nickserv.po +104 -0
  178. data/po/en_US/rbot-nslookup.po +0 -0
  179. data/po/en_US/rbot-quakeauth.po +0 -0
  180. data/po/en_US/rbot-quiz.po +0 -0
  181. data/po/en_US/rbot-quotes.po +108 -0
  182. data/po/en_US/rbot-reaction.po +0 -0
  183. data/po/en_US/rbot-remind.po +0 -0
  184. data/po/en_US/rbot-remotectl.po +0 -0
  185. data/po/en_US/rbot-ri.po +0 -0
  186. data/po/en_US/rbot-roshambo.po +0 -0
  187. data/po/en_US/rbot-rot13.po +0 -0
  188. data/po/en_US/rbot-roulette.po +0 -0
  189. data/po/en_US/rbot-rss.po +20 -0
  190. data/po/en_US/rbot-salut.po +0 -0
  191. data/po/en_US/rbot-script.po +0 -0
  192. data/po/en_US/rbot-search.po +0 -0
  193. data/po/en_US/rbot-seen.po +0 -0
  194. data/po/en_US/rbot-shiritori.po +113 -0
  195. data/po/en_US/rbot-shortenurls.po +0 -0
  196. data/po/en_US/rbot-slashdot.po +0 -0
  197. data/po/en_US/rbot-spell.po +54 -0
  198. data/po/en_US/rbot-theyfightcrime.po +0 -0
  199. data/po/en_US/rbot-threat.po +0 -0
  200. data/po/en_US/rbot-time.po +0 -0
  201. data/po/en_US/rbot-topic.po +0 -0
  202. data/po/en_US/rbot-translator.po +77 -0
  203. data/po/en_US/rbot-tube.po +0 -0
  204. data/po/en_US/rbot-twitter.po +24 -0
  205. data/po/en_US/rbot-uno.po +512 -0
  206. data/po/en_US/rbot-urban.po +0 -0
  207. data/po/en_US/rbot-url.po +0 -0
  208. data/po/en_US/rbot-usermodes.po +0 -0
  209. data/po/en_US/rbot-wall.po +33 -0
  210. data/po/en_US/rbot-weather.po +0 -0
  211. data/po/en_US/rbot-wheelfortune.po +205 -0
  212. data/po/en_US/rbot-wow.po +0 -0
  213. data/po/en_US/rbot-wserver.po +0 -0
  214. data/po/en_US/rbot-youtube.po +58 -0
  215. data/po/en_US/rbot.po +1097 -0
  216. data/po/fr/rbot-alias.po +97 -0
  217. data/po/fr/rbot-autoop.po +0 -0
  218. data/po/fr/rbot-autorejoin.po +0 -0
  219. data/po/fr/rbot-azgame.po +204 -0
  220. data/po/fr/rbot-bans.po +0 -0
  221. data/po/fr/rbot-bash.po +0 -0
  222. data/po/fr/rbot-botsnack.po +0 -0
  223. data/po/fr/rbot-cal.po +3 -0
  224. data/po/fr/rbot-chanserv.po +0 -0
  225. data/po/fr/rbot-chucknorris.po +0 -0
  226. data/po/fr/rbot-debugger.po +0 -0
  227. data/po/fr/rbot-deepthoughts.po +0 -0
  228. data/po/fr/rbot-delicious.po +0 -0
  229. data/po/fr/rbot-dice.po +0 -0
  230. data/po/fr/rbot-dict.po +0 -0
  231. data/po/fr/rbot-dictclient.po +134 -0
  232. data/po/fr/rbot-digg.po +0 -0
  233. data/po/fr/rbot-eightball.po +0 -0
  234. data/po/fr/rbot-excuse.po +0 -0
  235. data/po/fr/rbot-factoids.po +111 -0
  236. data/po/fr/rbot-figlet.po +37 -0
  237. data/po/fr/rbot-fish.po +0 -0
  238. data/po/fr/rbot-forecast.po +0 -0
  239. data/po/fr/rbot-fortune.po +0 -0
  240. data/po/fr/rbot-freshmeat.po +0 -0
  241. data/po/fr/rbot-grouphug.po +18 -0
  242. data/po/fr/rbot-hl2.po +0 -0
  243. data/po/fr/rbot-host.po +3 -0
  244. data/po/fr/rbot-imdb.po +0 -0
  245. data/po/fr/rbot-insult.po +0 -0
  246. data/po/fr/rbot-iplookup.po +0 -0
  247. data/po/fr/rbot-karma.po +0 -0
  248. data/po/fr/rbot-keywords.po +24 -0
  249. data/po/fr/rbot-lart.po +0 -0
  250. data/po/fr/rbot-lastfm.po +172 -0
  251. data/po/fr/rbot-linkbot.po +0 -0
  252. data/po/fr/rbot-markov.po +20 -0
  253. data/po/fr/rbot-math.po +0 -0
  254. data/po/fr/rbot-modes.po +0 -0
  255. data/po/fr/rbot-nickrecover.po +36 -0
  256. data/po/fr/rbot-nickserv.po +116 -0
  257. data/po/fr/rbot-nslookup.po +0 -0
  258. data/po/fr/rbot-quakeauth.po +0 -0
  259. data/po/fr/rbot-quiz.po +0 -0
  260. data/po/fr/rbot-quotes.po +138 -0
  261. data/po/fr/rbot-reaction.po +0 -0
  262. data/po/fr/rbot-remind.po +0 -0
  263. data/po/fr/rbot-remotectl.po +0 -0
  264. data/po/fr/rbot-ri.po +0 -0
  265. data/po/fr/rbot-roshambo.po +0 -0
  266. data/po/fr/rbot-rot13.po +0 -0
  267. data/po/fr/rbot-roulette.po +0 -0
  268. data/po/fr/rbot-rss.po +20 -0
  269. data/po/fr/rbot-salut.po +0 -0
  270. data/po/fr/rbot-script.po +0 -0
  271. data/po/fr/rbot-search.po +0 -0
  272. data/po/fr/rbot-seen.po +0 -0
  273. data/po/fr/rbot-shiritori.po +119 -0
  274. data/po/fr/rbot-shortenurls.po +0 -0
  275. data/po/fr/rbot-slashdot.po +0 -0
  276. data/po/fr/rbot-spell.po +56 -0
  277. data/po/fr/rbot-theyfightcrime.po +0 -0
  278. data/po/fr/rbot-threat.po +0 -0
  279. data/po/fr/rbot-time.po +0 -0
  280. data/po/fr/rbot-topic.po +0 -0
  281. data/po/fr/rbot-translator.po +90 -0
  282. data/po/fr/rbot-tube.po +0 -0
  283. data/po/fr/rbot-twitter.po +24 -0
  284. data/po/fr/rbot-uno.po +521 -0
  285. data/po/fr/rbot-urban.po +0 -0
  286. data/po/fr/rbot-url.po +0 -0
  287. data/po/fr/rbot-usermodes.po +0 -0
  288. data/po/fr/rbot-wall.po +33 -0
  289. data/po/fr/rbot-weather.po +0 -0
  290. data/po/fr/rbot-wheelfortune.po +255 -0
  291. data/po/fr/rbot-wow.po +0 -0
  292. data/po/fr/rbot-wserver.po +0 -0
  293. data/po/fr/rbot-youtube.po +64 -0
  294. data/po/fr/rbot.po +1133 -0
  295. data/po/it/rbot-alias.po +82 -0
  296. data/po/it/rbot-autoop.po +0 -0
  297. data/po/it/rbot-autorejoin.po +0 -0
  298. data/po/it/rbot-azgame.po +186 -0
  299. data/po/it/rbot-bans.po +0 -0
  300. data/po/it/rbot-bash.po +0 -0
  301. data/po/it/rbot-botsnack.po +0 -0
  302. data/po/it/rbot-cal.po +3 -0
  303. data/po/it/rbot-chanserv.po +0 -0
  304. data/po/it/rbot-chucknorris.po +0 -0
  305. data/po/it/rbot-debugger.po +0 -0
  306. data/po/it/rbot-deepthoughts.po +0 -0
  307. data/po/it/rbot-delicious.po +0 -0
  308. data/po/it/rbot-dice.po +0 -0
  309. data/po/it/rbot-dict.po +0 -0
  310. data/po/it/rbot-dictclient.po +111 -0
  311. data/po/it/rbot-digg.po +0 -0
  312. data/po/it/rbot-eightball.po +0 -0
  313. data/po/it/rbot-excuse.po +0 -0
  314. data/po/it/rbot-factoids.po +110 -0
  315. data/po/it/rbot-figlet.po +36 -0
  316. data/po/it/rbot-fish.po +0 -0
  317. data/po/it/rbot-forecast.po +0 -0
  318. data/po/it/rbot-fortune.po +0 -0
  319. data/po/it/rbot-freshmeat.po +0 -0
  320. data/po/it/rbot-grouphug.po +18 -0
  321. data/po/it/rbot-hl2.po +0 -0
  322. data/po/it/rbot-host.po +3 -0
  323. data/po/it/rbot-imdb.po +0 -0
  324. data/po/it/rbot-insult.po +0 -0
  325. data/po/it/rbot-iplookup.po +0 -0
  326. data/po/it/rbot-karma.po +0 -0
  327. data/po/it/rbot-keywords.po +24 -0
  328. data/po/it/rbot-lart.po +0 -0
  329. data/po/it/rbot-lastfm.po +172 -0
  330. data/po/it/rbot-linkbot.po +0 -0
  331. data/po/it/rbot-markov.po +20 -0
  332. data/po/it/rbot-math.po +0 -0
  333. data/po/it/rbot-modes.po +0 -0
  334. data/po/it/rbot-nickrecover.po +36 -0
  335. data/po/it/rbot-nickserv.po +104 -0
  336. data/po/it/rbot-nslookup.po +0 -0
  337. data/po/it/rbot-quakeauth.po +0 -0
  338. data/po/it/rbot-quiz.po +0 -0
  339. data/po/it/rbot-quotes.po +108 -0
  340. data/po/it/rbot-reaction.po +0 -0
  341. data/po/it/rbot-remind.po +0 -0
  342. data/po/it/rbot-remotectl.po +0 -0
  343. data/po/it/rbot-ri.po +0 -0
  344. data/po/it/rbot-roshambo.po +0 -0
  345. data/po/it/rbot-rot13.po +0 -0
  346. data/po/it/rbot-roulette.po +0 -0
  347. data/po/it/rbot-rss.po +20 -0
  348. data/po/it/rbot-salut.po +0 -0
  349. data/po/it/rbot-script.po +0 -0
  350. data/po/it/rbot-search.po +0 -0
  351. data/po/it/rbot-seen.po +0 -0
  352. data/po/it/rbot-shiritori.po +102 -0
  353. data/po/it/rbot-shortenurls.po +0 -0
  354. data/po/it/rbot-slashdot.po +0 -0
  355. data/po/it/rbot-spell.po +54 -0
  356. data/po/it/rbot-theyfightcrime.po +0 -0
  357. data/po/it/rbot-threat.po +0 -0
  358. data/po/it/rbot-time.po +0 -0
  359. data/po/it/rbot-topic.po +0 -0
  360. data/po/it/rbot-translator.po +77 -0
  361. data/po/it/rbot-tube.po +0 -0
  362. data/po/it/rbot-twitter.po +24 -0
  363. data/po/it/rbot-uno.po +564 -0
  364. data/po/it/rbot-urban.po +0 -0
  365. data/po/it/rbot-url.po +0 -0
  366. data/po/it/rbot-usermodes.po +0 -0
  367. data/po/it/rbot-wall.po +33 -0
  368. data/po/it/rbot-weather.po +0 -0
  369. data/po/it/rbot-wheelfortune.po +251 -0
  370. data/po/it/rbot-wow.po +0 -0
  371. data/po/it/rbot-wserver.po +0 -0
  372. data/po/it/rbot-youtube.po +64 -0
  373. data/po/it/rbot.po +1127 -0
  374. data/po/ja/rbot-alias.po +82 -0
  375. data/po/ja/rbot-autoop.po +0 -0
  376. data/po/ja/rbot-autorejoin.po +0 -0
  377. data/po/ja/rbot-azgame.po +194 -0
  378. data/po/ja/rbot-bans.po +0 -0
  379. data/po/ja/rbot-bash.po +0 -0
  380. data/po/ja/rbot-botsnack.po +0 -0
  381. data/po/ja/rbot-cal.po +3 -0
  382. data/po/ja/rbot-chanserv.po +0 -0
  383. data/po/ja/rbot-chucknorris.po +0 -0
  384. data/po/ja/rbot-debugger.po +0 -0
  385. data/po/ja/rbot-deepthoughts.po +0 -0
  386. data/po/ja/rbot-delicious.po +0 -0
  387. data/po/ja/rbot-dice.po +0 -0
  388. data/po/ja/rbot-dict.po +0 -0
  389. data/po/ja/rbot-dictclient.po +111 -0
  390. data/po/ja/rbot-digg.po +0 -0
  391. data/po/ja/rbot-eightball.po +0 -0
  392. data/po/ja/rbot-excuse.po +0 -0
  393. data/po/ja/rbot-factoids.po +107 -0
  394. data/po/ja/rbot-figlet.po +36 -0
  395. data/po/ja/rbot-fish.po +0 -0
  396. data/po/ja/rbot-forecast.po +0 -0
  397. data/po/ja/rbot-fortune.po +0 -0
  398. data/po/ja/rbot-freshmeat.po +0 -0
  399. data/po/ja/rbot-grouphug.po +18 -0
  400. data/po/ja/rbot-hl2.po +0 -0
  401. data/po/ja/rbot-host.po +3 -0
  402. data/po/ja/rbot-imdb.po +0 -0
  403. data/po/ja/rbot-insult.po +0 -0
  404. data/po/ja/rbot-iplookup.po +0 -0
  405. data/po/ja/rbot-karma.po +0 -0
  406. data/po/ja/rbot-keywords.po +24 -0
  407. data/po/ja/rbot-lart.po +0 -0
  408. data/po/ja/rbot-lastfm.po +172 -0
  409. data/po/ja/rbot-linkbot.po +0 -0
  410. data/po/ja/rbot-markov.po +20 -0
  411. data/po/ja/rbot-math.po +0 -0
  412. data/po/ja/rbot-modes.po +0 -0
  413. data/po/ja/rbot-nickrecover.po +36 -0
  414. data/po/ja/rbot-nickserv.po +104 -0
  415. data/po/ja/rbot-nslookup.po +0 -0
  416. data/po/ja/rbot-quakeauth.po +0 -0
  417. data/po/ja/rbot-quiz.po +0 -0
  418. data/po/ja/rbot-quotes.po +108 -0
  419. data/po/ja/rbot-reaction.po +0 -0
  420. data/po/ja/rbot-remind.po +0 -0
  421. data/po/ja/rbot-remotectl.po +0 -0
  422. data/po/ja/rbot-ri.po +0 -0
  423. data/po/ja/rbot-roshambo.po +0 -0
  424. data/po/ja/rbot-rot13.po +0 -0
  425. data/po/ja/rbot-roulette.po +0 -0
  426. data/po/ja/rbot-rss.po +20 -0
  427. data/po/ja/rbot-salut.po +0 -0
  428. data/po/ja/rbot-script.po +0 -0
  429. data/po/ja/rbot-search.po +0 -0
  430. data/po/ja/rbot-seen.po +0 -0
  431. data/po/ja/rbot-shiritori.po +115 -0
  432. data/po/ja/rbot-shortenurls.po +0 -0
  433. data/po/ja/rbot-slashdot.po +0 -0
  434. data/po/ja/rbot-spell.po +54 -0
  435. data/po/ja/rbot-theyfightcrime.po +0 -0
  436. data/po/ja/rbot-threat.po +0 -0
  437. data/po/ja/rbot-time.po +0 -0
  438. data/po/ja/rbot-topic.po +0 -0
  439. data/po/ja/rbot-translator.po +77 -0
  440. data/po/ja/rbot-tube.po +0 -0
  441. data/po/ja/rbot-twitter.po +24 -0
  442. data/po/ja/rbot-uno.po +512 -0
  443. data/po/ja/rbot-urban.po +0 -0
  444. data/po/ja/rbot-url.po +0 -0
  445. data/po/ja/rbot-usermodes.po +0 -0
  446. data/po/ja/rbot-wall.po +33 -0
  447. data/po/ja/rbot-weather.po +0 -0
  448. data/po/ja/rbot-wheelfortune.po +205 -0
  449. data/po/ja/rbot-wow.po +0 -0
  450. data/po/ja/rbot-wserver.po +0 -0
  451. data/po/ja/rbot-youtube.po +58 -0
  452. data/po/ja/rbot.po +999 -0
  453. data/po/rbot-alias.pot +83 -0
  454. data/po/rbot-autoop.pot +0 -0
  455. data/po/rbot-autorejoin.pot +0 -0
  456. data/po/rbot-azgame.pot +187 -0
  457. data/po/rbot-bans.pot +0 -0
  458. data/po/rbot-bash.pot +0 -0
  459. data/po/rbot-botsnack.pot +0 -0
  460. data/po/rbot-cal.pot +21 -0
  461. data/po/rbot-chanserv.pot +0 -0
  462. data/po/rbot-chucknorris.pot +0 -0
  463. data/po/rbot-debugger.pot +0 -0
  464. data/po/rbot-deepthoughts.pot +0 -0
  465. data/po/rbot-delicious.pot +0 -0
  466. data/po/rbot-dice.pot +0 -0
  467. data/po/rbot-dict.pot +0 -0
  468. data/po/rbot-dictclient.pot +112 -0
  469. data/po/rbot-digg.pot +0 -0
  470. data/po/rbot-eightball.pot +0 -0
  471. data/po/rbot-excuse.pot +0 -0
  472. data/po/rbot-factoids.pot +108 -0
  473. data/po/rbot-figlet.pot +37 -0
  474. data/po/rbot-fish.pot +0 -0
  475. data/po/rbot-forecast.pot +0 -0
  476. data/po/rbot-fortune.pot +0 -0
  477. data/po/rbot-freshmeat.pot +0 -0
  478. data/po/rbot-grouphug.pot +36 -0
  479. data/po/rbot-hl2.pot +0 -0
  480. data/po/rbot-host.pot +21 -0
  481. data/po/rbot-imdb.pot +0 -0
  482. data/po/rbot-insult.pot +0 -0
  483. data/po/rbot-iplookup.pot +0 -0
  484. data/po/rbot-karma.pot +0 -0
  485. data/po/rbot-keywords.pot +25 -0
  486. data/po/rbot-lart.pot +0 -0
  487. data/po/rbot-lastfm.pot +190 -0
  488. data/po/rbot-linkbot.pot +0 -0
  489. data/po/rbot-markov.pot +21 -0
  490. data/po/rbot-math.pot +0 -0
  491. data/po/rbot-modes.pot +0 -0
  492. data/po/rbot-nickrecover.pot +37 -0
  493. data/po/rbot-nickserv.pot +105 -0
  494. data/po/rbot-nslookup.pot +0 -0
  495. data/po/rbot-quakeauth.pot +0 -0
  496. data/po/rbot-quiz.pot +0 -0
  497. data/po/rbot-quotes.pot +109 -0
  498. data/po/rbot-reaction.pot +0 -0
  499. data/po/rbot-remind.pot +0 -0
  500. data/po/rbot-remotectl.pot +0 -0
  501. data/po/rbot-ri.pot +0 -0
  502. data/po/rbot-roshambo.pot +0 -0
  503. data/po/rbot-rot13.pot +0 -0
  504. data/po/rbot-roulette.pot +0 -0
  505. data/po/rbot-rss.pot +21 -0
  506. data/po/rbot-salut.pot +0 -0
  507. data/po/rbot-script.pot +0 -0
  508. data/po/rbot-search.pot +0 -0
  509. data/po/rbot-seen.pot +0 -0
  510. data/po/rbot-shiritori.pot +103 -0
  511. data/po/rbot-shortenurls.pot +0 -0
  512. data/po/rbot-slashdot.pot +0 -0
  513. data/po/rbot-spell.pot +55 -0
  514. data/po/rbot-theyfightcrime.pot +0 -0
  515. data/po/rbot-threat.pot +0 -0
  516. data/po/rbot-time.pot +0 -0
  517. data/po/rbot-topic.pot +0 -0
  518. data/po/rbot-translator.pot +78 -0
  519. data/po/rbot-tube.pot +0 -0
  520. data/po/rbot-twitter.pot +25 -0
  521. data/po/rbot-uno.pot +513 -0
  522. data/po/rbot-urban.pot +0 -0
  523. data/po/rbot-url.pot +0 -0
  524. data/po/rbot-usermodes.pot +0 -0
  525. data/po/rbot-wall.pot +33 -0
  526. data/po/rbot-weather.pot +0 -0
  527. data/po/rbot-wheelfortune.pot +206 -0
  528. data/po/rbot-wow.pot +0 -0
  529. data/po/rbot-wserver.pot +0 -0
  530. data/po/rbot-youtube.pot +59 -0
  531. data/po/rbot.pot +1004 -0
  532. data/po/zh_CN/rbot-alias.po +82 -0
  533. data/po/zh_CN/rbot-autoop.po +0 -0
  534. data/po/zh_CN/rbot-autorejoin.po +0 -0
  535. data/po/zh_CN/rbot-azgame.po +186 -0
  536. data/po/zh_CN/rbot-bans.po +0 -0
  537. data/po/zh_CN/rbot-bash.po +0 -0
  538. data/po/zh_CN/rbot-botsnack.po +0 -0
  539. data/po/zh_CN/rbot-cal.po +3 -0
  540. data/po/zh_CN/rbot-chanserv.po +0 -0
  541. data/po/zh_CN/rbot-chucknorris.po +0 -0
  542. data/po/zh_CN/rbot-debugger.po +0 -0
  543. data/po/zh_CN/rbot-deepthoughts.po +0 -0
  544. data/po/zh_CN/rbot-delicious.po +0 -0
  545. data/po/zh_CN/rbot-dice.po +0 -0
  546. data/po/zh_CN/rbot-dict.po +0 -0
  547. data/po/zh_CN/rbot-dictclient.po +111 -0
  548. data/po/zh_CN/rbot-digg.po +0 -0
  549. data/po/zh_CN/rbot-eightball.po +0 -0
  550. data/po/zh_CN/rbot-excuse.po +0 -0
  551. data/po/zh_CN/rbot-factoids.po +107 -0
  552. data/po/zh_CN/rbot-figlet.po +36 -0
  553. data/po/zh_CN/rbot-fish.po +0 -0
  554. data/po/zh_CN/rbot-forecast.po +0 -0
  555. data/po/zh_CN/rbot-fortune.po +0 -0
  556. data/po/zh_CN/rbot-freshmeat.po +0 -0
  557. data/po/zh_CN/rbot-grouphug.po +18 -0
  558. data/po/zh_CN/rbot-hl2.po +0 -0
  559. data/po/zh_CN/rbot-host.po +3 -0
  560. data/po/zh_CN/rbot-imdb.po +0 -0
  561. data/po/zh_CN/rbot-insult.po +0 -0
  562. data/po/zh_CN/rbot-iplookup.po +0 -0
  563. data/po/zh_CN/rbot-karma.po +0 -0
  564. data/po/zh_CN/rbot-keywords.po +24 -0
  565. data/po/zh_CN/rbot-lart.po +0 -0
  566. data/po/zh_CN/rbot-lastfm.po +172 -0
  567. data/po/zh_CN/rbot-linkbot.po +0 -0
  568. data/po/zh_CN/rbot-markov.po +20 -0
  569. data/po/zh_CN/rbot-math.po +0 -0
  570. data/po/zh_CN/rbot-modes.po +0 -0
  571. data/po/zh_CN/rbot-nickrecover.po +36 -0
  572. data/po/zh_CN/rbot-nickserv.po +104 -0
  573. data/po/zh_CN/rbot-nslookup.po +0 -0
  574. data/po/zh_CN/rbot-quakeauth.po +0 -0
  575. data/po/zh_CN/rbot-quiz.po +0 -0
  576. data/po/zh_CN/rbot-quotes.po +108 -0
  577. data/po/zh_CN/rbot-reaction.po +0 -0
  578. data/po/zh_CN/rbot-remind.po +0 -0
  579. data/po/zh_CN/rbot-remotectl.po +0 -0
  580. data/po/zh_CN/rbot-ri.po +0 -0
  581. data/po/zh_CN/rbot-roshambo.po +0 -0
  582. data/po/zh_CN/rbot-rot13.po +0 -0
  583. data/po/zh_CN/rbot-roulette.po +0 -0
  584. data/po/zh_CN/rbot-rss.po +20 -0
  585. data/po/zh_CN/rbot-salut.po +0 -0
  586. data/po/zh_CN/rbot-script.po +0 -0
  587. data/po/zh_CN/rbot-search.po +0 -0
  588. data/po/zh_CN/rbot-seen.po +0 -0
  589. data/po/zh_CN/rbot-shiritori.po +102 -0
  590. data/po/zh_CN/rbot-shortenurls.po +0 -0
  591. data/po/zh_CN/rbot-slashdot.po +0 -0
  592. data/po/zh_CN/rbot-spell.po +54 -0
  593. data/po/zh_CN/rbot-theyfightcrime.po +0 -0
  594. data/po/zh_CN/rbot-threat.po +0 -0
  595. data/po/zh_CN/rbot-time.po +0 -0
  596. data/po/zh_CN/rbot-topic.po +0 -0
  597. data/po/zh_CN/rbot-translator.po +77 -0
  598. data/po/zh_CN/rbot-tube.po +0 -0
  599. data/po/zh_CN/rbot-twitter.po +24 -0
  600. data/po/zh_CN/rbot-uno.po +512 -0
  601. data/po/zh_CN/rbot-urban.po +0 -0
  602. data/po/zh_CN/rbot-url.po +0 -0
  603. data/po/zh_CN/rbot-usermodes.po +0 -0
  604. data/po/zh_CN/rbot-wall.po +33 -0
  605. data/po/zh_CN/rbot-weather.po +0 -0
  606. data/po/zh_CN/rbot-wheelfortune.po +205 -0
  607. data/po/zh_CN/rbot-wow.po +0 -0
  608. data/po/zh_CN/rbot-wserver.po +0 -0
  609. data/po/zh_CN/rbot-youtube.po +58 -0
  610. data/po/zh_CN/rbot.po +1006 -0
  611. data/po/zh_TW/rbot-alias.po +82 -0
  612. data/po/zh_TW/rbot-autoop.po +0 -0
  613. data/po/zh_TW/rbot-autorejoin.po +0 -0
  614. data/po/zh_TW/rbot-azgame.po +186 -0
  615. data/po/zh_TW/rbot-bans.po +0 -0
  616. data/po/zh_TW/rbot-bash.po +0 -0
  617. data/po/zh_TW/rbot-botsnack.po +0 -0
  618. data/po/zh_TW/rbot-cal.po +3 -0
  619. data/po/zh_TW/rbot-chanserv.po +0 -0
  620. data/po/zh_TW/rbot-chucknorris.po +0 -0
  621. data/po/zh_TW/rbot-debugger.po +0 -0
  622. data/po/zh_TW/rbot-deepthoughts.po +0 -0
  623. data/po/zh_TW/rbot-delicious.po +0 -0
  624. data/po/zh_TW/rbot-dice.po +0 -0
  625. data/po/zh_TW/rbot-dict.po +0 -0
  626. data/po/zh_TW/rbot-dictclient.po +111 -0
  627. data/po/zh_TW/rbot-digg.po +0 -0
  628. data/po/zh_TW/rbot-eightball.po +0 -0
  629. data/po/zh_TW/rbot-excuse.po +0 -0
  630. data/po/zh_TW/rbot-factoids.po +107 -0
  631. data/po/zh_TW/rbot-figlet.po +36 -0
  632. data/po/zh_TW/rbot-fish.po +0 -0
  633. data/po/zh_TW/rbot-forecast.po +0 -0
  634. data/po/zh_TW/rbot-fortune.po +0 -0
  635. data/po/zh_TW/rbot-freshmeat.po +0 -0
  636. data/po/zh_TW/rbot-grouphug.po +18 -0
  637. data/po/zh_TW/rbot-hl2.po +0 -0
  638. data/po/zh_TW/rbot-host.po +3 -0
  639. data/po/zh_TW/rbot-imdb.po +0 -0
  640. data/po/zh_TW/rbot-insult.po +0 -0
  641. data/po/zh_TW/rbot-iplookup.po +0 -0
  642. data/po/zh_TW/rbot-karma.po +0 -0
  643. data/po/zh_TW/rbot-keywords.po +24 -0
  644. data/po/zh_TW/rbot-lart.po +0 -0
  645. data/po/zh_TW/rbot-lastfm.po +172 -0
  646. data/po/zh_TW/rbot-linkbot.po +0 -0
  647. data/po/zh_TW/rbot-markov.po +20 -0
  648. data/po/zh_TW/rbot-math.po +0 -0
  649. data/po/zh_TW/rbot-modes.po +0 -0
  650. data/po/zh_TW/rbot-nickrecover.po +36 -0
  651. data/po/zh_TW/rbot-nickserv.po +104 -0
  652. data/po/zh_TW/rbot-nslookup.po +0 -0
  653. data/po/zh_TW/rbot-quakeauth.po +0 -0
  654. data/po/zh_TW/rbot-quiz.po +0 -0
  655. data/po/zh_TW/rbot-quotes.po +108 -0
  656. data/po/zh_TW/rbot-reaction.po +0 -0
  657. data/po/zh_TW/rbot-remind.po +0 -0
  658. data/po/zh_TW/rbot-remotectl.po +0 -0
  659. data/po/zh_TW/rbot-ri.po +0 -0
  660. data/po/zh_TW/rbot-roshambo.po +0 -0
  661. data/po/zh_TW/rbot-rot13.po +0 -0
  662. data/po/zh_TW/rbot-roulette.po +0 -0
  663. data/po/zh_TW/rbot-rss.po +20 -0
  664. data/po/zh_TW/rbot-salut.po +0 -0
  665. data/po/zh_TW/rbot-script.po +0 -0
  666. data/po/zh_TW/rbot-search.po +0 -0
  667. data/po/zh_TW/rbot-seen.po +0 -0
  668. data/po/zh_TW/rbot-shiritori.po +102 -0
  669. data/po/zh_TW/rbot-shortenurls.po +0 -0
  670. data/po/zh_TW/rbot-slashdot.po +0 -0
  671. data/po/zh_TW/rbot-spell.po +54 -0
  672. data/po/zh_TW/rbot-theyfightcrime.po +0 -0
  673. data/po/zh_TW/rbot-threat.po +0 -0
  674. data/po/zh_TW/rbot-time.po +0 -0
  675. data/po/zh_TW/rbot-topic.po +0 -0
  676. data/po/zh_TW/rbot-translator.po +77 -0
  677. data/po/zh_TW/rbot-tube.po +0 -0
  678. data/po/zh_TW/rbot-twitter.po +24 -0
  679. data/po/zh_TW/rbot-uno.po +512 -0
  680. data/po/zh_TW/rbot-urban.po +0 -0
  681. data/po/zh_TW/rbot-url.po +0 -0
  682. data/po/zh_TW/rbot-usermodes.po +0 -0
  683. data/po/zh_TW/rbot-wall.po +33 -0
  684. data/po/zh_TW/rbot-weather.po +0 -0
  685. data/po/zh_TW/rbot-wheelfortune.po +205 -0
  686. data/po/zh_TW/rbot-wow.po +0 -0
  687. data/po/zh_TW/rbot-wserver.po +0 -0
  688. data/po/zh_TW/rbot-youtube.po +58 -0
  689. data/po/zh_TW/rbot.po +1034 -0
  690. data/setup.rb +800 -574
  691. metadata +723 -108
  692. data/data/rbot/contrib/plugins/figlet.rb +0 -20
  693. data/data/rbot/contrib/plugins/ri.rb +0 -83
  694. data/data/rbot/plugins/demauro.rb +0 -95
  695. data/data/rbot/plugins/google.rb +0 -53
  696. data/data/rbot/plugins/opme.rb +0 -19
  697. data/data/rbot/plugins/roshambo.rb +0 -54
  698. data/data/rbot/plugins/rubyurl.rb +0 -39
  699. data/data/rbot/plugins/tinyurl.rb +0 -39
  700. data/data/rbot/plugins/xmlrpc.rb.disabled +0 -52
  701. data/data/rbot/templates/levels.rbot +0 -32
  702. data/data/rbot/templates/users.rbot +0 -1
  703. data/lib/rbot/auth.rb +0 -314
  704. data/lib/rbot/channel.rb +0 -54
  705. data/lib/rbot/httputil.rb +0 -309
  706. data/lib/rbot/utils.rb +0 -83
@@ -1,59 +1,96 @@
1
1
  class AutoOP < Plugin
2
- def help(plugin, topic="")
3
- "perform autoop based on hostmask - usage: add <hostmask> [channel channel ...], rm <hostmask> [channel], list - list current ops. If you don't specify which channels, all channels are assumed"
4
- end
5
-
6
- def join(m)
7
- return if m.address?
2
+ Config.register Config::BooleanValue.new('autoop.on_nick',
3
+ :default => true,
4
+ :desc => "Determines if the bot should auto-op when someone changes nick and the new nick matches a listed netmask")
5
+
6
+ def help(plugin, topic="")
7
+ return "perform autoop based on hostmask - usage: add <hostmask> [channel channel ...], rm <hostmask> [channel], list - list current ops. If you don't specify which channels, all channels are assumed"
8
+ end
9
+
10
+ def join(m)
11
+ return if m.address?
12
+ @registry.each { |mask,channels|
13
+ if m.source.matches?(mask.to_irc_netmask(:server => m.server)) &&
14
+ (channels.empty? || channels.include?(m.channel.to_s))
15
+ @bot.mode(m.channel, "+o", m.source.nick)
16
+ return
17
+ end
18
+ }
19
+ end
20
+
21
+ def nick(m)
22
+ return if m.address?
23
+ return unless @bot.config['autoop.on_nick']
24
+ is_on = m.server.channels.inject(ChannelList.new) { |list, ch|
25
+ list << ch if ch.users.include?(m.source)
26
+ list
27
+ }
28
+ is_on.each { |channel|
29
+ ch = channel.to_s
8
30
  @registry.each { |mask,channels|
9
- if(Irc.netmaskmatch(mask, m.source) &&
10
- (channels.empty? || channels.include?(m.channel)))
11
- @bot.mode(m.channel, "+o", m.sourcenick)
31
+ if m.source.matches?(mask.to_irc_netmask(:server => m.server)) &&
32
+ (channels.empty? || channels.include?(ch))
33
+ @bot.mode(ch, "+o", m.source.nick)
12
34
  return
13
35
  end
14
36
  }
15
- end
37
+ }
38
+ end
16
39
 
17
- def add(m, params)
40
+ def add(m, params)
41
+ if params[:channels].empty? || !@registry.has_key?(params[:mask])
42
+ # if the channels parameter is omitted (meaning all channels), or the
43
+ # hostmask isn't present in the registry, we just (over)write the channels
44
+ # in the registry
18
45
  @registry[params[:mask]] = params[:channels].dup
19
46
  m.okay
47
+ else
48
+ # otherwise, merge the channels with the ones existing in the registry
49
+ current_channels = @registry[params[:mask]]
50
+ if current_channels.empty?
51
+ m.reply "#{params[:mask]} is already being auto-opped on all channels"
52
+ else
53
+ # merge the already set channels
54
+ @registry[params[:mask]] = (params[:channels] | current_channels).uniq
55
+ m.okay
56
+ end
20
57
  end
58
+ end
21
59
 
22
- def rm(m, params)
23
- unless @registry.has_key?(params[:mask])
24
- m.reply @bot.lang.get('dunno')
25
- return
60
+ def rm(m, params)
61
+ unless @registry.has_key?(params[:mask])
62
+ m.reply @bot.lang.get('dunno')
63
+ return
64
+ end
65
+ if (!params[:channels].empty? && @registry[params[:mask]] != nil)
66
+ params[:channels].each do |c|
67
+ @registry[params[:mask]] = @registry[params[:mask]].reject {|ele| ele =~ /^#{c}$/i}
26
68
  end
27
- if (!params[:channels].empty? && @registry[params[:mask]] != nil)
28
- params[:channels].each do |c|
29
- @registry[params[:mask]] = @registry[params[:mask]].reject {|ele| ele =~ /^#{c}$/i}
30
- end
31
- if @registry[params[:mask]].empty?
32
- @registry.delete(params[:mask])
33
- end
34
- else
69
+ if @registry[params[:mask]].empty?
35
70
  @registry.delete(params[:mask])
36
71
  end
37
- m.okay
72
+ else
73
+ @registry.delete(params[:mask])
38
74
  end
75
+ m.okay
76
+ end
39
77
 
40
- def list(m, params)
41
- debug @registry.length
42
- if(@registry.length > 0)
43
- @registry.each { |mask,channels|
44
- m.reply "#{mask} in #{channels.empty? ? 'all channels' : channels.join(', ')}"
45
- }
46
- else
47
- m.reply "No entries"
48
- end
78
+ def list(m, params)
79
+ debug @registry.length
80
+ if(@registry.length > 0)
81
+ @registry.each { |mask,channels|
82
+ m.reply "#{mask} in #{channels.empty? ? 'all channels' : channels.join(', ')}"
83
+ }
84
+ else
85
+ m.reply "No entries"
49
86
  end
87
+ end
50
88
  end
51
89
 
52
90
  plugin = AutoOP.new
53
91
 
54
92
  plugin.map 'autoop list', :action => 'list'
55
- plugin.map 'autoop add :mask *channels', :action => 'add'
56
- plugin.map 'autoop add :mask', :action => 'add'
57
- plugin.map 'autoop rm :mask *channels', :action => 'rm'
58
- plugin.map 'autoop rm :mask', :action => 'rm'
93
+ plugin.map 'autoop add :mask [*channels]', :action => 'add'
94
+ plugin.map 'autoop rm :mask [*channels]', :action => 'rm'
59
95
 
96
+ plugin.default_auth('*',false)
@@ -1,16 +1,26 @@
1
1
  class AutoRejoinPlugin < Plugin
2
+ Config.register Config::BooleanValue.new('rejoin.insult',
3
+ :default => true,
4
+ :desc => "Determines if the bot will insult whoever kicked it, after rejoin")
5
+
2
6
  def help(plugin, topic="")
3
7
  "performs an automatic rejoin if the bot is kicked from a channel"
4
8
  end
9
+
5
10
  def kick(m)
6
11
  if m.address?
7
- @bot.timer.add_once(10, m) {|m|
8
- @bot.join m.channel
9
- @bot.say m.channel, @bot.lang.get("insult") % m.sourcenick
10
- }
12
+ r = rand(10)
13
+ if r > 0
14
+ @bot.timer.add_once(r) {
15
+ @bot.join m.channel
16
+ @bot.say(m.channel, @bot.lang.get("insult") % m.sourcenick) if @bot.config['rejoin.insult']
17
+ }
18
+ else
19
+ @bot.join m.channel
20
+ @bot.say(m.channel, @bot.lang.get("insult") % m.sourcenick) if @bot.config['rejoin.insult']
21
+ end
11
22
  end
12
23
  end
13
24
  end
14
25
 
15
26
  plugin = AutoRejoinPlugin.new
16
- plugin.register("autorejoin")
@@ -1,205 +1,509 @@
1
- # Plugin for the Ruby IRC bot (http://linuxbrit.co.uk/rbot/)
1
+ #-- vim:sw=2:et
2
+ #++
2
3
  #
3
- # Managing kick and bans, automatically removing bans after timeouts, quiet bans, and kickban/quietban based on regexp
4
+ # :title: Bans Plugin v3 for rbot 0.9.11 and later
4
5
  #
5
- # Commands are little Ruby programs that run in the context of the command plugin. You
6
- # can create them directly in an IRC channel, and invoke them just like normal rbot plugins.
6
+ # Author:: Marco Gulino <marco@kmobiletools.org>
7
+ # Author:: kamu <mr.kamu@gmail.com>
8
+ # Author:: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
7
9
  #
8
- # (c) 2006 Marco Gulino <marco@kmobiletools.org>
9
- # Licensed under GPL V2.
10
+ # Copyright:: (C) 2006 Marco Gulino
11
+ # Copyright:: (C) 2007 kamu, Giuseppe Bilotta
12
+ #
13
+ # License:: GPL V2.
14
+ #
15
+ # Managing kick and bans, automatically removing bans after timeouts, quiet
16
+ # bans, and kickban/quietban based on regexp
17
+ #
18
+ # v1 -> v2 (kamu's version, never released)
19
+ # * reworked
20
+ # * autoactions triggered on join
21
+ # * action on join or badword can be anything: kick, ban, kickban, quiet
22
+ #
23
+ # v2 -> v3 (GB)
24
+ # * remove the 'bans' prefix from most of the commands
25
+ # * (un)quiet has been renamed to (un)silence because 'quiet' was used to
26
+ # tell the bot to keep quiet
27
+ # * both (un)quiet and (un)silence are accepted as actions
28
+ # * use the more descriptive 'onjoin' term for autoactions
29
+ # * convert v1's (0.9.10) :bans and :bansmasks to BadWordActions and
30
+ # WhitelistEntries
31
+ # * enhanced list manipulation facilities
32
+ # * fixed regexp usage in requirements for plugin map
33
+ # * add proper auth management
10
34
 
35
+ define_structure :OnJoinAction, :host, :action, :channel, :reason
36
+ define_structure :BadWordAction, :regexp, :action, :channel, :timer, :reason
37
+ define_structure :WhitelistEntry, :host, :channel
11
38
 
12
39
  class BansPlugin < Plugin
40
+
41
+ IdxRe = /^\d+$/
42
+ TimerRe = /^\d+[smhd]$/
43
+ ChannelRe = /^#+[^\s]+$/
44
+ ChannelAllRe = /^(?:all|#+[^\s]+)$/
45
+ ActionRe = /(?:ban|kick|kickban|silence|quiet)/
46
+
47
+ def name
48
+ "bans"
49
+ end
50
+
51
+ def make_badword_rx(txt)
52
+ return /\b(?:#{txt})\b/i
53
+ end
54
+
13
55
  def initialize
14
56
  super
15
- if @registry.has_key?(:bans)
16
- @bansregexps = @registry[:bans]
17
- else
18
- @bansregexps = Hash.new
19
- end
20
-
21
- if @registry.has_key?(:bansmasks)
22
- @whitelist = @registry[:bansmasks]
23
- else
24
- @whitelist = Hash.new
25
- end
26
- end
27
-
28
57
 
29
- def save
30
- @registry[:bans] = @bansregexps
31
- @registry[:bansmasks] = @whitelist
58
+ # Convert old BadWordActions, which were simpler and labelled :bans
59
+ if @registry.has_key? :bans
60
+ badwords = Array.new
61
+ bans = @registry[:bans]
62
+ @registry[:bans].each { |ar|
63
+ case ar[0]
64
+ when "quietban"
65
+ action = :silence
66
+ when "kickban"
67
+ action = :kickban
68
+ else
69
+ # Shouldn't happen
70
+ warning "Unknown action in old data #{ar.inspect} -- entry ignored"
71
+ next
72
+ end
73
+ bans.delete(ar)
74
+ chan = ar[1].downcase
75
+ regexp = make_badword_rx(ar[2])
76
+ badwords << BadWordAction.new(regexp, action, chan, "0s", "")
77
+ }
78
+ @registry[:badwords] = badwords
79
+ if bans.length > 0
80
+ # Store the ones we couldn't convert
81
+ @registry[:bans] = bans
82
+ else
83
+ @registry.delete(:bans)
84
+ end
85
+ else
86
+ @registry[:badwords] = Array.new unless @registry.has_key? :badwords
32
87
  end
33
88
 
89
+ # Convert old WhitelistEntries, which were simpler and labelled :bansmasks
90
+ if @registry.has_key? :bans
91
+ wl = Array.new
92
+ @registry[:bansmasks].each { |mask|
93
+ badwords << WhitelistEntry.new(mask, "all")
94
+ }
95
+ @registry[:whitelist] = wl
96
+ @registry.delete(:bansmasks)
97
+ else
98
+ @registry[:whitelist] = Array.new unless @registry.has_key? :whitelist
99
+ end
34
100
 
35
-
101
+ @registry[:onjoin] = Array.new unless @registry.has_key? :onjoin
102
+ end
36
103
 
37
104
  def help(plugin, topic="")
38
- case topic
39
- when "kickbans"
40
- return "bans ban|quietban nick [channel] [timer]: bans|quietbans a nick from the channel for a specified time. bans kick nick [channel] [message]: kicks <nick> from <channel> with kick <message>. bans kickban nick [channel] [timer] [message]: kick+ban, same parameters as before. timer is always specified as <number><unit>, like 3m, 10s, 1h."
41
- when "whitelist"
42
- return "bans addwhitelist <mask>: adds <mask> to whitelist (NEVER regexp ban this). bans whitelist: shows current whitelist. bans delwhitelist <key>: delete whitelist entry <key>."
43
- when "regexpbans"
44
- return "bans addregexp type [timer] regexp: listens for <regexp>, then do actions depending on <type> (\"quietban\" or \"kickban\", currently). If timer if specified, it removes the ban after timer expires. timer is always specified as <number><unit>, like 3m, 10s, 1h. bans delregexp <key>: remove watching for regexp <key>. bans listregexps: show current regexp watching list."
45
- else
46
- return "Topics: \"kickbans\", \"whitelist\", \"regexpbans\""
47
- end
48
- # return "Channel administration plugin. bans ban nick [channel] [timer]: bans a nick from the channel for a specified time; bans unban nick [channel]: removes the ban on <nick>; bans quiet nick [channel] [timer] and bans unquiet nick [channel]: same as ban and unban, but uses quiet ban instead. Timer is specified as 6s, 10m, 2h. If channel is not specified will use current channel.\nbans listregexps|addregexp type timeout regexp|delregexp: regexp banning management. Type can be quietban or kickban"
105
+ case plugin
106
+ when "ban"
107
+ return "ban <nick/hostmask> [Xs/m/h/d] [#channel]: ban a user from the given channel for the given amount of time. default is forever, on the current channel"
108
+ when "unban"
109
+ return "unban <nick/hostmask> [#channel]: unban a user from the given channel. defaults to the current channel"
110
+ when "kick"
111
+ return "kick <nick> [#channel] [reason ...]: kick a user from the given channel with the given reason. defaults to the current channel, no reason"
112
+ when "kickban"
113
+ return "kickban <nick> [Xs/m/h/d] [#channel] [reason ...]: kicks and bans a user from the given channel for the given amount of time, with the given reason. default is forever, on the current channel, with no reason"
114
+ when "silence"
115
+ return "silence <nick/hostmask> [Xs/m/h/d] [#channel]: silence a user on the given channel for the given time. default is forever, on the current channel. not all servers support silencing users"
116
+ when "unsilence"
117
+ return "unsilence <nick/hostmask> [#channel]: allow the given user to talk on the given channel. defaults to the current channel"
118
+ when "bans"
119
+ case topic
120
+ when "add"
121
+ return "bans add <onjoin|badword|whitelist>: add an automatic action for people that join or say some bad word, or a whitelist entry. further help available"
122
+ when "add onjoin"
123
+ return "bans add onjoin <hostmask> [action] [#channel] [reason ...]: will add an autoaction for any one who joins with hostmask. default action is silence, default channel is all"
124
+ when "add badword"
125
+ return "bans add badword <regexp> [action] [Xs/m/h/d] [#channel|all] [reason ...]: adds a badword regexp, if a user sends a message that matches regexp, the action will be invoked. default action is silence, default channel is all"
126
+ when "add whitelist"
127
+ return "bans add whitelist <hostmask> [#channel|all]: add the given hostmask to the whitelist. no autoaction will be triggered by users on the whitelist"
128
+ when "rm"
129
+ return "bans rm <onjoin|badword|whitelist> <hostmask/regexp> [#channel], or bans rm <onjoin|badword|whitelist> index <num>: removes the specified onjoin or badword rule or whitelist entry."
130
+ when "list"
131
+ return"bans list <onjoin|badword|whitelist>: lists all onjoin or badwords or whitelist entries"
132
+ end
133
+ end
134
+ return "bans <command>: allows a user of the bot to do a range of bans and unbans. commands are: [un]ban, kick[ban], [un]silence, add, rm and list"
49
135
  end
50
136
 
137
+ def listen(m)
138
+ return unless m.respond_to?(:public?) and m.public?
139
+ @registry[:whitelist].each { |white|
140
+ next unless ['all', m.target.downcase].include?(white.channel)
141
+ return if m.source.matches?(white.host)
142
+ }
51
143
 
52
- def cmd_setmode(m, nick, channel, smode, time, umode )
53
- channel=channel != '####currentchannel' ? channel : m.target
54
- timercnt=/^(\d+)([smh])$/.match(time)[1]
55
- timeru=/^(\d+)([smh])$/.match(time)[2]
56
- timer = timercnt.to_i if timeru == "s"
57
- timer = timercnt.to_i*60 if timeru == "m"
58
- timer = timercnt.to_i*3600 if timeru == "h"
59
- if timer > 0 then @bot.timer.add_once(timer, m ) {|m|
60
- @bot.sendq("MODE #{channel} #{umode} #{nick}")
61
- # m.reply("Undo mode")
62
- } end
144
+ @registry[:badwords].each { |badword|
145
+ next unless ['all', m.target.downcase].include?(badword.channel)
146
+ next unless badword.regexp.match(m.plainmessage)
63
147
 
64
- @bot.sendq("MODE #{channel} #{smode} #{nick}")
65
- # m.reply "ban cmd nick=#{nick} channel=#{channel} timer=#{timercnt} #{timeru} #{timer}"
66
- end
67
- def cmd_dokick(m, nick, channel, message)
68
- channel=channel != '####currentchannel' ? channel : m.target
69
- @bot.sendq("KICK #{channel} #{nick} :#{message}")
148
+ m.reply "bad word detected! #{badword.action} for #{badword.timer} because: #{badword.reason}"
149
+ do_cmd(badword.action.to_sym, m.source.nick, m.target, badword.timer, badword.reason)
150
+ return
151
+ }
70
152
  end
71
153
 
154
+ def join(m)
155
+ @registry[:whitelist].each { |white|
156
+ next unless ['all', m.target.downcase].include?(white.channel)
157
+ return if m.source.matches?(white.host)
158
+ }
159
+
160
+ @registry[:onjoin].each { |auto|
161
+ next unless ['all', m.target.downcase].include?(auto.channel)
162
+ next unless m.source.matches? auto.host
72
163
 
73
- def cmd_kick(m,params)
74
- cmd_dokick(m,params[:nick], params[:channel], params[:message])
164
+ do_cmd(auto.action.to_sym, m.source.nick, m.target, "0s", auto.reason)
165
+ return
166
+ }
75
167
  end
76
- def cmd_ban(m, params)
77
- cmd_setmode(m, params[:nick], params[:channel], "+b", params[:timer], "-b")
168
+
169
+ def ban_user(m, params=nil)
170
+ nick, channel = params[:nick], check_channel(m, params[:channel])
171
+ timer = params[:timer]
172
+ do_cmd(:ban, nick, channel, timer)
78
173
  end
79
- def cmd_kickban(m,params)
80
- cmd_setmode(m, params[:nick], params[:channel], "+b", params[:timer], "-b")
81
- cmd_dokick(m,params[:nick], params[:channel], params[:message])
174
+
175
+ def unban_user(m, params=nil)
176
+ nick, channel = params[:nick], check_channel(m, params[:channel])
177
+ do_cmd(:unban, nick, channel)
82
178
  end
83
179
 
180
+ def kick_user(m, params=nil)
181
+ nick, channel = params[:nick], check_channel(m, params[:channel])
182
+ reason = params[:reason].to_s
183
+ do_cmd(:kick, nick, channel, "0s", reason)
184
+ end
84
185
 
85
- def cmd_quietban(m, params)
86
- cmd_setmode(m, params[:nick], params[:channel], "+q", params[:timer], "-q")
186
+ def kickban_user(m, params=nil)
187
+ nick, channel, reason = params[:nick], check_channel(m, params[:channel])
188
+ timer, reason = params[:timer], params[:reason].to_s
189
+ do_cmd(:kickban, nick, channel, timer, reason)
87
190
  end
88
- def cmd_unban(m, params)
89
- cmd_setmode(m, params[:nick], params[:channel], "-b", "0s", "")
191
+
192
+ def silence_user(m, params=nil)
193
+ nick, channel = params[:nick], check_channel(m, params[:channel])
194
+ timer = params[:timer]
195
+ do_cmd(:silence, nick, channel, timer)
90
196
  end
91
- def cmd_unquiet(m, params)
92
- cmd_setmode(m, params[:nick], params[:channel], "-q", "0s", "")
197
+
198
+ def unsilence_user(m, params=nil)
199
+ nick, channel = params[:nick], check_channel(m, params[:channel])
200
+ do_cmd(:unsilence, nick, channel)
93
201
  end
94
202
 
95
- def listen(m)
96
- if @bansregexps.length <= 0 then return end
97
- @whitelist.each_key do |key|
98
- if Irc.netmaskmatch(@whitelist[key], m.source) then
99
- return
100
- end
101
- next
203
+ def add_onjoin(m, params=nil)
204
+ begin
205
+ host, channel = m.server.new_netmask(params[:host]), params[:channel].downcase
206
+ action, reason = params[:action], params[:reason].to_s
207
+
208
+ autos = @registry[:onjoin]
209
+ autos << OnJoinAction.new(host, action, channel, reason.dup)
210
+ @registry[:onjoin] = autos
211
+
212
+ m.okay
213
+ rescue
214
+ error $!
215
+ m.reply $!
102
216
  end
217
+ end
218
+
219
+ def list_onjoin(m, params=nil)
220
+ m.reply "onjoin rules: #{@registry[:onjoin].length}"
221
+ @registry[:onjoin].each_with_index { |auto, idx|
222
+ m.reply "\##{idx+1}: #{auto.host} | #{auto.action} | #{auto.channel} | '#{auto.reason}'"
223
+ }
224
+ end
225
+
226
+ def rm_onjoin(m, params=nil)
227
+ autos = @registry[:onjoin]
228
+ count = autos.length
229
+
230
+ idx = nil
231
+ idx = params[:idx].to_i if params[:idx]
103
232
 
104
- @bansregexps.each_key do |key|
105
- match=@bansregexps[key][2]
106
- if m.message =~ /^.*#{match}.*$/i then
107
- case @bansregexps[key][0]
108
- when "quietban"
109
- cmd_setmode(m, m.sourcenick, m.channel, "+q", @bansregexps[key][1], "-q")
110
- return
111
- when "kickban"
112
- cmd_setmode(m, m.sourcenick, m.channel, "+b", @bansregexps[key][1], "-b")
113
- cmd_dokick(m, m.sourcenick, m.channel, "Autokick")
114
- return
115
- end
233
+ if idx
234
+ if idx > count
235
+ m.reply "No such onjoin \##{idx}"
236
+ return
237
+ end
238
+ autos.delete_at(idx-1)
239
+ else
240
+ begin
241
+ host = m.server.new_netmask(params[:host])
242
+ channel = params[:channel].downcase
243
+
244
+ autos.each { |rule|
245
+ next unless ['all', rule.channel].include?(channel)
246
+ autos.delete rule if rule.host == host
247
+ }
248
+ rescue
249
+ error $!
250
+ m.reply $!
116
251
  end
117
- next
252
+ end
253
+ @registry[:onjoin] = autos
254
+ if count > autos.length
255
+ m.okay
256
+ else
257
+ m.reply "No matching onjoin rule for #{host} found"
118
258
  end
119
259
  end
120
260
 
121
- def cmd_addregexp(m, params)
122
- toadd=Array[ params[:type], params[:timeout], "#{params[:regexp]}" ]
123
- regsize=@bansregexps.length+1
124
- # m.reply("Current registry size: #{regsize}")
261
+ def add_badword(m, params=nil)
262
+ regexp, channel = make_badword_rx(params[:regexp]), params[:channel].downcase.dup
263
+ action, timer, reason = params[:action], params[:timer].dup, params[:reason].to_s
264
+
265
+ badwords = @registry[:badwords]
266
+ badwords << BadWordAction.new(regexp, action, channel, timer, reason)
267
+ @registry[:badwords] = badwords
125
268
 
126
- @bansregexps[regsize]=toadd
127
-
128
- # @bansregexps.store(toadd)
129
- regsize=@bansregexps.length
130
- # m.reply("New registry size: #{regsize}")
131
- m.reply("Done.")
269
+ m.okay
132
270
  end
133
- def cmd_listregexp(m, params)
134
- if @bansregexps.length == 0
135
- m.reply("No regexps stored."); return
271
+
272
+ def list_badword(m, params=nil)
273
+ m.reply "badword rules: #{@registry[:badwords].length}"
274
+
275
+ @registry[:badwords].each_with_index { |badword, idx|
276
+ m.reply "\##{idx+1}: #{badword.regexp.source} | #{badword.action} | #{badword.channel} | #{badword.timer} | #{badword.reason}"
277
+ }
278
+ end
279
+
280
+ def rm_badword(m, params=nil)
281
+ badwords = @registry[:badwords]
282
+ count = badwords.length
283
+
284
+ idx = nil
285
+ idx = params[:idx].to_i if params[:idx]
286
+
287
+ if idx
288
+ if idx > count
289
+ m.reply "No such badword \##{idx}"
290
+ return
291
+ end
292
+ badwords.delete_at(idx-1)
293
+ else
294
+ channel = params[:channel].downcase
295
+
296
+ regexp = make_badword_rx(params[:regexp])
297
+ debug "Trying to remove #{regexp.inspect} from #{badwords.inspect}"
298
+
299
+ badwords.each { |badword|
300
+ next unless ['all', badword.channel].include?(channel)
301
+ debug "Removing #{badword.inspect}" if badword.regexp == regexp
302
+ badwords.delete(badword) if badword.regexp == regexp
303
+ }
136
304
  end
137
- @bansregexps.each_key do |key|
138
- m.reply("Key: #{key}, type: #{@bansregexps[key][0]}, timeout: #{@bansregexps[key][1]}, pattern: #{@bansregexps[key][2]}")
139
- sleep 1
140
- next
305
+
306
+ @registry[:badwords] = badwords
307
+ if count > badwords.length
308
+ m.okay
309
+ else
310
+ m.reply "No matching badword #{regexp} found"
141
311
  end
142
312
  end
143
- def cmd_delregexp(m, params)
144
- index=params[:index]
145
- @bansregexps.each_key do |key|
146
- if ( "#{key}" == "#{index}" ) then
147
- @bansregexps.delete(key)
148
- m.reply("Done.")
149
- return
150
- end
151
- next
152
- end
153
- m.reply("Key #{index} not found.")
313
+
314
+ def add_whitelist(m, params=nil)
315
+ begin
316
+ host, channel = m.server.new_netmask(params[:host]), params[:channel].downcase
317
+
318
+ # TODO check if a whitelist entry for this host already exists
319
+ whitelist = @registry[:whitelist]
320
+ whitelist << WhitelistEntry.new(host, channel)
321
+ @registry[:whitelist] = whitelist
322
+
323
+ m.okay
324
+ rescue
325
+ error $!
326
+ m.reply $!
327
+ end
154
328
  end
155
- def cmd_whitelistadd(m, params)
156
- regsize=@whitelist.length+1
157
- @whitelist[regsize]=params[:netmask]
158
- m.reply("Done.")
329
+
330
+ def list_whitelist(m, params=nil)
331
+ m.reply "whitelist entries: #{@registry[:whitelist].length}"
332
+ @registry[:whitelist].each_with_index { |auto, idx|
333
+ m.reply "\##{idx+1}: #{auto.host} | #{auto.channel}"
334
+ }
159
335
  end
160
- def cmd_whitelist(m, params)
161
- if @whitelist.length == 0
162
- m.reply("Whitelist is empty."); return
336
+
337
+ def rm_whitelist(m, params=nil)
338
+ wl = @registry[:whitelist]
339
+ count = wl.length
340
+
341
+ idx = nil
342
+ idx = params[:idx].to_i if params[:idx]
343
+
344
+ if idx
345
+ if idx > count
346
+ m.reply "No such whitelist entry \##{idx}"
347
+ return
163
348
  end
164
- @whitelist.each_key do |key|
165
- m.reply("Key: #{key}, netmask: #{@whitelist[key]}")
166
- sleep 1
167
- next
349
+ wl.delete_at(idx-1)
350
+ else
351
+ begin
352
+ host = m.server.new_netmask(params[:host])
353
+ channel = params[:channel].downcase
354
+
355
+ wl.each { |rule|
356
+ next unless ['all', rule.channel].include?(channel)
357
+ wl.delete rule if rule.host == host
358
+ }
359
+ rescue
360
+ error $!
361
+ m.reply $!
168
362
  end
363
+ end
364
+ @registry[:whitelist] = wl
365
+ if count > whitelist.length
366
+ m.okay
367
+ else
368
+ m.reply "No host matching #{host}"
369
+ end
169
370
  end
170
- def cmd_whitelistdel(m, params)
171
- index=params[:index]
172
- @whitelist.each_key do |key|
173
- if ( "#{key}" == "#{index}" ) then
174
- @whitelist.delete(key)
175
- m.reply("Done.")
176
- return
177
- end
178
- next
371
+
372
+ private
373
+ def check_channel(m, strchannel)
374
+ begin
375
+ raise "must specify channel if using privmsg" if m.private? and not strchannel
376
+ channel = m.server.channel(strchannel) || m.target
377
+ raise "I am not in that channel" unless channel.has_user?(@bot.nick)
378
+
379
+ return channel
380
+ rescue
381
+ error $!
382
+ m.reply $!
383
+ end
384
+ end
385
+
386
+ def do_cmd(action, nick, channel, timer_in=nil, reason=nil)
387
+ case timer_in
388
+ when nil
389
+ timer = 0
390
+ when /^(\d+)s$/
391
+ timer = $1.to_i
392
+ when /^(\d+)m$/
393
+ timer = $1.to_i * 60
394
+ when /^(\d+)h$/
395
+ timer = $1.to_i * 60 * 60
396
+ when /^(\d+)d$/
397
+ timer = $1.to_i * 60 * 60 * 24
398
+ else
399
+ raise "Wrong time specifications"
400
+ end
401
+
402
+ case action
403
+ when :ban
404
+ set_temporary_mode(channel, 'b', nick, timer)
405
+ when :unban
406
+ set_mode(channel, "-b", nick)
407
+ when :kick
408
+ do_kick(channel, nick, reason)
409
+ when :kickban
410
+ set_temporary_mode(channel, 'b', nick, timer)
411
+ do_kick(channel, nick, reason)
412
+ when :silence, :quiet
413
+ set_mode(channel, "+q", nick)
414
+ @bot.timer.add_once(timer) { set_mode(channel, "-q", nick) } if timer > 0
415
+ when :unsilence, :unquiet
416
+ set_mode(channel, "-q", nick)
179
417
  end
180
- m.reply("Key #{index} not found.")
418
+ end
419
+
420
+ def set_mode(channel, mode, nick)
421
+ host = channel.has_user?(nick) ? "*!*@" + channel.get_user(nick).host : nick
422
+ @bot.mode(channel, mode, host)
423
+ end
424
+
425
+ def set_temporary_mode(channel, mode, nick, timer)
426
+ host = channel.has_user?(nick) ? "*!*@" + channel.users[nick].host : nick
427
+ @bot.mode(channel, "+#{mode}", host)
428
+ return if timer == 0
429
+ @bot.timer.add_once(timer) { @bot.mode(channel, "-#{mode}", host) }
430
+ end
431
+
432
+ def do_kick(channel, nick, reason="")
433
+ @bot.kick(channel, nick, reason)
181
434
  end
182
435
  end
436
+
183
437
  plugin = BansPlugin.new
184
- plugin.register("bans")
185
438
 
186
- plugin.map 'bans whitelist', :action => 'cmd_whitelist', :auth => 'bans'
187
- plugin.map 'bans delwhitelist :index', :action => 'cmd_whitelistdel', :auth => 'bans', :requirements => { :index => /^\d+$/ }
188
- plugin.map 'bans addwhitelist :netmask', :action => 'cmd_whitelistadd', :auth => 'bans'
189
- plugin.map 'bans delregexp :index', :action => 'cmd_delregexp', :auth => 'bans', :requirements => { :index => /^\d+$/ }
190
- plugin.map 'bans addregexp :type :timeout *regexp', :action => 'cmd_addregexp', :auth => 'bans', :requirements => {:timeout => /^\d+[smh]$/, :type => /(quietban)|(kickban)/ }, :defaults => { :timeout => "0s" }
191
- plugin.map 'bans listregexps', :action => 'cmd_listregexp', :auth => 'bans'
192
- plugin.map 'bans ban :nick :channel :timer', :action => 'cmd_ban', :auth => 'bans', :requirements => {:timer => /^\d+[smh]$/, :channel => /^#+[^\s]+$/}, :defaults => {:channel => '####currentchannel', :timer => '0s'}
193
- plugin.map 'bans quiet :nick :channel :timer', :action => 'cmd_quietban', :auth => 'bans', :requirements => {:timer => /^\d+[smh]$/, :channel => /^#+[^\s]+$/}, :defaults => {:channel => '####currentchannel', :timer => '0s'}
439
+ plugin.default_auth( 'act', false )
440
+ plugin.default_auth( 'edit', false )
441
+ plugin.default_auth( 'list', true )
442
+
443
+ plugin.map 'ban :nick :timer :channel', :action => 'ban_user',
444
+ :requirements => {:timer => BansPlugin::TimerRe, :channel => BansPlugin::ChannelRe},
445
+ :defaults => {:timer => nil, :channel => nil},
446
+ :auth_path => 'act'
447
+ plugin.map 'unban :nick :channel', :action => 'unban_user',
448
+ :requirements => {:channel => BansPlugin::ChannelRe},
449
+ :defaults => {:channel => nil},
450
+ :auth_path => 'act'
451
+ plugin.map 'kick :nick :channel *reason', :action => 'kick_user',
452
+ :requirements => {:channel => BansPlugin::ChannelRe},
453
+ :defaults => {:channel => nil, :reason => 'requested'},
454
+ :auth_path => 'act'
455
+ plugin.map 'kickban :nick :timer :channel *reason', :action => 'kickban_user',
456
+ :requirements => {:timer => BansPlugin::TimerRe, :channel => BansPlugin::ChannelRe},
457
+ :defaults => {:timer => nil, :channel => nil, :reason => 'requested'},
458
+ :auth_path => 'act'
459
+ plugin.map 'silence :nick :timer :channel', :action => 'silence_user',
460
+ :requirements => {:timer => BansPlugin::TimerRe, :channel => BansPlugin::ChannelRe},
461
+ :defaults => {:timer => nil, :channel => nil},
462
+ :auth_path => 'act'
463
+ plugin.map 'unsilence :nick :channel', :action => 'unsilence_user',
464
+ :requirements => {:channel => BansPlugin::ChannelRe},
465
+ :defaults => {:channel => nil},
466
+ :auth_path => 'act'
194
467
 
195
- plugin.map 'bans kick :nick :channel *message', :action => 'cmd_kick', :auth => 'bans', :requirements => {:channel => /^#+[^\s]+$/}, :defaults => {:channel => '####currentchannel', :message => 'Au revoir.'}
196
- plugin.map 'bans kickban :nick :channel :timer *message', :action => 'cmd_kickban', :auth => 'bans', :requirements => {:channel => /^#+[^\s]+$/, :timer => /^\d+[smh]$/ }, :defaults => {:channel => '####currentchannel', :message => 'Au revoir.', :timer => '0s'}
468
+ plugin.map 'bans add onjoin :host :action :channel *reason', :action => 'add_onjoin',
469
+ :requirements => {:action => BansPlugin::ActionRe, :channel => BansPlugin::ChannelAllRe},
470
+ :defaults => {:action => 'kickban', :channel => 'all', :reason => 'netmask not welcome'},
471
+ :auth_path => 'edit::onjoin'
472
+ plugin.map 'bans rm onjoin index :idx', :action => 'rm_onjoin',
473
+ :requirements => {:num => BansPlugin::IdxRe},
474
+ :auth_path => 'edit::onjoin'
475
+ plugin.map 'bans rm onjoin :host :channel', :action => 'rm_onjoin',
476
+ :requirements => {:channel => BansPlugin::ChannelAllRe},
477
+ :defaults => {:channel => 'all'},
478
+ :auth_path => 'edit::onjoin'
479
+ plugin.map 'bans list onjoin[s]', :action => 'list_onjoin',
480
+ :auth_path => 'list::onjoin'
197
481
 
482
+ plugin.map 'bans add badword :regexp :action :timer :channel *reason', :action => 'add_badword',
483
+ :requirements => {:action => BansPlugin::ActionRe, :timer => BansPlugin::TimerRe, :channel => BansPlugin::ChannelAllRe},
484
+ :defaults => {:action => 'silence', :timer => "0s", :channel => 'all', :reason => 'bad word'},
485
+ :auth_path => 'edit::badword'
486
+ plugin.map 'bans rm badword index :idx', :action => 'rm_badword',
487
+ :requirements => {:num => BansPlugin::IdxRe},
488
+ :auth_path => 'edit::badword'
489
+ plugin.map 'bans rm badword :regexp :channel', :action => 'rm_badword',
490
+ :requirements => {:channel => BansPlugin::ChannelAllRe},
491
+ :defaults => {:channel => 'all'},
492
+ :auth_path => 'edit::badword'
493
+ plugin.map 'bans list badword[s]', :action => 'list_badword',
494
+ :auth_path => 'list::badword'
198
495
 
199
- plugin.map 'bans unban :nick :channel', :action => 'cmd_unban', :auth => 'bans', :requirements => { :channel => /^#+[^\s]+$/}, :defaults => {:channel => '####currentchannel'}
200
- plugin.map 'bans unquiet :nick :channel', :action => 'cmd_unquiet', :auth => 'bans', :requirements => { :channel => /^#+[^\s]+$/}, :defaults => {:channel => '####currentchannel'}
496
+ plugin.map 'bans add whitelist :host :channel', :action => 'add_whitelist',
497
+ :requirements => {:channel => BansPlugin::ChannelAllRe},
498
+ :defaults => {:channel => 'all'},
499
+ :auth_path => 'edit::whitelist'
500
+ plugin.map 'bans rm whitelist index :idx', :action => 'rm_whitelist',
501
+ :requirements => {:num => BansPlugin::IdxRe},
502
+ :auth_path => 'edit::whitelist'
503
+ plugin.map 'bans rm whitelist :host :channel', :action => 'rm_whitelist',
504
+ :requirements => {:channel => BansPlugin::ChannelAllRe},
505
+ :defaults => {:channel => 'all'},
506
+ :auth_path => 'edit::whitelist'
507
+ plugin.map 'bans list whitelist', :action => 'list_whitelist',
508
+ :auth_path => 'list::whitelist'
201
509
 
202
- #plugin.map 'admin kick :nick :channel *message', :action => 'cmd_kick', :auth => 'admin'
203
- #plugin.map 'admin kickban :nick :channel *message', :action => 'cmd_kickban' :auth => 'admin'
204
- #plugin.register("quietban")
205
- #plugin.register("kickban")