chiebukuro 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +30 -0
- data/Rakefile +1 -0
- data/chiebukuro.gemspec +25 -0
- data/lib/chiebukuro.rb +14 -0
- data/lib/chiebukuro/api.rb +37 -0
- data/lib/chiebukuro/version.rb +3 -0
- data/lib/chiebukuro/web.rb +18 -0
- metadata +111 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 6a282ce329769b35728add24591f581321a71db5
|
4
|
+
data.tar.gz: 927eca04419e6b7bad42ff7aa167270574bc8a38
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 31b52f81758cc4a1d9131b5c871fa1e232e3381920b42e21a4239623051bba0ead7f18b02cc580ac34aabc23bc0a2823896d1177e5846afdb69f16c30f154726
|
7
|
+
data.tar.gz: a99eefa7879fe7644bcea1bf76fe2a34ba7c377471c2ac97a27ae9e4689260a59fe51b8d3563dc58f8efd0a77927d1fba9ec4c7c92d1feb944bb69484090560a
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 kurochan
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Chiebukuro
|
2
|
+
|
3
|
+
Yahoo!知恵袋をrubyで扱いやすくしたものです。
|
4
|
+
知恵袋のAPIを使って情報を取得し、また取得できない種類のものについてはスクレイピングをして取得します。
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
gem 'chiebukuro'
|
11
|
+
|
12
|
+
And then execute:
|
13
|
+
|
14
|
+
$ bundle
|
15
|
+
|
16
|
+
Or install it yourself as:
|
17
|
+
|
18
|
+
$ gem install chiebukuro
|
19
|
+
|
20
|
+
## Usage
|
21
|
+
|
22
|
+
TODO: Write usage instructions here
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
|
26
|
+
1. Fork it
|
27
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
28
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
29
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
30
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/chiebukuro.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'chiebukuro/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "chiebukuro"
|
8
|
+
spec.version = Chiebukuro::VERSION
|
9
|
+
spec.authors = ["kurochan"]
|
10
|
+
spec.email = ["kuro@kurochan.org"]
|
11
|
+
spec.description = %q{Yahoo! Chiebukuro helper}
|
12
|
+
spec.summary = %q{Yahoo! Chiebukuro helper}
|
13
|
+
spec.homepage = "https://github.com/kurochan/chiebukuro4r"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_dependency "active_support"
|
24
|
+
spec.add_dependency "nokogiri"
|
25
|
+
end
|
data/lib/chiebukuro.rb
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
require 'uri'
|
2
|
+
require 'open-uri'
|
3
|
+
require 'active_support'
|
4
|
+
|
5
|
+
module ChiebukuroAPI
|
6
|
+
API_BASE_URL = "http://chiebukuro.yahooapis.jp/Chiebukuro/V1"
|
7
|
+
API_LIST = [
|
8
|
+
:questionSearch,
|
9
|
+
:categoryTree,
|
10
|
+
:getNewQuestionList,
|
11
|
+
:detailSearch,
|
12
|
+
:postQuestion,
|
13
|
+
:postQuestionPreview,
|
14
|
+
:postQueSupplement,
|
15
|
+
:postQueSupplementPreview,
|
16
|
+
:cancelQuestion,
|
17
|
+
:cancelQuestionPreview,
|
18
|
+
:selectBestAnswer,
|
19
|
+
:postAnswer,
|
20
|
+
:postAnswerPreview,
|
21
|
+
:cancelAnswer,
|
22
|
+
:cancelAnswerPreview,
|
23
|
+
]
|
24
|
+
|
25
|
+
def method_missing(name, params = {})
|
26
|
+
raise(ChiebukuroAPIException, "API #{name} does not exists.") unless API_LIST.include? name
|
27
|
+
params['appid'] = @appid
|
28
|
+
xml = open(URI.encode("#{API_BASE_URL}/#{name}#{to_query(params)}")).read
|
29
|
+
ActiveSupport::XmlMini.parse(xml)['ResultSet']
|
30
|
+
end
|
31
|
+
|
32
|
+
def to_query(hash)
|
33
|
+
'?' + hash.inject(''){|q, h| "#{q}#{h[0]}=#{h[1]}&"}
|
34
|
+
end
|
35
|
+
|
36
|
+
class ChiebukuroAPIException < Exception; end
|
37
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
require 'nokogiri'
|
3
|
+
|
4
|
+
module ChiebukuroWeb
|
5
|
+
DETAIL_BASE_URL = "http://detail.chiebukuro.yahoo.co.jp/qa/question_detail"
|
6
|
+
USER_AGENT = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36'
|
7
|
+
DETAIL_QUESTION_USER_XPATH = '//*[@id="main"]/div[3]/div/div[1]/p[1]/a/em'
|
8
|
+
DETAIL_TOP_ANSWER_USER_XPATH = '//*[@id="main"]/div[4]/div/div[1]/p[1]/a/em'
|
9
|
+
|
10
|
+
def get_question_detail(number)
|
11
|
+
charset = nil
|
12
|
+
html = open("#{DETAIL_BASE_URL}/q#{number}", 'User-Agent' => USER_AGENT) do |f|
|
13
|
+
charset = f.charset
|
14
|
+
f.read
|
15
|
+
end
|
16
|
+
Nokogiri::HTML.parse(html, USER_AGENT, charset)
|
17
|
+
end
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,111 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chiebukuro
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- kurochan
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-11-06 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: active_support
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: nokogiri
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '>='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
description: Yahoo! Chiebukuro helper
|
70
|
+
email:
|
71
|
+
- kuro@kurochan.org
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- .gitignore
|
77
|
+
- Gemfile
|
78
|
+
- LICENSE.txt
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- chiebukuro.gemspec
|
82
|
+
- lib/chiebukuro.rb
|
83
|
+
- lib/chiebukuro/api.rb
|
84
|
+
- lib/chiebukuro/version.rb
|
85
|
+
- lib/chiebukuro/web.rb
|
86
|
+
homepage: https://github.com/kurochan/chiebukuro4r
|
87
|
+
licenses:
|
88
|
+
- MIT
|
89
|
+
metadata: {}
|
90
|
+
post_install_message:
|
91
|
+
rdoc_options: []
|
92
|
+
require_paths:
|
93
|
+
- lib
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
95
|
+
requirements:
|
96
|
+
- - '>='
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: '0'
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '>='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '0'
|
104
|
+
requirements: []
|
105
|
+
rubyforge_project:
|
106
|
+
rubygems_version: 2.0.2
|
107
|
+
signing_key:
|
108
|
+
specification_version: 4
|
109
|
+
summary: Yahoo! Chiebukuro helper
|
110
|
+
test_files: []
|
111
|
+
has_rdoc:
|