github_reactions 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: cf100a151e5c028e736d8c374eaac58bac2e4cb5
4
+ data.tar.gz: 5ddc5730ba8bcb99221b6ab078ba23aca2646d08
5
+ SHA512:
6
+ metadata.gz: 173993290743b24a59dc023b22a54c8f5f2287cd5be7191988093e11ef9b159fedee0e65527966170712af4fcd96fbf76704c22180ae6f88589dd6992f599e94
7
+ data.tar.gz: ce193cb3f3089476679f6ed7b4c01b459403ad2cf35e7bfdf9f9f14bf522a27156601061a476cbd8d4ebc4ee36f1d41f879cfaa970a4a470d3acad703c93073c
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.2
5
+ before_install: gem install bundler -v 1.16.1
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at over.rye@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in github_reactions.gemspec
6
+ gemspec
@@ -0,0 +1,58 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ github_reactions (0.1.0)
5
+ graphql-client
6
+ terminal-table
7
+ thor
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ activesupport (5.2.0)
13
+ concurrent-ruby (~> 1.0, >= 1.0.2)
14
+ i18n (>= 0.7, < 2)
15
+ minitest (~> 5.1)
16
+ tzinfo (~> 1.1)
17
+ concurrent-ruby (1.0.5)
18
+ diff-lcs (1.3)
19
+ graphql (1.7.14)
20
+ graphql-client (0.12.3)
21
+ activesupport (>= 3.0, < 6.0)
22
+ graphql (~> 1.6)
23
+ i18n (1.0.1)
24
+ concurrent-ruby (~> 1.0)
25
+ minitest (5.11.3)
26
+ rake (10.5.0)
27
+ rspec (3.7.0)
28
+ rspec-core (~> 3.7.0)
29
+ rspec-expectations (~> 3.7.0)
30
+ rspec-mocks (~> 3.7.0)
31
+ rspec-core (3.7.1)
32
+ rspec-support (~> 3.7.0)
33
+ rspec-expectations (3.7.0)
34
+ diff-lcs (>= 1.2.0, < 2.0)
35
+ rspec-support (~> 3.7.0)
36
+ rspec-mocks (3.7.0)
37
+ diff-lcs (>= 1.2.0, < 2.0)
38
+ rspec-support (~> 3.7.0)
39
+ rspec-support (3.7.1)
40
+ terminal-table (1.8.0)
41
+ unicode-display_width (~> 1.1, >= 1.1.1)
42
+ thor (0.20.0)
43
+ thread_safe (0.3.6)
44
+ tzinfo (1.2.5)
45
+ thread_safe (~> 0.1)
46
+ unicode-display_width (1.3.2)
47
+
48
+ PLATFORMS
49
+ ruby
50
+
51
+ DEPENDENCIES
52
+ bundler (~> 1.16)
53
+ github_reactions!
54
+ rake (~> 10.0)
55
+ rspec (~> 3.0)
56
+
57
+ BUNDLED WITH
58
+ 1.16.1
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 ohbarye
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,38 @@
1
+ # GitHub Reactions
2
+
3
+ A simple command line tool to show numbers of reactions on GitHub issues and pull requests.
4
+
5
+ ## Usage
6
+
7
+ ```shell
8
+ $ gem install github_reactions
9
+
10
+ $ ACCESS_TOKEN=your-github-access-token github_reactions get github/graphql-client
11
+ # Alternatively, `ghr` is totally the same as `github_reactions` command
12
+ ```
13
+
14
+ The command results below:
15
+
16
+ ```shell
17
+ Fetched 100 / 145... 👍
18
+ Fetched 145 / 145... ❤
19
+ +-----------------------+-----------------------+
20
+ | github/graphql-client has 55 reactions so far |
21
+ +-----------------------+-----------------------+
22
+ | Emoji | Count |
23
+ +-----------------------+-----------------------+
24
+ | HEART | 21 |
25
+ | HOORAY | 7 |
26
+ | THUMBS_UP | 26 |
27
+ | THUMBS_DOWN | 1 |
28
+ +-----------------------+-----------------------+
29
+ ```
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ohbarye/github_reactions. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
34
+
35
+ ## License
36
+
37
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
38
+
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "github_reactions"
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(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/exe/ghr ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ require 'github_reactions'
3
+ require 'github_reactions/cli'
4
+
5
+ GithubReactions::CLI.start(ARGV)
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+ require 'github_reactions'
3
+ require 'github_reactions/cli'
4
+
5
+ GithubReactions::CLI.start(ARGV)
@@ -0,0 +1,31 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "github_reactions/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "github_reactions"
8
+ spec.version = GithubReactions::VERSION
9
+ spec.authors = ["ohbarye"]
10
+ spec.email = ["over.rye@gmail.com"]
11
+
12
+ spec.summary = "Simple CLI to summary GitHub reactions in a repository"
13
+ spec.description = "A simple command line tool to show numbers of reactions on GitHub issues and pull requests."
14
+ spec.homepage = "https://github.com/ohbarye/github_reactions"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
18
+ f.match(%r{^(test|spec|features)/})
19
+ end
20
+ spec.bindir = "exe"
21
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
+ spec.require_paths = ["lib"]
23
+
24
+ spec.add_dependency "thor"
25
+ spec.add_dependency "graphql-client"
26
+ spec.add_dependency "terminal-table"
27
+
28
+ spec.add_development_dependency "bundler", "~> 1.16"
29
+ spec.add_development_dependency "rake", "~> 10.0"
30
+ spec.add_development_dependency "rspec", "~> 3.0"
31
+ end
@@ -0,0 +1,4 @@
1
+ require "github_reactions/version"
2
+
3
+ module GithubReactions
4
+ end
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'thor'
4
+ require 'github_reactions/visualizer'
5
+ require 'github_reactions/query_executor'
6
+
7
+ module GithubReactions
8
+ class CLI < Thor
9
+ class_option :help, type: :boolean, aliases: '-h', desc: 'Show help message.'
10
+ class_option :version, type: :boolean, aliases: '-v', desc: 'Show current version'
11
+
12
+ desc "get", "Get reactions in a specified repository"
13
+ def get(repository_name)
14
+ Visualizer.visualize(
15
+ repository_name,
16
+ QueryExecutor.get(repository_name)
17
+ )
18
+ end
19
+
20
+ desc "version", "Show current version"
21
+ def version
22
+ puts GithubReactions::VERSION
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,62 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "graphql/client"
4
+ require "graphql/client/http"
5
+
6
+ module GithubReactions
7
+ module GraphQL
8
+ module Client
9
+ HTTP = ::GraphQL::Client::HTTP.new('https://api.github.com/graphql') do
10
+ def headers(context)
11
+ {
12
+ "Authorization" => "Bearer #{ENV['ACCESS_TOKEN']}"
13
+ }
14
+ end
15
+ end
16
+
17
+ Schema = ::GraphQL::Client.load_schema(HTTP)
18
+
19
+ Client = ::GraphQL::Client.new(schema: Schema, execute: HTTP)
20
+
21
+ ReactionQuery = Client.parse <<-'GRAPHQL'
22
+ query($q: String!, $after: String, $batch_size: Int) {
23
+ search(first: $batch_size, query: $q, type: ISSUE, after: $after) {
24
+ issueCount,
25
+ pageInfo {
26
+ endCursor,
27
+ hasNextPage,
28
+ },
29
+ nodes {
30
+ ... on Issue {
31
+ reactionGroups {
32
+ content,
33
+ users {
34
+ totalCount
35
+ }
36
+ }
37
+ },
38
+ ... on PullRequest {
39
+ reactionGroups {
40
+ content,
41
+ users {
42
+ totalCount
43
+ }
44
+ }
45
+ }
46
+ }
47
+ }
48
+ }
49
+ GRAPHQL
50
+
51
+ BATCH_SIZE = 100
52
+
53
+ DEFAULT_VARIABLES = {
54
+ batch_size: BATCH_SIZE
55
+ }.freeze
56
+
57
+ def self.query(query, variables)
58
+ Client.query(query, variables: DEFAULT_VARIABLES.merge(variables))
59
+ end
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'terminal-table'
4
+ require 'github_reactions/visualizer'
5
+ require 'github_reactions/graphql/client'
6
+
7
+ module GithubReactions
8
+ class QueryExecutor
9
+ class << self
10
+ def get(repository_name)
11
+ reaction_groups = []
12
+
13
+ after = nil
14
+
15
+ 0.step do |i|
16
+ result = GraphQL::Client.query(
17
+ GraphQL::Client::ReactionQuery,
18
+ {
19
+ q: "repo:#{repository_name}",
20
+ after: after,
21
+ })
22
+
23
+ puts "Fetched #{GraphQL::Client::BATCH_SIZE * i + result.data.search.nodes.size} / #{result.data.search.issue_count}... #{Visualizer::EMOJI_UNICORD_MAP.values.sample}"
24
+
25
+ result.data.search.nodes.each do |node|
26
+ reaction_groups << node.reaction_groups
27
+ end
28
+
29
+ if result.data.search.page_info.has_next_page
30
+ after = result.data.search.page_info.end_cursor
31
+ else
32
+ break
33
+ end
34
+ end
35
+
36
+ reaction_groups
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,3 @@
1
+ module GithubReactions
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "terminal-table"
4
+
5
+ module GithubReactions
6
+ class Visualizer
7
+ attr_reader :repository_name, :reaction_groups
8
+
9
+ EMOJI_UNICORD_MAP = {
10
+ "THUMBS_UP" => "\u{1F44D}",
11
+ "THUMBS_DOWN" => "\u{1F44E}",
12
+ "LAUGH" => "\u{1F604}",
13
+ "HOORAY" => "\u{1F389}",
14
+ "CONFUSED" => "\u{1F615}",
15
+ "HEART" => "\u{2764}",
16
+ }.freeze
17
+
18
+ class << self
19
+ def visualize(repository_name, reaction_groups)
20
+ new(repository_name, reaction_groups).visualize
21
+ end
22
+ end
23
+
24
+ def initialize(repository_name, reaction_groups)
25
+ @repository_name = repository_name
26
+ @reaction_groups = reaction_groups
27
+ end
28
+
29
+ def visualize
30
+ title = "#{repository_name} has #{count_grouped_by_reaction.values.reduce(:+)} reactions so far"
31
+
32
+ table = Terminal::Table.new(
33
+ title: title,
34
+ headings: ['Emoji', 'Count'],
35
+ rows: count_grouped_by_reaction.map(&:to_a),
36
+ )
37
+
38
+ table.align_column(1, :right)
39
+
40
+ puts table
41
+ end
42
+
43
+ private
44
+
45
+ def count_grouped_by_reaction
46
+ @_count_grouped_by_reaction ||= reaction_groups.reduce(Hash.new(0)) do |memo, reaction_group|
47
+ reaction_group.each do |reaction|
48
+ next if reaction.users.total_count.zero?
49
+ memo[reaction.content] += reaction.users.total_count
50
+ end
51
+ memo
52
+ end
53
+ end
54
+ end
55
+ end
metadata ADDED
@@ -0,0 +1,151 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: github_reactions
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ohbarye
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-04-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
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: graphql-client
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: terminal-table
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: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.16'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.16'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rspec
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '3.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '3.0'
97
+ description: A simple command line tool to show numbers of reactions on GitHub issues
98
+ and pull requests.
99
+ email:
100
+ - over.rye@gmail.com
101
+ executables:
102
+ - ghr
103
+ - github_reactions
104
+ extensions: []
105
+ extra_rdoc_files: []
106
+ files:
107
+ - ".gitignore"
108
+ - ".rspec"
109
+ - ".travis.yml"
110
+ - CODE_OF_CONDUCT.md
111
+ - Gemfile
112
+ - Gemfile.lock
113
+ - LICENSE.txt
114
+ - README.md
115
+ - Rakefile
116
+ - bin/console
117
+ - bin/setup
118
+ - exe/ghr
119
+ - exe/github_reactions
120
+ - github_reactions.gemspec
121
+ - lib/github_reactions.rb
122
+ - lib/github_reactions/cli.rb
123
+ - lib/github_reactions/graphql/client.rb
124
+ - lib/github_reactions/query_executor.rb
125
+ - lib/github_reactions/version.rb
126
+ - lib/github_reactions/visualizer.rb
127
+ homepage: https://github.com/ohbarye/github_reactions
128
+ licenses:
129
+ - MIT
130
+ metadata: {}
131
+ post_install_message:
132
+ rdoc_options: []
133
+ require_paths:
134
+ - lib
135
+ required_ruby_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ required_rubygems_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ requirements: []
146
+ rubyforge_project:
147
+ rubygems_version: 2.6.13
148
+ signing_key:
149
+ specification_version: 4
150
+ summary: Simple CLI to summary GitHub reactions in a repository
151
+ test_files: []