typocop 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +0 -0
- data/LICENSE +21 -0
- data/README.md +36 -0
- data/bin/typocop +3 -0
- data/lib/typocop/cli.rb +11 -0
- data/lib/typocop/client.rb +193 -0
- data/lib/typocop/comment.rb +13 -0
- data/lib/typocop/cop.rb +19 -0
- data/lib/typocop/cops.rb +11 -0
- data/lib/typocop/patch.rb +11 -0
- data/lib/typocop/repo.rb +49 -0
- data/lib/typocop.rb +60 -0
- metadata +87 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 73d0256f21e87ac1bba922c625fcf8e4a8414a92cac575fb0e8d37d2a88e2c7c
|
4
|
+
data.tar.gz: b99668b71119931d91308efd71654921cbafa341af1193d3e00e2ee1599c93cd
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bbab9f5f5bb23893e1b3b7dfae39919b149a8d4455c803cfc379c44c82d1ad014c4e0e7dc2ae2b532d4ebe79c9f7e5787af12b8bfda8c4795a9bfdad9ab0cf65
|
7
|
+
data.tar.gz: a5812be1b939d0fa9ac9345a230511cbcc9a438e8ccfe8950c57821f2d4e5b115f61778c1a1d3bd6515447f5c8e432d71e75f9bdf8540450ecf8d4db1e1d19b2
|
data/CHANGELOG.md
ADDED
File without changes
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) [2022] [datpmt]
|
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 all
|
13
|
+
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 THE
|
21
|
+
SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
# Check Typos in Pull Request
|
2
|
+
|
3
|
+

