Skip to content

Commit f207bac

Browse files
authored
Allow running server with a custom Travis endpoint, allow specifying .com vs .org in badge URLs (#23)
* Allow running server with a custom Travis endpoint * Allow /travis.com and /travis.org URLs to force Travis endopint
1 parent b10633f commit f207bac

File tree

3 files changed

+169
-135
lines changed

3 files changed

+169
-135
lines changed

README.md

+138-128
Original file line numberDiff line numberDiff line change
@@ -69,178 +69,183 @@ You may also run your own instance using this package. See the **Deployment** se
6969

7070
#### `/browsers`
7171

72-
Render browser matrix badge based on support specified in the query
73-
parameters, for cases where your testing is done with a service other than
74-
Sauce Labs (otherwise use the `/sauce` endpoint), or you don’t have CI and
75-
just want to show your intended support.
76-
77-
**Query parameters**
78-
79-
* `android`,
80-
`firefox`,
81-
`googlechrome`,
82-
`iexplore`,
83-
`ipad`,
84-
`iphone`,
85-
`microsoftedge`,
86-
`opera`,
87-
`safari`
88-
89-
A comma-separated list of version numbers that were tested for the given
90-
browser, e.g. `firefox=20,26`.
91-
92-
Prefix a version number to indicate status:
93-
94-
* **`+`** or no prefix: Passed.
95-
* **`-`**: Failed.
96-
* **`!`**: Error.
97-
* `logos`,
98-
`labels`,
99-
`versionDivider`,
100-
`style`
101-
102-
Same as the `/sauce/:user` endpoint below.
72+
Render browser matrix badge based on support specified in the query
73+
parameters, for cases where your testing is done with a service other than
74+
Sauce Labs (otherwise use the `/sauce` endpoint), or you don’t have CI and
75+
just want to show your intended support.
76+
77+
**Query parameters**
78+
79+
* `android`,
80+
`firefox`,
81+
`googlechrome`,
82+
`iexplore`,
83+
`ipad`,
84+
`iphone`,
85+
`microsoftedge`,
86+
`opera`,
87+
`safari`
88+
89+
A comma-separated list of version numbers that were tested for the given
90+
browser, e.g. `firefox=20,26`.
91+
92+
Prefix a version number to indicate status:
93+
94+
* **`+`** or no prefix: Passed.
95+
* **`-`**: Failed.
96+
* **`!`**: Error.
97+
* `logos`,
98+
`labels`,
99+
`versionDivider`,
100+
`style`
101+
102+
Same as the `/sauce/:user` endpoint below.
103103

104104
#### `/sauce/:user`
105105

106-
Render browser support matrix badge for the Sauce Labs account at `:user`.
106+
Render browser support matrix badge for the Sauce Labs account at `:user`.
107107

108-
**Query parameters**
108+
**Query parameters**
109109

110-
* `build`
110+
* `build`
111111

112-
Build number, it should match the `build` string of one or more jobs. By
113-
default, try to find the most recent build. The build can be from any CI
114-
service, not just Travis.
112+
Build number, it should match the `build` string of one or more jobs. By
113+
default, try to find the most recent build. The build can be from any CI
114+
service, not just Travis.
115115

116-
Sauce Labs’ API doesn’t allow filtering by build, so finding the jobs for a
117-
build can be a bit of a hassle:
116+
Sauce Labs’ API doesn’t allow filtering by build, so finding the jobs for a
117+
build can be a bit of a hassle:
118118

119-
* If the requested build is not in the first 500 results returned by the
120-
API, then you should specify `from` and `to` to limit the query window
121-
to the time span of the build.
122-
* If no `from` is given, then stop fetching more jobs from the API when a
123-
different build number is encountered.
119+
* If the requested build is not in the first 500 results returned by the
120+
API, then you should specify `from` and `to` to limit the query window
121+
to the time span of the build.
122+
* If no `from` is given, then stop fetching more jobs from the API when a
123+
different build number is encountered.
124124

125-
Jobs with a `null` value for `build` are never included.
126-
* `name`
125+
Jobs with a `null` value for `build` are never included.
126+
* `name`
127127

128-
Name filter, it should match a whitespace separated substring in the `name`
129-
of one or more jobs. Only jobs matching the filter will be included in the
130-
result.
131-
* `tag`
128+
Name filter, it should match a whitespace separated substring in the `name`
129+
of one or more jobs. Only jobs matching the filter will be included in the
130+
result.
131+
* `tag`
132132

133-
Tag filter, it should match a string in the `tags` array of one or more
134-
jobs. Only jobs matching the filter will be included in the result.
135-
* `from`
133+
Tag filter, it should match a string in the `tags` array of one or more
134+
jobs. Only jobs matching the filter will be included in the result.
135+
* `from`
136136

137-
Start time (Unix epoch) of the window in which to find jobs. Passed along
138-
to the Sauce Labs API.
139-
* `to`
137+
Start time (Unix epoch) of the window in which to find jobs. Passed along
138+
to the Sauce Labs API.
139+
* `to`
140140

141-
End time (Unix epoch) of the window in which to find jobs. Passed along to
142-
the Sauce Labs API.
143-
* `skip`
141+
End time (Unix epoch) of the window in which to find jobs. Passed along to
142+
the Sauce Labs API.
143+
* `skip`
144144

145-
Number of initial jobs to skip. Passed along to the Sauce Labs API.
146-
* `source`
145+
Number of initial jobs to skip. Passed along to the Sauce Labs API.
146+
* `source`
147147

148-
Data source from which to render results, defaults to `svg`.
148+
Data source from which to render results, defaults to `svg`.
149149

150-
* **api**: Fetch results from the Sauce Labs API. This allows you to specify
151-
any of the above query parameters for filtering jobs.
152-
* **svg**: Fetch Sauce Labs’ own browser matrix SVG widget and transform it
153-
into our slimmer, beautified version. If you aren’t using any of the
154-
options above, and just want the same results as their own widget would
155-
render, use this. If you try specifying any of the options above, the
156-
server will automatically change `source` to `api`. This is probably much
157-
faster than talking to the API, but it’s a bit more fragile since their
158-
SVG output could change.
159-
* `logos`
150+
* **api**: Fetch results from the Sauce Labs API. This allows you to specify
151+
any of the above query parameters for filtering jobs.
152+
* **svg**: Fetch Sauce Labs’ own browser matrix SVG widget and transform it
153+
into our slimmer, beautified version. If you aren’t using any of the
154+
options above, and just want the same results as their own widget would
155+
render, use this. If you try specifying any of the options above, the
156+
server will automatically change `source` to `api`. This is probably much
157+
faster than talking to the API, but it’s a bit more fragile since their
158+
SVG output could change.
159+
* `logos`
160160

161-
How to render browser logos, defaults to **inside**.
161+
How to render browser logos, defaults to **inside**.
162162

163-
* **inside** or **true**: Show logos in the label part of the badge.
164-
* **none** or **false**: Don’t show logos.
165-
* `labels`
163+
* **inside** or **true**: Show logos in the label part of the badge.
164+
* **none** or **false**: Don’t show logos.
165+
* `labels`
166166

167-
How to render browser labels, defaults to **shortName**.
167+
How to render browser labels, defaults to **shortName**.
168168

169-
* **shortName** or **true**: Short names, e.g. "Chrome", "FF", "IE".
170-
* **name**: Medium names, e.g. "Chrome", "Firefox", "Internet Explorer".
171-
* **longName**: Long names, e.g. "Google Chrome", "Mozilla Firefox",
172-
"Microsoft Internet Explorer".
173-
* **sauceName**: Browser identifiers used by Sauce Labs, e.g.
174-
"googlechrome", "firefox", "iexplore".
175-
* **none** or **false**: Don’t show labels.
176-
* `versionDivider`
169+
* **shortName** or **true**: Short names, e.g. "Chrome", "FF", "IE".
170+
* **name**: Medium names, e.g. "Chrome", "Firefox", "Internet Explorer".
171+
* **longName**: Long names, e.g. "Google Chrome", "Mozilla Firefox",
172+
"Microsoft Internet Explorer".
173+
* **sauceName**: Browser identifiers used by Sauce Labs, e.g.
174+
"googlechrome", "firefox", "iexplore".
175+
* **none** or **false**: Don’t show labels.
176+
* `versionDivider`
177177

178-
How to render the divider between browser version numbers, defaults to
179-
**none**.
178+
How to render the divider between browser version numbers, defaults to
179+
**none**.
180180

181-
* **none** or **false**: Don’t show a divider.
182-
* **line** or **true**: Show a subtle beveled line between version numbers.
183-
* `style`
181+
* **none** or **false**: Don’t show a divider.
182+
* **line** or **true**: Show a subtle beveled line between version numbers.
183+
* `style`
184184

185-
Badge style, defaults to **flat**. Styles match
186-
[shields.io](http://shields.io/).
185+
Badge style, defaults to **flat**. Styles match
186+
[shields.io](http://shields.io/).
187187

188-
* **flat**: Round and smooth.
189-
* **flat-square**: Square and flat.
188+
* **flat**: Round and smooth.
189+
* **flat-square**: Square and flat.
190190

191191
#### `/size/:source/:path`
192192

193-
Render a file size badge for any file on GitHub or npm.
193+
Render a file size badge for any file on GitHub or npm.
194194

195-
* `:source` can be `github` or `npm`.
196-
* `:path` can be any valid `raw.githubusercontent.com` or `unpkg.com` path
197-
(when `:source` is `github` or `npm`, respectively).
195+
* `:source` can be `github` or `npm`.
196+
* `:path` can be any valid `raw.githubusercontent.com` or `unpkg.com` path
197+
(when `:source` is `github` or `npm`, respectively).
198198

199-
**Query parameters**
199+
**Query parameters**
200200

201-
* `gzip`
201+
* `gzip`
202202

203-
Whether to show the gzip-compressed size, defaults to **false**.
203+
Whether to show the gzip-compressed size, defaults to **false**.
204204

205-
* **true**: Show compressed size.
206-
* **false**: Show uncompressed size.
207-
* `label`
205+
* **true**: Show compressed size.
206+
* **false**: Show uncompressed size.
207+
* `label`
208208

209-
Custom badge label, by default it will be "size" or "size (gzip)".
210-
* `color`
209+
Custom badge label, by default it will be "size" or "size (gzip)".
210+
* `color`
211211

212-
Color name or value to pass along to [shields.io](http://shields.io/),
213-
defaults to **brightgreen**. Note that the default may change to **blue** in
214-
the future, as is somewhat conventional for purely informational,
215-
non-qualitative badges like this one.
216-
* `style`
212+
Color name or value to pass along to [shields.io](http://shields.io/),
213+
defaults to **brightgreen**. Note that the default may change to **blue** in
214+
the future, as is somewhat conventional for purely informational,
215+
non-qualitative badges like this one.
216+
* `style`
217217

218-
Style to pass along to [shields.io](http://shields.io/).
218+
Style to pass along to [shields.io](http://shields.io/).
219219

220220
#### `/travis/:user/:repo`
221221

222-
Render build status badge for the Travis project at `:user/:repo`, counting
223-
only build jobs that match the given `env` filter.
222+
Render build status badge for the Travis project at `:user/:repo`, counting
223+
only build jobs that match the given `env` filter.
224+
225+
The default endpoint used to communicate with the Travis API is determined by
226+
the server’s `TRAVIS_ENDPOINT` environment variable. You can force the public
227+
`api.travis-ci.com` or `api.travis-ci.org` endpoints by beginning the URL with
228+
`/travis.com` or `/travis.org`, respectively.
224229

225-
**Query parameters**
230+
**Query parameters**
226231

227-
* `branch`
232+
* `branch`
228233

229-
Git branch, defaults to **master**.
230-
* `env`
234+
Git branch, defaults to **master**.
235+
* `env`
231236

232-
Environment filter, it should match a `VAR=value` line in the `env`
233-
section of your build matrix. All jobs in the build matching the filter
234-
will be aggregated into one final status, similar to how Travis determines
235-
an overall build status. If no filter is given, all jobs in the build are
236-
included (even if they are Allowed Failures).
237-
* `label`
237+
Environment filter, it should match a `VAR=value` line in the `env`
238+
section of your build matrix. All jobs in the build matching the filter
239+
will be aggregated into one final status, similar to how Travis determines
240+
an overall build status. If no filter is given, all jobs in the build are
241+
included (even if they are Allowed Failures).
242+
* `label`
238243

239-
Text label to render on the left side of the badge, defaults to the repo
240-
name.
241-
* `style`
244+
Text label to render on the left side of the badge, defaults to the repo
245+
name.
246+
* `style`
242247

243-
Style to pass along to [shields.io](http://shields.io/).
248+
Style to pass along to [shields.io](http://shields.io/).
244249

245250
#### `/travis/:user/:repo/sauce/:sauceUser`
246251

@@ -252,6 +257,11 @@ only consider Sauce Labs jobs that match up with the latest Travis build
252257
number for the given `branch`, and also makes the correct jobs easier to find
253258
since Travis provides the time span of the build.
254259

260+
The default endpoint used to communicate with the Travis API is determined by
261+
the server’s `TRAVIS_ENDPOINT` environment variable. You can force the public
262+
`api.travis-ci.com` or `api.travis-ci.org` endpoints by beginning the URL with
263+
`/travis.com` or `/travis.org`, respectively.
264+
255265
**Query parameters**
256266

257267
* `branch`

src/index.js

+23-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ function start (id) {
99
const _ = require('lodash')
1010
const express = require('express')
1111
const compression = require('compression')
12-
const { default: TravisClient } = require('./travis')
12+
const {
13+
default: TravisClient,
14+
TRAVIS_COM_ENDPOINT,
15+
TRAVIS_ORG_ENDPOINT
16+
} = require('./travis')
1317
const { default: SauceClient } = require('./sauce')
1418
const { default: getShieldsBadge } = require('./shields')
1519
const { default: getBrowsersBadge, BROWSERS, getGroupedBrowsers } = require('./browsers')
@@ -103,6 +107,20 @@ function start (id) {
103107
return handleSauceBadge(req, res, sauce, source, jobs)
104108
})
105109

110+
// Rewrite `/travis.com` and `/travis.org` URLs to `/travis` while setting
111+
// `res.locals.travisEndpoint`.
112+
app.get('/travis.com/*', (req, res, next) => {
113+
req.url = `/travis/${req.params[0]}`
114+
res.locals.travisEndpoint = TRAVIS_COM_ENDPOINT
115+
next()
116+
})
117+
118+
app.get('/travis.org/*', (req, res, next) => {
119+
req.url = `/travis/${req.params[0]}`
120+
res.locals.travisEndpoint = TRAVIS_ORG_ENDPOINT
121+
next()
122+
})
123+
106124
app.get('/travis/:user/:repo', (req, res) => {
107125
res.status(200)
108126
res.set('Content-Type', 'image/svg+xml')
@@ -113,9 +131,10 @@ function start (id) {
113131

114132
const user = req.params.user
115133
const repo = req.params.repo
134+
const endpoint = res.locals.travisEndpoint || undefined
116135
const branch = req.query.branch || 'master'
117136
const label = req.query.label || req.params.repo
118-
const travis = new TravisClient(user, repo)
137+
const travis = new TravisClient(user, repo, endpoint)
119138
const query = { style: req.query.style }
120139
travis.getLatestBranchBuild(branch).then((build) => {
121140
const filters = {
@@ -147,9 +166,10 @@ function start (id) {
147166

148167
const user = req.params.user
149168
const repo = req.params.repo
169+
const endpoint = res.locals.travisEndpoint || undefined
150170
const sauceUser = req.params.sauceUser || user
151171
const branch = req.query.branch || 'master'
152-
const travis = new TravisClient(user, repo)
172+
const travis = new TravisClient(user, repo, endpoint)
153173
const sauce = new SauceClient(sauceUser)
154174
const jobs = travis.getLatestBranchBuild(branch).then((build) => {
155175
return sauce.getTravisBuildJobs(build)

0 commit comments

Comments
 (0)