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
|
# $Revision: 1.37 $
# recent_comment3: ǶΥĥåߤꥹȥåפ
#
# @secure = true ʴĶǤưޤ
#
# Copyright (c) 2002 Junichiro KITA <kita@kitaj.no-ip.com>
# Distributed under the GPL
#
require 'pstore'
require 'time'
def recent_comment3_format(format, *args)
format.gsub(/\$(\d)/) {|s| args[$1.to_i - 1]}
end
def recent_comment3_init
@conf['recent_comment3.cache'] ||= "#{@cache_path}/recent_comments"
@conf['recent_comment3.cache_size'] ||= 50
@conf['recent_comment3.max'] ||= 3
@conf['recent_comment3.date_format'] ||= "(%m-%d)"
@conf['recent_comment3.except_list'] ||= ''
@conf['recent_comment3.format'] ||= '<a href="$2" title="$3">$4 $5</a>'
@conf['recent_comment3.tree'] ||= ""
@conf['recent_comment3.titlelen'] ||= 20
end
def recent_comment3(ob_max = 'OBSOLUTE' ,sep = 'OBSOLUTE',ob_date_format = 'OBSOLUTE',*ob_except )
return 'DO NOT USE IN SECURE MODE' if @conf.secure
recent_comment3_init
cache = @conf['recent_comment3.cache'].untaint
max = @conf['recent_comment3.max']
date_format = @conf['recent_comment3.date_format']
except = @conf['recent_comment3.except_list'].split(/,/)
format = @conf['recent_comment3.format']
titlelen = @conf['recent_comment3.titlelen']
entries = {}
tree_order =[]
order = []
idx = 0
PStore.new(cache).transaction do |db|
break unless db.root?('comments')
db['comments'].each do |c|
break if idx >= max or c.nil?
comment, date, serial = c
next unless comment.visible?
next if except.include?(comment.name)
a = h( @index ) + anchor("#{date.strftime('%Y%m%d')}#c#{'%02d' % serial}")
popup = h(comment.shorten( @conf.comment_length ))
str = h(comment.name)
date_str = h( comment.date.strftime(date_format) )
idx += 1
entry_date = "#{date.strftime('%Y%m%d')}"
comment_str = entries[entry_date]
if comment_str == nil then
comment_str = []
tree_order << entry_date
end
comment_str << recent_comment3_format(format, idx, a, popup, str, date_str)
entries[entry_date] = comment_str
order << entry_date
end
db.abort
end
result = []
if @conf['recent_comment3.tree'] == "t" then
if entries.size == 0
''
else
cgi = CGI::new
def cgi.referer; nil; end
tree_order.each do | entry_date |
a_entry = @index + anchor(entry_date)
cgi.params['date'] = [entry_date]
diary = TDiaryDay::new(cgi, '', @conf)
if diary != nil then
title = diary.diaries[entry_date].title.gsub( /<[^>]*>/, '' )
end
if title == nil || title.length == 0 || title.strip.delete('').delete(' ').length == 0 then
date = Time.parse(entry_date)
title = "#{date.strftime @date_format}"
end
result << "<li>"
result << %Q|<a href="#{h( a_entry )}">#{h( @conf.shorten( title, titlelen ) )}</a><br>|
entries[entry_date].sort.each do | comment_str |
result << comment_str + "<br>"
end
result << "</li>\n"
end
%Q|<ul class="recent-comment">\n| + result.join( '' ) + "</ul>\n"
end
else
if entries.size == 0
''
else
order.each do | entry_date |
result << "<li>#{entries[entry_date][0]}</li>\n"
entries[entry_date].shift
end
%Q|<ol class="recent-comment">\n| + result.join( '' ) + "</ol>\n"
end
end
end
add_update_proc do
recent_comment3_init
date = @date.strftime( '%Y%m%d' )
cache = @conf['recent_comment3.cache'].untaint
size = @conf['recent_comment3.cache_size']
if @mode == 'comment' and @comment and @comment.visible? then
PStore.new( cache ).transaction do |db|
comment = @comment
serial = 0
@diaries[date].each_comment do
serial += 1
end
db['comments'] = Array.new( size ) unless db.root?( 'comments' )
if db['comments'][0].nil? or comment != db['comments'][0][0]
db['comments'].unshift([comment, @date, serial]).pop
end
end
elsif @mode == 'showcomment'
PStore.new( cache ).transaction do |db|
break unless db.root?('comments')
@diaries[date].each_comment do |dcomment|
db['comments'].each do |c|
break if c.nil?
comment, cdate, serial = c
next if cdate.strftime('%Y%m%d') != date
if comment == dcomment and comment.date.to_s == dcomment.date.to_s
comment.show = dcomment.visible?
next
end
end
end
end
end
end
if @mode == 'saveconf'
def saveconf_recent_comment3
@conf['recent_comment3.max'] = @cgi.params['recent_comment3.max'][0].to_i
@conf['recent_comment3.date_format'] = @cgi.params['recent_comment3.date_format'][0]
@conf['recent_comment3.except_list'] = @cgi.params['recent_comment3.except_list'][0]
@conf['recent_comment3.format'] = @cgi.params['recent_comment3.format'][0]
@conf['recent_comment3.tree'] = @cgi.params['recent_comment3.tree'][0]
@conf['recent_comment3.titlelen'] = @cgi.params['recent_comment3.titlelen'][0].to_i
end
end
# vim: ts=3
|