Difference between revisions of "Ircbot"

From Fixme.ch
Jump to: navigation, search
(Configuration and Installation)
(Configuration and Installation)
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
[[Category:Services]]
 
[[Category:Services]]
 
== Information ==
 
== Information ==
* FIXMYBOT on Freenode
+
* FIXMYBOT on Freenode in #fixme and #fixme-ctf
 
* We're using [https://github.com/embolalia/willie Willie]
 
* We're using [https://github.com/embolalia/willie Willie]
 +
** extras modules https://github.com/embolalia/willie-extras
 
* https://github.com/embolalia/willie/wiki/Commands
 
* https://github.com/embolalia/willie/wiki/Commands
  
 
== Configuration and Installation ==
 
== Configuration and Installation ==
 
* /home/irc-bot/.willie/default.cfg
 
* /home/irc-bot/.willie/default.cfg
 +
* Started in <s>/etc/rc.local</s> /etc/inittab
 
* Installation (latest version with better rss module)
 
* Installation (latest version with better rss module)
 
  cd /tmp; git clone git://github.com/embolalia/willie.git
 
  cd /tmp; git clone git://github.com/embolalia/willie.git
 
  cd willie; python setup.py install; rm -fr /tmp/willie
 
  cd willie; python setup.py install; rm -fr /tmp/willie
  pip install feedparser pytz lxml pygeoip praw
+
  pip install feedparser pytz lxml pygeoip praw tweepy
  apt-get install python-enchant
+
  apt-get install python-enchant python-mysqldb
  
  su -c 'willie -w' irc-bot
+
  su -c 'willie -w' irc-bot #configuration
* Patch rss to show the link of the article
+
su -c 'willie --fork' irc-bot #run in background
<pre>
+
--- /tmp/willie/willie/modules/rss.py  2013-07-20 17:43:43.570496043 +0200
+
+++ /usr/local/lib/python2.7/dist-packages/willie/modules/rss.py        2013-07-20 17:54:07.144679013 +0200
+
@@ -348,8 +348,8 @@
+
                continue
+
+
        # print new entry
+
-        message = u"[\x02{0}\x02] \x02{1}\x02 {2}".format(
+
-            colour_text(feed_name, fg, bg), entry.title, entry.link)
+
+        message = u"[\x02{0}\x02] \x02{1}\x02 {2} {3}".format(
+
+            colour_text(feed_name, fg, bg, article_url), entry.title, entry.link)
+
        if entry.updated:
+
            message += " - " + entry.updated
+
        bot.msg(feed_channel, message)
+
</pre>
+
  
 
== Plugins ==
 
== Plugins ==
Line 37: Line 24:
 
  .rss list
 
  .rss list
  
  .startrss
+
  .startrss -i 120 #interval in seconds

Latest revision as of 15:48, 28 August 2014

Information

Configuration and Installation

  • /home/irc-bot/.willie/default.cfg
  • Started in /etc/rc.local /etc/inittab
  • Installation (latest version with better rss module)
cd /tmp; git clone git://github.com/embolalia/willie.git
cd willie; python setup.py install; rm -fr /tmp/willie
pip install feedparser pytz lxml pygeoip praw tweepy
apt-get install python-enchant python-mysqldb
su -c 'willie -w' irc-bot #configuration
su -c 'willie --fork' irc-bot #run in background

Plugins

RSS

.rss add #channel name http://example.com/rss
.rss del name
.rss list
.startrss -i 120 #interval in seconds