Skip to content

Commit df8049a

Browse files
authored
redirect [npm] /dt to /d18m (#10033)
* redirect [npm] /dt to /d18m * fix unit test
1 parent f840417 commit df8049a

4 files changed

+35
-13
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { redirector } from '../index.js'
2+
3+
export default redirector({
4+
category: 'downloads',
5+
route: {
6+
base: 'npm/dt',
7+
pattern: ':packageName+',
8+
},
9+
transformPath: ({ packageName }) => `/npm/d18m/${packageName}`,
10+
dateAdded: new Date('2024-03-19'),
11+
})

services/npm/npm-downloads.service.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const intervalMap = {
2828
transform: json => json.downloads,
2929
interval: 'year',
3030
},
31-
dt: {
31+
d18m: {
3232
query: 'range/1000-01-01:3000-01-01',
3333
// https://github.com/npm/registry/blob/master/docs/download-counts.md#output-1
3434
schema: Joi.object({
@@ -48,7 +48,7 @@ export default class NpmDownloads extends BaseJsonService {
4848

4949
static route = {
5050
base: 'npm',
51-
pattern: ':interval(dw|dm|dy|dt)/:scope(@.+)?/:packageName',
51+
pattern: ':interval(dw|dm|dy|d18m)/:scope(@.+)?/:packageName',
5252
}
5353

5454
static openApi = {
@@ -59,7 +59,8 @@ export default class NpmDownloads extends BaseJsonService {
5959
{
6060
name: 'interval',
6161
example: 'dw',
62-
description: 'Weekly, Monthly, Yearly, or Total downloads',
62+
description:
63+
'Downloads in the last Week, Month, Year, or 18 Months',
6364
schema: { type: 'string', enum: this.getEnum('interval') },
6465
},
6566
{

services/npm/npm-downloads.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { test, given } from 'sazerac'
22
import NpmDownloads from './npm-downloads.service.js'
33

44
describe('NpmDownloads', function () {
5-
test(NpmDownloads._intervalMap.dt.transform, () => {
5+
test(NpmDownloads._intervalMap.d18m.transform, () => {
66
given({
77
downloads: [
88
{ downloads: 2, day: '2018-01-01' },
@@ -13,7 +13,7 @@ describe('NpmDownloads', function () {
1313

1414
test(NpmDownloads.render, () => {
1515
given({
16-
interval: 'dt',
16+
interval: 'd18m',
1717
downloadCount: 0,
1818
}).expect({
1919
color: 'red',

services/npm/npm-downloads.tester.js

+18-8
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,30 @@ t.create('weekly downloads of @cycle/core')
1212
.get('/dw/@cycle/core.json')
1313
.expectBadge({ label: 'downloads', message: isMetricOverTimePeriod })
1414

15-
t.create('total downloads of left-pad').get('/dt/left-pad.json').expectBadge({
16-
label: 'downloads',
17-
message: isMetric,
18-
color: 'brightgreen',
19-
})
15+
t.create('downloads in last 18 months of left-pad')
16+
.get('/d18m/left-pad.json')
17+
.expectBadge({
18+
label: 'downloads',
19+
message: isMetric,
20+
color: 'brightgreen',
21+
})
2022

21-
t.create('total downloads of @cycle/core')
22-
.get('/dt/@cycle/core.json')
23+
t.create('downloads in last 18 months of @cycle/core')
24+
.get('/d18m/@cycle/core.json')
2325
.expectBadge({ label: 'downloads', message: isMetric })
2426

2527
t.create('downloads of unknown package')
26-
.get('/dt/npm-api-does-not-have-this-package.json')
28+
.get('/dy/npm-api-does-not-have-this-package.json')
2729
.expectBadge({
2830
label: 'downloads',
2931
message: 'package not found or too new',
3032
color: 'red',
3133
})
34+
35+
t.create('Total downloads redirect: unscoped package')
36+
.get('/dt/left-pad.svg')
37+
.expectRedirect('/npm/d18m/left-pad.svg')
38+
39+
t.create('Total downloads redirect: scoped package')
40+
.get('/dt/@cycle/core.svg')
41+
.expectRedirect('/npm/d18m/@cycle/core.svg')

0 commit comments

Comments
 (0)