rbitter 0.0.8 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +21 -21
- data/.rspec +2 -2
- data/.travis.yml +15 -9
- data/Gemfile +12 -11
- data/LICENSE.txt +22 -22
- data/README.md +23 -16
- data/Rakefile +8 -8
- data/XMLRPC.md +19 -19
- data/bin/rbitter +20 -6
- data/lib/rbitter/arcserver.rb +126 -97
- data/lib/rbitter/console.rb +93 -61
- data/lib/rbitter/default/config_json.rb +38 -37
- data/lib/rbitter/dlthread.rb +66 -66
- data/lib/rbitter/env.rb +62 -59
- data/lib/rbitter/libtwitter_connection_override.rb +45 -45
- data/lib/rbitter/records.rb +121 -109
- data/lib/rbitter/records_migrate/20150327_add_index.rb +11 -7
- data/lib/rbitter/records_migrate/20150504_add_replyto_column.rb +12 -0
- data/lib/rbitter/streaming.rb +104 -75
- data/lib/rbitter/version.rb +20 -3
- data/lib/rbitter/xmlrpc.rb +3 -3
- data/lib/rbitter/xmlrpcd/base.rb +24 -24
- data/lib/rbitter/xmlrpcd/rpchandles.rb +11 -11
- data/lib/rbitter/xmlrpcd/xmlrpc_auth_server.rb +82 -83
- data/lib/rbitter/xmlrpcd/xmlrpcd.rb +69 -63
- data/lib/rbitter.rb +86 -92
- data/rbitter.gemspec +42 -42
- data/spec/config/default.json +32 -32
- data/spec/rbitter/arcserver_spec.rb +30 -9
- data/spec/rbitter/console_spec.rb +9 -9
- data/spec/rbitter/default/config_json_spec.rb +3 -3
- data/spec/rbitter/dlthread_spec.rb +13 -9
- data/spec/rbitter/env_spec.rb +62 -56
- data/spec/rbitter/libtwitter_connection_override_spec.rb +8 -8
- data/spec/rbitter/records_spec.rb +13 -13
- data/spec/rbitter/streaming_spec.rb +9 -9
- data/spec/rbitter/version_spec.rb +8 -8
- data/spec/rbitter/xmlrpc_spec.rb +8 -8
- data/spec/rbitter/xmlrpcd/base_spec.rb +29 -29
- data/spec/rbitter/xmlrpcd/rpchandles_spec.rb +10 -10
- data/spec/rbitter/xmlrpcd/xmlrpc_auth_server_spec.rb +8 -8
- data/spec/rbitter/xmlrpcd/xmlrpcd_spec.rb +9 -9
- data/spec/rbitter_spec.rb +42 -46
- data/spec/spec_helper.rb +39 -36
- metadata +68 -41
- data/config.json.example +0 -30
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44878b7491619cb57321ab471e8b03279180932b
|
4
|
+
data.tar.gz: a1dbfc5622f0d65b9aa256992a18b8523d425b0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d82fc7a0b2158f54aacd644d31aad960614f89615b0c4b471fab30d3fd304627cb2f72aae757d141af4bc4267c6bbf7d0140b68f249833a85bdcebd346feead1
|
7
|
+
data.tar.gz: a7c43429c676d18247d8fb274956e289ef537b7fe832f8240f869c0748263e36b6e14ab3702bc72e2b81dd5fec9723a83c8de25e50d8ce4214be7bf14027857e
|
data/.gitignore
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
/.bundle/
|
2
|
-
/.yardoc
|
3
|
-
/Gemfile.lock
|
4
|
-
/_yardoc/
|
5
|
-
/coverage/
|
6
|
-
/doc/
|
7
|
-
/pkg/
|
8
|
-
/spec/reports/
|
9
|
-
/tmp/
|
10
|
-
/build/
|
11
|
-
/vendor/
|
12
|
-
*.bundle
|
13
|
-
*.so
|
14
|
-
*.o
|
15
|
-
*.a
|
16
|
-
mkmf.log
|
17
|
-
*.gem
|
18
|
-
*.json
|
19
|
-
*.sqlite
|
20
|
-
.rbitter
|
21
|
-
.rbitter/*
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/Gemfile.lock
|
4
|
+
/_yardoc/
|
5
|
+
/coverage/
|
6
|
+
/doc/
|
7
|
+
/pkg/
|
8
|
+
/spec/reports/
|
9
|
+
/tmp/
|
10
|
+
/build/
|
11
|
+
/vendor/
|
12
|
+
*.bundle
|
13
|
+
*.so
|
14
|
+
*.o
|
15
|
+
*.a
|
16
|
+
mkmf.log
|
17
|
+
*.gem
|
18
|
+
*.json
|
19
|
+
*.sqlite
|
20
|
+
.rbitter
|
21
|
+
.rbitter/*
|
data/.rspec
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
--color
|
2
|
-
--require spec_helper
|
1
|
+
--color
|
2
|
+
--require spec_helper
|
data/.travis.yml
CHANGED
@@ -1,9 +1,15 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 1.9.3
|
4
|
-
- 2.1.0
|
5
|
-
- 2.2.0
|
6
|
-
-
|
7
|
-
- jruby-
|
8
|
-
-
|
9
|
-
|
1
|
+
language: ruby
|
2
|
+
rvm:
|
3
|
+
- 1.9.3
|
4
|
+
- 2.1.0
|
5
|
+
- 2.2.0
|
6
|
+
- jruby-19mode
|
7
|
+
- jruby-head
|
8
|
+
- rbx-2
|
9
|
+
|
10
|
+
env: LANG="en_US.UTF-8" LC_ALL="en_US.UTF-8"
|
11
|
+
|
12
|
+
matrix:
|
13
|
+
allow_failures:
|
14
|
+
- rvm: ruby-head
|
15
|
+
- rvm: rbx-2
|
data/Gemfile
CHANGED
@@ -1,11 +1,12 @@
|
|
1
|
-
source "https://rubygems.org"
|
2
|
-
|
3
|
-
group :test do
|
4
|
-
gem 'rspec', '~>3.0'
|
5
|
-
gem 'simplecov', :require => false, :group => :test
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
gem
|
10
|
-
|
11
|
-
|
1
|
+
source "https://rubygems.org"
|
2
|
+
|
3
|
+
group :test do
|
4
|
+
gem 'rspec', '~>3.0'
|
5
|
+
gem 'simplecov', :require => false, :group => :test
|
6
|
+
gem 'coveralls', :require => false
|
7
|
+
end
|
8
|
+
|
9
|
+
gem "bundler"
|
10
|
+
gem 'jruby-openssl', platforms: :jruby
|
11
|
+
|
12
|
+
gemspec
|
data/LICENSE.txt
CHANGED
@@ -1,22 +1,22 @@
|
|
1
|
-
Copyright (c) 2015 Nidev Plontra
|
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.
|
1
|
+
Copyright (c) 2015 Nidev Plontra
|
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
CHANGED
@@ -1,19 +1,22 @@
|
|
1
1
|
# Rbitter #
|
2
2
|
[](https://travis-ci.org/nidev/rbitter)
|
3
|
+
[](http://badge.fury.io/rb/rbitter)
|
4
|
+
[](https://coveralls.io/r/nidev/rbitter?branch=master)
|
3
5
|
|
4
6
|
Rbitter is a Twitter streaming client specialized in tweet archiving with remote access via XMLRPC, which is written in Ruby.
|
5
7
|
|
6
|
-
You can save all tweets appeared on timeline and watch them later.
|
7
|
-
|
8
|
-
**Rbitter can be built into a Ruby gem by typing 'gem build rbitter.gemspec'. It is not yet uploaded due to testing.**
|
8
|
+
You can save all tweets appeared on your home timeline and watch them later.
|
9
9
|
|
10
10
|
## Requirements ##
|
11
|
+
Rbitter is tested under [MRI](https://www.ruby-lang.org), [JRuby](http://jruby.org) and [Rubinius](http://rubini.us). So you can choose one of these implementations.
|
12
|
+
|
13
|
+
It can run under both Windows and Linux.
|
11
14
|
|
12
|
-
|
15
|
+
Gem dependencies will be installed during installation of this gem.
|
13
16
|
|
14
|
-
Ruby
|
15
|
-
Sqlite3
|
16
|
-
Mysql(MariaDB)
|
17
|
+
* Ruby 1.9.3 or above
|
18
|
+
* Sqlite3
|
19
|
+
* Mysql(MariaDB)
|
17
20
|
|
18
21
|
## Configuration ##
|
19
22
|
You can simply manipulate default configuration file by:
|
@@ -24,16 +27,13 @@ $ rbitter configure
|
|
24
27
|
|
25
28
|
Put your customized config.json to one of below locations.
|
26
29
|
|
27
|
-
1.
|
28
|
-
2.
|
29
|
-
3. ./config.json (current folder)
|
30
|
-
4. ./.rbitter/config.json (current folder)
|
31
|
-
|
32
|
-
For location #3 and #4, they're referred when #1 and #2 are not available. In those cases, *rbitter* must be executed from the directory where config.json exists.
|
30
|
+
1. ./config.json (current folder)
|
31
|
+
2. ./.rbitter/config.json (current folder)
|
33
32
|
|
34
33
|
## Set up and run ##
|
35
|
-
|
36
|
-
|
34
|
+
With config.json,
|
35
|
+
|
36
|
+
1. Get Twitter token and copy them properly.
|
37
37
|
2. Choose preferred ActiveRecord backend.
|
38
38
|
3. Modify default location where Twitter images are downloaded.
|
39
39
|
4. Configure XMLRPC server
|
@@ -55,7 +55,14 @@ See XMLRPC.md
|
|
55
55
|
## Issue report or feature request ##
|
56
56
|
It's recommended to open an issue even it seemed too small. A small flaw may result in instability or bad situation. So every feature requests/bug reports are welcomed.
|
57
57
|
|
58
|
-
Please attach stack trace, Ruby version, and detail description.
|
58
|
+
Please attach stack trace, Ruby version, Rbitter version, and detail description.
|
59
|
+
|
60
|
+
If you installed from [RubyGems], please report with Git tag. Git tag is your gem version.
|
61
|
+
|
62
|
+
[RubyGems]: https://rubygems.org
|
63
|
+
|
64
|
+
## Application Versioning ##
|
65
|
+
Rbitter follows [Sementic Versioning 2.0](http://semver.org/spec/v2.0.0.html).
|
59
66
|
|
60
67
|
## Disclaimer ##
|
61
68
|
Rbitter is intended for personal usage. Archived data should not be shared over Internet. Please keep them secure and safe, and protect privacy.
|
data/Rakefile
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
require "bundler/gem_tasks"
|
2
|
-
require "rspec/core/rake_task"
|
3
|
-
|
4
|
-
RSpec::Core::RakeTask.new
|
5
|
-
|
6
|
-
task :default => :spec
|
7
|
-
task :basic_test => :spec
|
8
|
-
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
require "rspec/core/rake_task"
|
3
|
+
|
4
|
+
RSpec::Core::RakeTask.new
|
5
|
+
|
6
|
+
task :default => :spec
|
7
|
+
task :basic_test => :spec
|
8
|
+
|
data/XMLRPC.md
CHANGED
@@ -1,19 +1,19 @@
|
|
1
|
-
# What is RPC handle ? #
|
2
|
-
## Commands ##
|
3
|
-
### Authentication ###
|
4
|
-
### Revoke Authentication Token ###
|
5
|
-
### Echo ###
|
6
|
-
### Last Active ###
|
7
|
-
### Retriever ###
|
8
|
-
### Statistic ###
|
9
|
-
# How to write own RPC handle? #
|
10
|
-
RPC handle is a Ruby class. Writing a method in Ruby class, that's it. Names of methods are treated as XMLRPC command.
|
11
|
-
|
12
|
-
When you write a new class for your own RPC handle, you must inherit either Auth or NoAuth class from rpc/base.rb.
|
13
|
-
|
14
|
-
* class Auth < Object: Methods in a Ruby class inheriting Auth requires *auth_key* to access.
|
15
|
-
* class NoAuth < Object: Methods in a Ruby class inheriting NoAuth doesn't require *auth_key* and these XMLRPC commands can be called by anonymous user.
|
16
|
-
|
17
|
-
Filename should start with 'rh_'. It's prefix to be autoloaded by xmlrpc.rb.
|
18
|
-
|
19
|
-
Refer rpc/rh_echo.rb as an example.
|
1
|
+
# What is RPC handle ? #
|
2
|
+
## Commands ##
|
3
|
+
### Authentication ###
|
4
|
+
### Revoke Authentication Token ###
|
5
|
+
### Echo ###
|
6
|
+
### Last Active ###
|
7
|
+
### Retriever ###
|
8
|
+
### Statistic ###
|
9
|
+
# How to write own RPC handle? #
|
10
|
+
RPC handle is a Ruby class. Writing a method in Ruby class, that's it. Names of methods are treated as XMLRPC command.
|
11
|
+
|
12
|
+
When you write a new class for your own RPC handle, you must inherit either Auth or NoAuth class from rpc/base.rb.
|
13
|
+
|
14
|
+
* class Auth < Object: Methods in a Ruby class inheriting Auth requires *auth_key* to access.
|
15
|
+
* class NoAuth < Object: Methods in a Ruby class inheriting NoAuth doesn't require *auth_key* and these XMLRPC commands can be called by anonymous user.
|
16
|
+
|
17
|
+
Filename should start with 'rh_'. It's prefix to be autoloaded by xmlrpc.rb.
|
18
|
+
|
19
|
+
Refer rpc/rh_echo.rb as an example.
|
data/bin/rbitter
CHANGED
@@ -1,6 +1,20 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "rbitter"
|
4
|
-
|
5
|
-
Rbitter.
|
6
|
-
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "rbitter"
|
4
|
+
|
5
|
+
Rbitter.rbitter_header
|
6
|
+
|
7
|
+
if ARGV.length < 1 || (not Rbitter::BOOTSTRAP_ARGS.include?(ARGV[0]))
|
8
|
+
Rbitter.rbitter_help_msg
|
9
|
+
exit -1
|
10
|
+
else
|
11
|
+
Rbitter.bootstrap(ARGV)
|
12
|
+
|
13
|
+
if ARGV[0] == "configure"
|
14
|
+
puts "Writing config.json done"
|
15
|
+
puts "You can put config.json one of these locations:"
|
16
|
+
puts "[1] config.json (current folder)"
|
17
|
+
puts "[2] .rbitter/config.json (current folder)"
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
data/lib/rbitter/arcserver.rb
CHANGED
@@ -1,97 +1,126 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
|
3
|
-
require "json"
|
4
|
-
require "date"
|
5
|
-
require "twitter"
|
6
|
-
require "resolv"
|
7
|
-
|
8
|
-
require "rbitter/records"
|
9
|
-
require "rbitter/streaming"
|
10
|
-
require "rbitter/dlthread"
|
11
|
-
require "rbitter/xmlrpc"
|
12
|
-
|
13
|
-
module Rbitter
|
14
|
-
class ArcServer
|
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
|
-
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require "json"
|
4
|
+
require "date"
|
5
|
+
require "twitter"
|
6
|
+
require "resolv"
|
7
|
+
|
8
|
+
require "rbitter/records"
|
9
|
+
require "rbitter/streaming"
|
10
|
+
require "rbitter/dlthread"
|
11
|
+
require "rbitter/xmlrpc"
|
12
|
+
|
13
|
+
module Rbitter
|
14
|
+
class ArcServer
|
15
|
+
LOG_NORMAL = 0
|
16
|
+
LOG_INIT = 1
|
17
|
+
LOG_HALT = 2
|
18
|
+
|
19
|
+
def initialize(xmlrpcd_class = Rbitter::RPCServer)
|
20
|
+
@xmlrpcd_class = xmlrpcd_class
|
21
|
+
|
22
|
+
ARSupport.connect_database
|
23
|
+
|
24
|
+
if not ARSupport.prepared?
|
25
|
+
puts "Initiate database table..."
|
26
|
+
if Rbitter['activerecord'] == 'mysql2'
|
27
|
+
ARSupport.prepare "DEFAULT CHARSET=utf8mb4"
|
28
|
+
else
|
29
|
+
ARSupport.prepare
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
ARSupport.update_database_scheme
|
34
|
+
|
35
|
+
@dt = DLThread.new(
|
36
|
+
Rbitter['media_downloader']['download_dir'],
|
37
|
+
Rbitter['media_downloader']['cacert_path'],
|
38
|
+
Rbitter['media_downloader']['large_image'])
|
39
|
+
end
|
40
|
+
|
41
|
+
def xmlrpcd_start
|
42
|
+
if Rbitter['xmlrpc']['enable']
|
43
|
+
@rpc_service = Thread.new {
|
44
|
+
rpc_server = @xmlrpcd_class.new(Rbitter['xmlrpc']['bind_host'], Rbitter['xmlrpc']['bind_port'])
|
45
|
+
rpc_server.main_loop
|
46
|
+
}
|
47
|
+
else
|
48
|
+
@rpc_service = nil
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def xmlrpcd_stop
|
53
|
+
unless @rpc_service.nil?
|
54
|
+
if @rpc_service.alive?
|
55
|
+
puts "Finishing RPCServer (impl: #{@xmlrpcd_class})"
|
56
|
+
@rpc_service.terminate
|
57
|
+
@rpc_service.join
|
58
|
+
@rpc_service = nil
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def mark(code, message)
|
64
|
+
Record.create({:marker => code,
|
65
|
+
:marker_msg => message,
|
66
|
+
:userid => nil,
|
67
|
+
:username => nil,
|
68
|
+
:tweetid => nil,
|
69
|
+
:replyto => nil,
|
70
|
+
:tweet => nil,
|
71
|
+
:date => ARSupport.any_to_datestring(DateTime.now),
|
72
|
+
:rt_count => 0,
|
73
|
+
:fav_count => 0})
|
74
|
+
end
|
75
|
+
|
76
|
+
def write_init_marker
|
77
|
+
mark(LOG_INIT, "Archiving service started")
|
78
|
+
end
|
79
|
+
|
80
|
+
def write_halt_marker
|
81
|
+
mark(LOG_HALT, "Archiving service halted")
|
82
|
+
end
|
83
|
+
|
84
|
+
def main_loop(streaming_adapter = Rbitter::StreamClient)
|
85
|
+
xmlrpcd_start if Rbitter['xmlrpc']['enable']
|
86
|
+
|
87
|
+
begin
|
88
|
+
write_init_marker
|
89
|
+
|
90
|
+
streaming_adapter.new(Rbitter['twitter'].dup).run { |a|
|
91
|
+
@dt << a['media_urls']
|
92
|
+
|
93
|
+
record = Record.find_or_initialize_by(tweetid: a['tweetid'])
|
94
|
+
record.update({:marker => 0,
|
95
|
+
:marker_msg => "normal",
|
96
|
+
:userid => a['userid'],
|
97
|
+
:username => a['screen_name'],
|
98
|
+
:tweetid => a['tweetid'],
|
99
|
+
:replyto => a['replyto'],
|
100
|
+
:tweet => a['tweet'],
|
101
|
+
:date => a['date'],
|
102
|
+
:rt_count => a['rt_count'],
|
103
|
+
:fav_count => a['fav_count']})
|
104
|
+
|
105
|
+
record.save
|
106
|
+
}
|
107
|
+
rescue Interrupt => e
|
108
|
+
puts ""
|
109
|
+
puts "Interrupted..."
|
110
|
+
rescue Twitter::Error::Unauthorized => e
|
111
|
+
puts "Please configure your Twitter token on config.json."
|
112
|
+
rescue Twitter::Error::ServerError, Resolv::ResolvError => e
|
113
|
+
puts "Service unavailable now. Retry in 5 second..."
|
114
|
+
sleep 5
|
115
|
+
retry
|
116
|
+
rescue Twitter::Error => e
|
117
|
+
puts "Twitter Error: #{e.inspect}"
|
118
|
+
ensure
|
119
|
+
xmlrpcd_stop if Rbitter['xmlrpc']['enable']
|
120
|
+
@dt.job_cleanup
|
121
|
+
|
122
|
+
write_halt_marker
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|