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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
|
#-- vim:sw=2:et
#++
#
# :title: Factoids pluing
#
# Author:: Giuseppe "Oblomov" Bilotta <giuseppe.bilotta@gmail.com>
# Copyright:: (C) 2007 Giuseppe Bilotta
# License:: GPLv2
#
# Store (and retrieve) unstructured one-sentence factoids
class FactoidsPlugin < Plugin
class Factoid
def initialize(hash)
@hash = hash.reject { |k, val| val.nil? or val.empty? rescue false }
raise ArgumentError, "no fact!" unless @hash[:fact]
if String === @hash[:when]
@hash[:when] = Time.parse @hash[:when]
end
end
def to_s
@hash[:fact]
end
def [](*args)
@hash[*args]
end
def []=(*args)
@hash.send(:[]=,*args)
end
def to_hsh
return @hash
end
alias :to_hash :to_hsh
end
class FactoidList < ArrayOf
def initialize(ar=[])
super(Factoid, ar)
end
def index(f)
fact = f.to_s
return if fact.empty?
self.map { |f| f[:fact] }.index(fact)
end
def delete(f)
idx = index(f)
return unless idx
self.delete_at(idx)
end
def grep(x)
self.find_all { |f|
x === f[:fact]
}
end
end
def initialize
super
# TODO config
@dir = File.join(@bot.botclass,"factoids")
@filename = "factoids.rbot"
@factoids = FactoidList.new
begin
read_factfile
rescue
debug $!
end
@changed = false
end
def read_factfile(name=@filename,dir=@dir)
fname = File.join(dir,name)
expf = File.expand_path(fname)
expd = File.expand_path(dir)
raise ArgumentError, _("%{name} (%{fname}) must be under %{dir}" % {
:name => name,
:fname => expf,
:dir => dir
}) unless expf.index(expd) == 0
if File.exist?(fname)
raise ArgumentError, _("%{name} is not a file" % {
:name => name
}) unless File.file?(fname)
factoids = File.readlines(fname)
return if factoids.empty?
firstline = factoids.shift
pattern = firstline.chomp.split(" | ")
if pattern.length == 1 and pattern.first != "fact"
factoids.unshift(firstline)
factoids.each { |f|
@factoids << Factoid.new( :fact => f.chomp )
}
else
pattern.map! { |p| p.intern }
raise ArgumentError, _("fact must be the last field") unless pattern.last == :fact
factoids.each { |f|
ar = f.chomp.split(" | ", pattern.length)
@factoids << Factoid.new(Hash[*([pattern, ar].transpose.flatten)])
}
end
else
raise ArgumentError, _("%{name} (%{fname}) doesn't exist" % {
:name => name,
:fname => fname
})
end
end
def save
return unless @changed
Dir.mkdir(@dir) unless FileTest.directory?(@dir)
fname = File.join(@dir,@filename)
ar = ["when | who | where | fact"]
@factoids.each { |f|
ar << "%s | %s | %s | %s" % [ f[:when], f[:who], f[:where], f[:fact]]
}
Utils.safe_save(fname) do |file|
file.puts ar
end
@changed = false
end
def help(plugin, topic="")
_("factoids plugin: learn that <factoid>, forget that <factoids>, facts about <words>")
end
def learn(m, params)
factoid = Factoid.new(
:fact => params[:stuff].to_s,
:when => Time.now,
:who => m.source.fullform,
:where => m.channel.to_s
)
if @factoids.index(factoid)
m.reply _("I already know that %{factoid}" % { :factoid => factoid })
else
@factoids << factoid
@changed = true
m.okay
end
end
def forget(m, params)
factoid = params[:stuff].to_s
if @factoids.delete(factoid)
@changed = true
m.okay
else
m.reply _("I didn't know that %{factoid}" % { :factoid => factoid })
end
end
def facts(m, params)
total = @factoids.length
if params[:words].empty?
m.reply _("I know %{total} facts" % { :total => total })
else
rx = Regexp.new(params[:words].to_s, true)
known = @factoids.grep(rx)
if known.empty?
m.reply _("I know nothing about %{words}" % params)
else
# TODO config
max_facts = 3
len = known.length
if len > max_facts
m.reply _("%{len} out of %{total} facts refer to %{words}, I'll only show %{max}" % {
:len => len,
:total => total,
:words => params[:words].to_s,
:max => max_facts
})
end
[max_facts, len].min.times { m.reply known.delete_one }
end
end
end
def fact(m, params)
fact = nil
idx = 0
total = @factoids.length
if params[:index]
idx = params[:index].scan(/\d+/).first.to_i
if idx <= 0 or idx > total
m.reply _("please select a fact number between 1 and %{total}" % { :total => total })
return
end
fact = @factoids[idx-1]
else
known = nil
if params[:words].empty?
if @factoids.empty?
m.reply _("I know nothing")
return
end
known = @factoids
else
rx = Regexp.new(params[:words].to_s, true)
known = @factoids.grep(rx)
if known.empty?
m.reply _("I know nothing about %{words}" % params)
return
end
end
fact = known.pick_one
idx = @factoids.index(fact)+1
end
meta = nil
metadata = []
if fact[:who]
metadata << _("from %{who}" % fact.to_hash)
end
if fact[:when]
metadata << _("on %{when}" % fact.to_hash)
end
if fact[:where]
metadata << _("in %{where}" % fact.to_hash)
end
unless metadata.empty?
meta = _(" [learnt %{data}]" % {:data => metadata.join(" ")})
end
m.reply _("fact #%{idx} of %{total}: %{fact}%{meta}" % {
:idx => idx,
:total => total,
:fact => fact,
:meta => meta
})
end
def edit_fact(m, params)
fact = nil
idx = 0
total = @factoids.length
idx = params[:index].scan(/\d+/).first.to_i
if idx <= 0 or idx > total
m.reply _("please select a fact number between 1 and %{total}" % { :total => total })
return
end
fact = @factoids[idx-1]
begin
if params[:who]
who = params[:who].to_s.sub(/^me$/, m.source.fullform)
fact[:who] = who
@changed = true
end
if params[:when]
dstr = params[:when].to_s
begin
fact[:when] = Time.parse(dstr, "")
@changed = true
rescue
raise ArgumentError, _("not a date '%{dstr}'" % { :dstr => dstr })
end
end
if params[:where]
fact[:where] = params[:where].to_s
@changed = true
end
rescue Exception
m.reply _("couldn't change learn data for fact %{fact}: %{err}" % {
:fact => fact,
:err => $!
})
return
end
m.okay
end
def import(m, params)
fname = params[:filename].to_s
oldlen = @factoids.length
begin
read_factfile(fname)
rescue
m.reply _("failed to import facts from %{fname}: %{err}" % {
:fname => fname,
:err => $!
})
end
m.reply _("%{len} facts loaded from %{fname}" % {
:fname => fname,
:len => @factoids.length - oldlen
})
@changed = true
end
end
plugin = FactoidsPlugin.new
plugin.default_auth('edit', false)
plugin.default_auth('import', false)
plugin.map 'learn that *stuff'
plugin.map 'forget that *stuff', :auth_path => 'edit'
plugin.map 'facts [about *words]'
plugin.map 'fact [about *words]'
plugin.map 'fact :index', :requirements => { :index => /^#?\d+$/ }
plugin.map 'fact :index :learn from *who', :action => :edit_fact, :requirements => { :learn => /^((?:is|was)\s+)?learn(ed|t)$/, :index => /^#?\d+$/ }, :auth_path => 'edit'
plugin.map 'fact :index :learn on *when', :action => :edit_fact, :requirements => { :learn => /^((?:is|was)\s+)?learn(ed|t)$/, :index => /^#?\d+$/ }, :auth_path => 'edit'
plugin.map 'fact :index :learn in *where', :action => :edit_fact, :requirements => { :learn => /^((?:is|was)\s+)?learn(ed|t)$/, :index => /^#?\d+$/ }, :auth_path => 'edit'
plugin.map 'facts import [from] *filename', :action => :import, :auth_path => 'import'
|