octokit 4.2.0 → 9.2.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 +5 -5
- data/CONTRIBUTING.md +14 -13
- data/LICENSE.md +1 -1
- data/README.md +275 -127
- data/Rakefile +20 -14
- data/lib/ext/sawyer/relation.rb +12 -0
- data/lib/octokit/arguments.rb +3 -3
- data/lib/octokit/authentication.rb +20 -14
- data/lib/octokit/client/actions_artifacts.rb +71 -0
- data/lib/octokit/client/actions_secrets.rb +161 -0
- data/lib/octokit/client/actions_workflow_jobs.rb +65 -0
- data/lib/octokit/client/actions_workflow_runs.rb +125 -0
- data/lib/octokit/client/actions_workflows.rb +68 -0
- data/lib/octokit/client/apps.rb +259 -0
- data/lib/octokit/client/checks.rb +200 -0
- data/lib/octokit/client/code_scanning.rb +190 -0
- data/lib/octokit/client/codespaces_secrets.rb +108 -0
- data/lib/octokit/client/commit_branches.rb +20 -0
- data/lib/octokit/client/commit_comments.rb +8 -8
- data/lib/octokit/client/commit_pulls.rb +20 -0
- data/lib/octokit/client/commits.rb +32 -35
- data/lib/octokit/client/community_profile.rb +21 -0
- data/lib/octokit/client/contents.rb +24 -21
- data/lib/octokit/client/dependabot_secrets.rb +108 -0
- data/lib/octokit/client/deployments.rb +29 -7
- data/lib/octokit/client/downloads.rb +5 -6
- data/lib/octokit/client/emojis.rb +3 -3
- data/lib/octokit/client/environments.rb +58 -0
- data/lib/octokit/client/events.rb +4 -4
- data/lib/octokit/client/feeds.rb +4 -5
- data/lib/octokit/client/gists.rb +36 -8
- data/lib/octokit/client/gitignore.rb +3 -3
- data/lib/octokit/client/hooks.rb +34 -30
- data/lib/octokit/client/issues.rb +97 -14
- data/lib/octokit/client/labels.rb +17 -17
- data/lib/octokit/client/legacy_search.rb +3 -3
- data/lib/octokit/client/licenses.rb +5 -8
- data/lib/octokit/client/markdown.rb +3 -3
- data/lib/octokit/client/marketplace.rb +56 -0
- data/lib/octokit/client/meta.rb +4 -5
- data/lib/octokit/client/milestones.rb +14 -14
- data/lib/octokit/client/notifications.rb +7 -11
- data/lib/octokit/client/oauth_applications.rb +116 -0
- data/lib/octokit/client/objects.rb +14 -14
- data/lib/octokit/client/organizations.rb +256 -73
- data/lib/octokit/client/pages.rb +26 -3
- data/lib/octokit/client/projects.rb +294 -0
- data/lib/octokit/client/pull_requests.rb +74 -51
- data/lib/octokit/client/rate_limit.rb +11 -13
- data/lib/octokit/client/reactions.rb +204 -0
- data/lib/octokit/client/refs.rb +34 -20
- data/lib/octokit/client/releases.rb +16 -13
- data/lib/octokit/client/repositories.rb +276 -60
- data/lib/octokit/client/repository_invitations.rb +96 -0
- data/lib/octokit/client/reviews.rb +227 -0
- data/lib/octokit/client/say.rb +4 -5
- data/lib/octokit/client/search.rb +46 -17
- data/lib/octokit/client/service_status.rb +19 -9
- data/lib/octokit/client/source_import.rb +156 -0
- data/lib/octokit/client/stats.rb +39 -17
- data/lib/octokit/client/statuses.rb +6 -6
- data/lib/octokit/client/tokens.rb +31 -0
- data/lib/octokit/client/traffic.rb +64 -0
- data/lib/octokit/client/users.rb +133 -25
- data/lib/octokit/client.rb +85 -19
- data/lib/octokit/configurable.rb +60 -32
- data/lib/octokit/connection.rb +45 -21
- data/lib/octokit/default.rb +82 -35
- data/lib/octokit/enterprise_admin_client/admin_stats.rb +14 -15
- data/lib/octokit/enterprise_admin_client/license.rb +4 -5
- data/lib/octokit/enterprise_admin_client/orgs.rb +7 -6
- data/lib/octokit/enterprise_admin_client/search_indexing.rb +8 -9
- data/lib/octokit/enterprise_admin_client/users.rb +19 -18
- data/lib/octokit/enterprise_admin_client.rb +11 -3
- data/lib/octokit/enterprise_management_console_client/management_console.rb +52 -34
- data/lib/octokit/enterprise_management_console_client.rb +9 -3
- data/lib/octokit/error.rb +144 -26
- data/lib/octokit/gist.rb +4 -5
- data/lib/octokit/manage_ghes_client/manage_ghes.rb +178 -0
- data/lib/octokit/manage_ghes_client.rb +64 -0
- data/lib/octokit/middleware/follow_redirects.rb +18 -14
- data/lib/octokit/organization.rb +3 -1
- data/lib/octokit/rate_limit.rb +11 -9
- data/lib/octokit/repo_arguments.rb +3 -4
- data/lib/octokit/repository.rb +35 -23
- data/lib/octokit/response/base_middleware.rb +10 -0
- data/lib/octokit/response/feed_parser.rb +5 -9
- data/lib/octokit/response/raise_error.rb +4 -6
- data/lib/octokit/user.rb +4 -2
- data/lib/octokit/version.rb +3 -1
- data/lib/octokit/warnable.rb +4 -5
- data/lib/octokit.rb +30 -8
- data/octokit.gemspec +12 -10
- metadata +47 -24
- data/lib/octokit/client/authorizations.rb +0 -256
- data/lib/octokit/client/pub_sub_hubbub.rb +0 -111
- data/lib/octokit/preview.rb +0 -28
data/README.md
CHANGED
@@ -1,13 +1,60 @@
|
|
1
1
|
# Octokit
|
2
2
|
|
3
|
+
> **Note**
|
4
|
+
> We've recently renamed the `4-stable` branch to `main`. This might affect you if you're making changes to Octokit's code locally. For more details and for the steps to reconfigure your local clone for the new branch name, check out [this post](https://github.com/octokit/octokit.rb/discussions/1455).
|
5
|
+
|
3
6
|
Ruby toolkit for the GitHub API.
|
4
7
|
|
5
|
-
![
|
6
|
-
[logo]: http://cl.ly/image/3Y013H0A2z3z/gundam-ruby.png
|
8
|
+

|
7
9
|
|
8
10
|
Upgrading? Check the [Upgrade Guide](#upgrading-guide) before bumping to a new
|
9
11
|
[major version][semver].
|
10
12
|
|
13
|
+
## Table of Contents
|
14
|
+
|
15
|
+
1. [Philosophy](#philosophy)
|
16
|
+
2. [Installation](#installation)
|
17
|
+
3. [Making requests](#making-requests)
|
18
|
+
1. [Additional Query Parameters](#additional-query-parameters)
|
19
|
+
4. [Consuming resources](#consuming-resources)
|
20
|
+
5. [Accessing HTTP responses](#accessing-http-responses)
|
21
|
+
6. [Handling errors](#handling-errors)
|
22
|
+
7. [Authentication](#authentication)
|
23
|
+
1. [Basic Authentication](#basic-authentication)
|
24
|
+
2. [OAuth access tokens](#oauth-access-tokens)
|
25
|
+
3. [Two-Factor Authentication](#two-factor-authentication)
|
26
|
+
4. [Using a .netrc file](#using-a-netrc-file)
|
27
|
+
5. [Application authentication](#application-authentication)
|
28
|
+
6. [GitHub App](#github-app)
|
29
|
+
8. [Default results per_page](#default-results-per_page)
|
30
|
+
9. [Pagination](#pagination)
|
31
|
+
1. [Auto pagination](#auto-pagination)
|
32
|
+
10. [Working with GitHub Enterprise](#working-with-github-enterprise)
|
33
|
+
1. [Interacting with the GitHub.com APIs in GitHub Enterprise](#interacting-with-the-githubcom-apis-in-github-enterprise)
|
34
|
+
2. [Interacting with the GitHub Enterprise Admin APIs](#interacting-with-the-github-enterprise-admin-apis)
|
35
|
+
3. [Interacting with the GitHub Enterprise Management Console APIs](#interacting-with-the-github-enterprise-management-console-apis)
|
36
|
+
4. [SSL Connection Errors](#ssl-connection-errors)
|
37
|
+
11. [Configuration and defaults](#configuration-and-defaults)
|
38
|
+
1. [Configuring module defaults](#configuring-module-defaults)
|
39
|
+
2. [Using ENV variables](#using-env-variables)
|
40
|
+
3. [Timeouts](#timeouts)
|
41
|
+
12. [Hypermedia agent](#hypermedia-agent)
|
42
|
+
1. [Hypermedia in Octokit](#hypermedia-in-octokit)
|
43
|
+
2. [URI templates](#uri-templates)
|
44
|
+
3. [The Full Hypermedia Experience™](#the-full-hypermedia-experience)
|
45
|
+
13. [Upgrading guide](#upgrading-guide)
|
46
|
+
1. [Upgrading from 1.x.x](#upgrading-from-1xx)
|
47
|
+
14. [Advanced usage](#advanced-usage)
|
48
|
+
1. [Debugging](#debugging)
|
49
|
+
2. [Caching](#caching)
|
50
|
+
15. [Hacking on Octokit.rb](#hacking-on-octokitrb)
|
51
|
+
1. [Code of Conduct](#code-of-conduct)
|
52
|
+
2. [Running and writing new tests](#running-and-writing-new-tests)
|
53
|
+
16. [Supported Ruby Versions](#supported-ruby-versions)
|
54
|
+
17. [Versioning](#versioning)
|
55
|
+
18. [Making Repeating Requests](#making-repeating-requests)
|
56
|
+
19. [License](#license)
|
57
|
+
|
11
58
|
## Philosophy
|
12
59
|
|
13
60
|
API wrappers [should reflect the idioms of the language in which they were
|
@@ -17,15 +64,16 @@ Most methods have positional arguments for required input and an options hash
|
|
17
64
|
for optional parameters, headers, or other options:
|
18
65
|
|
19
66
|
```ruby
|
67
|
+
client = Octokit::Client.new
|
68
|
+
|
20
69
|
# Fetch a README with Accept header for HTML format
|
21
|
-
|
70
|
+
client.readme 'al3x/sovereign', :accept => 'application/vnd.github.html'
|
22
71
|
```
|
23
72
|
|
24
|
-
|
25
73
|
[wrappers]: http://wynnnetherland.com/journal/what-makes-a-good-api-wrapper
|
26
|
-
[github-api]:
|
74
|
+
[github-api]: https://developer.github.com/v3/
|
27
75
|
|
28
|
-
##
|
76
|
+
## Installation
|
29
77
|
|
30
78
|
Install via Rubygems
|
31
79
|
|
@@ -33,42 +81,53 @@ Install via Rubygems
|
|
33
81
|
|
34
82
|
... or add to your Gemfile
|
35
83
|
|
36
|
-
gem "octokit"
|
84
|
+
gem "octokit"
|
85
|
+
|
86
|
+
Access the library in Ruby:
|
87
|
+
|
88
|
+
require 'octokit'
|
37
89
|
|
38
|
-
|
90
|
+
## Making requests
|
39
91
|
|
40
|
-
[API methods][] are available as
|
41
|
-
configuration) or as client instance methods.
|
92
|
+
[API methods][] are available as client instance methods.
|
42
93
|
|
43
94
|
```ruby
|
44
95
|
# Provide authentication credentials
|
45
|
-
Octokit.
|
46
|
-
|
47
|
-
|
48
|
-
|
96
|
+
client = Octokit::Client.new(:access_token => 'personal_access_token')
|
97
|
+
|
98
|
+
# You can still use the username/password syntax by replacing the password value with your PAT.
|
99
|
+
# client = Octokit::Client.new(:login => 'defunkt', :password => 'personal_access_token')
|
49
100
|
|
50
101
|
# Fetch the current user
|
51
|
-
|
102
|
+
client.user
|
52
103
|
```
|
53
|
-
|
104
|
+
|
105
|
+
### Additional query parameters
|
106
|
+
|
107
|
+
When passing additional parameters to GET based request use the following syntax:
|
54
108
|
|
55
109
|
```ruby
|
56
|
-
#
|
57
|
-
|
58
|
-
|
59
|
-
|
110
|
+
# query: { parameter_name: 'value' }
|
111
|
+
# Example: Get repository listing by owner in ascending order
|
112
|
+
client.repos({}, query: {type: 'owner', sort: 'asc'})
|
113
|
+
|
114
|
+
# Example: Get contents of a repository by ref
|
115
|
+
# https://api.github.com/repos/octokit/octokit.rb/contents/path/to/file.rb?ref=some-other-branch
|
116
|
+
client.contents('octokit/octokit.rb', path: 'path/to/file.rb', query: {ref: 'some-other-branch'})
|
60
117
|
```
|
61
118
|
|
62
|
-
[
|
119
|
+
[api methods]: http://octokit.github.io/octokit.rb/method_list.html
|
63
120
|
|
64
|
-
|
121
|
+
## Consuming resources
|
65
122
|
|
66
123
|
Most methods return a `Resource` object which provides dot notation and `[]`
|
67
124
|
access for fields returned in the API response.
|
68
125
|
|
69
126
|
```ruby
|
127
|
+
client = Octokit::Client.new
|
128
|
+
|
70
129
|
# Fetch a user
|
71
|
-
user =
|
130
|
+
user = client.user 'jbarnette'
|
72
131
|
puts user.name
|
73
132
|
# => "John Barnette"
|
74
133
|
puts user.fields
|
@@ -82,18 +141,35 @@ user.rels[:gists].href
|
|
82
141
|
**Note:** URL fields are culled into a separate `.rels` collection for easier
|
83
142
|
[Hypermedia](#hypermedia-agent) support.
|
84
143
|
|
85
|
-
|
144
|
+
## Accessing HTTP responses
|
86
145
|
|
87
146
|
While most methods return a `Resource` object or a Boolean, sometimes you may
|
88
147
|
need access to the raw HTTP response headers. You can access the last HTTP
|
89
148
|
response with `Client#last_response`:
|
90
149
|
|
91
150
|
```ruby
|
92
|
-
user =
|
93
|
-
response =
|
151
|
+
user = client.user 'andrewpthorp'
|
152
|
+
response = client.last_response
|
94
153
|
etag = response.headers[:etag]
|
95
154
|
```
|
96
155
|
|
156
|
+
## Handling errors
|
157
|
+
|
158
|
+
When the API returns an error response, Octokit will raise a Ruby exception.
|
159
|
+
|
160
|
+
A range of different exceptions can be raised depending on the error returned
|
161
|
+
by the API - for example:
|
162
|
+
|
163
|
+
* A `400 Bad Request` response will lead to an `Octokit::BadRequest` error
|
164
|
+
* A `403 Forbidden` error with a "rate limited exceeded" message will lead
|
165
|
+
to a `Octokit::TooManyRequests` error
|
166
|
+
|
167
|
+
All of the different exception classes inherit from `Octokit::Error` and
|
168
|
+
expose the `#response_status`, `#response_headers` and `#response_body`.
|
169
|
+
For validation errors, `#errors` will return an `Array` of `Hash`es
|
170
|
+
with the detailed information
|
171
|
+
[returned by the API](https://docs.github.com/en/rest/overview/resources-in-the-rest-api#client-errors).
|
172
|
+
|
97
173
|
## Authentication
|
98
174
|
|
99
175
|
Octokit supports the various [authentication methods supported by the GitHub
|
@@ -105,14 +181,13 @@ Using your GitHub username and password is the easiest way to get started
|
|
105
181
|
making authenticated requests:
|
106
182
|
|
107
183
|
```ruby
|
108
|
-
client = Octokit::Client.new
|
109
|
-
:login => 'defunkt',
|
110
|
-
:password => 'c0d3b4ssssss!'
|
184
|
+
client = Octokit::Client.new(:login => 'defunkt', :password => 'c0d3b4ssssss!')
|
111
185
|
|
112
186
|
user = client.user
|
113
187
|
user.login
|
114
188
|
# => "defunkt"
|
115
189
|
```
|
190
|
+
|
116
191
|
While Basic Authentication allows you to get started quickly, OAuth access
|
117
192
|
tokens are the preferred way to authenticate on behalf of users.
|
118
193
|
|
@@ -121,9 +196,9 @@ tokens are the preferred way to authenticate on behalf of users.
|
|
121
196
|
[OAuth access tokens][oauth] provide two main benefits over using your username
|
122
197
|
and password:
|
123
198
|
|
124
|
-
|
199
|
+
- **Revocable access**. Access tokens can be revoked, removing access for only
|
125
200
|
that token without having to change your password everywhere.
|
126
|
-
|
201
|
+
- **Limited access**. Access tokens have [access scopes][] which allow for more
|
127
202
|
granular access to API resources. For instance, you can grant a third party
|
128
203
|
access to your gists but not your private repositories.
|
129
204
|
|
@@ -138,17 +213,7 @@ user.login
|
|
138
213
|
# => "defunkt"
|
139
214
|
```
|
140
215
|
|
141
|
-
You can [create access tokens through your GitHub Account Settings](https://help.github.com/articles/creating-an-access-token-for-command-line-use)
|
142
|
-
or with a basic authenticated Octokit client:
|
143
|
-
|
144
|
-
```ruby
|
145
|
-
client = Octokit::Client.new \
|
146
|
-
:login => 'defunkt',
|
147
|
-
:password => 'c0d3b4ssssss!'
|
148
|
-
|
149
|
-
client.create_authorization(:scopes => ["user"], :note => "Name of token")
|
150
|
-
# => <your new oauth token>
|
151
|
-
```
|
216
|
+
You can [create access tokens through your GitHub Account Settings](https://help.github.com/articles/creating-an-access-token-for-command-line-use).
|
152
217
|
|
153
218
|
### Two-Factor Authentication
|
154
219
|
|
@@ -164,28 +229,17 @@ client = Octokit::Client.new \
|
|
164
229
|
user = client.user("defunkt", :headers => { "X-GitHub-OTP" => "<your 2FA token>" })
|
165
230
|
```
|
166
231
|
|
167
|
-
As you can imagine, this gets annoying quick since two-factor auth tokens are very short lived. So it is recommended to create an oauth token for the user to communicate with the API:
|
168
|
-
|
169
|
-
```ruby
|
170
|
-
client = Octokit::Client.new \
|
171
|
-
:login => 'defunkt',
|
172
|
-
:password => 'c0d3b4ssssss!'
|
173
|
-
|
174
|
-
client.create_authorization(:scopes => ["user"], :note => "Name of token",
|
175
|
-
:headers => { "X-GitHub-OTP" => "<your 2FA token>" })
|
176
|
-
# => <your new oauth token>
|
177
|
-
```
|
178
|
-
|
179
232
|
### Using a .netrc file
|
180
233
|
|
181
234
|
Octokit supports reading credentials from a netrc file (defaulting to
|
182
|
-
`~/.netrc`).
|
235
|
+
`~/.netrc`). Given these lines in your netrc:
|
183
236
|
|
184
237
|
```
|
185
238
|
machine api.github.com
|
186
239
|
login defunkt
|
187
240
|
password c0d3b4ssssss!
|
188
241
|
```
|
242
|
+
|
189
243
|
You can now create a client with those credentials:
|
190
244
|
|
191
245
|
```ruby
|
@@ -193,6 +247,7 @@ client = Octokit::Client.new(:netrc => true)
|
|
193
247
|
client.login
|
194
248
|
# => "defunkt"
|
195
249
|
```
|
250
|
+
|
196
251
|
But _I want to use OAuth_ you say. Since the GitHub API supports using an OAuth
|
197
252
|
token as a Basic password, you totally can:
|
198
253
|
|
@@ -225,6 +280,23 @@ user = client.user 'defunkt'
|
|
225
280
|
[access scopes]: http://developer.github.com/v3/oauth/#scopes
|
226
281
|
[app-creds]: http://developer.github.com/v3/#increasing-the-unauthenticated-rate-limit-for-oauth-applications
|
227
282
|
|
283
|
+
### GitHub App
|
284
|
+
Octokit.rb also supports authentication [using a GitHub App](https://docs.github.com/en/developers/apps/managing-github-apps/installing-github-apps), which [requires a generated JWT token](https://docs.github.com/en/developers/apps/building-github-apps/authenticating-with-github-apps#authenticating-as-a-github-app).
|
285
|
+
|
286
|
+
```ruby
|
287
|
+
client = Octokit::Client.new(:bearer_token => "<your jwt token>")
|
288
|
+
client.app
|
289
|
+
# => about GitHub App info
|
290
|
+
```
|
291
|
+
|
292
|
+
## Default results per_page
|
293
|
+
|
294
|
+
Default results from the GitHub API are 30, if you wish to add more you must do so during Octokit configuration.
|
295
|
+
|
296
|
+
```ruby
|
297
|
+
Octokit::Client.new(access_token: "<your 40 char token>", per_page: 100)
|
298
|
+
```
|
299
|
+
|
228
300
|
## Pagination
|
229
301
|
|
230
302
|
Many GitHub API resources are [paginated][]. While you may be tempted to start
|
@@ -233,8 +305,8 @@ previous, and last pages for you in the `Link` response header as [Hypermedia
|
|
233
305
|
link relations](#hypermedia-agent).
|
234
306
|
|
235
307
|
```ruby
|
236
|
-
issues =
|
237
|
-
issues.concat
|
308
|
+
issues = client.issues 'rails/rails'
|
309
|
+
issues.concat client.get(client.last_response.rels[:next].href)
|
238
310
|
```
|
239
311
|
|
240
312
|
### Auto pagination
|
@@ -244,13 +316,21 @@ enabled, calls for paginated resources will fetch and concatenate the results
|
|
244
316
|
from every page into a single array:
|
245
317
|
|
246
318
|
```ruby
|
247
|
-
|
248
|
-
issues =
|
319
|
+
client.auto_paginate = true
|
320
|
+
issues = client.issues 'rails/rails'
|
249
321
|
issues.length
|
250
322
|
|
251
323
|
# => 702
|
252
324
|
```
|
253
325
|
|
326
|
+
You can also enable auto pagination for all Octokit client instances:
|
327
|
+
|
328
|
+
```ruby
|
329
|
+
Octokit.configure do |c|
|
330
|
+
c.auto_paginate = true
|
331
|
+
end
|
332
|
+
```
|
333
|
+
|
254
334
|
**Note:** While Octokit auto pagination will set the page size to the maximum
|
255
335
|
`100`, and seek to not overstep your rate limit, you probably want to use a
|
256
336
|
custom pattern for traversing large lists.
|
@@ -259,16 +339,17 @@ custom pattern for traversing large lists.
|
|
259
339
|
|
260
340
|
## Working with GitHub Enterprise
|
261
341
|
|
262
|
-
With a bit of setup, you can also use Octokit with your
|
342
|
+
With a bit of setup, you can also use Octokit with your GitHub Enterprise instance.
|
263
343
|
|
264
344
|
### Interacting with the GitHub.com APIs in GitHub Enterprise
|
265
345
|
|
266
346
|
To interact with the "regular" GitHub.com APIs in GitHub Enterprise, simply configure the `api_endpoint` to match your hostname. For example:
|
267
347
|
|
268
|
-
```
|
348
|
+
```ruby
|
269
349
|
Octokit.configure do |c|
|
270
|
-
c.api_endpoint = "
|
350
|
+
c.api_endpoint = "https://<hostname>/api/v3/"
|
271
351
|
end
|
352
|
+
|
272
353
|
client = Octokit::Client.new(:access_token => "<your 40 char token>")
|
273
354
|
```
|
274
355
|
|
@@ -276,40 +357,45 @@ client = Octokit::Client.new(:access_token => "<your 40 char token>")
|
|
276
357
|
|
277
358
|
The GitHub Enterprise Admin APIs are under a different client: `EnterpriseAdminClient`. You'll need to have an administrator account in order to use these APIs.
|
278
359
|
|
279
|
-
```
|
280
|
-
admin_client = Octokit::EnterpriseAdminClient.new
|
281
|
-
|
282
|
-
|
360
|
+
```ruby
|
361
|
+
admin_client = Octokit::EnterpriseAdminClient.new(
|
362
|
+
:access_token => "<your 40 char token>",
|
363
|
+
:api_endpoint => "https://<hostname>/api/v3/"
|
364
|
+
)
|
283
365
|
|
284
366
|
# or
|
285
367
|
Octokit.configure do |c|
|
286
|
-
c.api_endpoint = "https
|
368
|
+
c.api_endpoint = "https://<hostname>/api/v3/"
|
287
369
|
c.access_token = "<your 40 char token>"
|
288
370
|
end
|
289
|
-
|
371
|
+
|
372
|
+
admin_client = Octokit.enterprise_admin_client.new
|
290
373
|
```
|
291
374
|
|
292
375
|
### Interacting with the GitHub Enterprise Management Console APIs
|
293
376
|
|
294
|
-
The GitHub Enterprise Management Console APIs are also under a separate client: `EnterpriseManagementConsoleClient`. In order to use it, you'll need to provide both your management console password as well as the endpoint to your management console. This is different
|
377
|
+
The GitHub Enterprise Management Console APIs are also under a separate client: `EnterpriseManagementConsoleClient`. In order to use it, you'll need to provide both your management console password as well as the endpoint to your management console. This is different from the API endpoint provided above.
|
378
|
+
|
379
|
+
```ruby
|
380
|
+
management_console_client = Octokit::EnterpriseManagementConsoleClient.new(
|
381
|
+
:management_console_password => "secret",
|
382
|
+
:management_console_endpoint = "https://hostname:8633"
|
383
|
+
)
|
295
384
|
|
296
|
-
``` ruby
|
297
|
-
management_console_client = Octokit::EnterpriseManagementConsoleClient.new \
|
298
|
-
:management_console_password => "secret",
|
299
|
-
:management_console_endpoint = "https://hostname:8633"
|
300
385
|
# or
|
301
386
|
Octokit.configure do |c|
|
302
387
|
c.management_console_endpoint = "https://hostname:8633"
|
303
388
|
c.management_console_password = "secret"
|
304
389
|
end
|
305
|
-
|
390
|
+
|
391
|
+
management_console_client = Octokit.enterprise_management_console_client.new
|
306
392
|
```
|
307
393
|
|
308
394
|
### SSL Connection Errors
|
309
395
|
|
310
|
-
You
|
396
|
+
You _may_ need to disable SSL temporarily while first setting up your GitHub Enterprise install. You can do that with the following configuration:
|
311
397
|
|
312
|
-
```
|
398
|
+
```ruby
|
313
399
|
client.connection_options[:ssl] = { :verify => false }
|
314
400
|
```
|
315
401
|
|
@@ -320,7 +406,9 @@ Do remember to turn `:verify` back to `true`, as it's important for secure commu
|
|
320
406
|
While `Octokit::Client` accepts a range of options when creating a new client
|
321
407
|
instance, Octokit's configuration API allows you to set your configuration
|
322
408
|
options at the module level. This is particularly handy if you're creating a
|
323
|
-
number of client instances based on some shared defaults.
|
409
|
+
number of client instances based on some shared defaults. Changing options
|
410
|
+
affects new instances only and will not modify existing `Octokit::Client`
|
411
|
+
instances created with previous options.
|
324
412
|
|
325
413
|
### Configuring module defaults
|
326
414
|
|
@@ -348,7 +436,7 @@ Octokit's default.
|
|
348
436
|
|
349
437
|
```ruby
|
350
438
|
# Given $OCTOKIT_API_ENDPOINT is "http://api.github.dev"
|
351
|
-
|
439
|
+
client.api_endpoint
|
352
440
|
|
353
441
|
# => "http://api.github.dev"
|
354
442
|
```
|
@@ -357,6 +445,28 @@ Deprecation warnings and API endpoints in development preview warnings are
|
|
357
445
|
printed to STDOUT by default, these can be disabled by setting the ENV
|
358
446
|
`OCTOKIT_SILENT=true`.
|
359
447
|
|
448
|
+
### Timeouts
|
449
|
+
|
450
|
+
By default, Octokit does not timeout network requests. To set a timeout, pass in Faraday timeout settings to Octokit's `connection_options` setting.
|
451
|
+
|
452
|
+
```ruby
|
453
|
+
Octokit.configure do |c|
|
454
|
+
c.api_endpoint = ENV.fetch('GITHUB_API_ENDPOINT', 'https://api.github.com/')
|
455
|
+
c.connection_options = {
|
456
|
+
request: {
|
457
|
+
open_timeout: 5,
|
458
|
+
timeout: 5
|
459
|
+
}
|
460
|
+
}
|
461
|
+
end
|
462
|
+
```
|
463
|
+
|
464
|
+
You should set a timeout in order to avoid Ruby’s Timeout module, which can hose your server. Here are some resources for more information on this:
|
465
|
+
|
466
|
+
- [The Oldest Bug In Ruby - Why Rack::Timeout Might Hose your Server](https://www.schneems.com/2017/02/21/the-oldest-bug-in-ruby-why-racktimeout-might-hose-your-server/)
|
467
|
+
- [Timeout: Ruby's Most Dangerous API](https://www.mikeperham.com/2015/05/08/timeout-rubys-most-dangerous-api/)
|
468
|
+
- [The Ultimate Guide to Ruby Timeouts](https://github.com/ankane/the-ultimate-guide-to-ruby-timeouts)
|
469
|
+
|
360
470
|
## Hypermedia agent
|
361
471
|
|
362
472
|
Starting in version 2.0, Octokit is [hypermedia][]-enabled. Under the hood,
|
@@ -368,7 +478,7 @@ Resources returned by Octokit methods contain not only data but hypermedia
|
|
368
478
|
link relations:
|
369
479
|
|
370
480
|
```ruby
|
371
|
-
user =
|
481
|
+
user = client.user 'technoweenie'
|
372
482
|
|
373
483
|
# Get the repos rel, returned from the API
|
374
484
|
# as repos_url in the resource
|
@@ -380,7 +490,7 @@ repos.last.name
|
|
380
490
|
# => "faraday-zeromq"
|
381
491
|
```
|
382
492
|
|
383
|
-
When processing API responses, all `*_url` attributes are culled
|
493
|
+
When processing API responses, all `*_url` attributes are culled into the link
|
384
494
|
relations collection. Any `url` attribute becomes `.rels[:self]`.
|
385
495
|
|
386
496
|
### URI templates
|
@@ -389,7 +499,7 @@ You might notice many link relations have variable placeholders. Octokit
|
|
389
499
|
supports [URI Templates][uri-templates] for parameterized URI expansion:
|
390
500
|
|
391
501
|
```ruby
|
392
|
-
repo =
|
502
|
+
repo = client.repo 'pengwynn/pingwynn'
|
393
503
|
rel = repo.rels[:issues]
|
394
504
|
# => #<Sawyer::Relation: issues: get https://api.github.com/repos/pengwynn/pingwynn/issues{/number}>
|
395
505
|
|
@@ -406,16 +516,18 @@ If you want to use Octokit as a pure hypermedia API client, you can start at
|
|
406
516
|
the API root and follow link relations from there:
|
407
517
|
|
408
518
|
```ruby
|
409
|
-
root =
|
519
|
+
root = client.root
|
410
520
|
root.rels[:repository].get :uri => {:owner => "octokit", :repo => "octokit.rb" }
|
521
|
+
root.rels[:user_repositories].get :uri => { :user => "octokit" },
|
522
|
+
:query => { :type => "owner" }
|
411
523
|
```
|
412
524
|
|
413
525
|
Octokit 3.0 aims to be hypermedia-driven, removing the internal URL
|
414
526
|
construction currently used throughout the client.
|
415
527
|
|
416
528
|
[hypermedia]: http://en.wikipedia.org/wiki/Hypermedia
|
417
|
-
[
|
418
|
-
[
|
529
|
+
[sawyer]: https://github.com/lostisland/sawyer
|
530
|
+
[faraday]: https://github.com/lostisland/faraday
|
419
531
|
[uri-templates]: http://tools.ietf.org/html/rfc6570
|
420
532
|
|
421
533
|
## Upgrading guide
|
@@ -423,13 +535,13 @@ construction currently used throughout the client.
|
|
423
535
|
Version 4.0
|
424
536
|
|
425
537
|
- **removes support for a [long-deprecated overload][list-pulls] for
|
426
|
-
passing state as a positional argument** when listing pull requests. Instead,
|
427
|
-
pass `state` in the method options.
|
538
|
+
passing state as a positional argument** when listing pull requests. Instead,
|
539
|
+
pass `state` in the method options.
|
428
540
|
- **drops support for Ruby < 2.0**.
|
429
541
|
- adds support for new [Enterprise-only APIs](#working-with-github-enterprise).
|
430
542
|
- adds support for [Repository redirects][redirects].
|
431
543
|
|
432
|
-
[list-pulls]: https://github.com/octokit/octokit.rb/commit/e48e91f736d5fce51e3bf74d7c9022aaa52f5c5c
|
544
|
+
[list-pulls]: https://github.com/octokit/octokit.rb/commit/e48e91f736d5fce51e3bf74d7c9022aaa52f5c5c
|
433
545
|
[redirects]: https://developer.github.com/changes/2015-05-26-repository-redirects-are-coming/
|
434
546
|
|
435
547
|
Version 3.0 includes a couple breaking changes when upgrading from v2.x.x:
|
@@ -441,10 +553,11 @@ for the client:
|
|
441
553
|
```ruby
|
442
554
|
Octokit.default_media_type = "application/vnd.github.beta+json"
|
443
555
|
```
|
556
|
+
|
444
557
|
or per-request
|
445
558
|
|
446
559
|
```ruby
|
447
|
-
|
560
|
+
client.emails(:accept => "application/vnd.github.beta+json")
|
448
561
|
```
|
449
562
|
|
450
563
|
The long-deprecated `Octokit::Client#create_download` method has been removed.
|
@@ -457,21 +570,20 @@ Version 2.0 includes a completely rewritten `Client` factory that now memoizes
|
|
457
570
|
client instances based on unique configuration options. Breaking changes also
|
458
571
|
include:
|
459
572
|
|
460
|
-
|
461
|
-
|
462
|
-
|
573
|
+
- `:oauth_token` is now `:access_token`
|
574
|
+
- `:auto_traversal` is now `:auto_paginate`
|
575
|
+
- `Hashie::Mash` has been removed. Responses now return a `Sawyer::Resource`
|
463
576
|
object. This new type behaves mostly like a Ruby `Hash`, but does not fully
|
464
577
|
support the `Hashie::Mash` API.
|
465
|
-
|
578
|
+
- Two new client error types are raised where appropriate:
|
466
579
|
`Octokit::TooManyRequests` and `Octokit::TooManyLoginAttempts`
|
467
|
-
|
468
|
-
|
580
|
+
- The `search_*` methods from v1.x are now found at `legacy_search_*`
|
581
|
+
- Support for netrc requires including the [netrc gem][] in your Gemfile or
|
469
582
|
gemspec.
|
470
|
-
|
583
|
+
- DateTime fields are now proper `DateTime` objects. Previous versions outputted DateTime fields as 'String' objects.
|
471
584
|
|
472
585
|
[netrc gem]: https://rubygems.org/gems/netrc
|
473
586
|
|
474
|
-
|
475
587
|
## Advanced usage
|
476
588
|
|
477
589
|
Since Octokit employs [Faraday][faraday] under the hood, some behavior can be
|
@@ -485,13 +597,21 @@ traffic:
|
|
485
597
|
|
486
598
|
```ruby
|
487
599
|
stack = Faraday::RackBuilder.new do |builder|
|
488
|
-
builder.
|
600
|
+
builder.use Faraday::Retry::Middleware, exceptions: Faraday::Request::Retry::DEFAULT_EXCEPTIONS + [Octokit::ServerError] # or Faraday::Request::Retry for Faraday < 2.0
|
601
|
+
builder.use Octokit::Middleware::FollowRedirects
|
489
602
|
builder.use Octokit::Response::RaiseError
|
603
|
+
builder.use Octokit::Response::FeedParser
|
604
|
+
builder.response :logger do |logger|
|
605
|
+
logger.filter(/(Authorization: "(token|Bearer) )(\w+)/, '\1[REMOVED]')
|
606
|
+
end
|
490
607
|
builder.adapter Faraday.default_adapter
|
491
608
|
end
|
492
609
|
Octokit.middleware = stack
|
493
|
-
|
610
|
+
|
611
|
+
client = Octokit::Client.new
|
612
|
+
client.user 'pengwynn'
|
494
613
|
```
|
614
|
+
|
495
615
|
```
|
496
616
|
I, [2013-08-22T15:54:38.583300 #88227] INFO -- : get https://api.github.com/users/pengwynn
|
497
617
|
D, [2013-08-22T15:54:38.583401 #88227] DEBUG -- request: Accept: "application/vnd.github.beta+json"
|
@@ -524,7 +644,7 @@ Next, construct your own Faraday middleware:
|
|
524
644
|
|
525
645
|
```ruby
|
526
646
|
stack = Faraday::RackBuilder.new do |builder|
|
527
|
-
builder.use Faraday::HttpCache
|
647
|
+
builder.use Faraday::HttpCache, serializer: Marshal, shared_cache: false
|
528
648
|
builder.use Octokit::Response::RaiseError
|
529
649
|
builder.adapter Faraday.default_adapter
|
530
650
|
end
|
@@ -535,8 +655,7 @@ Once configured, the middleware will store responses in cache based on ETag
|
|
535
655
|
fingerprint and serve those back up for future `304` responses for the same
|
536
656
|
resource. See the [project README][cache] for advanced usage.
|
537
657
|
|
538
|
-
|
539
|
-
[cache]: https://github.com/plataformatec/faraday-http-cache
|
658
|
+
[cache]: https://github.com/sourcelevel/faraday-http-cache
|
540
659
|
[faraday]: https://github.com/lostisland/faraday
|
541
660
|
|
542
661
|
## Hacking on Octokit.rb
|
@@ -551,8 +670,13 @@ to run a Ruby console to poke on Octokit, you can crank one up with:
|
|
551
670
|
|
552
671
|
script/console
|
553
672
|
|
554
|
-
Using the scripts in `./
|
555
|
-
|
673
|
+
Using the scripts in `./script` instead of `bundle exec rspec`, `bundle console`, etc. ensures your dependencies are up-to-date.
|
674
|
+
|
675
|
+
### Code of Conduct
|
676
|
+
|
677
|
+
We want both the Octokit.rb and larger Octokit communities to be open
|
678
|
+
and welcoming environments. Please read and follow both in spirit and
|
679
|
+
letter [Code of Conduct](CODE_OF_CONDUCT.md).
|
556
680
|
|
557
681
|
### Running and writing new tests
|
558
682
|
|
@@ -567,49 +691,57 @@ Octokit uses environmental variables for storing credentials used in testing.
|
|
567
691
|
If you are testing an API endpoint that doesn't require authentication, you
|
568
692
|
can get away without any additional configuration. For the most part, tests
|
569
693
|
use an authenticated client, using a token stored in `ENV['OCTOKIT_TEST_GITHUB_TOKEN']`.
|
570
|
-
There are several different
|
694
|
+
There are several different authentication methods used across the api.
|
571
695
|
Here is the full list of configurable environmental variables for testing
|
572
696
|
Octokit:
|
573
697
|
|
574
|
-
ENV Variable
|
575
|
-
|
576
|
-
`OCTOKIT_TEST_GITHUB_LOGIN
|
577
|
-
`OCTOKIT_TEST_GITHUB_PASSWORD
|
578
|
-
`OCTOKIT_TEST_GITHUB_TOKEN`
|
579
|
-
`OCTOKIT_TEST_GITHUB_CLIENT_ID`
|
580
|
-
`OCTOKIT_TEST_GITHUB_CLIENT_SECRET`
|
581
|
-
`OCTOKIT_TEST_GITHUB_REPOSITORY`
|
582
|
-
`OCTOKIT_TEST_GITHUB_ORGANIZATION`
|
583
|
-
`OCTOKIT_TEST_GITHUB_ENTERPRISE_LOGIN`
|
584
|
-
`OCTOKIT_TEST_GITHUB_ENTERPRISE_TOKEN`
|
585
|
-
`OCTOKIT_TEST_GITHUB_ENTERPRISE_MANAGEMENT_CONSOLE_PASSWORD` | GitHub Enterprise management console password
|
586
|
-
`OCTOKIT_TEST_GITHUB_ENTERPRISE_ENDPOINT`
|
587
|
-
`OCTOKIT_TEST_GITHUB_ENTERPRISE_MANAGEMENT_CONSOLE_ENDPOINT` | GitHub Enterprise Management Console endpoint
|
698
|
+
| ENV Variable | Description |
|
699
|
+
| :----------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
|
700
|
+
| `OCTOKIT_TEST_GITHUB_LOGIN` | GitHub login name (preferably one created specifically for testing against). |
|
701
|
+
| `OCTOKIT_TEST_GITHUB_PASSWORD` | Password for the test GitHub login. |
|
702
|
+
| `OCTOKIT_TEST_GITHUB_TOKEN` | [Personal Access Token](https://github.com/blog/1509-personal-api-tokens) for the test GitHub login. |
|
703
|
+
| `OCTOKIT_TEST_GITHUB_CLIENT_ID` | Test OAuth application client id. |
|
704
|
+
| `OCTOKIT_TEST_GITHUB_CLIENT_SECRET` | Test OAuth application client secret. |
|
705
|
+
| `OCTOKIT_TEST_GITHUB_REPOSITORY` | Test repository to perform destructive actions against, this should not be set to any repository of importance. **Automatically created by the test suite if nonexistent** Default: `api-sandbox` |
|
706
|
+
| `OCTOKIT_TEST_GITHUB_ORGANIZATION` | Test organization. |
|
707
|
+
| `OCTOKIT_TEST_GITHUB_ENTERPRISE_LOGIN` | GitHub Enterprise login name. |
|
708
|
+
| `OCTOKIT_TEST_GITHUB_ENTERPRISE_TOKEN` | GitHub Enterprise token. |
|
709
|
+
| `OCTOKIT_TEST_GITHUB_ENTERPRISE_MANAGEMENT_CONSOLE_PASSWORD` | GitHub Enterprise management console password. |
|
710
|
+
| `OCTOKIT_TEST_GITHUB_ENTERPRISE_ENDPOINT` | GitHub Enterprise hostname. |
|
711
|
+
| `OCTOKIT_TEST_GITHUB_ENTERPRISE_MANAGEMENT_CONSOLE_ENDPOINT` | GitHub Enterprise Management Console endpoint. |
|
712
|
+
| `OCTOKIT_TEST_GITHUB_MANAGE_GHES_ENDPOINT` | GitHub Enterprise Server GHES Manage Endpoint. |
|
713
|
+
| `OCTOKIT_TEST_GITHUB_MANAGE_GHES_USERNAME` | GitHub Enterprise Server GHES Manage Username. |
|
714
|
+
| `OCTOKIT_TEST_GITHUB_MANAGE_GHES_PASSWORD` | GitHub Enterprise Server GHES Manage Password. |
|
715
|
+
| `OCTOKIT_TEST_GITHUB_INTEGRATION` | [GitHub Integration](https://developer.github.com/early-access/integrations/) owned by your test organization. |
|
716
|
+
| `OCTOKIT_TEST_GITHUB_INTEGRATION_INSTALLATION` | Installation of the GitHub Integration specified above. |
|
717
|
+
| `OCTOKIT_TEST_INTEGRATION_PEM_KEY` | File path to the private key generated from your integration. |
|
588
718
|
|
589
719
|
Since we periodically refresh our cassettes, please keep some points in mind
|
590
720
|
when writing new specs.
|
591
721
|
|
592
|
-
|
722
|
+
- **Specs should be idempotent**. The HTTP calls made during a spec should be
|
593
723
|
able to be run over and over. This means deleting a known resource prior to
|
594
724
|
creating it if the name has to be unique.
|
595
|
-
|
725
|
+
- **Specs should be able to be run in random order.** If a spec depends on
|
596
726
|
another resource as a fixture, make sure that's created in the scope of the
|
597
727
|
spec and not depend on a previous spec to create the data needed.
|
598
|
-
|
728
|
+
- **Do not depend on authenticated user info.** Instead of asserting
|
599
729
|
actual values in resources, try to assert the existence of a key or that a
|
600
730
|
response is an Array. We're testing the client, not the API.
|
601
731
|
|
602
732
|
[bootstrapping]: http://wynnnetherland.com/linked/2013012801/bootstrapping-consistency
|
603
|
-
[
|
733
|
+
[vcr]: https://github.com/vcr/vcr
|
604
734
|
|
605
735
|
## Supported Ruby Versions
|
606
736
|
|
607
|
-
This library aims to support and is [tested against][
|
737
|
+
This library aims to support and is [tested against][actions] the following Ruby
|
608
738
|
implementations:
|
609
739
|
|
610
|
-
* Ruby 2.
|
611
|
-
* Ruby
|
612
|
-
* Ruby
|
740
|
+
* Ruby 2.7
|
741
|
+
* Ruby 3.0
|
742
|
+
* Ruby 3.1
|
743
|
+
* Ruby 3.2
|
744
|
+
* Ruby 3.3
|
613
745
|
|
614
746
|
If something doesn't work on one of these Ruby versions, it's a bug.
|
615
747
|
|
@@ -624,7 +756,7 @@ implementation, you will be responsible for providing patches in a timely
|
|
624
756
|
fashion. If critical issues for a particular implementation exist at the time
|
625
757
|
of a major release, support for that Ruby version may be dropped.
|
626
758
|
|
627
|
-
[
|
759
|
+
[actions]: https://github.com/octokit/octokit.rb/actions
|
628
760
|
|
629
761
|
## Versioning
|
630
762
|
|
@@ -645,6 +777,22 @@ The changes made between versions can be seen on the [project releases page][rel
|
|
645
777
|
[pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
646
778
|
[releases]: https://github.com/octokit/octokit.rb/releases
|
647
779
|
|
780
|
+
## Making Repeating Requests
|
781
|
+
|
782
|
+
In most cases it would be best to use [webhooks](https://developer.github.com/webhooks/), but sometimes webhooks don't provide all of the information needed. In those cases where one might need to poll for progress or retry a request on failure, we designed [Octopoller](https://github.com/octokit/octopoller.rb). Octopoller is a micro gem perfect for making repeating requests.
|
783
|
+
|
784
|
+
```ruby
|
785
|
+
Octopoller.poll(timeout: 15.seconds) do
|
786
|
+
begin
|
787
|
+
client.request_progress # ex. request a long running job's status
|
788
|
+
rescue Error
|
789
|
+
:re_poll
|
790
|
+
end
|
791
|
+
end
|
792
|
+
```
|
793
|
+
|
794
|
+
This is useful when making requests for a long running job's progress (ex. requesting a [Source Import's progress](https://developer.github.com/v3/migrations/source_imports/#get-import-progress)).
|
795
|
+
|
648
796
|
## License
|
649
797
|
|
650
798
|
Copyright (c) 2009-2014 Wynn Netherland, Adam Stacoviak, Erik Michaels-Ober
|