-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Homebrew] Add homebrew downloads badge (#6209)
* Add homebrew downloads badge
- Loading branch information
Showing
5 changed files
with
111 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
'use strict' | ||
|
||
const Joi = require('joi') | ||
const { downloadCount } = require('../color-formatters') | ||
const { metric } = require('../text-formatters') | ||
const { BaseJsonService } = require('..') | ||
const { nonNegativeInteger } = require('../validators') | ||
|
||
function getSchema({ formula }) { | ||
return Joi.object({ | ||
analytics: Joi.object({ | ||
install: Joi.object({ | ||
'30d': Joi.object({ [formula]: nonNegativeInteger }).required(), | ||
'90d': Joi.object({ [formula]: nonNegativeInteger }).required(), | ||
'365d': Joi.object({ [formula]: nonNegativeInteger }).required(), | ||
}).required(), | ||
}).required(), | ||
}).required() | ||
} | ||
|
||
const periodMap = { | ||
dm: { | ||
api_field: '30d', | ||
suffix: '/month', | ||
}, | ||
dq: { | ||
api_field: '90d', | ||
suffix: '/quarter', | ||
}, | ||
dy: { | ||
api_field: '365d', | ||
suffix: '/year', | ||
}, | ||
} | ||
|
||
module.exports = class HomebrewDownloads extends BaseJsonService { | ||
static category = 'downloads' | ||
|
||
static route = { | ||
base: 'homebrew', | ||
pattern: 'installs/:interval(dm|dq|dy)/:formula', | ||
} | ||
|
||
static examples = [ | ||
{ | ||
title: 'homebrew downloads', | ||
namedParams: { interval: 'dm', formula: 'cake' }, | ||
staticPreview: this.render({ interval: 'dm', downloads: 93 }), | ||
}, | ||
] | ||
|
||
static defaultBadgeData = { label: 'downloads' } | ||
|
||
static render({ interval, downloads }) { | ||
return { | ||
message: `${metric(downloads)}${periodMap[interval].suffix}`, | ||
color: downloadCount(downloads), | ||
} | ||
} | ||
|
||
async fetch({ formula }) { | ||
const schema = getSchema({ formula }) | ||
return this._requestJson({ | ||
schema, | ||
url: `https://formulae.brew.sh/api/formula/${formula}.json`, | ||
errorMessages: { 404: 'formula not found' }, | ||
}) | ||
} | ||
|
||
async handle({ interval, formula }) { | ||
const data = await this.fetch({ formula }) | ||
return this.constructor.render({ | ||
interval, | ||
downloads: data.analytics.install[periodMap[interval].api_field][formula], | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
'use strict' | ||
|
||
const t = (module.exports = require('../tester').createServiceTester()) | ||
const { isMetricOverTimePeriod } = require('../test-validators') | ||
|
||
t.create('daily downloads (valid)') | ||
.get('/installs/dm/cake.json') | ||
.expectBadge({ label: 'downloads', message: isMetricOverTimePeriod }) | ||
|
||
t.create('yearly downloads (valid)') | ||
.get('/installs/dq/cake.json') | ||
.expectBadge({ label: 'downloads', message: isMetricOverTimePeriod }) | ||
|
||
t.create('yearly downloads (valid)') | ||
.get('/installs/dy/cake.json') | ||
.expectBadge({ label: 'downloads', message: isMetricOverTimePeriod }) | ||
|
||
t.create('daily downloads (not found)') | ||
.get('/installs/dm/not-a-package.json') | ||
.expectBadge({ label: 'downloads', message: 'formula not found' }) | ||
|
||
t.create('yearly downloads (not found)') | ||
.get('/installs/dq/not-a-package.json') | ||
.expectBadge({ label: 'downloads', message: 'formula not found' }) | ||
|
||
t.create('yearly downloads (not found)') | ||
.get('/installs/dy/not-a-package.json') | ||
.expectBadge({ label: 'downloads', message: 'formula not found' }) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters