logstash-input-twitter 4.0.0 → 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c922a98eed84cc4f486e62cf74ec0ccfe3877788503cc6de18cde82b7ce59d70
4
- data.tar.gz: db40a663d45c6fb8b395c6f12af58d57bccc08ab7e9fd8e534513defd6aef6cd
3
+ metadata.gz: 35aa088d3d7f0ebcecf9ea2e00ea9009dacf682b99ca57f544ca25201cf70744
4
+ data.tar.gz: 5e740cbcabb04ba97a218324d8d5c56aa20f992382347e3aaae29bf4ff6260b8
5
5
  SHA512:
6
- metadata.gz: 4fd2bbfd624db48d8c572cd1faa8a4be34035093929b3ce663b5c38bd228fdbafcdf6b0de81c3c6af98299022795e380573451e93f92b8d3dc91db8f5869c5d6
7
- data.tar.gz: f215a53f05f8490ac7e612719095dc0ea53be10f38b984d48e29c30e2b75f1b300deeb412d64f03d8ea035058dafdc59741aad2f24f4e0700ff37efb325ebf6e
6
+ metadata.gz: 61c1343445e3dca087247221044d41feb05c660d17682cb47bf0499f31f19a5206f636128f67c4d1c34295db29bd45c305344d63cef09ed10b7a5cf9dbc9514d
7
+ data.tar.gz: 2dbb9da7f8097ec766bf2ad0a2ae3745e7e811b31f5e8dded9b8fac413edffd014eaadc247895373d1260ee0a690a6b961fe17a50ec3a01d882d02c859643f97
data/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ ## 4.1.0
2
+ - Feat: optional target + ecs_compatibility [#72](https://github.com/logstash-plugins/logstash-input-twitter/pull/72)
3
+
4
+ ## 4.0.3
5
+ - Fix: broken proxy configuration [#69](https://github.com/logstash-plugins/logstash-input-twitter/pull/69)
6
+
7
+ ## 4.0.2
8
+
9
+ - Fix: user rest api call + proxy configuration [#68](https://github.com/logstash-plugins/logstash-input-twitter/pull/68)
10
+
11
+ ## 4.0.1
12
+ - Updated Twitter gem to v6.2.0, cleaned up obsolete monkey patches, fixed integration tests [#63](https://github.com/logstash-plugins/logstash-input-twitter/pull/63)
13
+
1
14
  ## 4.0.0
2
15
  - Update http-form_data to ~> 2 and public_suffix to ~> 3
3
16
 
data/Gemfile CHANGED
@@ -9,7 +9,3 @@ if Dir.exist?(logstash_path) && use_logstash_source
9
9
  gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
10
10
  gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
11
11
  end
12
-
13
- if RUBY_VERSION == "1.9.3"
14
- gem 'rake', '12.2.1'
15
- end
data/LICENSE CHANGED
@@ -1,13 +1,202 @@
1
- Copyright (c) 2012-2018 Elasticsearch <http://www.elastic.co>
2
1
 
3
- Licensed under the Apache License, Version 2.0 (the "License");
4
- you may not use this file except in compliance with the License.
5
- You may obtain a copy of the License at
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
6
5
 
7
- http://www.apache.org/licenses/LICENSE-2.0
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
7
 
9
- Unless required by applicable law or agreed to in writing, software
10
- distributed under the License is distributed on an "AS IS" BASIS,
11
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- See the License for the specific language governing permissions and
13
- limitations under the License.
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2020 Elastic and contributors
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Logstash Plugin
2
2
 
3
- [![Travis Build Status](https://travis-ci.org/logstash-plugins/logstash-input-twitter.svg)](https://travis-ci.org/logstash-plugins/logstash-input-twitter)
3
+ [![Travis Build Status](https://travis-ci.com/logstash-plugins/logstash-input-twitter.svg)](https://travis-ci.com/logstash-plugins/logstash-input-twitter)
4
4
 
5
5
  This is a plugin for [Logstash](https://github.com/elastic/logstash).
6
6
 
data/docs/index.asciidoc CHANGED
@@ -23,6 +23,46 @@ include::{include_path}/plugin_header.asciidoc[]
23
23
 
24
24
  Ingest events from the Twitter Streaming API.
25
25
 
26
+ Example:
27
+ [source,ruby]
28
+ input {
29
+ twitter {
30
+ consumer_key => '...'
31
+ consumer_secret => '...'
32
+ oauth_token => '...'
33
+ oauth_token_secret => '...'
34
+ keywords => [ 'logstash' ]
35
+ }
36
+ }
37
+
38
+ Sample event fields generated:
39
+
40
+ [source,ruby]
41
+ -----
42
+ {
43
+ "@timestamp" => 2019-09-23T16:41:53.000Z,
44
+ "message" => "I forgot how fun it is to write @logstash configs !!! Thank you @jordansissel and @elastic !!!"
45
+ "user" => "missnebun",
46
+ "in-reply-to" => nil,
47
+ "retweeted" => false,
48
+ "source" => "http://twitter.com/missnebun/status/1176174859833004037",
49
+ "user_mentions" => [
50
+ { "screen_name"=>"logstash", "name"=>"logstash", "id"=>217155915 },
51
+ { "screen_name"=>"jordansissel", "name"=>"@jordansissel", "id"=>15782607 },
52
+ { "screen_name"=>"elastic", "name"=>"Elastic", "id"=>84512601 }],
53
+ "symbols" => [],
54
+ "hashtags" => [],
55
+ "client" => "<a href=\"http://twitter.com/download/iphone\" rel=\"nofollow\">Twitter for iPhone</a>"
56
+ }
57
+ -----
58
+
59
+ [id="plugins-{type}s-{plugin}-ecs"]
60
+ ==== Compatibility with the Elastic Common Schema (ECS)
61
+
62
+ Twitter streams are very specific and do not map easily to the {ecs-ref}[Elastic Common Schema (ECS)].
63
+ We recommend setting a <<plugins-{type}s-{plugin}-target>> when <<plugins-{type}s-{plugin}-ecs_compatibility,ECS compatibility mode>> is enabled.
64
+ The plugin issues a warning in the log when a `target` isn't set.
65
+
26
66
  [id="plugins-{type}s-{plugin}-options"]
27
67
  ==== Twitter Input Configuration Options
28
68
 
@@ -33,6 +73,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
33
73
  |Setting |Input type|Required
34
74
  | <<plugins-{type}s-{plugin}-consumer_key>> |<<string,string>>|Yes
35
75
  | <<plugins-{type}s-{plugin}-consumer_secret>> |<<password,password>>|Yes
76
+ | <<plugins-{type}s-{plugin}-ecs_compatibility>> |<<string,string>>|No
36
77
  | <<plugins-{type}s-{plugin}-follows>> |<<array,array>>|No
37
78
  | <<plugins-{type}s-{plugin}-full_tweet>> |<<boolean,boolean>>|No
38
79
  | <<plugins-{type}s-{plugin}-ignore_retweets>> |<<boolean,boolean>>|No
@@ -46,6 +87,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
46
87
  | <<plugins-{type}s-{plugin}-rate_limit_reset_in>> |<<number,number>>|No
47
88
  | <<plugins-{type}s-{plugin}-use_proxy>> |<<boolean,boolean>>|No
48
89
  | <<plugins-{type}s-{plugin}-use_samples>> |<<boolean,boolean>>|No
90
+ | <<plugins-{type}s-{plugin}-target>> |<<string,string>>|No
49
91
  |=======================================================================
50
92
 
51
93
  Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
@@ -78,6 +120,19 @@ If you don't have one of these, you can create one by
78
120
  registering a new application with Twitter:
79
121
  <https://dev.twitter.com/apps/new>
80
122
 
123
+ [id="plugins-{type}s-{plugin}-ecs_compatibility"]
124
+ ===== `ecs_compatibility`
125
+
126
+ * Value type is <<string,string>>
127
+ * Supported values are:
128
+ ** `disabled`: does not use ECS-compatible field names (fields might be set at the root of the event)
129
+ ** `v1`, `v8`: avoids field names that might conflict with Elastic Common Schema (for example, Twitter specific properties)
130
+ * Default value depends on which version of Logstash is running:
131
+ ** When Logstash provides a `pipeline.ecs_compatibility` setting, its value is used as the default
132
+ ** Otherwise, the default value is `disabled`.
133
+
134
+ Controls this plugin's compatibility with the {ecs-ref}[Elastic Common Schema (ECS)].
135
+
81
136
  [id="plugins-{type}s-{plugin}-follows"]
82
137
  ===== `follows`
83
138
 
@@ -221,6 +276,17 @@ by the default access level are the same, so if two different clients connect
221
276
  to this endpoint, they will see the same tweets. If set to true, the keywords,
222
277
  follows, locations, and languages options will be ignored. Default => false
223
278
 
279
+ [id="plugins-{type}s-{plugin}-target"]
280
+ ===== `target`
281
+
282
+ * Value type is <<string,string>>
283
+ * There is no default value for this setting.
284
+
285
+ Without a `target`, events are created from tweets at the root level.
286
+ When the `target` is set to a field reference, the tweet data is placed in the target field instead.
287
+
288
+ This option can be useful to avoid populating unknown fields when a downstream schema such as ECS is enforced.
289
+
224
290
 
225
291
 
226
292
  [id="plugins-{type}s-{plugin}-common-options"]
@@ -1,7 +1,5 @@
1
1
  # encoding: utf-8
2
- require 'twitter/streaming/connection'
3
2
  require 'twitter/streaming/response'
4
- require 'twitter/streaming/message_parser'
5
3
 
6
4
  module LogStash
7
5
  module Inputs
@@ -10,58 +8,23 @@ module LogStash
10
8
  def self.patch
11
9
  verify_version
12
10
  patch_json
13
- patch_connection_stream
14
- patch_request
11
+ patch_http_request
15
12
  end
16
13
 
17
14
  private
18
15
 
19
16
  def self.verify_version
20
- raise("Incompatible Twitter gem version and the LogStash::Json.load") unless ::Twitter::Version.to_s == "5.15.0"
21
- end
22
-
23
- def self.patch_connection_stream
24
- ::Twitter::Streaming::Connection.class_eval do
25
- def stream(request, response)
26
- socket = @tcp_socket_class.new(Resolv.getaddress(request.socket_host), request.socket_port)
27
- socket = ssl_stream(socket) if !request.using_proxy?
28
-
29
- request.stream(socket)
30
- while body = socket.readpartial(1024) # rubocop:disable AssignmentInCondition
31
- response << body
32
- end
33
- end
34
-
35
- def ssl_stream(client)
36
- client_context = OpenSSL::SSL::SSLContext.new
37
- ssl_client = @ssl_socket_class.new(client, client_context)
38
- ssl_client.connect
39
- end
40
-
41
- def normalized_port(scheme)
42
- HTTP::URI.port_mapping[scheme]
43
- end
44
- end
45
- end
46
-
47
- def self.patch_request
48
- ::Twitter::Streaming::Client.class_eval do
49
- def request(method, uri, params)
50
- before_request.call
51
- headers = ::Twitter::Headers.new(self, method, uri, params).request_headers
52
- request = ::HTTP::Request.new(method, uri + '?' + to_url_params(params), headers, proxy)
53
- response = ::Twitter::Streaming::Response.new do |data|
54
- if item = ::Twitter::Streaming::MessageParser.parse(data) # rubocop:disable AssignmentInCondition
55
- yield(item)
56
- end
57
- end
58
- @connection.stream(request, response)
59
- end
60
- end
17
+ raise("Incompatible Twitter gem version and the LogStash::Json.load") unless ::Twitter::Version.to_s == "6.2.0"
18
+ # NOTE: we're also known to work with twitter gem version 7.0 which uses http 4.x
19
+ raise("Incompatible HTTP gem version: #{HTTP::VERSION}") if HTTP::VERSION >= '5.0' || HTTP::VERSION < '3.0'
20
+ # after a major upgrade, unless CI is running integration specs, please run integration specs manually
61
21
  end
62
22
 
63
23
  def self.patch_json
64
24
  ::Twitter::Streaming::Response.module_eval do
25
+ unless method_defined? :on_body
26
+ raise "::Twitter::Streaming::Response#on_body not defined!" # patch bellow needs a review
27
+ end
65
28
  def on_body(data)
66
29
  @tokenizer.extract(data).each do |line|
67
30
  next if line.empty?
@@ -75,6 +38,27 @@ module LogStash
75
38
  end
76
39
  end
77
40
 
41
+ def self.patch_http_request
42
+ # NOTE: we might decide to drop the patch at some point, for now proxies such as squid
43
+ # are opinionated about having full URIs in the http head-line (having only /path fails
44
+ # with 400 Bad Request in Squid 4.10).
45
+ ::HTTP::Request.class_eval do
46
+ unless method_defined? :headline
47
+ raise "::HTTP::Request#headline not defined!" # patch bellow needs a review
48
+ end
49
+ def headline
50
+ request_uri =
51
+ if using_proxy? #&& !uri.https?
52
+ uri.omit(:fragment)
53
+ else
54
+ uri.request_uri
55
+ end
56
+
57
+ "#{verb.to_s.upcase} #{request_uri} HTTP/#{version}"
58
+ end
59
+ end
60
+ end
61
+
78
62
  end
79
63
  end
80
64
  end
@@ -5,11 +5,22 @@ require "logstash/timestamp"
5
5
  require "logstash/util"
6
6
  require "logstash/json"
7
7
  require "stud/interval"
8
+ require "twitter"
8
9
  require "logstash/inputs/twitter/patches"
10
+ require 'logstash/plugin_mixins/ecs_compatibility_support'
11
+ require 'logstash/plugin_mixins/ecs_compatibility_support/target_check'
12
+ require 'logstash/plugin_mixins/event_support/event_factory_adapter'
13
+ require 'logstash/plugin_mixins/validator_support/field_reference_validation_adapter'
9
14
 
10
15
  # Ingest events from the Twitter Streaming API.
11
16
  class LogStash::Inputs::Twitter < LogStash::Inputs::Base
12
17
 
18
+ include LogStash::PluginMixins::ECSCompatibilitySupport(:disabled, :v1, :v8 => :v1)
19
+ include LogStash::PluginMixins::ECSCompatibilitySupport::TargetCheck
20
+ include LogStash::PluginMixins::EventSupport::EventFactoryAdapter
21
+
22
+ extend LogStash::PluginMixins::ValidatorSupport::FieldReferenceValidationAdapter
23
+
13
24
  attr_reader :filter_options, :event_generation_error_count
14
25
 
15
26
  config_name "twitter"
@@ -103,9 +114,12 @@ class LogStash::Inputs::Twitter < LogStash::Inputs::Base
103
114
  # is nil. If this occurs then we use the integer specified here. The default is 5 minutes.
104
115
  config :rate_limit_reset_in, :validate => :number, :default => 300
105
116
 
106
- def register
107
- require "twitter"
117
+ # Defines a target field for placing fields.
118
+ # If this setting is omitted, data gets stored at the root (top level) of the event.
119
+ # The target is only relevant while decoding data into a new event.
120
+ config :target, :validate => :field_reference
108
121
 
122
+ def register
109
123
  if !@use_samples && ( @keywords.nil? && @follows.nil? && @locations.nil? )
110
124
  raise LogStash::ConfigurationError.new("At least one parameter (follows, locations or keywords) must be specified.")
111
125
  end
@@ -129,17 +143,7 @@ class LogStash::Inputs::Twitter < LogStash::Inputs::Base
129
143
  @event_generation_error_count = 0
130
144
 
131
145
  begin
132
- if @use_samples
133
- @stream_client.sample do |tweet|
134
- return if stop?
135
- tweet_processor(queue, tweet)
136
- end
137
- else
138
- @stream_client.filter(twitter_options) do |tweet|
139
- return if stop?
140
- tweet_processor(queue, tweet)
141
- end
142
- end
146
+ do_run(queue)
143
147
  rescue Twitter::Error::TooManyRequests => e
144
148
  sleep_for = e.rate_limit.reset_in || @rate_limit_reset_in # 5 minutes default value from config
145
149
  @logger.warn("Twitter too many requests error, sleeping for #{sleep_for}s")
@@ -147,11 +151,26 @@ class LogStash::Inputs::Twitter < LogStash::Inputs::Base
147
151
  retry
148
152
  rescue => e
149
153
  # if a lot of these errors begin to occur, the repeated retry will result in TooManyRequests errors trapped above.
150
- @logger.warn("Twitter client error", :message => e.message, :exception => e.class.name, :backtrace => e.backtrace, :options => @filter_options)
154
+ @logger.warn("Twitter client error", :message => e.message, :exception => e.class, :backtrace => e.backtrace, :options => @filter_options)
151
155
  retry
152
156
  end
153
157
  end # def run
154
158
 
159
+ def do_run(queue)
160
+ if @use_samples
161
+ @stream_client.sample do |tweet|
162
+ return if stop?
163
+ tweet_processor(queue, tweet)
164
+ end
165
+ else
166
+ @stream_client.filter(twitter_options) do |tweet|
167
+ return if stop?
168
+ tweet_processor(queue, tweet)
169
+ end
170
+ end
171
+ end
172
+ private :do_run
173
+
155
174
  def stop
156
175
  @stream_client = nil
157
176
  end
@@ -174,7 +193,7 @@ class LogStash::Inputs::Twitter < LogStash::Inputs::Base
174
193
  queue << event
175
194
  rescue => e
176
195
  @event_generation_error_count = @event_generation_error_count.next
177
- @logger.error("Event generation error", :message => e.message, :exception => e.class.name, :backtrace => e.backtrace.take(10))
196
+ @logger.error("Event generation error", :message => e.message, :exception => e.class, :backtrace => e.backtrace)
178
197
  end
179
198
  end
180
199
  end
@@ -185,48 +204,48 @@ class LogStash::Inputs::Twitter < LogStash::Inputs::Base
185
204
 
186
205
  def from_tweet(tweet)
187
206
  @logger.debug? && @logger.debug("Got tweet", :user => tweet.user.screen_name, :text => tweet.text)
207
+
188
208
  if @full_tweet
189
- event = LogStash::Event.new(LogStash::Util.stringify_symbols(tweet.to_hash))
190
- event.timestamp = LogStash::Timestamp.new(tweet.created_at)
209
+ attributes = LogStash::Util.stringify_symbols(tweet.to_hash)
191
210
  else
192
-
193
211
  attributes = {
194
- LogStash::Event::TIMESTAMP => LogStash::Timestamp.new(tweet.created_at),
195
212
  "message" => tweet.full_text,
196
213
  "user" => tweet.user.screen_name,
197
214
  "client" => tweet.source,
198
215
  "retweeted" => tweet.retweeted?,
199
- "source" => "http://twitter.com/#{tweet.user.screen_name}/status/#{tweet.id}"
216
+ "source" => "http://twitter.com/#{tweet.user.screen_name}/status/#{tweet.id}",
217
+ "hashtags" => tweet.hashtags.map(&:attrs),
218
+ "symbols" => tweet.symbols.map(&:attrs),
219
+ "user_mentions" => tweet.user_mentions.map(&:attrs),
200
220
  }
201
221
 
202
- attributes["hashtags"] = tweet.hashtags.map{|ht| ht.attrs}
203
- attributes["symbols"] = tweet.symbols.map{|sym| sym.attrs}
204
- attributes["user_mentions"] = tweet.user_mentions.map{|um| um.attrs}
205
- event = LogStash::Event.new(attributes)
206
222
  if tweet.reply? && !tweet.in_reply_to_status_id.nil?
207
- event.set("in-reply-to", tweet.in_reply_to_status_id)
223
+ attributes["in-reply-to"] = tweet.in_reply_to_status_id
208
224
  end
209
225
  unless tweet.urls.empty?
210
- event.set("urls", tweet.urls.map(&:expanded_url).map(&:to_s))
226
+ attributes["urls"] = tweet.urls.map(&:expanded_url).map(&:to_s)
211
227
  end
212
228
  end
213
229
 
214
230
  # Work around bugs in JrJackson. The standard serializer won't work till we upgrade
215
231
  # event.set("in-reply-to", nil) if event.get("in-reply-to").is_a?(Twitter::NullObject)
216
232
 
233
+ event = targeted_event_factory.new_event(attributes)
234
+ event.timestamp = LogStash::Timestamp.new(tweet.created_at)
217
235
  event
218
236
  end
219
237
 
220
- def configure(c)
221
- c.consumer_key = @consumer_key
222
- c.consumer_secret = @consumer_secret.value
223
- c.access_token = @oauth_token
224
- c.access_token_secret = @oauth_token_secret.value
238
+ def configure(client)
239
+ client.consumer_key = @consumer_key
240
+ client.consumer_secret = @consumer_secret.value
241
+ client.access_token = @oauth_token
242
+ client.access_token_secret = @oauth_token_secret.value
225
243
  if @use_proxy
226
- c.proxy = {
227
- proxy_address: @proxy_address,
228
- proxy_port: @proxy_port,
229
- }
244
+ if client.is_a?(Twitter::REST::Client)
245
+ client.proxy = { host: @proxy_address, port: @proxy_port }
246
+ else
247
+ client.proxy = { proxy_address: @proxy_address, proxy_port: @proxy_port }
248
+ end
230
249
  end
231
250
  end
232
251
 
@@ -237,15 +256,18 @@ class LogStash::Inputs::Twitter < LogStash::Inputs::Base
237
256
  build_options[:language] = @languages.join(",") if @languages && !@languages.empty?
238
257
 
239
258
  if @follows && @follows.length > 0
240
- build_options[:follow] = @follows.map do |username|
241
- ( !is_number?(username) ? find_user(username) : username )
259
+ build_options[:follow] = @follows.map do |username|
260
+ is_number?(username) ? username : find_user_id(username).to_s
242
261
  end.join(",")
243
262
  end
244
263
  build_options
245
264
  end
246
265
 
247
- def find_user(username)
248
- @rest_client.user(:user => username)
266
+ # @return [Integer] user id
267
+ # @raise [Twitter::Error::NotFound]
268
+ def find_user_id(username)
269
+ @logger.debug? && @logger.debug("Looking up twitter user identifier for", :user => username)
270
+ @rest_client.user(:screen_name => username).id # Twitter::User#id
249
271
  end
250
272
 
251
273
  def is_number?(string)
@@ -1,7 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
-
3
2
  s.name = 'logstash-input-twitter'
4
- s.version = '4.0.0'
3
+ s.version = '4.1.0'
5
4
  s.licenses = ['Apache License (2.0)']
6
5
  s.summary = "Reads events from the Twitter Streaming API"
7
6
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
@@ -19,9 +18,16 @@ Gem::Specification.new do |s|
19
18
  # Special flag to let us know this is actually a logstash plugin
20
19
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "input" }
21
20
 
21
+ # public_suffix 3.x+ includes ruby syntax from 2.1
22
+ # This effectively requires Logstash >= 6.x
23
+ s.required_ruby_version = '>= 2.1.0'
24
+
22
25
  # Gem dependencies
23
26
  s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
24
- s.add_runtime_dependency 'twitter', '5.15.0'
27
+ s.add_runtime_dependency 'logstash-mixin-ecs_compatibility_support', '~> 1.3'
28
+ s.add_runtime_dependency "logstash-mixin-event_support", '~> 1.0'
29
+ s.add_runtime_dependency 'logstash-mixin-validator_support', '~> 1.0'
30
+ s.add_runtime_dependency 'twitter', '6.2.0'
25
31
  s.add_runtime_dependency 'http-form_data', '~> 2'
26
32
  s.add_runtime_dependency 'public_suffix', '~> 3'
27
33
  s.add_runtime_dependency 'stud', '>= 0.0.22', '< 0.1'
@@ -1,4 +1,5 @@
1
1
  require_relative "../spec_helper"
2
+ require "logstash/devutils/rspec/shared_examples"
2
3
 
3
4
  describe LogStash::Inputs::Twitter do
4
5
 
@@ -14,10 +15,12 @@ describe LogStash::Inputs::Twitter do
14
15
 
15
16
  let(:plugin) { LogStash::Inputs::Twitter.new(config) }
16
17
 
18
+ let(:queue) { Queue.new }
19
+
17
20
  describe "registration" do
18
21
 
19
22
  it "not raise error" do
20
- expect {plugin.register}.to_not raise_error
23
+ expect { plugin.register }.to_not raise_error
21
24
  end
22
25
 
23
26
  context "with no required configuration fields" do
@@ -31,7 +34,30 @@ describe LogStash::Inputs::Twitter do
31
34
  end
32
35
 
33
36
  it "raise an error if no required fields are specified" do
34
- expect {plugin.register}.to raise_error(LogStash::ConfigurationError)
37
+ expect { plugin.register }.to raise_error(LogStash::ConfigurationError)
38
+ end
39
+ end
40
+
41
+ context "with follows" do
42
+
43
+ let(:user) { Twitter::User.new(id: 11111111) }
44
+
45
+ let(:config) do
46
+ {
47
+ 'consumer_key' => 'foo',
48
+ 'consumer_secret' => 'foo',
49
+ 'oauth_token' => 'foo',
50
+ 'oauth_token_secret' => 'foo',
51
+ 'keywords' => ['bar'],
52
+ 'follows' => ['12345678', 'theborg']
53
+ }
54
+ end
55
+
56
+ it "looks up user name" do
57
+ allow_any_instance_of(Twitter::REST::Client).
58
+ to receive(:user).with(screen_name: 'theborg').and_return user
59
+ plugin.register
60
+ expect(plugin.send(:build_options)).to include(follow: '12345678,11111111')
35
61
  end
36
62
  end
37
63
  end
@@ -46,7 +72,6 @@ describe LogStash::Inputs::Twitter do
46
72
  describe "fetching from sample" do
47
73
 
48
74
  let(:input) { LogStash::Inputs::Twitter.new(config) }
49
- let(:queue) { Queue.new }
50
75
 
51
76
  let(:config) do
52
77
  {
@@ -72,6 +97,58 @@ describe LogStash::Inputs::Twitter do
72
97
 
73
98
  end
74
99
 
100
+ let(:tweet) do
101
+ Twitter::Tweet.new(id: 1234567890123456789,
102
+ id_str: '1234567890123456789',
103
+ created_at: 'Thu Nov 11 10:00:00 +0000 2021',
104
+ text: 'Hello World! 🥰',
105
+ source: "<a href=\"http://twitter.com/download/android\" rel=\"nofollow\">Twitter for Android</a>",
106
+ truncated: false,
107
+ user: {
108
+ id: 1182909005012345600,
109
+ name: "Foo Bar",
110
+ screen_name: "foo001",
111
+ location: nil,
112
+ })
113
+ end
114
+
115
+ describe "from tweet" do
116
+
117
+ before(:each) do
118
+ plugin.register
119
+ @event = plugin.send :from_tweet, tweet
120
+ end
121
+
122
+ it "generated an event" do
123
+ expect(@event.get('message')).to eql "Hello World! 🥰"
124
+ expect(@event.get('user')).to eql "foo001"
125
+ expect(@event.timestamp.to_s).to match /2021-11-11T10:00:00(.000)?Z/
126
+ end
127
+
128
+ context 'with full_tweet' do
129
+ let(:config) { super().merge 'full_tweet' => true }
130
+
131
+ it "generated an event" do
132
+ expect(@event.get('text')).to eql "Hello World! 🥰"
133
+ expect(@event.get('user')['screen_name']).to eql "foo001"
134
+ expect(@event.timestamp.to_s).to match /2021-11-11T10:00:00(.000)?Z/
135
+ end
136
+ end
137
+
138
+ context 'with target' do
139
+ let(:config) { super().merge 'target' => '[twitter]' }
140
+
141
+ it "generated an event" do
142
+ expect(@event.include?('message')).to be false
143
+ expect(@event.include?('user')).to be false
144
+
145
+ expect(@event.get('[twitter][message]')).to eql "Hello World! 🥰"
146
+ expect(@event.get('[twitter][user]')).to eql "foo001"
147
+ expect(@event.timestamp.to_s).to match /2021-11-11T10:00:00(.000)?Z/
148
+ end
149
+ end
150
+ end
151
+
75
152
  describe "stream filter" do
76
153
 
77
154
  describe "options parsing" do
@@ -118,8 +195,6 @@ describe LogStash::Inputs::Twitter do
118
195
 
119
196
  let(:input) { LogStash::Inputs::Twitter.new(config) }
120
197
 
121
- let(:queue) { Queue.new }
122
-
123
198
  let(:stream_client) { double("stream-client") }
124
199
 
125
200
  let(:options) do
@@ -138,8 +213,6 @@ describe LogStash::Inputs::Twitter do
138
213
 
139
214
  context "when not filtering retweets" do
140
215
 
141
- let(:tweet) { Twitter::Tweet.new(id: 1) }
142
-
143
216
  let(:config) do
144
217
  {
145
218
  'consumer_key' => 'foo',
@@ -164,8 +237,6 @@ describe LogStash::Inputs::Twitter do
164
237
 
165
238
  context "when filtering retweets" do
166
239
 
167
- let(:tweet) { Twitter::Tweet.new(id: 1) }
168
-
169
240
  let(:config) do
170
241
  {
171
242
  'consumer_key' => 'foo',
@@ -188,5 +259,29 @@ describe LogStash::Inputs::Twitter do
188
259
  end
189
260
 
190
261
  end
262
+
263
+ describe "proxy" do
264
+
265
+ before(:each) do
266
+ plugin.register
267
+ end
268
+
269
+ let(:config) do
270
+ super().merge( 'use_proxy' => true, 'proxy_address' => '127.0.0.1', 'proxy_port' => 12345 )
271
+ end
272
+
273
+ let(:proxy_socket) { double('proxy-socket') }
274
+
275
+ it "sends full URI requests" do
276
+ allow_any_instance_of(Twitter::Streaming::Connection).
277
+ to receive(:new_tcp_socket).with('127.0.0.1', 12345).and_return(proxy_socket)
278
+ header_line = 'POST https://stream.twitter.com/1.1/statuses/filter.json?track=foo%2Cbar HTTP/1.1'
279
+ expect(proxy_socket).to receive(:write).with(/^#{Regexp.escape(header_line)}/).
280
+ and_return(3000) # let the stack assume all content sent was consumed
281
+ # NOTE: this is just bogus - we're really just testing the HTTP header line ...
282
+ expect(proxy_socket).to receive(:readpartial).and_return nil
283
+ plugin.send(:do_run, queue)
284
+ end
285
+ end
191
286
  end
192
287
  end
@@ -45,7 +45,7 @@ describe LogStash::Inputs::Twitter do
45
45
  RSpec::Sequencing.run_after(1, "update tweet status") do
46
46
  twt = "logstash_ci_publish partial tweet test #{Time.now} #{SecureRandom.hex(6)} $AAPL #lscipub @logstash https://www.elastic.co/downloads/logstash"
47
47
  publisher.update_with_media(twt, File.open(LogstashTwitterInput.fixture("small_smile.png")))
48
- end.then_after(3, "stop plugin") do
48
+ end.then_after(10, "stop plugin") do
49
49
  plugin.stop
50
50
  true
51
51
  end.value
@@ -64,10 +64,10 @@ describe LogStash::Inputs::Twitter do
64
64
  let(:full_tweets) { true }
65
65
 
66
66
  it "receives an event from the twitter stream" do
67
- RSpec::Sequencing.run_after(0.1, "update tweet status") do
67
+ RSpec::Sequencing.run_after(1, "update tweet status") do
68
68
  twt = "logstash_ci_publish full tweet test #{Time.now} #{SecureRandom.hex(6)} $AAPL #lscipub @logstash https://www.elastic.co/downloads/logstash"
69
69
  publisher.update_with_media(twt, File.open(LogstashTwitterInput.fixture("small_smile.png")))
70
- end.then_after(3, "stop plugin") do
70
+ end.then_after(10, "stop plugin") do
71
71
  plugin.stop
72
72
  true
73
73
  end.value
@@ -5,6 +5,16 @@ require_relative "../spec_helper"
5
5
 
6
6
  describe LogStash::Inputs::Twitter do
7
7
 
8
+ let(:events) do
9
+ input(config) do |_, queue|
10
+ event_count.times.collect { queue.pop }
11
+ end
12
+ end
13
+
14
+ let(:event_count) { 3 }
15
+
16
+ let(:event) { events.first }
17
+
8
18
  describe "#receive [integration]", :integration => true do
9
19
 
10
20
  context "keyword search" do
@@ -23,12 +33,6 @@ describe LogStash::Inputs::Twitter do
23
33
  CONFIG
24
34
  end
25
35
 
26
- let(:events) do
27
- input(config) do |pipeline, queue|
28
- 3.times.collect { queue.pop }
29
- end
30
- end
31
-
32
36
  it "receive a list of events from the twitter stream" do
33
37
  expect(events.count).to eq(3)
34
38
  end
@@ -49,28 +53,14 @@ describe LogStash::Inputs::Twitter do
49
53
  CONFIG
50
54
  end
51
55
 
52
- let(:events) do
53
- input(config) do |pipeline, queue|
54
- 3.times.collect { queue.pop }
55
- end
56
- end
57
-
58
- let(:event) { events.first }
59
-
60
56
  it "receive a list of events from the twitter stream" do
61
57
  expect(events.count).to eq(3)
62
- end
63
-
64
- it "contains the hashtags" do
65
- expect(event["hashtags"]).to be_truthy
66
- end
67
58
 
68
- it "contains the symbols" do
69
- expect(event["symbols"]).to be_truthy
70
- end
59
+ event.tap { |event| puts "sample event: #{event.to_hash}" } if $VERBOSE
71
60
 
72
- it "contains the user_mentions" do
73
- expect(event["user_mentions"]).to be_truthy
61
+ expect(event.get("hashtags")).to be_truthy
62
+ expect(event.get("symbols")).to be_truthy
63
+ expect(event.get("user_mentions")).to be_truthy
74
64
  end
75
65
 
76
66
  end
@@ -88,20 +78,15 @@ describe LogStash::Inputs::Twitter do
88
78
  full_tweet => true
89
79
  use_proxy => true
90
80
  proxy_address => '127.0.0.1'
91
- proxy_port => 8123
81
+ proxy_port => 3128
92
82
  }
93
83
  }
94
84
  CONFIG
95
85
  end
96
86
 
97
- let(:events) do
98
- input(config) do |pipeline, queue|
99
- 3.times.collect { queue.pop }
100
- end
101
- end
102
-
103
87
  it "receive a list of events from the twitter stream" do
104
88
  expect(events.count).to eq(3)
89
+ event.tap { |event| puts "sample event (using proxy): #{event.to_hash}" } if $VERBOSE
105
90
  end
106
91
  end
107
92
  end
data/spec/spec_helper.rb CHANGED
@@ -26,8 +26,7 @@ module LogstashTwitterInput
26
26
  t = Thread.new(input, queue) do |_input, _queue|
27
27
  _input.run(_queue)
28
28
  end
29
- sleep 0.1
30
- t.kill
29
+ t.kill unless t.join(1.5) # due CI
31
30
  end
32
31
 
33
32
  def self.fixture_path
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-twitter
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-12 00:00:00.000000000 Z
11
+ date: 2021-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -30,12 +30,54 @@ dependencies:
30
30
  - - "<="
31
31
  - !ruby/object:Gem::Version
32
32
  version: '2.99'
33
+ - !ruby/object:Gem::Dependency
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - "~>"
37
+ - !ruby/object:Gem::Version
38
+ version: '1.3'
39
+ name: logstash-mixin-ecs_compatibility_support
40
+ prerelease: false
41
+ type: :runtime
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.3'
47
+ - !ruby/object:Gem::Dependency
48
+ requirement: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - "~>"
51
+ - !ruby/object:Gem::Version
52
+ version: '1.0'
53
+ name: logstash-mixin-event_support
54
+ prerelease: false
55
+ type: :runtime
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: '1.0'
61
+ - !ruby/object:Gem::Dependency
62
+ requirement: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - "~>"
65
+ - !ruby/object:Gem::Version
66
+ version: '1.0'
67
+ name: logstash-mixin-validator_support
68
+ prerelease: false
69
+ type: :runtime
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '1.0'
33
75
  - !ruby/object:Gem::Dependency
34
76
  requirement: !ruby/object:Gem::Requirement
35
77
  requirements:
36
78
  - - '='
37
79
  - !ruby/object:Gem::Version
38
- version: 5.15.0
80
+ version: 6.2.0
39
81
  name: twitter
40
82
  prerelease: false
41
83
  type: :runtime
@@ -43,7 +85,7 @@ dependencies:
43
85
  requirements:
44
86
  - - '='
45
87
  - !ruby/object:Gem::Version
46
- version: 5.15.0
88
+ version: 6.2.0
47
89
  - !ruby/object:Gem::Dependency
48
90
  requirement: !ruby/object:Gem::Requirement
49
91
  requirements:
@@ -172,15 +214,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
172
214
  requirements:
173
215
  - - ">="
174
216
  - !ruby/object:Gem::Version
175
- version: '0'
217
+ version: 2.1.0
176
218
  required_rubygems_version: !ruby/object:Gem::Requirement
177
219
  requirements:
178
220
  - - ">="
179
221
  - !ruby/object:Gem::Version
180
222
  version: '0'
181
223
  requirements: []
182
- rubyforge_project:
183
- rubygems_version: 2.6.13
224
+ rubygems_version: 3.1.6
184
225
  signing_key:
185
226
  specification_version: 4
186
227
  summary: Reads events from the Twitter Streaming API