summaryrefslogtreecommitdiffstats
path: root/news/newsbot.py
blob: 2f8bf6357aef1d1456c1f089fef79e298b530b78 (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
249
250
251
252
253
254
255
256
257
258
259
from ircasy import asybot
import threading
from asyncore import loop
import logging
import os
import subprocess

import feedparser
import math
import re
import subprocess
from datetime import datetime
from time import sleep
#testbot = NewsBot('ire', 6667, 'crabman23', ['#retiolum'], loglevel=logging.DEBUG)



## Newsbot Controller Class
class NewsBot(asybot):
    def __init__(self, name, channels=['#test'], server='ire', port=6667, timeout=60, loglevel=logging.ERROR, url_shortener='http://localhost'):
        asybot.__init__(self, server, port, name, channels, loglevel=loglevel)
        self.to = timeout
        self.url_shortener = url_shortener
        self.ctrl_chan = channels[0]

    def send_msg(self, target, msg):
        for line in msg.split('\n'):
            self.PRIVMSG(target, line)

    def on_privmsg(self, prefix, command, params, rest):
        args_array = rest.split()
        if params[0] == self.nickname:
            answer = self.read_message(args_array)
            self.send_msg(prefix.split('!')[0], answer)
        elif args_array[0].strip(':') == self.nickname:
            answer = self.read_message(args_array[1:])
            self.send_msg([params[0]], answer)

    def on_invite(self, prefix, command, params, rest):
        for chan in rest.split():
            self.push('JOIN ' + chan)
            self.channels.append(chan)

    def read_message(self, args):
        try:
            if args[0] in [x for x in commands.__dict__.keys() if x.find('_')]:
                func = getattr(commands, args[0])
                return func(self, args)
            else:
                return 'command not found'
        except Exception as e:
            return 'mimimi: ' + str(e)

#Commands of NewsBot
class commands():
    def add(self, args): 
        if args[1] not in bots and args[1] != self.nickname:
            try:
                bot = RssBot(args[2], args[1], [self.ctrl_chan], url_shortener=self.url_shortener)
            except Exception as e:
                return 'add_mimi: ' + str(e)
                sleep
            bots[args[1]] = bot
            bot.start_rss()
            return "bot " + args[1] + " added"
        else:
            return args[1] + ' does already exist'

    def delete(self, args):
        bots[args[1]].stop()
        del bots[args[1]]
        return "bot " + args[1] + " deleted"

    def rename(self, args):
        if args[1] in bots:
            if args[2] in bots:
                return args[2] + ' already taken'
            else:
                bots[args[1]].connection.nick(args[2])
                bots[args[1]].name = args[2]
                bots[args[2]] = bots[args[1]]
                del bots[args[1]]
                return 'renamed ' + args[1] + ' in ' + args[2]
        else:
            return args[1] + ' does not exist'

    def save(self, args):
        output_buffer = ''
        for bot in bots:
            if bots[bot].loop:
                output_buffer += bot + '|' + bots[bot].url + '|' + ' '.join(bots[bot].channels) + '\n'

        F = open(feedfile, "w")
        F.writelines(output_buffer)
        F.close()

        return "bots saved to " + feedfile

    def caps(self, args):
        return ' '.join([x for x in commands.__dict__.keys() if x.find('_')])

    def list(self, args):
        output_buffer = ''
        for bot in bots:
            output_buffer += bot + ' url: ' + bots[bot].url + '\n'
        return output_buffer

    def info(self, args):
        if args[1] in bots:
            output_buffer = ''
            for data in ['title', 'link', 'updated']:
                if data in bots[args[1]].feed.feed:
                    output_buffer += data + ': ' + bots[args[1]].feed.feed[data] + '\n'
            output_buffer += 'lastnew: ' + bots[args[1]].lastnew.isoformat() + '\n'
            output_buffer += 'rssurl: ' + bots[args[1]].url
            return output_buffer
        else:
            return 'bot not found'

    def search(self, args):
        output = subprocess.check_output(['./GfindFeeds4bot', args[1]]).decode()
        return output

    def uptime(self, args):
        output = subprocess.check_output(['uptime']).decode()
        return output


##RssBot Class
class RssBot(asybot):
    def __init__(self, rss, name, chans=['#news'], url_shortener="http://localhost", server='ire', port=6667, timeout=60):
        try:
            asybot.__init__(self, server, port, name, chans)
        except Exception as e:
            print(e)
        self.url = rss
        self.to = timeout
        self.oldnews = []
        self.loop = True
        self.lastnew = datetime.now()
        self.url_shortener = url_shortener
        self.retry = True

    def on_nickinuse(*bla):
        pass

    def start_rss(self):
        self.upd_loop = threading.Thread(target=self.updateloop)
        self.upd_loop.start()

    def stop(self):
        self.disconnect()
        self.loop = False

    def updateloop(self):
        failcount=0
        while True:
          try:
              self.feed = feedparser.parse(self.url)
              for entry in self.feed.entries:
                  self.oldnews.append(entry.link)
              break
          except:
              print(self.nickname + ': rss timeout occured')
              failcount+=1
              if failcount>20:
                  print(self.nickname + ' is broken, going to die')
                  self.stop()
                  return
        while self.loop:
            try:
                self.feed = feedparser.parse(self.url)
                for entry in self.feed.entries:
                    if not entry.link in self.oldnews:
                        #try:
                        #    self.send_msg(entry.title + " " + entry.link + " com: " + entry.comments)
                        #except AttributeError:
                        shorturl = self.shortenurl(entry.link)
                        self.sendall(entry.title + ' ' + shorturl)
                        self.oldnews.append(entry.link)
                        self.lastnew = datetime.now()
            except Exception as e:
                print(str(datetime.now().hour) + ':' + str(datetime.now().minute) + ' ' + self.nickname + ': ' + str(e))
            sleep(self.to)

    def shortenurl(self, url):
      while True:
          try:
              shorturl = subprocess.check_output(["curl", "-sS", "-F", "uri=" + url, self.url_shortener]).decode().strip('\n').strip('\r') + '#' + url.partition('://')[2].partition('/')[0]
              return shorturl
          except:
              print('url shortener error')
              sleep(1)

    def last(self, target, num):
        for feed in [x for x in self.feed.entries][:num]:
            self.send_msg(target, feed.title + ' ' + self.shortenurl(feed.link))

    def sendall(self, string):
        try:
            self.send_msg(self.channels, string)
        except Exception as e:
            print(self.nickname + ': failed sending all to ' + str(self.channels) + ' because of ' + str(e));

    def send_msg(self, target, string):
        if self.connected:
            for line in string.split('\n'):
                while len(line)>0:
                    if len(line) < 450:
                        self.PRIVMSG(target, line)
                        line = ''
                    else:
                        space = line.rfind(" ", 1, 450)
                        self.PRIVMSG(target, line[:space])
                        line=line[space:]
        else:
            self.reconnect()
            while not self.connected:
               print(self.nickname + ' waiting for reconnect')
               sleep(10)
            self.send_msg(target, string)

    def on_invite(self, prefix, command, params, rest):
        for chan in rest.split():
            self.push('JOIN ' + chan)
            self.channels.append(chan)

    def on_welcome(self, prefix, command, params, rest):
        asybot.on_welcome(self, prefix, command, params, rest)
        self.push('MODE ' + self.nickname + ' +D')

feedfile = 'new_feeds'
url_shortener = 'http://go'
init_channels = ['#news']

bots = {}
knews = NewsBot('knews', init_channels, url_shortener=url_shortener)

#config file reading
F = open(feedfile, "r")
lines = F.readlines()
F.close()

for line in lines:
    line = line.strip('\n')
    linear = line.split('|')
    bot = RssBot(linear[1], linear[0], linear[2].split(), url_shortener=url_shortener)
    bot.start_rss()
    bots[linear[0]] = bot

def thread_handler():
    while True:
        try:
            loop()
        except Exception as e:
            print('ohoh ' + e)

th = threading.Thread(target=thread_handler)
th.start()