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
|
# section_footer2.rb
#
# Copyright (c) 2008 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
# You can redistribute it and/or modify it under GPL2.
#
require 'digest/md5'
require 'timeout'
require 'open-uri'
require 'yaml'
require 'pathname'
begin
require 'json'
rescue LoadError
retry if require 'rubygems'
end
def permalink( date, index, escape = true )
ymd = date.strftime( "%Y%m%d" )
uri = @conf.index.dup
uri.sub!( %r|\A(?!https?://)|i, @conf.base_url )
uri.gsub!( %r|/\.(?=/)|, "" ) # /././ -> /
link = uri + anchor( "#{ymd}p%02d" % index )
link.sub!( "#", "%23" ) if escape
link
end
unless defined?(subtitle)
def subtitle( date, index, escape = true )
diary = @diaries[date.strftime( "%Y%m%d" )]
return "" unless diary
sn = 1
diary.each_section do |section|
if sn == index
old_apply_plugin = @options["apply_plugin"]
@options["apply_plugin"] = true
title = apply_plugin( section.subtitle_to_html, true )
@options["apply_plugin"] = old_apply_plugin
title.gsub!( /(?=")/, "\\" ) if escape
return title
end
sn += 1
end
''
end
end
def init_buttons_status
@installed_buttons = ['yaml', 'delicious', 'hatena', 'facebook', 'twitter', 'plusone']
if @conf['section_footer2.isDisplay'].nil?
@conf['section_footer2.isDisplay'] = ''
end
end
add_header_proc do
<<-"EOS"
<script type="text/javascript" src="//b.st-hatena.com/js/bookmark_button_wo_al.js" charset="utf-8" async="async"></script>
<style type="text/css">iframe.hatena-bookmark-button-frame {margin-bottom: -7px; }</style>
<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
<style type="text/css">iframe.twitter-share-button.twitter-count-horizontal {margin-bottom: -6px; }</style>
<script src="//connect.facebook.net/#{@section_footer2_locale}/all.js"></script>
<script>
FB.init({
appId : '',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
</script>
<style type="text/css">iframe.fb_ltr {margin-bottom: -2px; margin-right: 4px;}</style>
<script type="text/javascript" src="//apis.google.com/js/plusone.js">
{lang: '#{@section_footer2_locale}'}
</script>
<style type="text/css">.tags > div > iframe {margin-bottom: -6px !important; }</style>
EOS
end
add_section_enter_proc do |date, index|
@category_to_tag_list = {}
init_buttons_status
''
end
alias section_footer2_subtitle_link_original subtitle_link unless defined?( section_footer2_subtitle_link_original )
def subtitle_link( date, index, subtitle )
s = ''
@subtitle = subtitle
if subtitle then
s = subtitle.sub( /^(?:\[[^\[]+?\])+/ ) do
$&.scan( /\[(.*?)\]/ ) do |tag|
@category_to_tag_list[tag.shift] = false # false when diary
end
''
end
end
section_footer2_subtitle_link_original( date, index, s.strip )
end
add_section_leave_proc do |date, index|
unless feed? or bot?
r = '<div class="tags">'
# add category_tag
if @category_to_tag_list and not @category_to_tag_list.empty? then
r << "Tags: "
@category_to_tag_list.each do |tag, blog|
r << category_anchor( "#{tag}" ).sub( /^\[/, '' ).sub( /\]$/, '' ) << ' '
end
r << ' | '
end
# add button
r << add_button_by_service(date, index)
# add Permalink
r << %Q|<a href="#{permalink(date, index, false)}">Permalink</a> |
r << "</div>\n"
end
end
def call_delicious_json( url_md5 )
json = nil
begin
Timeout.timeout(10) do
open( "http://feeds.delicious.com/v2/json/urlinfo/#{url_md5}" ) do |f|
json = JSON.parse( f.read )
end
end
rescue => e
@logger.debug( e )
end
return json
end
def add_delicious( date, index )
url_md5 = Digest::MD5.hexdigest(permalink(date, index, false))
db_file = "#{@cache_path}/delicious.cache"
r = ''
r << %Q|<a href="http://delicious.com/url/#{url_md5}"><img src="http://static.delicious.com/img/delicious.small.gif" style="border: none;vertical-align: middle;" alt="#{@section_footer2_delicious_label}" title="#{@section_footer2_delicious_label}">|
begin
cache_time = 8 * 60 * 60 # 12 hour
PStore.new(db_file).transaction do |db|
entry = db[url_md5]
entry = { :count => 0, :update=> Time.at(0) } if entry.nil?
if Time.now > entry[:update] + cache_time
json = call_delicious_json( url_md5 )
entry[:count] = json[0]["total_posts"].to_i unless json[0].nil?
entry[:update] = Time.now
db[url_md5] = entry
end
if entry[:count] > 0
r << %Q| #{entry[:count]} user|
r << 's' if entry[:count] > 1
end
end
rescue => e
@logger.debug( e )
end
r << '</a>'
r << ' | '
return r
end
def add_hatena( date, index )
%Q!<a href="http://b.hatena.ne.jp/entry/#{permalink( date, index )}" class="hatena-bookmark-button" data-hatena-bookmark-layout="standard"><img src="//b.st-hatena.com/images/entry-button/button-only.gif" width="20" height="20" style="border: none;" /></a> | !
end
def add_facebook(date, index)
# add Facebook Like!
r = ''
r << %Q!<fb:like href="#{permalink(date, index, false)}" layout="button_count"></fb:like> | !
end
def add_twitter(date, index)
r = <<-"EOS"
<a href="http://twitter.com/share" class="twitter-share-button"
data-url="#{permalink(date, index, false).gsub(/#.*$/, '')}"
data-text="#{CGI.escapeHTML(subtitle(date, index))}"
data-via="#{@conf['twitter.user']}"
>tweet</a> |
EOS
end
def add_plusone(date, index)
%Q!<g:plusone size="medium" href="#{permalink(date, index, false)}"></g:plusone> | !
end
def add_yaml(date, index)
r = ''
yaml_dir = "#{@cache_path}/yaml/"
Dir.glob( yaml_dir + "*.yaml" ) do |file|
r << parse_sbm_yaml(file, date, index)
end
return r
end
def add_button_by_service(date, index)
r = ''
@installed_buttons.each do |button|
if @conf['section_footer2.isDisplay'].include?(button) then
method = "add_" + button + "(date, index)"
unless method.nil? then
r << instance_eval(method)
end
end
end
return r
end
def parse_sbm_yaml(file, date, index)
config = YAML.load( Pathname.new( file ).expand_path.read )
r = ""
unless config.nil?
url = config["url"]
unless config['usesubtitle'].nil?
sub = (@subtitle || '').sub( /\A(?:\[[^\]]*\])+ */, '' )
sub = apply_plugin( sub, true ).strip
regexp = config["usesubtitle"]
url.gsub!(regexp, sub)
char_space = ' '
end
title = config["title"][@conf.lang]
r << %Q|<a href="#{url}#{char_space}#{permalink(date, index)}">|
r << %Q|<img src="#{config["src"]}" style="border: none;vertical-align: middle;" |
r << %Q|title="#{title}" |
r << %Q|alt="#{title}">|
r << %Q| <img src="#{config["counter"]}#{permalink(date, index)}" style="border: none;vertical-align: middle;">| unless config["counter"].nil?
r << '</a>'
r << ' | '
end
return r
end
add_conf_proc('section_footer2', 'Section Footer Button') do
if @mode == 'saveconf' then
@conf['section_footer2.isDisplay'] = ''
@cgi.params['section_footer2.isDisplay'].each do |item|
@conf['section_footer2.isDisplay'] << item + '\n'
end
end
r = '<h3>表示するボタンをチェックしてください(YAMLをチェックすると各自でインストールしたYAMLのボタンをすべて表示します)</h3>'
r << '<p>'
init_buttons_status
@installed_buttons.each do |button|
if @conf['section_footer2.isDisplay'].include?(button) then
item_checked = "checked"
else
item_checked = ''
end
r << %Q|<input name="section_footer2.isDisplay" value="#{button}" #{item_checked} type="checkbox" />#{button}|
end
r << '</p>'
end
# Local Variables:
# mode: ruby
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# End:
# vim: ts=3
|