|
4
|
+
|
5
|
+
This GitHub Action automatically checks for typos in the files changed in a pull request. It comments on the pull request with any detected typos and provides suggestions for corrections.
|
6
|
+
|
7
|
+
## Features
|
8
|
+
|
9
|
+
- Detects typos in files that are part of the pull request.
|
10
|
+
- Provides a brief output of typos found in each file.
|
11
|
+
- Comments on the pull request with the results.
|
12
|
+
- Supports all programing languages.
|
13
|
+
|
14
|
+
## Usage
|
15
|
+
|
16
|
+
- Copy content `.github/workflows/typos-check.yml` and `typos-check.js` into your project.
|
17
|
+
- Create new PR.
|
18
|
+
|
19
|
+
## Contributors
|
20
|
+
|
21
|
+
- [datpmt](https://github.com/datpmt)
|
22
|
+
|
23
|
+
I welcome contributions to this project.
|
24
|
+
|
25
|
+
1. Fork it.
|
26
|
+
2. Create your feature branch (`git checkout -b your-feature`).
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`).
|
28
|
+
4. Push to the branch (`git push origin your-feature`).
|
29
|
+
5. Create a new pull request.
|
30
|
+
|
31
|
+
## References
|
32
|
+
1. https://github.com/crate-ci/typos
|
33
|
+
2. https://github.com/prontolabs/pronto
|
34
|
+
|
35
|
+
## License
|
36
|
+
The gem is available as open source under the terms of the [MIT License](LICENSE).
|
data/bin/typocop
ADDED
data/lib/typocop/cli.rb
ADDED
@@ -0,0 +1,193 @@
|
|
1
|
+
module Typocop
|
2
|
+
class Client
|
3
|
+
attr_reader :pull_comments, :repo
|
4
|
+
|
5
|
+
def initialize(repo)
|
6
|
+
@client = Octokit::Client.new(
|
7
|
+
api_endpoint: 'https://api.github.com/',
|
8
|
+
web_endpoint: 'https://github.com/',
|
9
|
+
access_token: GITHUB_TOKEN,
|
10
|
+
auto_paginate: true
|
11
|
+
)
|
12
|
+
@repo = repo
|
13
|
+
@repo_name = @repo.name
|
14
|
+
|
15
|
+
pull_comments = @client.pull_request_comments(@repo_name, PULL_ID)
|
16
|
+
@pull_comments = pull_comments.map do |comment|
|
17
|
+
Comment.new(comment.id, comment.path, comment.line, comment.body, comment.user.login)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def execute(cops)
|
22
|
+
current_cops = current_cops(cops)
|
23
|
+
if current_cops.empty?
|
24
|
+
delete_all_comments
|
25
|
+
accept_pull_request
|
26
|
+
else
|
27
|
+
dismiss_accept_pull_request
|
28
|
+
delete_comments(current_cops)
|
29
|
+
create_comments(current_cops)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def pull_request
|
36
|
+
@pull_request ||= @client.pull_request(@repo_name, PULL_ID)
|
37
|
+
end
|
38
|
+
|
39
|
+
def commit_id
|
40
|
+
@commit_id ||= pull_request.head.sha
|
41
|
+
end
|
42
|
+
|
43
|
+
def current_cops(cops)
|
44
|
+
result_cops = []
|
45
|
+
common_paths = common_paths(cops)
|
46
|
+
common_paths.each do |path|
|
47
|
+
patch_by_path = patch_by_path(path)
|
48
|
+
cops_by_path = cops_by_path(cops, path)
|
49
|
+
cops_lines = patch_by_path.added_lines.map(&:new_lineno) & cops_by_path.map(&:line)
|
50
|
+
next if cops_lines.empty?
|
51
|
+
|
52
|
+
result_cops.concat(cops_by_path.select { |cop| cops_lines.include?(cop.line) })
|
53
|
+
end
|
54
|
+
|
55
|
+
result_cops
|
56
|
+
end
|
57
|
+
|
58
|
+
def common_paths(cops)
|
59
|
+
@repo.patch_additions.map(&:path) & cops.map(&:path)
|
60
|
+
end
|
61
|
+
|
62
|
+
def patch_by_path(path)
|
63
|
+
@repo.patch_additions.find { |patch| patch.path == path }
|
64
|
+
end
|
65
|
+
|
66
|
+
def cops_by_path(cops, path)
|
67
|
+
cops.select { |cop| cop.path == path }
|
68
|
+
end
|
69
|
+
|
70
|
+
def create_comments(cops)
|
71
|
+
cops.each do |cop|
|
72
|
+
next if exist_comment?(cop)
|
73
|
+
|
74
|
+
line_content = line_content(cop)
|
75
|
+
suggestion_content = suggestion_content(line_content, cop.typos)
|
76
|
+
|
77
|
+
body = <<~BODY
|
78
|
+
```suggestion
|
79
|
+
#{suggestion_content}```
|
80
|
+
#{suggestion_comment(cop.typos)}
|
81
|
+
BODY
|
82
|
+
|
83
|
+
create_comment(body, cop.path, cop.line)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
def suggestion_content(content, typos)
|
88
|
+
typos.each do |typo|
|
89
|
+
content.gsub!(typo[:incorrect_word], typo[:correct_word])
|
90
|
+
end
|
91
|
+
content
|
92
|
+
end
|
93
|
+
|
94
|
+
def suggestion_comment(typos)
|
95
|
+
comment = typos.map do |typo|
|
96
|
+
"`#{typo[:incorrect_word]}` with `#{typo[:correct_word]}`"
|
97
|
+
end
|
98
|
+
"Should replace #{comment.join(', ')}."
|
99
|
+
end
|
100
|
+
|
101
|
+
def line_content(cop)
|
102
|
+
patch = @repo.patch_additions.find { |patch| patch.path == cop.path }
|
103
|
+
patch.added_lines.find { |line| line.new_lineno == cop.line }.content
|
104
|
+
end
|
105
|
+
|
106
|
+
def create_comment(body, path, line)
|
107
|
+
@client.create_pull_request_comment(
|
108
|
+
@repo_name,
|
109
|
+
PULL_ID,
|
110
|
+
body,
|
111
|
+
commit_id,
|
112
|
+
path,
|
113
|
+
line,
|
114
|
+
side: 'RIGHT'
|
115
|
+
)
|
116
|
+
puts "create comment: #{path}:#{line}"
|
117
|
+
end
|
118
|
+
|
119
|
+
def exist_comment?(cop)
|
120
|
+
own_comments.any? do |comment|
|
121
|
+
comment.path == cop.path &&
|
122
|
+
comment.line == cop.line &&
|
123
|
+
!(comment.body.split('`') & cop.incorrect_words).empty?
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
def user_login
|
128
|
+
@user_login ||= begin
|
129
|
+
@client.user.login
|
130
|
+
rescue Octokit::Forbidden
|
131
|
+
'github-actions[bot]'
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
def own_comments
|
136
|
+
@own_comments ||= @pull_comments.select { |comment| comment.user_login == user_login }
|
137
|
+
end
|
138
|
+
|
139
|
+
def delete_comments(cops)
|
140
|
+
own_comments.each do |comment|
|
141
|
+
delete_comment(comment) if should_delete?(comment, cops)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
def should_delete?(comment, cops)
|
146
|
+
cops.none? do |cop|
|
147
|
+
cop.path == comment.path &&
|
148
|
+
cop.line == comment.line &&
|
149
|
+
!(cop.incorrect_words & comment.body.split('`')).empty?
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
def delete_comment(comment)
|
154
|
+
@client.delete_pull_comment(@repo_name, comment.id)
|
155
|
+
puts "delete comment: #{comment.path}:#{comment.line}"
|
156
|
+
end
|
157
|
+
|
158
|
+
def delete_all_comments
|
159
|
+
own_comments.each do |comment|
|
160
|
+
delete_comment(comment)
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
def accept_pull_request
|
165
|
+
@client.create_pull_request_review(
|
166
|
+
@repo_name,
|
167
|
+
PULL_ID,
|
168
|
+
event: 'APPROVE'
|
169
|
+
)
|
170
|
+
rescue Octokit::UnprocessableEntity => e
|
171
|
+
puts e
|
172
|
+
end
|
173
|
+
|
174
|
+
def pull_request_reviews
|
175
|
+
@pull_request_reviews ||= @client.pull_request_reviews(@repo_name, PULL_ID)
|
176
|
+
end
|
177
|
+
|
178
|
+
def own_pull_request_review
|
179
|
+
@own_pull_request_review ||= pull_request_reviews.find do |review|
|
180
|
+
review.state == 'APPROVED' &&
|
181
|
+
review.user.login == user_login
|
182
|
+
end
|
183
|
+
end
|
184
|
+
|
185
|
+
def dismiss_accept_pull_request
|
186
|
+
return unless own_pull_request_review
|
187
|
+
|
188
|
+
review_id = own_pull_request_review.id
|
189
|
+
message = 'Found new typos.'
|
190
|
+
@client.dismiss_pull_request_review(@repo_name, PULL_ID, review_id, message)
|
191
|
+
end
|
192
|
+
end
|
193
|
+
end
|
data/lib/typocop/cop.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
module Typocop
|
2
|
+
class Cop
|
3
|
+
attr_reader :path, :line, :typos
|
4
|
+
|
5
|
+
def initialize(path, line, typos)
|
6
|
+
@path = path
|
7
|
+
@line = line
|
8
|
+
@typos = typos
|
9
|
+
end
|
10
|
+
|
11
|
+
def incorrect_words
|
12
|
+
@typos.map { |typo| typo[:incorrect_word] }
|
13
|
+
end
|
14
|
+
|
15
|
+
def correct_words
|
16
|
+
@typos.map { |typo| typo[:correct_word] }
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/lib/typocop/cops.rb
ADDED
data/lib/typocop/repo.rb
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
module Typocop
|
2
|
+
class Repo
|
3
|
+
attr_reader :patch_additions
|
4
|
+
|
5
|
+
def initialize(path = '.')
|
6
|
+
@repo = Rugged::Repository.new(path)
|
7
|
+
patch_additions = diff.select { |patch| patch.additions.positive? }
|
8
|
+
@patch_additions = patch_additions.map do |patch|
|
9
|
+
path = patch.delta.new_file[:path]
|
10
|
+
lines = patch.hunks.flat_map(&:lines)
|
11
|
+
added_lines = lines.select(&:addition?)
|
12
|
+
Patch.new(path, lines, added_lines)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
def name
|
17
|
+
match = %r{(?:https?://)?(?:www\.)?github\.com[/:](?<repo_name>.*?)(?:\.git)?\z}.match(remote_url)
|
18
|
+
match[:repo_name]
|
19
|
+
end
|
20
|
+
|
21
|
+
def remote_url
|
22
|
+
@repo.remotes.first.url
|
23
|
+
end
|
24
|
+
|
25
|
+
def head
|
26
|
+
@repo.head
|
27
|
+
end
|
28
|
+
|
29
|
+
def head_target
|
30
|
+
head.target
|
31
|
+
end
|
32
|
+
|
33
|
+
def merge_base
|
34
|
+
@repo.merge_base(BASE_BRANCH, head_target)
|
35
|
+
end
|
36
|
+
|
37
|
+
def diff
|
38
|
+
@repo.diff(merge_base, head_target)
|
39
|
+
end
|
40
|
+
|
41
|
+
def target_id
|
42
|
+
head.target_id
|
43
|
+
end
|
44
|
+
|
45
|
+
def target_oid
|
46
|
+
head_target.oid
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
data/lib/typocop.rb
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
require 'rugged'
|
2
|
+
# require 'pry'
|
3
|
+
require 'octokit'
|
4
|
+
|
5
|
+
require 'typocop/cli'
|
6
|
+
require 'typocop/client'
|
7
|
+
require 'typocop/comment'
|
8
|
+
require 'typocop/cop'
|
9
|
+
require 'typocop/cops'
|
10
|
+
require 'typocop/patch'
|
11
|
+
require 'typocop/repo'
|
12
|
+
|
13
|
+
GITHUB_TOKEN = ENV['GITHUB_TOKEN'] || ''
|
14
|
+
PULL_ID = ENV['PULL_REQUEST_ID']
|
15
|
+
GITHUB_BASE_REF = ENV['GITHUB_BASE_REF'] || 'main'
|
16
|
+
BASE_BRANCH = GITHUB_BASE_REF.start_with?('origin/') ? GITHUB_BASE_REF : "origin/#{GITHUB_BASE_REF}"
|
17
|
+
|
18
|
+
module Typocop
|
19
|
+
def self.execute
|
20
|
+
typo_outputs = `typos --format brief`
|
21
|
+
typo_outputs = typo_outputs.split("\n")
|
22
|
+
|
23
|
+
if typo_outputs.empty?
|
24
|
+
puts 'No typo output.'
|
25
|
+
else
|
26
|
+
result = typo_outputs.each_with_object({}) do |output, hash|
|
27
|
+
path, line, _column, typo_detail = output.split(':')
|
28
|
+
typo_match = /`(.*?)` -> `(.*?)`/.match(typo_detail)
|
29
|
+
incorrect_word, correct_word = typo_match ? typo_match.captures : []
|
30
|
+
|
31
|
+
path = path.start_with?('./') ? path[2..] : path
|
32
|
+
line = line.to_i
|
33
|
+
|
34
|
+
hash[path] ||= {}
|
35
|
+
|
36
|
+
hash[path][:typos] ||= []
|
37
|
+
|
38
|
+
existing_entry = hash[path][:typos].find { |typo| typo[:line] == line }
|
39
|
+
|
40
|
+
if existing_entry
|
41
|
+
existing_entry[:typos] << { incorrect_word: incorrect_word, correct_word: correct_word }
|
42
|
+
else
|
43
|
+
hash[path][:typos] << { line: line, typos: [{ incorrect_word: incorrect_word, correct_word: correct_word }] }
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
result = result.map do |path, data|
|
48
|
+
data[:typos].map do |entry|
|
49
|
+
{ path: path, line: entry[:line], typos: entry[:typos] }
|
50
|
+
end
|
51
|
+
end.flatten
|
52
|
+
|
53
|
+
cops = Cops.new(result)
|
54
|
+
cops_data = cops.cops
|
55
|
+
repo = Repo.new
|
56
|
+
client = Client.new(repo)
|
57
|
+
client.execute(cops_data)
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: typocop
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- datpmt
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: octokit
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 9.2.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 9.2.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: thor
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.3.2
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.3.2
|
41
|
+
description: Typocop integrates with GitHub Actions to automatically comment on pull
|
42
|
+
requests when typos are detected or when a PR is approved, based on [Crate CI's
|
43
|
+
Typos](https://github.com/crate-ci/typos).
|
44
|
+
email: datpmt.2k@gmail.com
|
45
|
+
executables:
|
46
|
+
- typocop
|
47
|
+
extensions: []
|
48
|
+
extra_rdoc_files: []
|
49
|
+
files:
|
50
|
+
- CHANGELOG.md
|
51
|
+
- LICENSE
|
52
|
+
- README.md
|
53
|
+
- bin/typocop
|
54
|
+
- lib/typocop.rb
|
55
|
+
- lib/typocop/cli.rb
|
56
|
+
- lib/typocop/client.rb
|
57
|
+
- lib/typocop/comment.rb
|
58
|
+
- lib/typocop/cop.rb
|
59
|
+
- lib/typocop/cops.rb
|
60
|
+
- lib/typocop/patch.rb
|
61
|
+
- lib/typocop/repo.rb
|
62
|
+
homepage: https://rubygems.org/gems/typocop
|
63
|
+
licenses:
|
64
|
+
- MIT
|
65
|
+
metadata:
|
66
|
+
source_code_uri: https://github.com/datpmt/typocop
|
67
|
+
changelog_uri: https://github.com/datpmt/typocop/blob/main/CHANGELOG.md
|
68
|
+
post_install_message:
|
69
|
+
rdoc_options: []
|
70
|
+
require_paths:
|
71
|
+
- lib
|
72
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0'
|
82
|
+
requirements: []
|
83
|
+
rubygems_version: 3.2.15
|
84
|
+
signing_key:
|
85
|
+
specification_version: 4
|
86
|
+
summary: Comment on PRs with typos or approvals
|
87
|
+
test_files: []
|