facebook_scraper 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: fbafef40ec5f14539d005e4714fa565115b67275
4
+ data.tar.gz: f8af4f2afd3784edec6150a8a723918b09c9567a
5
+ SHA512:
6
+ metadata.gz: 0ead28691799e37dfeedbb9c74917437af351457e59e7921ce2aa27f47614801d018521b87af2cb383faa7ebfaf705bfa47daf31421dfe9f6be1a63ead792418
7
+ data.tar.gz: 6c2bb60ac7d2e16f1dabaf17b5250e88ed45544710cd5935d90261a60bd972bd9d7947e2aae44e43e2f974b4a9b279c720237535f242fb6863c7c85f25092840
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .rspec
6
+ .yardoc
7
+ Gemfile.lock
8
+ InstalledFiles
9
+ _yardoc
10
+ coverage
11
+ doc/
12
+ lib/bundler/man
13
+ pkg
14
+ rdoc
15
+ spec/reports
16
+ test/tmp
17
+ test/version_tmp
18
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in facebook_scraper.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Patrick Helm
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.
@@ -0,0 +1,31 @@
1
+ # FacebookScraper
2
+
3
+ Simply keep your OpenGraph-Objects up to date
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'facebook_scraper'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install facebook_scraper
18
+
19
+ ## Example
20
+
21
+ ```ruby
22
+ FacebookScraper.trigger_with(url_to_your_open_graph_object)
23
+ ```
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -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 'facebook_scraper/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'facebook_scraper'
8
+ spec.version = FacebookScraper::VERSION
9
+ spec.authors = ['Patrick Helm']
10
+ spec.email = ['deradon87@gmail.com']
11
+ spec.description = %q{Simply keep your OpenGraph-Objects up to date}
12
+ spec.summary = %q{Simply keep your OpenGraph-Objects up to date}
13
+ spec.homepage = 'https://github.com/Deradon/FacebookScraper'
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{^(spec)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.3'
22
+ spec.add_development_dependency 'rake'
23
+ spec.add_development_dependency 'rspec'
24
+ spec.add_development_dependency 'rspec-its'
25
+ end
@@ -0,0 +1,9 @@
1
+ require 'facebook_scraper/scrape'
2
+ require 'facebook_scraper/status'
3
+ require 'facebook_scraper/version'
4
+
5
+ module FacebookScraper
6
+ def self.trigger_with(url)
7
+ Scrape.create(url).status
8
+ end
9
+ end
@@ -0,0 +1,48 @@
1
+ # require 'net/http'
2
+ require 'json'
3
+
4
+ module FacebookScraper
5
+ class Scrape
6
+ GRAPH_URL = 'https://graph.facebook.com'
7
+
8
+ attr_reader :url
9
+ attr_reader :status
10
+
11
+ def initialize(url)
12
+ @url = url
13
+ end
14
+
15
+ def self.create(url)
16
+ new(url).tap { |scraper| scraper.run }
17
+ end
18
+
19
+ def run
20
+ if body["error"]
21
+ @status = Status.new(:failed)
22
+ else
23
+ @status = Status.new(:success)
24
+ end
25
+ end
26
+
27
+ private
28
+
29
+ def body
30
+ @body ||= JSON.parse(res.body)
31
+ end
32
+
33
+ def res
34
+ @res ||= Net::HTTP.post_form(uri, post_data)
35
+ end
36
+
37
+ def uri
38
+ @uri ||= URI(GRAPH_URL)
39
+ end
40
+
41
+ def post_data
42
+ {
43
+ id: url,
44
+ scrape: true
45
+ }
46
+ end
47
+ end # -- Scrape
48
+ end # -- FacebookScraper
@@ -0,0 +1,22 @@
1
+ module FacebookScraper
2
+ class Status
3
+ VALID_STATUS = [:success, :failed]
4
+
5
+ attr_reader :error
6
+
7
+ def initialize(status, error = nil)
8
+ fail ArgumentError unless VALID_STATUS.include?(status)
9
+
10
+ @status = status
11
+ @error = error
12
+ end
13
+
14
+ def success?
15
+ @status == :success
16
+ end
17
+
18
+ def failed?
19
+ @status == :failed
20
+ end
21
+ end # -- Status
22
+ end # -- FacebookScraper
@@ -0,0 +1,3 @@
1
+ module FacebookScraper
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,30 @@
1
+ require 'spec_helper'
2
+
3
+ describe FacebookScraper::Scrape do
4
+ let(:valid_url) { "http://imdb.com" }
5
+ let(:invalid_url) { "htt://example.com" }
6
+
7
+ subject { described_class.create(valid_url) }
8
+
9
+ context "when given valid :url" do
10
+ its(:url) { should eq(valid_url) }
11
+
12
+ it "is successful" do
13
+ expect(subject.status.success?).to eq(true)
14
+ end
15
+ end
16
+
17
+ context "when given no :url" do
18
+ it "raises an ArgumentError" do
19
+ expect { described_class.create }.to raise_error(ArgumentError)
20
+ end
21
+ end
22
+
23
+ context "when given invalid :url" do
24
+ subject { described_class.create(invalid_url) }
25
+
26
+ it "failed" do
27
+ expect(subject.status.failed?).to eq(true)
28
+ end
29
+ end
30
+ end # -- FacebookScraper::Scrape
@@ -0,0 +1,28 @@
1
+ require "spec_helper"
2
+
3
+ describe FacebookScraper::Status do
4
+ context "when given :success as option" do
5
+ subject { described_class.new(:success) }
6
+
7
+ its(:success?) { should eq(true) }
8
+ its(:failed?) { should eq(false) }
9
+ end
10
+ context "when given :failed as option" do
11
+ let(:error) { ArgumentError.new }
12
+ subject { described_class.new(:failed, error) }
13
+
14
+ its(:success?) { should eq(false) }
15
+ its(:failed?) { should eq(true) }
16
+ its(:error) { should eq(error) }
17
+ end
18
+ context "when given :invalid as option" do
19
+ it "raises an ArgumentError" do
20
+ expect { described_class.new(:invalid) }.to raise_error(ArgumentError)
21
+ end
22
+ end
23
+ context "when given no option" do
24
+ it "raises an ArgumentError" do
25
+ expect { described_class.new }.to raise_error(ArgumentError)
26
+ end
27
+ end
28
+ end # -- FacebookScraper::Status
@@ -0,0 +1,30 @@
1
+ require "spec_helper"
2
+
3
+ describe FacebookScraper do
4
+ let(:valid_url) { "http://imdb.com" }
5
+ let(:invalid_url) { "htt://example.com" }
6
+
7
+ describe ".trigger_with" do
8
+ subject { described_class.trigger_with(valid_url) }
9
+
10
+ context "without options" do
11
+ it "raises an ArgumentError" do
12
+ expect { described_class.trigger_with }.to raise_error(ArgumentError)
13
+ end
14
+ end
15
+
16
+ context "with valid url" do
17
+ it "succeeds" do
18
+ expect(subject.success?).to eq(true)
19
+ end
20
+ end
21
+
22
+ context "with invalid url" do
23
+ subject { described_class.trigger_with(invalid_url) }
24
+
25
+ it "fails" do
26
+ expect(subject.failed?).to eq(true)
27
+ end
28
+ end
29
+ end # .trigger_with
30
+ end # -- FacebookScraper
@@ -0,0 +1,3 @@
1
+ require 'rspec/its'
2
+
3
+ require 'facebook_scraper'
metadata ADDED
@@ -0,0 +1,118 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: facebook_scraper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Patrick Helm
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-06-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: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
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: rspec-its
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: Simply keep your OpenGraph-Objects up to date
70
+ email:
71
+ - deradon87@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - ".gitignore"
77
+ - Gemfile
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - facebook_scraper.gemspec
82
+ - lib/facebook_scraper.rb
83
+ - lib/facebook_scraper/scrape.rb
84
+ - lib/facebook_scraper/status.rb
85
+ - lib/facebook_scraper/version.rb
86
+ - spec/facebook_scraper/scraper_spec.rb
87
+ - spec/facebook_scraper/status_spec.rb
88
+ - spec/facebook_scraper_spec.rb
89
+ - spec/spec_helper.rb
90
+ homepage: https://github.com/Deradon/FacebookScraper
91
+ licenses:
92
+ - MIT
93
+ metadata: {}
94
+ post_install_message:
95
+ rdoc_options: []
96
+ require_paths:
97
+ - lib
98
+ required_ruby_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ required_rubygems_version: !ruby/object:Gem::Requirement
104
+ requirements:
105
+ - - ">="
106
+ - !ruby/object:Gem::Version
107
+ version: '0'
108
+ requirements: []
109
+ rubyforge_project:
110
+ rubygems_version: 2.2.2
111
+ signing_key:
112
+ specification_version: 4
113
+ summary: Simply keep your OpenGraph-Objects up to date
114
+ test_files:
115
+ - spec/facebook_scraper/scraper_spec.rb
116
+ - spec/facebook_scraper/status_spec.rb
117
+ - spec/facebook_scraper_spec.rb
118
+ - spec/spec_helper.rb