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
|
# -*- coding: utf-8 -*-
#
# tweet_quote.rb - tDiary plugin to quote tweet on twitter.com,
# formaly known as blackbird-pie.rb
#
# Copyright (C) 2010, hb <smallstyle@gmail.com>
#
# usage:
# <%= tweet_quote "id|url" %>
# or
# <%= twitter_quote "id|url" %>
# or
# <%= blackbird_pie "id|url" %>
# or
# <%= bbp "id|url" %>
#
require 'pstore'
require 'open-uri'
require 'timeout'
require 'time'
require 'uri'
require 'openssl'
require 'json'
def twitter_quote_option_keys
%w( oauth_consumer_key oauth_consumer_secret oauth_token oauth_token_secret render_method ).map{|k| "twitter_quote.#{k}" }
end
def twitter_statuses_show_api( tweet_id )
url = "https://api.twitter.com/1.1/statuses/show.json"
parameters = {
:id => tweet_id
}
oauth_parameters = {
:oauth_consumer_key => @conf["twitter_quote.oauth_consumer_key"],
:oauth_nonce => OpenSSL::Digest.hexdigest( "MD5", "#{Time.now.to_f}#{rand}" ),
:oauth_signature_method => "HMAC-SHA1",
:oauth_timestamp => Time.now.to_i.to_s,
:oauth_token => @conf["twitter_quote.oauth_token"],
:oauth_version => "1.0"
}
data = "GET&#{CGI.escape( url )}&"
data << CGI.escape( oauth_parameters.merge( parameters ).sort.map{|k, v| "#{k}=#{v}" }.join( "&" ) )
oauth_parameters[:oauth_signature] = [OpenSSL::HMAC.digest(
OpenSSL::Digest::SHA1.new,
CGI.escape( "#{@conf["twitter_quote.oauth_consumer_secret"]}&#{@conf["twitter_quote.oauth_token_secret"]}" ),
data
)].pack( "m" ).chomp
proxy = @conf['proxy']
proxy = 'http://' + proxy if proxy
headers = {
"Authorization" => %Q[OAuth #{oauth_parameters.map{|k ,v| "#{CGI.escape( k.to_s )}=\"#{CGI.escape( v )}\""}.join( "," )}],
:proxy => proxy
}
Timeout.timeout( 20 ) do
open( "#{url}?#{parameters.map{|k,v| "#{k}=#{v}"}.join( "&" )}", headers ) {|f| f.read }
end
end
def render_widget(tweet_id, screen_name, name, background_url, profile_backgound_color, avatar, source, timestamp, content)
<<-HTML
<blockquote class="twitter-tweet"><p>#{content}</p>
— #{@name} (#{@screen_name}) <a href="http://twitter.com/#{screen_name}/status/#{tweet_id}">#{timestamp}</a>
</blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
HTML
end
def render_bbp(tweet_id, screen_name, name, background_url, profile_backgound_color, avatar, source, timestamp, content)
<<-HTML
<!-- http://twitter.com/#{screen_name}/status/#{tweet_id} -->
<div class="bbpBox" style="background:url(#{background_url}) #{profile_background_color};padding:20px;">
<p class="bbpTweet" style=
"background:#fff;padding:10px 12px 10px 12px;margin:0;min-height:48px;color:#000;font-size:16px !important;line-height:22px;-moz-border-radius:5px;-webkit-border-radius:5px;">
<span class="bbpMetadata" style=
"display:block;width:100%;clear:both;margin-bottom:8px;padding-bottom:12px;height:40px;border-bottom:1px solid #fff;border-bottom:1px solid #e6e6e6;">
<span class="bbpAuthor" style="line-height:19px;"><a href=
"http://twitter.com/#{screen_name}"><img alt="#{name}" src=
"#{avatar}" style=
"float:left;margin:0 17px 0 0;width:38px;height:38px;"></a>
<a href="http://twitter.com/#{screen_name}" style="text-decoration:none">
<strong style="text-decoration:underline">#{name}</strong><br>
@#{screen_name}</a></span></span>
#{content} <span class="bbpTimestamp" style=
"font-size:12px;display:block;"><a title="#{timestamp}" href=
"http://twitter.com/#{screen_name}/status/#{tweet_id}">#{timestamp}</a>
<span style="float:right"><a href=
"https://twitter.com/intent/tweet?in_reply_to=#{tweet_id}">Reply</a> <a href=
"https://twitter.com/intent/retweet?tweet_id=#{tweet_id}">Retweet</a> <a href=
"https://twitter.com/intent/favorite?tweet_id=#{tweet_id}"}>Favorite</a>
</span></span></p>
</div>
<!-- end of tweet -->
HTML
end
def twitter_status_json_to_html( json )
tweet_id = json['id_str']
screen_name = json['user']['screen_name']
name = json['user']['name']
background_url = json['user']['profile_background_image_url']
profile_background_color = "##{json['user']['profile_background_color']}"
avatar = json['user']['profile_image_url']
source = json['source']
timestamp = Time.parse( json['created_at'] )
content = json['text']
content.gsub!( URI.regexp( %w|http https| ) ){ %Q|<a href="#{$&}">#{$&}</a>| }
content = content.split( /(<[^>]*>)/ ).map {|s|
next s if s[/\A</]
s.gsub!( /@(?>([a-zA-Z0-9_]{1,15}))(?![a-zA-Z0-9_])/ ){ %Q|<a href="http://twitter.com/#{$1}">#{$&}</a>| }
s.gsub( /#([a-zA-Z0-9]{1,16})/ ){ %Q|<a href="http://twitter.com/search?q=%23#{$1}">#{$&}</a>| }
}.join
if @conf['twitter_quote.render_method'] == 'widget'
render_widget(tweet_id, screen_name, name, background_url, profile_backgound_color, avatar, source, timestamp, content)
else
render_bbp(tweet_id, screen_name, name, background_url, profile_backgound_color, avatar, source, timestamp, content)
end
end
def tweet_quote( src )
return unless twitter_quote_option_keys.all?{|v| @options.key? v }
if %r|http(?:s)?://twitter.com/(?:#!/)?[^/]{1,15}/status(?:es)?/([0-9]+)| =~ src.to_s.downcase
src = $1
end
return unless /\A[0-9]+\z/ =~ src.to_s
cache = "#{@cache_path}/tweet_quote.pstore"
json = nil
db = PStore.new( cache )
db.transaction do
key = src
db[key] ||= {}
if db[key][:json] && /\A(?:latest|day|month|nyear)\z/ =~ @mode
json = db[key][:json]
else
begin
json = twitter_statuses_show_api( src )
rescue OpenURI::HTTPError
return %Q|<p class="tweet_quote_error">#$!</p>|
end
db[key][:json] = json
end
end
twitter_status_json_to_html( JSON.parse( json ) )
end
add_conf_proc( 'twitter_quote', 'Embedded Tweets' ) do
if @mode == 'saveconf'
twitter_quote_option_keys.each do |k|
@conf[k] = @cgi.params[k][0]
end
end
<<-HTML
<h2>Twitter OAuth settings</h2>
<h3>Consumer key</h3>
<p><input type="text" name="twitter_quote.oauth_consumer_key" value="#{h @conf["twitter_quote.oauth_consumer_key"]}" size="80"></p>
<h3>Consumer secret</h3>
<p><input type="text" name="twitter_quote.oauth_consumer_secret" value="#{h @conf["twitter_quote.oauth_consumer_secret"]}" size="80"></p>
<h2>Your access token</h2>
<h3>Access token</h3>
<p><input type="text" name="twitter_quote.oauth_token" value="#{h @conf["twitter_quote.oauth_token"]}" size="80"></p>
<h3>Access token secret</h3>
<p><input type="text" name="twitter_quote.oauth_token_secret" value="#{h @conf["twitter_quote.oauth_token_secret"]}" size="80"></p>
<h3>Render method</h3>
<select name="twitter_quote.render_method">
<option value="bbp"#{' selected' if @conf['twitter_quote.render_method'] == 'bbp'}>Bbp</option>
<option value="widget"#{' selected' if @conf['twitter_quote.render_method'] == 'widget'}>Widget</option>
</select>
</p>
HTML
end
alias :blackbird_pie :tweet_quote
alias :bbp :tweet_quote
alias :twitter_quote :tweet_quote
|