summaryrefslogtreecommitdiffstats
path: root/news/controller.py
blob: 94f48b63eb6cc53a1681c24dc8bd509bc5ba2da8 (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
from time import sleep
import irc.bot
import _thread
import rssbot
import os
import subprocess

class NewsBot(irc.bot.SingleServerIRCBot):
    def __init__(self, name, chans=['#news'], server='ire', port=6667, timeout=60):
        irc.bot.SingleServerIRCBot.__init__(self, [(server, port)], name, name)
        self.name = name
        self.server = server
        self.port = port
        self.chans = chans
        self.to = timeout

    def start(self):
        self.bot = _thread.start_new_thread(irc.bot.SingleServerIRCBot.start, (self,))

    def on_welcome(self, connection, event):
        for chan in self.chans:
            connection.join(chan)

    def send(self, target, string):
        for line in string.split('\n'):
            self.connection.action(target, line)
            sleep(1)

    def on_privmsg(self, connection, event):
        args_array = event.arguments[0].split()
        answer = self.read_message(args_array)
        self.send(event.source.nick, answer)

    def on_pubmsg(self, connection, event):
        args_array = event.arguments[0].split()
        if len(args_array) > 0 and args_array[0][:-1]==self.name:
            answer = self.read_message(args_array[1:])
            self.send(event.target, answer)

    def on_invite(self, connection, event):
        for chan in event.arguments:
            connection.join(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(args)
            else:
                return 'command not found'
        except:
            return "mimimimi"



class commands():
    def add(args): 
        if args[1] not in bots and not knews.name:
            bot = rssbot.RssBot(args[2], args[1], url_shortener=url_shortener)
            bots[args[1]] = bot
            bot.start()
            return "bot " + args[1] + " added"
        else:
            return args[1] + ' does already exist'

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

    def rename(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(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(args):
        return ' '.join([x for x in commands.__dict__.keys() if x.find('_')])

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

    def info(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(args):
        output = subprocess.check_output(['./GfindFeeds4bot', args[1]]).decode()
        return output

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

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

if 'FEEDFILE' in os.environ:
    feedfile = os.environ['FEEDFILE']

if 'URLSHORT' in os.environ:
    url_shortener = os.environ['URLSHORT']

bots = {}
knews = NewsBot('knews')

#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.RssBot(linear[1], linear[0], init_channels + linear[2].split(), url_shortener)
    bot.start()
    bots[linear[0]] = bot

knews.start()