lolcommits-twitter 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d29b0ce9c1c93eb4183c3e2404c380d34e84b2cb
4
+ data.tar.gz: f6e171d0c20ed403ae919a358f50708fba2e315b
5
+ SHA512:
6
+ metadata.gz: c921aba53ce4f15d61b566e3365e5eb17ad61bc3a8d062f8a5fe76a95a36ef7b8e1d4d58dc8add4f3fa9c43ca337383d3db77a62931f58641e98a2228b9e117c
7
+ data.tar.gz: cc25d04b60103d42ee1ae2b65837c618e96e66ef435799f91218f9b08378a208b6e3fb82d9abc42bc783d2c12087daf3ffa6967e0ded473246c2dcae088dcdb5
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.simplecov ADDED
@@ -0,0 +1,9 @@
1
+ SimpleCov.start do
2
+ add_filter '/test/'
3
+ add_filter '/vendor/'
4
+ end
5
+
6
+ SimpleCov.at_exit do
7
+ SimpleCov.result.format!
8
+ `open ./coverage/index.html` if RUBY_PLATFORM =~ /darwin/
9
+ end
data/.travis.yml ADDED
@@ -0,0 +1,24 @@
1
+ sudo: false
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.0.0
6
+ - 2.1.7
7
+ - 2.2.4
8
+ - 2.3.3
9
+ - 2.4.1
10
+ - ruby-head
11
+
12
+ before_install:
13
+ - gem install bundler -v 1.13.7
14
+ - git --version
15
+ - git config --global user.email "lol@commits.org"
16
+ - git config --global user.name "Lolcommits"
17
+
18
+ matrix:
19
+ allow_failures:
20
+ - rvm: ruby-head
21
+
22
+ branches:
23
+ except:
24
+ - gh-pages
@@ -0,0 +1,50 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer via [GitHub][maintainer]. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [maintainer]: https://github.com/matthutchinson
49
+ [homepage]: http://contributor-covenant.org
50
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,37 @@
1
+ ### Contributing
2
+
3
+ Pull Requests are welcome! To start helping out:
4
+
5
+ [Fork](https://guides.github.com/activities/forking) then clone the repository:
6
+
7
+ git clone git@github.com:your-username/lolcommits-twitter.git
8
+
9
+ Create your feature branch:
10
+
11
+ git checkout -b my-new-feature
12
+
13
+ When you are happy with your change, run the full test suite:
14
+
15
+ bundle exec rake
16
+
17
+ With a passing test suite, commit your changes, push and submit a new [Pull
18
+ Request](https://github.com/lolcommits/lolcommits-twitter/compare):
19
+
20
+ git commit -am 'Added some feature'
21
+ git push origin my-new-feature
22
+
23
+ At this point you'll be waiting for one of our maintainers to review it. We will
24
+ try to reply to new Pull Requests within a few days. We might suggest some
25
+ changes, improvements or alternatives. To increase the chance that your pull
26
+ request gets accepted:
27
+
28
+ * Explain what your are doing (and why) in your Pull Request description.
29
+ * If you are fixing an
30
+ [issue](https://github.com/lolcommits/lolcommits-twitter/issues), link to
31
+ it in your description and [mention
32
+ it](https://help.github.com/articles/closing-issues-via-commit-messages) in
33
+ the commit message.
34
+ * Write a good [commit
35
+ message](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html).
36
+ * Write tests.
37
+
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+ gem 'lolcommits', path: '/u/code/lolcommits'
data/LICENSE ADDED
@@ -0,0 +1,165 @@
1
+ GNU LESSER GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+
9
+ This version of the GNU Lesser General Public License incorporates
10
+ the terms and conditions of version 3 of the GNU General Public
11
+ License, supplemented by the additional permissions listed below.
12
+
13
+ 0. Additional Definitions.
14
+
15
+ As used herein, "this License" refers to version 3 of the GNU Lesser
16
+ General Public License, and the "GNU GPL" refers to version 3 of the GNU
17
+ General Public License.
18
+
19
+ "The Library" refers to a covered work governed by this License,
20
+ other than an Application or a Combined Work as defined below.
21
+
22
+ An "Application" is any work that makes use of an interface provided
23
+ by the Library, but which is not otherwise based on the Library.
24
+ Defining a subclass of a class defined by the Library is deemed a mode
25
+ of using an interface provided by the Library.
26
+
27
+ A "Combined Work" is a work produced by combining or linking an
28
+ Application with the Library. The particular version of the Library
29
+ with which the Combined Work was made is also called the "Linked
30
+ Version".
31
+
32
+ The "Minimal Corresponding Source" for a Combined Work means the
33
+ Corresponding Source for the Combined Work, excluding any source code
34
+ for portions of the Combined Work that, considered in isolation, are
35
+ based on the Application, and not on the Linked Version.
36
+
37
+ The "Corresponding Application Code" for a Combined Work means the
38
+ object code and/or source code for the Application, including any data
39
+ and utility programs needed for reproducing the Combined Work from the
40
+ Application, but excluding the System Libraries of the Combined Work.
41
+
42
+ 1. Exception to Section 3 of the GNU GPL.
43
+
44
+ You may convey a covered work under sections 3 and 4 of this License
45
+ without being bound by section 3 of the GNU GPL.
46
+
47
+ 2. Conveying Modified Versions.
48
+
49
+ If you modify a copy of the Library, and, in your modifications, a
50
+ facility refers to a function or data to be supplied by an Application
51
+ that uses the facility (other than as an argument passed when the
52
+ facility is invoked), then you may convey a copy of the modified
53
+ version:
54
+
55
+ a) under this License, provided that you make a good faith effort to
56
+ ensure that, in the event an Application does not supply the
57
+ function or data, the facility still operates, and performs
58
+ whatever part of its purpose remains meaningful, or
59
+
60
+ b) under the GNU GPL, with none of the additional permissions of
61
+ this License applicable to that copy.
62
+
63
+ 3. Object Code Incorporating Material from Library Header Files.
64
+
65
+ The object code form of an Application may incorporate material from
66
+ a header file that is part of the Library. You may convey such object
67
+ code under terms of your choice, provided that, if the incorporated
68
+ material is not limited to numerical parameters, data structure
69
+ layouts and accessors, or small macros, inline functions and templates
70
+ (ten or fewer lines in length), you do both of the following:
71
+
72
+ a) Give prominent notice with each copy of the object code that the
73
+ Library is used in it and that the Library and its use are
74
+ covered by this License.
75
+
76
+ b) Accompany the object code with a copy of the GNU GPL and this license
77
+ document.
78
+
79
+ 4. Combined Works.
80
+
81
+ You may convey a Combined Work under terms of your choice that,
82
+ taken together, effectively do not restrict modification of the
83
+ portions of the Library contained in the Combined Work and reverse
84
+ engineering for debugging such modifications, if you also do each of
85
+ the following:
86
+
87
+ a) Give prominent notice with each copy of the Combined Work that
88
+ the Library is used in it and that the Library and its use are
89
+ covered by this License.
90
+
91
+ b) Accompany the Combined Work with a copy of the GNU GPL and this license
92
+ document.
93
+
94
+ c) For a Combined Work that displays copyright notices during
95
+ execution, include the copyright notice for the Library among
96
+ these notices, as well as a reference directing the user to the
97
+ copies of the GNU GPL and this license document.
98
+
99
+ d) Do one of the following:
100
+
101
+ 0) Convey the Minimal Corresponding Source under the terms of this
102
+ License, and the Corresponding Application Code in a form
103
+ suitable for, and under terms that permit, the user to
104
+ recombine or relink the Application with a modified version of
105
+ the Linked Version to produce a modified Combined Work, in the
106
+ manner specified by section 6 of the GNU GPL for conveying
107
+ Corresponding Source.
108
+
109
+ 1) Use a suitable shared library mechanism for linking with the
110
+ Library. A suitable mechanism is one that (a) uses at run time
111
+ a copy of the Library already present on the user's computer
112
+ system, and (b) will operate properly with a modified version
113
+ of the Library that is interface-compatible with the Linked
114
+ Version.
115
+
116
+ e) Provide Installation Information, but only if you would otherwise
117
+ be required to provide such information under section 6 of the
118
+ GNU GPL, and only to the extent that such information is
119
+ necessary to install and execute a modified version of the
120
+ Combined Work produced by recombining or relinking the
121
+ Application with a modified version of the Linked Version. (If
122
+ you use option 4d0, the Installation Information must accompany
123
+ the Minimal Corresponding Source and Corresponding Application
124
+ Code. If you use option 4d1, you must provide the Installation
125
+ Information in the manner specified by section 6 of the GNU GPL
126
+ for conveying Corresponding Source.)
127
+
128
+ 5. Combined Libraries.
129
+
130
+ You may place library facilities that are a work based on the
131
+ Library side by side in a single library together with other library
132
+ facilities that are not Applications and are not covered by this
133
+ License, and convey such a combined library under terms of your
134
+ choice, if you do both of the following:
135
+
136
+ a) Accompany the combined library with a copy of the same work based
137
+ on the Library, uncombined with any other library facilities,
138
+ conveyed under the terms of this License.
139
+
140
+ b) Give prominent notice with the combined library that part of it
141
+ is a work based on the Library, and explaining where to find the
142
+ accompanying uncombined form of the same work.
143
+
144
+ 6. Revised Versions of the GNU Lesser General Public License.
145
+
146
+ The Free Software Foundation may publish revised and/or new versions
147
+ of the GNU Lesser General Public License from time to time. Such new
148
+ versions will be similar in spirit to the present version, but may
149
+ differ in detail to address new problems or concerns.
150
+
151
+ Each version is given a distinguishing version number. If the
152
+ Library as you received it specifies that a certain numbered version
153
+ of the GNU Lesser General Public License "or any later version"
154
+ applies to it, you have the option of following the terms and
155
+ conditions either of that published version or of any later version
156
+ published by the Free Software Foundation. If the Library as you
157
+ received it does not specify a version number of the GNU Lesser
158
+ General Public License, you may choose any version of the GNU Lesser
159
+ General Public License ever published by the Free Software Foundation.
160
+
161
+ If the Library as you received it specifies that a proxy can decide
162
+ whether future versions of the GNU Lesser General Public License shall
163
+ apply, that proxy's public statement of acceptance of any version is
164
+ permanent authorization for you to choose that version for the
165
+ Library.
data/README.md ADDED
@@ -0,0 +1,112 @@
1
+ # Lolcommits Twitter
2
+
3
+ [![Gem Version](https://img.shields.io/gem/v/lolcommits-twitter.svg?style=flat)](http://rubygems.org/gems/lolcommits-twitter)
4
+ [![Travis Build Status](https://travis-ci.org/lolcommits/lolcommits-twitter.svg?branch=master)](https://travis-ci.org/lolcommits/lolcommits-twitter)
5
+ [![Coverage Status](https://coveralls.io/repos/github/lolcommits/lolcommits-twitter/badge.svg?branch=master)](https://coveralls.io/github/lolcommits/lolcommits-twitter)
6
+ [![Code Climate](https://codeclimate.com/github/lolcommits/lolcommits-twitter/badges/gpa.svg)](https://codeclimate.com/github/lolcommits/lolcommits-twitter)
7
+ [![Gem Dependency Status](https://gemnasium.com/badges/github.com/lolcommits/lolcommits-twitter.svg)](https://gemnasium.com/github.com/lolcommits/lolcommits-twitter)
8
+
9
+ [lolcommits](https://lolcommits.github.io/) takes a snapshot with your webcam
10
+ every time you git commit code, and archives a lolcat style image with it. Git
11
+ blame has never been so much fun!
12
+
13
+ This plugin automatically posts your Lolcommit to Twitter. The tweet features
14
+ your commit message (shortened) and the lolcommit image (along with some
15
+ optional prefix or postfix text). Check out the [#lolcommits
16
+ hashtag](https://twitter.com/hashtag/lolcommits) for examples.
17
+
18
+ You can optionally open the new tweet in your default browser.
19
+
20
+ ## Requirements
21
+
22
+ * Ruby >= 2.0.0
23
+ * A webcam
24
+ * [ImageMagick](http://www.imagemagick.org)
25
+ * [ffmpeg](https://www.ffmpeg.org) (optional) for animated gif capturing
26
+
27
+ ## Installation
28
+
29
+ After installing the lolcommits gem, install this plugin with:
30
+
31
+ $ gem install lolcommits-twitter
32
+
33
+ Next configure the plugin to authenticate with Twitter and set tweeting options.
34
+
35
+ $ lolcommits --config -p twitter
36
+ # set enabled to `true` (then set your own options or choose the defaults)
37
+
38
+ ### Configuration
39
+
40
+ The following options are available:
41
+
42
+ * prefix
43
+ * suffix (default: #lolcommits)
44
+ * auto-open tweet url?
45
+
46
+ You can always reconfigure the plugin without having to re-authenicate with
47
+ Twitter.
48
+
49
+ To disable - set `enabled: false` and you can always revoke access to your
50
+ twitter account [here](https://twitter.com/settings/applications).
51
+
52
+ ## Development
53
+
54
+ Check out this repo and run `bin/setup`, to install all dependencies and
55
+ generate docs. Run `bundle exec rake` to run all tests and generate a coverage
56
+ report.
57
+
58
+ You can also run `bin/console` for an interactive prompt that will allow you to
59
+ experiment with the gem code.
60
+
61
+ ## Tests
62
+
63
+ MiniTest is used for testing. Run the test suite with:
64
+
65
+ $ rake test
66
+
67
+ ## Docs
68
+
69
+ Generate docs for this gem with:
70
+
71
+ $ rake rdoc
72
+
73
+ ## Troubles?
74
+
75
+ If you think something is broken or missing, please raise a new
76
+ [issue](https://github.com/lolcommits/lolcommits-twitter/issues). Take
77
+ a moment to check it hasn't been raised in the past (and possibly closed).
78
+
79
+ ## Contributing
80
+
81
+ Bug [reports](https://github.com/lolcommits/lolcommits-twitter/issues) and [pull
82
+ requests](https://github.com/lolcommits/lolcommits-twitter/pulls) are welcome on
83
+ GitHub.
84
+
85
+ When submitting pull requests, remember to add tests covering any new behaviour,
86
+ and ensure all tests are passing on [Travis
87
+ CI](https://travis-ci.org/lolcommits/lolcommits-twitter). Read the
88
+ [contributing
89
+ guidelines](https://github.com/lolcommits/lolcommits-twitter/blob/master/CONTRIBUTING.md)
90
+ for more details.
91
+
92
+ This project is intended to be a safe, welcoming space for collaboration, and
93
+ contributors are expected to adhere to the [Contributor
94
+ Covenant](http://contributor-covenant.org) code of conduct. See
95
+ [here](https://github.com/lolcommits/lolcommits-twitter/blob/master/CODE_OF_CONDUCT.md)
96
+ for more details.
97
+
98
+ ## License
99
+
100
+ The gem is available as open source under the terms of
101
+ [LGPL-3](https://opensource.org/licenses/LGPL-3.0).
102
+
103
+ ## Links
104
+
105
+ * [Travis CI](https://travis-ci.org/lolcommits/lolcommits-twitter)
106
+ * [Test Coverage](https://coveralls.io/github/lolcommits/lolcommits-twitter)
107
+ * [Code Climate](https://codeclimate.com/github/lolcommits/lolcommits-twitter)
108
+ * [RDoc](http://rdoc.info/projects/lolcommits/lolcommits-twitter)
109
+ * [Issues](http://github.com/lolcommits/lolcommits-twitter/issues)
110
+ * [Report a bug](http://github.com/lolcommits/lolcommits-twitter/issues/new)
111
+ * [Gem](http://rubygems.org/gems/lolcommits-twitter)
112
+ * [GitHub](https://github.com/lolcommits/lolcommits-twitter)
data/Rakefile ADDED
@@ -0,0 +1,31 @@
1
+ require "bundler/gem_tasks"
2
+ require "rake/testtask"
3
+ require "rdoc/task"
4
+
5
+ # generate docs
6
+ RDoc::Task.new do |rd|
7
+ rd.main = "README.md"
8
+ rd.title = "Lolcommits Twitter"
9
+ rd.rdoc_dir = "doc"
10
+ rd.options << "--all"
11
+ rd.rdoc_files.include("README.md", "LICENSE", "lib/**/*.rb")
12
+ end
13
+
14
+ # run tests
15
+ Rake::TestTask.new(:test) do |t|
16
+ t.libs << "test"
17
+ t.libs << "lib"
18
+ t.test_files = FileList["test/**/*_test.rb"]
19
+ end
20
+
21
+ # run tests with code coverage (default)
22
+ namespace :test do
23
+ desc "Run all tests and features and generate a code coverage report"
24
+ task :coverage do
25
+ ENV['COVERAGE'] = 'true'
26
+ Rake::Task['test'].execute
27
+ end
28
+ end
29
+
30
+
31
+ task :default => ['test:coverage']
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "lolcommits/twitter"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ # install deps
7
+ bundle install
8
+
9
+ # generate docs
10
+ bundle exec rake rdoc
@@ -0,0 +1,186 @@
1
+ require 'lolcommits/plugin/base'
2
+ require 'lolcommits/cli/launcher'
3
+ require 'lolcommits/twitter/client'
4
+
5
+ module Lolcommits
6
+ module Plugin
7
+ class Twitter < Base
8
+
9
+ DEFAULT_SUFFIX = '#lolcommits'.freeze
10
+
11
+ ##
12
+ # Returns the name of the plugin. Identifies the plugin to lolcommits.
13
+ #
14
+ # @return [String] the plugin name
15
+ #
16
+ def self.name
17
+ 'twitter'
18
+ end
19
+
20
+ ##
21
+ # Returns position(s) of when this plugin should run during the capture
22
+ # process. We want to post to Twitter when the capture is ready (after all
23
+ # image processing is complete).
24
+ #
25
+ # @return [Array] the position(s)
26
+ #
27
+ def self.runner_order
28
+ [:capture_ready]
29
+ end
30
+
31
+ ##
32
+ # Plugin is configured when a token and token secret exist
33
+ #
34
+ # @return [Boolean] true/false if the plugin has been configured
35
+ #
36
+ def configured?
37
+ !!(configuration['token'] && configuration['token_secret'])
38
+ end
39
+
40
+ ##
41
+ # Prompts the user to configure plugin options.
42
+ # Options are enabled (true/false), Twitter auth, and prefix/suffix text.
43
+ #
44
+ # @return [Hash] a hash of configured plugin options
45
+ #
46
+ def configure_options!
47
+ options = super
48
+ # ask user to configure all options (if enabling)
49
+ if options['enabled']
50
+ auth_config = configure_auth!
51
+ return unless auth_config
52
+ options = options.merge(auth_config).
53
+ merge(configure_prefix_suffix).
54
+ merge(configure_open_tweet_url)
55
+ else
56
+ # retain config when disabling
57
+ options = configuration.merge(options)
58
+ end
59
+ options
60
+ end
61
+
62
+ ##
63
+ # Capture ready hook, runs after lolcommits captures a snapshot and image
64
+ # processing has completed.
65
+ #
66
+ # Posts the lolcommit to Twitter, first uploading the capture media, then
67
+ # posting a new Tweet with the media_id attached.
68
+ #
69
+ def run_capture_ready
70
+ status = build_tweet(runner.message)
71
+ file = File.open(runner.main_image, 'rb')
72
+
73
+ print "Tweeting ... "
74
+
75
+ begin
76
+ client = twitter_client.new(
77
+ configuration['token'],
78
+ configuration['token_secret']
79
+ )
80
+
81
+ debug "--> Uploading media (#{file.size} bytes)"
82
+ media_id = client.upload_media(file)
83
+ debug "--> Posting status update (#{status.length} chars, media_id: #{media_id})"
84
+ status_response = client.update_status(status, media_ids: [media_id])
85
+
86
+ tweet_url = status_response['entities']['media'][0]['url']
87
+ print "#{tweet_url}\n"
88
+ open_url(tweet_url) if configuration['open_tweet_url']
89
+ rescue StandardError => e
90
+ puts "ERROR: Tweeting FAILED! - #{e.message}"
91
+ end
92
+ end
93
+
94
+ private
95
+
96
+ def twitter_client
97
+ Lolcommits::Twitter::Client
98
+ end
99
+
100
+ def build_tweet(commit_message)
101
+ prefix = configuration['prefix'].to_s
102
+ suffix = configuration['suffix'].to_s
103
+ prefix = "#{configuration['prefix']} " unless prefix.empty?
104
+ suffix = " #{configuration['suffix']}" unless suffix.empty?
105
+
106
+ available_commit_msg_size = twitter_client::MAX_TWEET_CHARS - (prefix.length + suffix.length)
107
+ if commit_message.length > available_commit_msg_size
108
+ commit_message = "#{commit_message[0..(available_commit_msg_size - 3)]}..."
109
+ end
110
+
111
+ "#{prefix}#{commit_message}#{suffix}"
112
+ end
113
+
114
+ def ask_yes_or_no?(default: false)
115
+ yes_or_no = parse_user_input(gets.strip)
116
+ return default if yes_or_no.nil?
117
+ !!(yes_or_no =~ /^y/i)
118
+ end
119
+
120
+ def configure_auth!
121
+ if configured?
122
+ print "\n* Reset Twitter Auth ? (y/N): "
123
+ return configuration.select {|k,v| k =~ /^token/ } if !ask_yes_or_no?
124
+ end
125
+
126
+ puts ''
127
+ puts '-----------------------------------'
128
+ puts ' OK, lets setup Twitter Auth '
129
+ puts '-----------------------------------'
130
+
131
+ request_token = twitter_client.oauth_consumer.get_request_token
132
+ rtoken = request_token.token
133
+ rsecret = request_token.secret
134
+ authorize_url = request_token.authorize_url
135
+
136
+ open_url(authorize_url)
137
+ print "\n* Grab a PIN from this url:\n\n"
138
+ puts " #{authorize_url}"
139
+
140
+ print "\n* Type PIN, then press Enter: "
141
+ twitter_pin = gets.strip.downcase.to_s
142
+
143
+ begin
144
+ debug "Requesting Twitter OAuth Token with PIN: #{twitter_pin}"
145
+ access_token = request_token.get_access_token(oauth_verifier: twitter_pin)
146
+ rescue OAuth::Unauthorized
147
+ puts "\nERROR: Twitter PIN Auth FAILED!"
148
+ return
149
+ end
150
+
151
+ return unless access_token.token && access_token.secret
152
+
153
+ puts ''
154
+ puts '-----------------------------------'
155
+ puts ' Thanks, Twitter Auth Succeeded! '
156
+ puts '-----------------------------------'
157
+
158
+ {
159
+ 'token' => access_token.token,
160
+ 'token_secret' => access_token.secret
161
+ }
162
+ end
163
+
164
+ def configure_prefix_suffix
165
+ print "\n* Prefix all tweets with something? e.g. @user (default: nothing): "
166
+ prefix = gets.strip
167
+ print "\n* End all tweets with something? e.g. #hashtag (default: #{DEFAULT_SUFFIX}): "
168
+ suffix = gets.strip
169
+
170
+ config = {}
171
+ config['prefix'] = prefix.empty? ? '' : prefix
172
+ config['suffix'] = suffix.empty? ? DEFAULT_SUFFIX : suffix
173
+ config
174
+ end
175
+
176
+ def configure_open_tweet_url
177
+ print "\n* Automatically open Tweet URL after posting (y/N): "
178
+ { 'open_tweet_url' => ask_yes_or_no? }
179
+ end
180
+
181
+ def open_url(url)
182
+ Lolcommits::CLI::Launcher.open_url(url)
183
+ end
184
+ end
185
+ end
186
+ end
@@ -0,0 +1,152 @@
1
+ require 'oauth'
2
+ require 'simple_oauth'
3
+ require 'rest_client'
4
+ require 'addressable/uri'
5
+
6
+ module Lolcommits
7
+ module Twitter
8
+ class Client
9
+
10
+ API_ENDPOINT = 'https://api.twitter.com'.freeze
11
+ UPLOAD_ENDPOINT = 'https://upload.twitter.com'.freeze
12
+ CONSUMER_KEY = 'CwMCjbxREk5dSloZeR5Uhb1Fe'.freeze
13
+ CONSUMER_SECRET = 'UfgIvD32rRgSwIWZq9hjADMYd0e3ax9FluSEePSNOqgmSCerU5'.freeze
14
+
15
+ CHUNK_SIZE_BYTES = 5_000_000
16
+ MAX_TWEET_CHARS = (140 - 1 - 24).freeze # (140 - space - reserved media chars)
17
+
18
+ def self.oauth_consumer
19
+ OAuth::Consumer.new(
20
+ CONSUMER_KEY,
21
+ CONSUMER_SECRET,
22
+ site: API_ENDPOINT,
23
+ request_endpoint: API_ENDPOINT,
24
+ sign_in: true
25
+ )
26
+ end
27
+
28
+ def initialize(token, token_secret)
29
+ @oauth_credentials = {
30
+ consumer_key: CONSUMER_KEY,
31
+ consumer_secret: CONSUMER_SECRET,
32
+ token: token,
33
+ token_secret: token_secret
34
+ }
35
+ end
36
+
37
+ # @see https://dev.twitter.com/rest/reference/post/statuses/update
38
+ def update_status(status, media_ids: [])
39
+ url = API_ENDPOINT + "/1.1/statuses/update.json"
40
+ post(url, params: { status: status, media_ids: media_ids })
41
+ end
42
+
43
+ # @see https://dev.twitter.com/rest/public/uploading-media
44
+ def upload_media(media)
45
+ response = begin
46
+ # upload animated gifs in 5MB chunks
47
+ if File.basename(media) =~ /\.gif$/
48
+ upload_media_chunked(media)
49
+ else
50
+ post(upload_url, payload: { media: media })
51
+ end
52
+ end
53
+ response['media_id_string']
54
+ end
55
+
56
+ # @see https://dev.twitter.com/rest/public/uploading-media
57
+ def upload_media_chunked(media)
58
+ media_id = upload('INIT', {
59
+ media_type: 'image/gif',
60
+ media_category: 'tweet_gif',
61
+ total_bytes: media.size
62
+ })['media_id_string']
63
+
64
+ until media.eof?
65
+ seg ||= -1
66
+ base64_chunk = Base64.encode64(media.read(CHUNK_SIZE_BYTES))
67
+ base64_chunk.delete("\n")
68
+ upload('APPEND', {
69
+ media_id: media_id,
70
+ segment_index: seg += 1,
71
+ media_data: base64_chunk
72
+ })
73
+ end
74
+ media.close
75
+
76
+ finalize = upload('FINALIZE', media_id: media_id)
77
+
78
+ # check STATUS if this is an async media upload
79
+ # @see https://dev.twitter.com/rest/reference/get/media/upload-status
80
+ processing = finalize['processing_info']
81
+ if processing
82
+ until processing['state'] == 'succeeded'
83
+ sleep processing['check_after_secs'] || 0.5
84
+ processing = upload_status(media_id)['processing_info']
85
+ end
86
+ end
87
+
88
+ finalize
89
+ end
90
+
91
+
92
+ private
93
+
94
+ attr_reader :oauth_credentials
95
+
96
+ def upload_url
97
+ @upload_url ||= UPLOAD_ENDPOINT + "/1.1/media/upload.json"
98
+ end
99
+
100
+ # @see https://dev.twitter.com/rest/public/uploading-media
101
+ def upload(command, payload = {})
102
+ post(upload_url, payload: payload.merge(command: command))
103
+ end
104
+
105
+ # @see https://dev.twitter.com/rest/reference/get/media/upload-status
106
+ def upload_status(media_id)
107
+ get(upload_url, params: { command: 'STATUS', media_id: media_id })
108
+ end
109
+
110
+ def get(url, params: {})
111
+ uri = Addressable::URI.parse(url)
112
+ uri.query_values = params
113
+
114
+ RestClient.get(uri.to_s, { Authorization: oauth_auth_header(uri) }) do |response, request, result|
115
+ handle_response(response)
116
+ end
117
+ end
118
+
119
+ def post(url, params: {}, payload: {})
120
+ uri = Addressable::URI.parse(url)
121
+ uri.query_values = params
122
+
123
+ payload = payload.merge!(multipart: true) unless payload.empty?
124
+
125
+ RestClient.post(uri.to_s, payload, Authorization: oauth_auth_header(uri, :post)) do |response, request, result|
126
+ handle_response(response)
127
+ end
128
+ end
129
+
130
+ def handle_response(response)
131
+ return if response.empty? && response.code.to_s =~ /^2/ # an empty OK response
132
+
133
+ parsed_response = JSON.parse(response)
134
+ if response.code.to_s =~ /^2/
135
+ return parsed_response
136
+ else
137
+ error_message = 'request failed'
138
+ errors = parsed_response['errors']
139
+ if errors
140
+ error_message = errors.map { |err| "Error #{err['code']}: #{err['message']}" }.join(',')
141
+ end
142
+ raise StandardError.new(error_message)
143
+ end
144
+ end
145
+
146
+ def oauth_auth_header(url, method = :get)
147
+ uri = Addressable::URI.parse(url)
148
+ SimpleOAuth::Header.new(method, uri, {}, oauth_credentials)
149
+ end
150
+ end
151
+ end
152
+ end
@@ -0,0 +1,5 @@
1
+ module Lolcommits
2
+ module Twitter
3
+ VERSION = "0.0.1".freeze
4
+ end
5
+ end
@@ -0,0 +1,2 @@
1
+ require 'lolcommits/twitter/version'
2
+ require 'lolcommits/plugin/twitter'
@@ -0,0 +1,46 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'lolcommits/twitter/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "lolcommits-twitter"
8
+ spec.version = Lolcommits::Twitter::VERSION
9
+ spec.authors = ["Matthew Hutchinson"]
10
+ spec.email = ["matt@hiddenloop.com"]
11
+ spec.summary = %q{Post lolcommits to Twitter}
12
+ spec.description = %q{Automatically tweet your lolcommits}
13
+
14
+ spec.homepage = "https://github.com/lolcommits/lolcommits-twitter"
15
+ spec.license = "LGPL-3"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(assets|test|features)/}) }
27
+ spec.test_files = `git ls-files -- {test,features}/*`.split("\n")
28
+ spec.bindir = "bin"
29
+ spec.executables = []
30
+ spec.require_paths = ["lib"]
31
+
32
+ spec.required_ruby_version = ">= 2.0.0"
33
+
34
+ spec.add_runtime_dependency "rest-client"
35
+ spec.add_runtime_dependency "simple_oauth"
36
+ spec.add_runtime_dependency "addressable"
37
+
38
+ spec.add_development_dependency "lolcommits", ">= 0.9.5"
39
+ spec.add_development_dependency "bundler"
40
+ spec.add_development_dependency "rake"
41
+ spec.add_development_dependency "minitest"
42
+ spec.add_development_dependency "simplecov"
43
+ spec.add_development_dependency "coveralls"
44
+ spec.add_development_dependency "webmock"
45
+ spec.add_development_dependency "pry"
46
+ end
@@ -0,0 +1,102 @@
1
+ require 'test_helper'
2
+
3
+ describe Lolcommits::Plugin::Twitter do
4
+
5
+ include Lolcommits::TestHelpers::GitRepo
6
+ include Lolcommits::TestHelpers::FakeIO
7
+
8
+ def plugin_name
9
+ 'twitter'
10
+ end
11
+
12
+ it 'should have a name' do
13
+ ::Lolcommits::Plugin::Twitter.name.must_equal plugin_name
14
+ end
15
+
16
+ it 'should run on post capturing' do
17
+ ::Lolcommits::Plugin::Twitter.runner_order.must_equal [:capture_ready]
18
+ end
19
+
20
+ describe 'with a runner' do
21
+ def runner
22
+ # a simple lolcommits runner with an empty configuration Hash
23
+ @_runner ||= Lolcommits::Runner.new(
24
+ config: OpenStruct.new(read_configuration: {})
25
+ )
26
+ end
27
+
28
+ def valid_enabled_config
29
+ @_valid_enabled_config ||= OpenStruct.new(
30
+ read_configuration: {
31
+ plugin.class.name => {
32
+ 'enabled' => true,
33
+ 'token' => 'abc-xyz',
34
+ 'token_secret' => '123XYZ'
35
+ }
36
+ }
37
+ )
38
+ end
39
+
40
+ def plugin
41
+ @_plugin ||= Lolcommits::Plugin::Twitter.new(runner: runner)
42
+ end
43
+
44
+ def twitter_client
45
+ Lolcommits::Twitter::Client
46
+ end
47
+
48
+ describe 'initalizing' do
49
+ it 'should assign runner and an enabled option' do
50
+ plugin.runner.must_equal runner
51
+ plugin.options.must_equal ['enabled']
52
+ end
53
+ end
54
+
55
+ describe '#enabled?' do
56
+ it 'should be false by default' do
57
+ plugin.enabled?.must_equal false
58
+ end
59
+
60
+ it 'should true when configured' do
61
+ plugin.config = valid_enabled_config
62
+ plugin.enabled?.must_equal true
63
+ end
64
+ end
65
+
66
+ describe 'configuration' do
67
+ it 'should not be configured by default' do
68
+ plugin.configured?.must_equal false
69
+ end
70
+
71
+ it 'should indicate when configured' do
72
+ plugin.config = valid_enabled_config
73
+ plugin.configured?.must_equal true
74
+ end
75
+
76
+ it 'should allow plugin options to be configured' do
77
+ stub_request(:post, "#{Lolcommits::Twitter::Client::API_ENDPOINT}/oauth/request_token").
78
+ to_return(status: 200, body: "oauth_token=mytoken&oauth_token_secret=mytokensercet&oauth_callback_confirmed=true")
79
+
80
+ stub_request(:post, "#{Lolcommits::Twitter::Client::API_ENDPOINT}/oauth/access_token").
81
+ to_return(status: 200, body: "oauth_token=oauthtoken&oauth_token_secret=oauthtokensecret&user_id=6253282&screen_name=twitterapi")
82
+
83
+ # enabled, AUTH PIN, prefix, suffix, Yes/No auto open
84
+ inputs = %w(true 123456 LOL-prefix LOL-suffix Y)
85
+
86
+ configured_plugin_options = {}
87
+ fake_io_capture(inputs: inputs) do
88
+ configured_plugin_options = plugin.configure_options!
89
+ end
90
+
91
+ configured_plugin_options.must_equal({
92
+ 'enabled' => true,
93
+ 'token' => 'oauthtoken',
94
+ 'token_secret' => 'oauthtokensecret',
95
+ 'prefix' => 'LOL-prefix',
96
+ 'suffix' => 'LOL-suffix',
97
+ 'open_tweet_url' => true
98
+ })
99
+ end
100
+ end
101
+ end
102
+ end
@@ -0,0 +1,33 @@
1
+ $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
2
+
3
+ # necessary libs from lolcommits (allowing plugin to run)
4
+ require 'git'
5
+ require 'lolcommits/runner'
6
+ require 'lolcommits/vcs_info'
7
+ require 'lolcommits/backends/git_info'
8
+
9
+ # lolcommit test helpers
10
+ require 'lolcommits/test_helpers/git_repo'
11
+ require 'lolcommits/test_helpers/fake_io'
12
+
13
+ if ENV['COVERAGE']
14
+ if ENV['TRAVIS']
15
+ require 'coveralls'
16
+ Coveralls.wear!
17
+ else
18
+ require 'simplecov'
19
+ end
20
+ end
21
+
22
+ # plugin gem test libs
23
+ require 'lolcommits/twitter'
24
+ require 'minitest/autorun'
25
+ require 'webmock/minitest'
26
+
27
+ # swallow all debug output during test runs
28
+ def debug(msg); end
29
+
30
+ # do not launch URLs
31
+ class Lolcommits::CLI::Launcher
32
+ def self.open_url(url); end
33
+ end
metadata ADDED
@@ -0,0 +1,219 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lolcommits-twitter
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Matthew Hutchinson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-07-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rest-client
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: simple_oauth
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
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: addressable
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: lolcommits
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 0.9.5
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: 0.9.5
69
+ - !ruby/object:Gem::Dependency
70
+ name: bundler
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: minitest
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: coveralls
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: webmock
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: pry
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ description: Automatically tweet your lolcommits
168
+ email:
169
+ - matt@hiddenloop.com
170
+ executables: []
171
+ extensions: []
172
+ extra_rdoc_files: []
173
+ files:
174
+ - ".gitignore"
175
+ - ".simplecov"
176
+ - ".travis.yml"
177
+ - CODE_OF_CONDUCT.md
178
+ - CONTRIBUTING.md
179
+ - Gemfile
180
+ - LICENSE
181
+ - README.md
182
+ - Rakefile
183
+ - bin/console
184
+ - bin/setup
185
+ - lib/lolcommits/plugin/twitter.rb
186
+ - lib/lolcommits/twitter.rb
187
+ - lib/lolcommits/twitter/client.rb
188
+ - lib/lolcommits/twitter/version.rb
189
+ - lolcommits-twitter.gemspec
190
+ - test/lolcommits/plugin/twitter_test.rb
191
+ - test/test_helper.rb
192
+ homepage: https://github.com/lolcommits/lolcommits-twitter
193
+ licenses:
194
+ - LGPL-3
195
+ metadata:
196
+ allowed_push_host: https://rubygems.org
197
+ post_install_message:
198
+ rdoc_options: []
199
+ require_paths:
200
+ - lib
201
+ required_ruby_version: !ruby/object:Gem::Requirement
202
+ requirements:
203
+ - - ">="
204
+ - !ruby/object:Gem::Version
205
+ version: 2.0.0
206
+ required_rubygems_version: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - ">="
209
+ - !ruby/object:Gem::Version
210
+ version: '0'
211
+ requirements: []
212
+ rubyforge_project:
213
+ rubygems_version: 2.6.11
214
+ signing_key:
215
+ specification_version: 4
216
+ summary: Post lolcommits to Twitter
217
+ test_files:
218
+ - test/lolcommits/plugin/twitter_test.rb
219
+ - test/test_helper.rb