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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
|
#-- vim:sw=2:et
#++
#
# :title: RSS feed plugin for rbot
#
# Author:: Stanislav Karchebny <berkus@madfire.net>
# Author:: Ian Monroe <ian@monroe.nu>
# Author:: Mark Kretschmann <markey@web.de>
# Author:: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
#
# Copyright:: (C) 2004 Stanislav Karchebny
# Copyright:: (C) 2005 Ian Monroe, Mark Kretschmann
# Copyright:: (C) 2006-2007 Giuseppe Bilotta
#
# License:: MIT license
require 'rss'
# Try to load rss/content/2.0 so we can access the data in <content:encoded>
# tags.
begin
require 'rss/content/2.0'
rescue LoadError
end
module ::RSS
# Add support for Slashdot namespace in RDF. The code is just an adaptation
# of the DublinCore code.
unless defined?(SLASH_PREFIX)
SLASH_PREFIX = 'slash'
SLASH_URI = "http://purl.org/rss/1.0/modules/slash/"
RDF.install_ns(SLASH_PREFIX, SLASH_URI)
module BaseSlashModel
def append_features(klass)
super
return if klass.instance_of?(Module)
SlashModel::ELEMENT_NAME_INFOS.each do |name, plural_name|
plural = plural_name || "#{name}s"
full_name = "#{SLASH_PREFIX}_#{name}"
full_plural_name = "#{SLASH_PREFIX}_#{plural}"
klass_name = "Slash#{Utils.to_class_name(name)}"
# This will fail with older version of the Ruby RSS module
begin
klass.install_have_children_element(name, SLASH_URI, "*",
full_name, full_plural_name)
klass.install_must_call_validator(SLASH_PREFIX, SLASH_URI)
rescue ArgumentError
klass.module_eval("install_have_children_element(#{full_name.dump}, #{full_plural_name.dump})")
end
klass.module_eval(<<-EOC, *get_file_and_line_from_caller(0))
remove_method :#{full_name} if method_defined? :#{full_name}
remove_method :#{full_name}= if method_defined? :#{full_name}=
remove_method :set_#{full_name} if method_defined? :set_#{full_name}
def #{full_name}
@#{full_name}.first and @#{full_name}.first.value
end
def #{full_name}=(new_value)
@#{full_name}[0] = Utils.new_with_value_if_need(#{klass_name}, new_value)
end
alias set_#{full_name} #{full_name}=
EOC
end
end
end
module SlashModel
extend BaseModel
extend BaseSlashModel
TEXT_ELEMENTS = {
"department" => nil,
"section" => nil,
"comments" => nil,
"hit_parade" => nil
}
ELEMENT_NAME_INFOS = SlashModel::TEXT_ELEMENTS.to_a
ELEMENTS = TEXT_ELEMENTS.keys
ELEMENTS.each do |name, plural_name|
module_eval(<<-EOC, *get_file_and_line_from_caller(0))
class Slash#{Utils.to_class_name(name)} < Element
include RSS10
content_setup
class << self
def required_prefix
SLASH_PREFIX
end
def required_uri
SLASH_URI
end
end
@tag_name = #{name.dump}
alias_method(:value, :content)
alias_method(:value=, :content=)
def initialize(*args)
begin
if Utils.element_initialize_arguments?(args)
super
else
super()
self.content = args[0]
end
# Older Ruby RSS module
rescue NoMethodError
super()
self.content = args[0]
end
end
def full_name
tag_name_with_prefix(SLASH_PREFIX)
end
def maker_target(target)
target.new_#{name}
end
def setup_maker_attributes(#{name})
#{name}.content = content
end
end
EOC
end
end
class RDF
class Item; include SlashModel; end
end
SlashModel::ELEMENTS.each do |name|
class_name = Utils.to_class_name(name)
BaseListener.install_class_name(SLASH_URI, name, "Slash#{class_name}")
end
SlashModel::ELEMENTS.collect! {|name| "#{SLASH_PREFIX}_#{name}"}
end
class Element
class << self
def def_bang(name, chain)
class_eval %<
def #{name}!
blank2nil { #{chain.join(' rescue ')} rescue nil }
end
>, *get_file_and_line_from_caller(0)
end
end
{
:link => %w{link.href link},
:guid => %w{guid.content guid},
:content => %w{content.content content},
:description => %w{description.content description},
:title => %w{title.content title},
:category => %w{category.content category},
:dc_subject => %w{dc_subject},
:author => %w{author.name.content author.name author},
:dc_creator => %w{dc_creator}
}.each { |name, chain| def_bang name, chain }
protected
def blank2nil(&block)
x = yield
(x && !x.empty?) ? x : nil
end
end
end
class ::RssBlob
attr_accessor :url, :handle, :type, :refresh_rate, :xml, :title, :items,
:mutex, :watchers, :last_fetched, :http_cache, :last_success
def initialize(url,handle=nil,type=nil,watchers=[], xml=nil, lf = nil)
@url = url
if handle
@handle = handle
else
@handle = url
end
@type = type
@watchers=[]
@refresh_rate = nil
@http_cache = false
@xml = xml
@title = nil
@items = nil
@mutex = Mutex.new
@last_fetched = lf
@last_success = nil
sanitize_watchers(watchers)
end
def dup
@mutex.synchronize do
self.class.new(@url,
@handle,
@type ? @type.dup : nil,
@watchers.dup,
@xml ? @xml.dup : nil,
@last_fetched)
end
end
# Downcase all watchers, possibly turning them into Strings if they weren't
def sanitize_watchers(list=@watchers)
ls = list.dup
@watchers.clear
ls.each { |w|
add_watch(w)
}
end
def watched?
!@watchers.empty?
end
def watched_by?(who)
@watchers.include?(who.downcase)
end
def add_watch(who)
if watched_by?(who)
return nil
end
@mutex.synchronize do
@watchers << who.downcase
end
return who
end
def rm_watch(who)
@mutex.synchronize do
@watchers.delete(who.downcase)
end
end
def to_a
[@handle,@url,@type,@refresh_rate,@watchers]
end
def to_s(watchers=false)
if watchers
a = self.to_a.flatten
else
a = self.to_a[0,3]
end
a.compact.join(" | ")
end
end
class RSSFeedsPlugin < Plugin
Config.register Config::IntegerValue.new('rss.head_max',
:default => 100, :validate => Proc.new{|v| v > 0 && v < 200},
:desc => "How many characters to use of a RSS item header")
Config.register Config::IntegerValue.new('rss.text_max',
:default => 200, :validate => Proc.new{|v| v > 0 && v < 400},
:desc => "How many characters to use of a RSS item text")
Config.register Config::IntegerValue.new('rss.thread_sleep',
:default => 300, :validate => Proc.new{|v| v > 30},
:desc => "How many seconds to sleep before checking RSS feeds again")
Config.register Config::IntegerValue.new('rss.announce_timeout',
:default => 0,
:desc => "Don't announce watched feed if these many seconds elapsed since the last successful update")
Config.register Config::IntegerValue.new('rss.announce_max',
:default => 3,
:desc => "Maximum number of new items to announce when a watched feed is updated")
Config.register Config::BooleanValue.new('rss.show_updated',
:default => true,
:desc => "Whether feed items for which the description was changed should be shown as new")
Config.register Config::BooleanValue.new('rss.show_links',
:default => true,
:desc => "Whether to display links from the text of a feed item.")
# Make an 'unique' ID for a given item, based on appropriate bot options
# Currently only suppored is bot.config['rss.show_updated']: when false,
# only the guid/link is accounted for.
def make_uid(item)
uid = [item.guid! || item.link!]
if @bot.config['rss.show_updated']
uid.push(item.content! || item.description!)
uid.unshift item.title!
end
# debug "taking hash of #{uid.inspect}"
uid.hash
end
# We used to save the Mutex with the RssBlob, which was idiotic. And
# since Mutexes dumped in one version might not be restorable in another,
# we need a few tricks to be able to restore data from other versions of Ruby
#
# When migrating 1.8.6 => 1.8.5, all we need to do is define an empty
# #marshal_load() method for Mutex. For 1.8.5 => 1.8.6 we need something
# dirtier, as seen later on in the initialization code.
unless Mutex.new.respond_to?(:marshal_load)
class ::Mutex
def marshal_load(str)
return
end
end
end
# Auxiliary method used to collect two lines for rss output filters,
# running substitutions against DataStream _s_ optionally joined
# with hash _h_
def make_stream(line1, line2, s, h={})
ss = s.merge(h)
DataStream.new([line1, line2].compact.join("\n") % ss, ss)
end
# Define default RSS filters
#
# TODO: load personal ones
def define_filters
@outkey = :"rss.out"
@bot.register_filter(:headlines, @outkey) { |s|
line1 = (s[:handle].empty? ? "%{date}" : "%{handle}") << "%{title}"
make_stream(line1, nil, s)
}
@bot.register_filter(:blog, @outkey) { |s|
author = s[:author] ? (s[:author] + " ") : ""
abt = s[:category] ? "about #{s[:category]} " : ""
line1 = "%{handle}%{date}%{author}blogged %{abt}at %{link}"
line2 = "%{handle}%{title} - %{desc}"
make_stream(line1, line2, s, :author => author, :abt => abt)
}
@bot.register_filter(:photoblog, @outkey) { |s|
author = s[:author] ? (s[:author] + " ") : ""
abt = s[:category] ? "under #{s[:category]} " : ""
line1 = "%{handle}%{date}%{author}added an image %{abt}at %{link}"
line2 = "%{handle}%{title} - %{desc}"
make_stream(line1, line2, s, :author => author, :abt => abt)
}
@bot.register_filter(:news, @outkey) { |s|
line1 = "%{handle}%{date}%{title}%{at}%{link}" % s
line2 = "%{handle}%{date}%{desc}" % s
make_stream(line1, line2, s)
}
@bot.register_filter(:git, @outkey) { |s|
author = s[:author].sub(/@\S+?\s*>/, "@...>") + " " if s[:author]
line1 = "%{handle}%{date}%{author}committed %{title}%{at}%{link}"
make_stream(line1, nil, s, :author => author)
}
@bot.register_filter(:forum, @outkey) { |s|
line1 = "%{handle}%{date}%{title}%{at}%{link}"
make_stream(line1, nil, s)
}
@bot.register_filter(:wiki, @outkey) { |s|
line1 = "%{handle}%{date}%{title}%{at}%{link}"
line1 << "has been edited by %{author}. %{desc}"
make_stream(line1, nil, s)
}
@bot.register_filter(:gmane, @outkey) { |s|
line1 = "%{handle}%{date}Message %{title} sent by %{author}. %{desc}"
make_stream(line1, nil, s)
}
@bot.register_filter(:trac, @outkey) { |s|
author = s[:author].sub(/@\S+?\s*>/, "@...>") + ": " if s[:author]
line1 = "%{handle}%{date}%{author}%{title}%{at}%{link}"
line2 = nil
unless s[:item].title =~ /^(?:Changeset \[(?:[\da-f]+)\]|\(git commit\))/
line2 = "%{handle}%{date}%{desc}"
end
make_stream(line1, line2, s, :author => author)
}
@bot.register_filter(:"/.", @outkey) { |s|
dept = "(from the #{s[:item].slash_department} dept) " rescue nil
sec = " in section #{s[:item].slash_section}" rescue nil
line1 = "%{handle}%{date}%{dept}%{title}%{at}%{link} "
line1 << "(posted by %{author}%{sec})"
make_stream(line1, nil, s, :dept => dept, :sec => sec)
}
@bot.register_filter(:default, @outkey) { |s|
line1 = "%{handle}%{date}%{title}%{at}%{link}"
line1 << " (by %{author})" if s[:author]
make_stream(line1, nil, s)
}
# Define an HTML info filter too
@bot.register_filter(:rss, :htmlinfo) { |s| htmlinfo_filter(s) }
# This is the output format used by the input filter
@bot.register_filter(:htmlinfo, @outkey) { |s|
line1 = "%{title}%{at}%{link}"
make_stream(line1, nil, s)
}
end
FEED_NS = %r{xmlns.*http://(purl\.org/rss|www.w3c.org/1999/02/22-rdf)}
def htmlinfo_filter(s)
return nil unless s[:headers] and s[:headers]['x-rbot-location']
return nil unless s[:headers]['content-type'].first.match(/xml|rss|atom|rdf/i) or
(s[:text].include?("<rdf:RDF") and s[:text].include?("<channel")) or
s[:text].include?("<rss") or s[:text].include?("<feed") or
s[:text].match(FEED_NS)
blob = RssBlob.new(s[:headers]['x-rbot-location'],"", :htmlinfo)
unless (fetchRss(blob, nil) and parseRss(blob, nil) rescue nil)
debug "#{s.pretty_inspect} is not an RSS feed, despite the appearances"
return nil
end
output = []
blob.items.each { |it|
output << printFormattedRss(blob, it)[:text]
}
return {:title => blob.title, :content => output.join(" | ")}
end
# Display the known rss types
def rss_types(m, params)
ar = @bot.filter_names(@outkey)
ar.delete(:default)
m.reply ar.map { |k| k.to_s }.sort!.join(", ")
end
attr_reader :feeds
def initialize
super
define_filters
if @registry.has_key?(:feeds)
# When migrating from Ruby 1.8.5 to 1.8.6, dumped Mutexes may render the
# data unrestorable. If this happens, we patch the data, thus allowing
# the restore to work.
#
# This is actually pretty safe for a number of reasons:
# * the code is only called if standard marshalling fails
# * the string we look for is quite unlikely to appear randomly
# * if the string appears somewhere and the patched string isn't recoverable
# either, we'll get another (unrecoverable) error, which makes the rss
# plugin unsable, just like it was if no recovery was attempted
# * if the string appears somewhere and the patched string is recoverable,
# we may get a b0rked feed, which is eventually overwritten by a clean
# one, so the worst thing that can happen is that a feed update spams
# the watchers once
@registry.recovery = Proc.new { |val|
patched = val.sub(":\v@mutexo:\nMutex", ":\v@mutexo:\vObject")
ret = Marshal.restore(patched)
ret.each_value { |blob|
blob.mutex = nil
blob
}
}
@feeds = @registry[:feeds]
raise LoadError, "corrupted feed database" unless @feeds
@registry.recovery = nil
@feeds.keys.grep(/[A-Z]/) { |k|
@feeds[k.downcase] = @feeds[k]
@feeds.delete(k)
}
@feeds.each { |k, f|
f.mutex = Mutex.new
f.sanitize_watchers
parseRss(f) if f.xml
}
else
@feeds = Hash.new
end
@watch = Hash.new
rewatch_rss
end
def name
"rss"
end
def watchlist
@feeds.select { |h, f| f.watched? }
end
def cleanup
stop_watches
super
end
def save
unparsed = Hash.new()
@feeds.each { |k, f|
unparsed[k] = f.dup
# we don't want to save the mutex
unparsed[k].mutex = nil
}
@registry[:feeds] = unparsed
end
def stop_watch(handle)
if @watch.has_key?(handle)
begin
debug "Stopping watch #{handle}"
@bot.timer.remove(@watch[handle])
@watch.delete(handle)
rescue Exception => e
report_problem("Failed to stop watch for #{handle}", e, nil)
end
end
end
def stop_watches
@watch.each_key { |k|
stop_watch(k)
}
end
def help(plugin,topic="")
case topic
when "show"
"rss show #{Bold}handle#{Bold} [#{Bold}limit#{Bold}] : show #{Bold}limit#{Bold} (default: 5, max: 15) entries from rss #{Bold}handle#{Bold}; #{Bold}limit#{Bold} can also be in the form a..b, to display a specific range of items"
when "list"
"rss list [#{Bold}handle#{Bold}] : list all rss feeds (matching #{Bold}handle#{Bold})"
when "watched"
"rss watched [#{Bold}handle#{Bold}] [in #{Bold}chan#{Bold}]: list all watched rss feeds (matching #{Bold}handle#{Bold}) (in channel #{Bold}chan#{Bold})"
when "who", "watches", "who watches"
"rss who watches [#{Bold}handle#{Bold}]]: list all watchers for rss feeds (matching #{Bold}handle#{Bold})"
when "add"
"rss add #{Bold}handle#{Bold} #{Bold}url#{Bold} [#{Bold}type#{Bold}] : add a new rss called #{Bold}handle#{Bold} from url #{Bold}url#{Bold} (of type #{Bold}type#{Bold})"
when "change"
"rss change #{Bold}what#{Bold} of #{Bold}handle#{Bold} to #{Bold}new#{Bold} : change the #{Underline}handle#{Underline}, #{Underline}url#{Underline}, #{Underline}type#{Underline} or #{Underline}refresh#{Underline} rate of rss called #{Bold}handle#{Bold} to value #{Bold}new#{Bold}"
when /^(del(ete)?|rm)$/
"rss del(ete)|rm #{Bold}handle#{Bold} : delete rss feed #{Bold}handle#{Bold}"
when "replace"
"rss replace #{Bold}handle#{Bold} #{Bold}url#{Bold} [#{Bold}type#{Bold}] : try to replace the url of rss called #{Bold}handle#{Bold} with #{Bold}url#{Bold} (of type #{Bold}type#{Bold}); only works if nobody else is watching it"
when "forcereplace"
"rss forcereplace #{Bold}handle#{Bold} #{Bold}url#{Bold} [#{Bold}type#{Bold}] : replace the url of rss called #{Bold}handle#{Bold} with #{Bold}url#{Bold} (of type #{Bold}type#{Bold})"
when "watch"
"rss watch #{Bold}handle#{Bold} [#{Bold}url#{Bold} [#{Bold}type#{Bold}]] [in #{Bold}chan#{Bold}]: watch rss #{Bold}handle#{Bold} for changes (in channel #{Bold}chan#{Bold}); when the other parameters are present, the feed will be created if it doesn't exist yet"
when /(un|rm)watch/
"rss unwatch|rmwatch #{Bold}handle#{Bold} [in #{Bold}chan#{Bold}]: stop watching rss #{Bold}handle#{Bold} (in channel #{Bold}chan#{Bold}) for changes"
when /who(?: watche?s?)?/
"rss who watches #{Bold}handle#{Bold}: lists watches for rss #{Bold}handle#{Bold}"
when "rewatch"
"rss rewatch : restart threads that watch for changes in watched rss"
when "types"
"rss types : show the rss types for which an output format exist (all other types will use the default one)"
else
"manage RSS feeds: rss types|show|list|watched|add|change|del(ete)|rm|(force)replace|watch|unwatch|rmwatch|rewatch|who watches"
end
end
def report_problem(report, e=nil, m=nil)
if m && m.respond_to?(:reply)
m.reply report
else
warning report
end
if e
debug e.inspect
debug e.backtrace.join("\n") if e.respond_to?(:backtrace)
end
end
def show_rss(m, params)
handle = params[:handle]
lims = params[:limit].to_s.match(/(\d+)(?:..(\d+))?/)
debug lims.to_a.inspect
if lims[2]
ll = [[lims[1].to_i-1,lims[2].to_i-1].min, 0].max
ul = [[lims[1].to_i-1,lims[2].to_i-1].max, 14].min
rev = lims[1].to_i > lims[2].to_i
else
ll = 0
ul = [[lims[1].to_i-1, 0].max, 14].min
rev = false
end
feed = @feeds.fetch(handle.downcase, nil)
unless feed
m.reply "I don't know any feeds named #{handle}"
return
end
m.reply "lemme fetch it..."
title = items = nil
we_were_watching = false
if @watch.key?(feed.handle)
# If a feed is being watched, we run the watcher thread
# so that all watchers can be informed of changes to
# the feed. Before we do that, though, we remove the
# show requester from the watchlist, if present, lest
# he gets the update twice.
if feed.watched_by?(m.replyto)
we_were_watching = true
feed.rm_watch(m.replyto)
end
@bot.timer.reschedule(@watch[feed.handle], 0)
if we_were_watching
feed.add_watch(m.replyto)
end
else
fetched = fetchRss(feed, m, false)
end
return unless fetched or feed.xml
if fetched or not feed.items
parsed = parseRss(feed, m)
end
return unless feed.items
m.reply "using old data" unless fetched and parsed and parsed > 0
title = feed.title
items = feed.items
# We sort the feeds in freshness order (newer ones first)
items = freshness_sort(items)
disp = items[ll..ul]
disp.reverse! if rev
m.reply "Channel : #{title}"
disp.each do |item|
printFormattedRss(feed, item, {:places=>[m.replyto],:handle=>nil,:date=>true})
end
end
def itemDate(item,ex=nil)
return item.pubDate if item.respond_to?(:pubDate) and item.pubDate
return item.date if item.respond_to?(:date) and item.date
return ex
end
def freshness_sort(items)
notime = Time.at(0)
items.sort { |a, b|
itemDate(b, notime) <=> itemDate(a, notime)
}
end
def list_rss(m, params)
wanted = params[:handle]
listed = @feeds.keys
if wanted
wanted_rx = Regexp.new(wanted, true)
listed.reject! { |handle| !handle.match(wanted_rx) }
end
listed.sort!
debug listed
if @bot.config['send.max_lines'] > 0 and listed.size > @bot.config['send.max_lines']
reply = listed.inject([]) do |ar, handle|
feed = @feeds[handle]
string = handle.dup
(string << " (#{feed.type})") if feed.type
(string << " (watched)") if feed.watched_by?(m.replyto)
ar << string
end.join(', ')
elsif listed.size > 0
reply = listed.inject([]) do |ar, handle|
feed = @feeds[handle]
string = "#{feed.handle}: #{feed.url} (in format: #{feed.type ? feed.type : 'default'})"
(string << " refreshing every #{Utils.secs_to_string(feed.refresh_rate)}") if feed.refresh_rate
(string << " (watched)") if feed.watched_by?(m.replyto)
ar << string
end.join("\n")
else
reply = "no feeds found"
reply << " matching #{wanted}" if wanted
end
m.reply reply, :max_lines => 0
end
def watched_rss(m, params)
wanted = params[:handle]
chan = params[:chan] || m.replyto
reply = String.new
watchlist.each { |handle, feed|
next if wanted and !handle.match(/#{wanted}/i)
next unless feed.watched_by?(chan)
reply << "#{feed.handle}: #{feed.url} (in format: #{feed.type ? feed.type : 'default'})"
(reply << " refreshing every #{Utils.secs_to_string(feed.refresh_rate)}") if feed.refresh_rate
reply << "\n"
}
if reply.empty?
reply = "no watched feeds"
reply << " matching #{wanted}" if wanted
end
m.reply reply
end
def who_watches(m, params)
wanted = params[:handle]
reply = String.new
watchlist.each { |handle, feed|
next if wanted and !handle.match(/#{wanted}/i)
reply << "#{feed.handle}: #{feed.url} (in format: #{feed.type ? feed.type : 'default'})"
(reply << " refreshing every #{Utils.secs_to_string(feed.refresh_rate)}") if feed.refresh_rate
reply << ": watched by #{feed.watchers.join(', ')}"
reply << "\n"
}
if reply.empty?
reply = "no watched feeds"
reply << " matching #{wanted}" if wanted
end
m.reply reply
end
def add_rss(m, params, force=false)
handle = params[:handle]
url = params[:url]
unless url.match(/https?/)
m.reply "I only deal with feeds from HTTP sources, so I can't use #{url} (maybe you forgot the handle?)"
return
end
type = params[:type]
if @feeds.fetch(handle.downcase, nil) && !force
m.reply "There is already a feed named #{handle} (URL: #{@feeds[handle.downcase].url})"
return
end
unless url
m.reply "You must specify both a handle and an url to add an RSS feed"
return
end
@feeds[handle.downcase] = RssBlob.new(url,handle,type)
reply = "Added RSS #{url} named #{handle}"
if type
reply << " (format: #{type})"
end
m.reply reply
return handle
end
def change_rss(m, params)
handle = params[:handle].downcase
feed = @feeds.fetch(handle, nil)
unless feed
m.reply "No such feed with handle #{handle}"
return
end
case params[:what].intern
when :handle
new = params[:new].downcase
if @feeds.key?(new) and @feeds[new]
m.reply "There already is a feed with handle #{new}"
return
else
feed.mutex.synchronize do
@feeds[new] = feed
@feeds.delete(handle)
feed.handle = new
end
handle = new
end
when :url
new = params[:new]
feed.mutex.synchronize do
feed.url = new
end
when :format, :type
new = params[:new]
new = nil if new == 'default'
feed.mutex.synchronize do
feed.type = new
end
when :refresh
new = params[:new].to_i
new = nil if new == 0
feed.mutex.synchronize do
feed.refresh_rate = new
end
else
m.reply "Don't know how to change #{params[:what]} for feeds"
return
end
m.reply "Feed changed:"
list_rss(m, {:handle => handle})
end
def del_rss(m, params, pass=false)
feed = unwatch_rss(m, params, true)
return unless feed
if feed.watched?
m.reply "someone else is watching #{feed.handle}, I won't remove it from my list"
return
end
@feeds.delete(feed.handle.downcase)
m.okay unless pass
return
end
def replace_rss(m, params)
handle = params[:handle]
if @feeds.key?(handle.downcase)
del_rss(m, {:handle => handle}, true)
end
if @feeds.key?(handle.downcase)
m.reply "can't replace #{feed.handle}"
else
add_rss(m, params, true)
end
end
def forcereplace_rss(m, params)
add_rss(m, params, true)
end
def watch_rss(m, params)
handle = params[:handle]
chan = params[:chan] || m.replyto
url = params[:url]
type = params[:type]
if url
add_rss(m, params)
end
feed = @feeds.fetch(handle.downcase, nil)
if feed
if feed.add_watch(chan)
watchRss(feed, m)
m.okay
else
m.reply "Already watching #{feed.handle} in #{chan}"
end
else
m.reply "Couldn't watch feed #{handle} (no such feed found)"
end
end
def unwatch_rss(m, params, pass=false)
handle = params[:handle].downcase
chan = params[:chan] || m.replyto
unless @feeds.has_key?(handle)
m.reply("dunno that feed")
return
end
feed = @feeds[handle]
if feed.rm_watch(chan)
m.reply "#{chan} has been removed from the watchlist for #{feed.handle}"
else
m.reply("#{chan} wasn't watching #{feed.handle}") unless pass
end
if !feed.watched?
stop_watch(handle)
end
return feed
end
def rewatch_rss(m=nil, params=nil)
if params and handle = params[:handle]
feed = @feeds.fetch(handle.downcase, nil)
if feed
feed.http_cache = false
@bot.timer.reschedule(@watch[feed.handle], (params[:delay] || 0).to_f)
m.okay if m
else
m.reply _("no such feed %{handle}") % { :handle => handle } if m
end
else
stop_watches
# Read watches from list.
watchlist.each{ |handle, feed|
watchRss(feed, m)
}
m.okay if m
end
end
private
def watchRss(feed, m=nil)
if @watch.has_key?(feed.handle)
# report_problem("watcher thread for #{feed.handle} is already running", nil, m)
return
end
status = Hash.new
status[:failures] = 0
tmout = 0
if feed.last_fetched
tmout = feed.last_fetched + calculate_timeout(feed) - Time.now
tmout = 0 if tmout < 0
end
debug "scheduling a watcher for #{feed} in #{tmout} seconds"
@watch[feed.handle] = @bot.timer.add(tmout) {
debug "watcher for #{feed} wakes up"
failures = status[:failures]
begin
debug "fetching #{feed}"
first_run = !feed.last_success
if (@bot.config['rss.announce_timeout'] > 0 &&
(Time.now - feed.last_success > @bot.config['rss.announce_timeout']))
debug "#{feed} wasn't polled for too long, supressing output"
first_run = true
end
oldxml = feed.xml ? feed.xml.dup : nil
unless fetchRss(feed, nil, feed.http_cache)
failures += 1
else
feed.http_cache = true
if first_run
debug "first run for #{feed}, getting items"
parseRss(feed)
elsif oldxml and oldxml == feed.xml
debug "xml for #{feed} didn't change"
failures -= 1 if failures > 0
else
# This one is used for debugging
otxt = []
if feed.items.nil?
oids = []
else
# These are used for checking new items vs old ones
oids = Set.new feed.items.map { |item|
uid = make_uid item
otxt << item.to_s
debug [uid, item].inspect
debug [uid, otxt.last].inspect
uid
}
end
nitems = parseRss(feed)
if nitems.nil?
failures += 1
elsif nitems == 0
debug "no items in feed #{feed}"
else
debug "Checking if new items are available for #{feed}"
failures -= 1 if failures > 0
# debug "Old:"
# debug oldxml
# debug "New:"
# debug feed.xml
dispItems = feed.items.reject { |item|
uid = make_uid item
txt = item.to_s
if oids.include?(uid)
debug "rejecting old #{uid} #{item.inspect}"
debug [uid, txt].inspect
true
else
debug "accepting new #{uid} #{item.inspect}"
debug [uid, txt].inspect
warning "same text! #{txt}" if otxt.include?(txt)
false
end
}
if dispItems.length > 0
max = @bot.config['rss.announce_max']
debug "Found #{dispItems.length} new items in #{feed}"
if max > 0 and dispItems.length > max
debug "showing only the latest #{dispItems.length}"
feed.watchers.each do |loc|
@bot.say loc, (_("feed %{feed} had %{num} updates, showing the latest %{max}") % {
:feed => feed.handle,
:num => dispItems.length,
:max => max
})
end
dispItems.slice!(max..-1)
end
# When displaying watched feeds, publish them from older to newer
dispItems.reverse.each { |item|
printFormattedRss(feed, item)
}
else
debug "No new items found in #{feed}"
end
end
end
end
rescue Exception => e
error "Error watching #{feed}: #{e.inspect}"
debug e.backtrace.join("\n")
failures += 1
end
status[:failures] = failures
seconds = calculate_timeout(feed, failures)
debug "watcher for #{feed} going to sleep #{seconds} seconds.."
begin
@bot.timer.reschedule(@watch[feed.handle], seconds)
rescue
warning "watcher for #{feed} failed to reschedule: #{$!.inspect}"
end
}
debug "watcher for #{feed} added"
end
def calculate_timeout(feed, failures = 0)
seconds = @bot.config['rss.thread_sleep']
feed.mutex.synchronize do
seconds = feed.refresh_rate if feed.refresh_rate
end
seconds *= failures + 1
seconds += seconds * (rand(100)-50)/100
return seconds
end
def printFormattedRss(feed, item, opts=nil)
# debug item
places = feed.watchers
handle = feed.handle.empty? ? "" : "::#{feed.handle}:: "
date = String.new
if opts
places = opts[:places] if opts.key?(:places)
handle = opts[:handle].to_s if opts.key?(:handle)
if opts.key?(:date) && opts[:date]
if item.respond_to?(:updated)
if item.updated.content.class <= Time
date = item.updated.content.strftime("%Y/%m/%d %H:%M")
else
date = item.updated.content.to_s
end
elsif item.respond_to?(:source) and item.source.respond_to?(:updated)
if item.source.updated.content.class <= Time
date = item.source.updated.content.strftime("%Y/%m/%d %H:%M")
else
date = item.source.updated.content.to_s
end
elsif item.respond_to?(:pubDate)
if item.pubDate.class <= Time
date = item.pubDate.strftime("%Y/%m/%d %H:%M")
else
date = item.pubDate.to_s
end
elsif item.respond_to?(:date)
if item.date.class <= Time
date = item.date.strftime("%Y/%m/%d %H:%M")
else
date = item.date.to_s
end
else
date = "(no date)"
end
date += " :: "
end
end
tit_opt = {}
# Twitters don't need a cap on the title length since they have a hard
# limit to 160 characters, and most of them are under 140 characters
tit_opt[:limit] = @bot.config['rss.head_max'] unless feed.type == 'twitter'
if item.title
base_title = item.title.to_s.dup
# git changesets are SHA1 hashes (40 hex digits), way too long, get rid of them, as they are
# visible in the URL anyway
# TODO make this optional?
base_title.sub!(/^Changeset \[([\da-f]{40})\]:/) { |c| "(git commit)"} if feed.type == 'trac'
title = "#{Bold}#{base_title.ircify_html(tit_opt)}#{Bold}"
end
desc_opt = {}
desc_opt[:limit] = @bot.config['rss.text_max']
desc_opt[:a_href] = :link_out if @bot.config['rss.show_links']
# We prefer content_encoded here as it tends to provide more html formatting
# for use with ircify_html.
if item.respond_to?(:content_encoded) && item.content_encoded
desc = item.content_encoded.ircify_html(desc_opt)
elsif item.respond_to?(:description) && item.description
desc = item.description.ircify_html(desc_opt)
elsif item.respond_to?(:content) && item.content
if item.content.type == "html"
desc = item.content.content.ircify_html(desc_opt)
else
desc = item.content.content
if desc.size > desc_opt[:limit]
desc = desc.slice(0, desc_opt[:limit]) + "#{Reverse}...#{Reverse}"
end
end
else
desc = "(?)"
end
link = item.link!
link.strip! if link
category = item.category! || item.dc_subject!
category.strip! if category
author = item.dc_creator! || item.author!
author.strip! if author
line1 = nil
line2 = nil
at = ((item.title && item.link) ? ' @ ' : '')
key = @bot.global_filter_name(feed.type, @outkey)
key = @bot.global_filter_name(:default, @outkey) unless @bot.has_filter?(key)
output = @bot.filter(key, :item => item, :handle => handle, :date => date,
:title => title, :desc => desc, :link => link,
:category => category, :author => author, :at => at)
return output if places.empty?
places.each { |loc|
output.to_s.each_line { |line|
@bot.say loc, line, :overlong => :truncate
}
}
end
def fetchRss(feed, m=nil, cache=true)
feed.last_fetched = Time.now
begin
# Use 60 sec timeout, cause the default is too low
xml = @bot.httputil.get(feed.url,
:read_timeout => 60,
:open_timeout => 60,
:cache => cache)
rescue URI::InvalidURIError, URI::BadURIError => e
report_problem("invalid rss feed #{feed.url}", e, m)
return nil
rescue => e
report_problem("error getting #{feed.url}", e, m)
return nil
end
debug "fetched #{feed}"
unless xml
report_problem("reading feed #{feed} failed", nil, m)
return nil
end
# Ok, 0.9 feeds are not supported, maybe because
# Netscape happily removed the DTD. So what we do is just to
# reassign the 0.9 RDFs to 1.0, and hope it goes right.
xml.gsub!("xmlns=\"http://my.netscape.com/rdf/simple/0.9/\"",
"xmlns=\"http://purl.org/rss/1.0/\"")
# make sure the parser doesn't double-convert in case the feed is not UTF-8
xml.sub!(/<\?xml (.*?)\?>/) do |match|
if /\bencoding=(['"])(.*?)\1/.match(match)
match.sub!(/\bencoding=(['"])(?:.*?)\1/,'encoding="UTF-8"')
end
match
end
feed.mutex.synchronize do
feed.xml = xml
feed.last_success = Time.now
end
return true
end
def parseRss(feed, m=nil)
return nil unless feed.xml
feed.mutex.synchronize do
xml = feed.xml
rss = nil
errors = []
RSS::AVAILABLE_PARSERS.each do |parser|
begin
## do validate parse
rss = RSS::Parser.parse(xml, true, true, parser)
debug "parsed and validated #{feed} with #{parser}"
break
rescue RSS::InvalidRSSError
begin
## do non validate parse for invalid RSS 1.0
rss = RSS::Parser.parse(xml, false, true, parser)
debug "parsed but not validated #{feed} with #{parser}"
break
rescue RSS::Error => e
errors << [parser, e, "parsing rss stream failed, whoops =("]
end
rescue RSS::Error => e
errors << [parser, e, "parsing rss stream failed, oioi"]
rescue => e
errors << [parser, e, "processing error occured, sorry =("]
end
end
unless errors.empty?
debug errors
self.send(:report_problem, errors.last[2], errors.last[1], m)
return nil unless rss
end
items = []
if rss.nil?
if xml.match(/xmlns\s*=\s*(['"])http:\/\/www.w3.org\/2005\/Atom\1/) and not defined?(RSS::Atom)
report_problem("#{feed.handle} @ #{feed.url} looks like an Atom feed, but your Ruby/RSS library doesn't seem to support it. Consider getting the latest version from http://raa.ruby-lang.org/project/rss/", nil, m)
else
report_problem("#{feed.handle} @ #{feed.url} doesn't seem to contain an RSS or Atom feed I can read", nil, m)
end
return nil
else
begin
rss.output_encoding = 'UTF-8'
rescue RSS::UnknownConvertMethod => e
report_problem("bah! something went wrong =(", e, m)
return nil
end
if rss.respond_to? :channel
rss.channel.title ||= "(?)"
title = rss.channel.title
else
title = rss.title.content
end
rss.items.each do |item|
item.title ||= "(?)"
items << item
end
end
if items.empty?
report_problem("no items found in the feed, maybe try weed?", e, m)
else
feed.title = title.strip
feed.items = items
end
return items.length
end
end
end
plugin = RSSFeedsPlugin.new
plugin.default_auth( 'edit', false )
plugin.default_auth( 'edit:add', true)
plugin.map 'rss show :handle :limit',
:action => 'show_rss',
:requirements => {:limit => /^\d+(?:\.\.\d+)?$/},
:defaults => {:limit => 5}
plugin.map 'rss list :handle',
:action => 'list_rss',
:defaults => {:handle => nil}
plugin.map 'rss watched :handle [in :chan]',
:action => 'watched_rss',
:defaults => {:handle => nil}
plugin.map 'rss who watches :handle',
:action => 'who_watches',
:defaults => {:handle => nil}
plugin.map 'rss add :handle :url :type',
:action => 'add_rss',
:auth_path => 'edit',
:defaults => {:type => nil}
plugin.map 'rss change :what of :handle to :new',
:action => 'change_rss',
:auth_path => 'edit',
:requirements => { :what => /handle|url|format|type|refresh/ }
plugin.map 'rss change :what for :handle to :new',
:action => 'change_rss',
:auth_path => 'edit',
:requirements => { :what => /handle|url|format|type|refesh/ }
plugin.map 'rss del :handle',
:auth_path => 'edit:rm!',
:action => 'del_rss'
plugin.map 'rss delete :handle',
:auth_path => 'edit:rm!',
:action => 'del_rss'
plugin.map 'rss rm :handle',
:auth_path => 'edit:rm!',
:action => 'del_rss'
plugin.map 'rss replace :handle :url :type',
:auth_path => 'edit',
:action => 'replace_rss',
:defaults => {:type => nil}
plugin.map 'rss forcereplace :handle :url :type',
:auth_path => 'edit',
:action => 'forcereplace_rss',
:defaults => {:type => nil}
plugin.map 'rss watch :handle [in :chan]',
:action => 'watch_rss',
:defaults => {:url => nil, :type => nil}
plugin.map 'rss watch :handle :url :type [in :chan]',
:action => 'watch_rss',
:defaults => {:url => nil, :type => nil}
plugin.map 'rss unwatch :handle [in :chan]',
:action => 'unwatch_rss'
plugin.map 'rss rmwatch :handle [in :chan]',
:action => 'unwatch_rss'
plugin.map 'rss rewatch [:handle] [:delay]',
:action => 'rewatch_rss'
plugin.map 'rss types',
:action => 'rss_types'
|