Skip to content

Instantly share code, notes, and snippets.

@alex-cellcity
Created July 17, 2013 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alex-cellcity/6019090 to your computer and use it in GitHub Desktop.
Save alex-cellcity/6019090 to your computer and use it in GitHub Desktop.
add book to pocket.rb
require "sinatra"
require "./lib/pocket.rb"
require "open-uri"
require "iconv"
require "json"
use Rack::Logger
helpers do
def logger
request.logger
end
end
enable :sessions
CALLBACK_URL = "http://localhost:4567/oauth/callback"
Pocket.configure do |config|
config.consumer_key = '16106-8a9984eefb9d1522359292ae'
end
get '/reset' do
puts "GET /reset"
session.clear
end
get "/" do
puts "GET /"
puts "session: #{session}"
if session[:access_token]
'
<a href="/add?url=http://geknowm.com">Add Geknowm</a>
<a href="/retrieve">Retrieve items</a>
'
else
'<a href="/oauth/connect">Connect with Pocket</a>'
end
end
get "/oauth/connect" do
puts "OAUTH CONNECT"
session[:code] = Pocket.get_code(:redirect_uri => CALLBACK_URL)
new_url = Pocket.authorize_url(:code => session[:code], :redirect_uri => CALLBACK_URL)
puts "new_url: #{new_url}"
puts "session: #{session}"
redirect new_url
end
get "/oauth/callback" do
puts "OAUTH CALLBACK"
puts "request.url: #{request.url}"
puts "request.body: #{request.body.read}"
access_token = Pocket.get_access_token(session[:code], :redirect_uri => CALLBACK_URL)
session[:access_token] = access_token
puts "session: #{session}"
redirect "/"
end
get '/add' do
client = Pocket.client(:access_token => session[:access_token])
info = client.add :url => 'http://geknowm.com'
"<pre>#{info}</pre>"
end
get "/retrieve" do
client = Pocket.client(:access_token => session[:access_token])
info = client.retrieve :detailType => :complete, :tag=>'最终进化', :sort=>:newest
html = "<ul>"
info['list'].each do |key, item|
html << "<li>[item['']]<a href='http://getpocket.com/a/read/#{item['item_id']}' title='#{item['resolved_title']}'>#{item['resolved_title']}</a></li>"
end
html << "</ul>"
html
end
get "/biquge.com/:book_id/" do
url = "http://www.biquge.com/#{params[:book_id]}/"
res = open(url) { |f| f.read }
html = Iconv.conv("utf-8", "GBK", res)
list = []
html.scan(%r{<dd><a href="(/.+/(\d+).html)">(.+)</a>}).each {|m| list.push({:link => m[0], :id => m[1].to_i, :title => m[2] }) }
list.sort_by!{|a| a[:id]}
list.uniq!{|a| a[:id]}
list.to_json
end
get "/biquge.com/json/:since_chapter/:limit" do
path_to_json = '/Users/alex/Desktop/最终进化.json'
content = File.read(path_to_json)
list = JSON.parse(content)
since = params[:since_chapter].to_i
limit = params[:limit].to_i
# return {:since => since, :limit => limit}.to_json
# return list.to_json
index = list.find_index do |s|
# logger.info("#{s['id']} == #{since}")
s['id'] == since
end
if !index
return ">>>> can't find index: #{index}"
end
news = list[index, limit]
# news.to_json
client = Pocket.client(:access_token => session[:access_token])
msg = []
news.each do |item|
info = client.add :url => "http://www.biquge.com/#{item['link']}", :tags => '最终进化', :title => item['title']
msg.push(info)
logger.info(info)
end
msg.to_json
end
get "/biquge.com/:book_id/:since_chapter/:limit" do
url = "http://www.biquge.com/#{params[:book_id]}/"
res = open(url) { |f| f.read }
html = Iconv.conv("utf-8", "GBK", res)
list = []
html.scan(%r{<dd><a href="(/.+/(\d+).html)">(.+)</a>}).each {|m| list.push({:link => m[0], :id => m[1].to_i, :title => m[2] }) }
# list.sort {|a,b| a[:link].split('/')[2] <=> b[:link].split('/')[2] }
list.sort_by!{|a| a[:id]}
list.uniq!{|a| a[:id]}
# list.to_json
index = list.find_index {|s| s[:id] == 485311}
news = list[index, 100]
client = Pocket.client(:access_token => session[:access_token])
msg = []
news.each do |item|
info = client.add :url => "http://www.biquge.com/#{item[:link]}", :tags => '最终进化', :title => item[:title]
logger.info(info)
msg.push(info)
end
msg.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment