Skip to content

Commit d5303f4

Browse files
authoredSep 5, 2019
feat: browse web package version (#1457)
* feat: allow endpoint to query by version * chore: update @verdaccio/ui-theme * test: add unit test for sidebar endpoint by version

File tree

5 files changed

+70
-19
lines changed

5 files changed

+70
-19
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@verdaccio/local-storage": "2.2.1",
2121
"@verdaccio/readme": "8.0.0",
2222
"@verdaccio/streams": "8.0.0",
23-
"@verdaccio/ui-theme": "0.2.3",
23+
"@verdaccio/ui-theme": "0.3.0",
2424
"JSONStream": "1.3.5",
2525
"async": "3.1.0",
2626
"body-parser": "1.19.0",

‎src/api/web/endpoint/package.ts

+27-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
import _ from 'lodash';
2-
import { addScope, addGravatarSupport, deleteProperties, sortByName, parseReadme, formatAuthor, convertDistRemoteToLocalTarballUrls } from '../../../lib/utils';
2+
import {
3+
addScope,
4+
addGravatarSupport,
5+
deleteProperties,
6+
sortByName,
7+
parseReadme,
8+
formatAuthor,
9+
convertDistRemoteToLocalTarballUrls,
10+
isVersionValid
11+
} from '../../../lib/utils';
312
import { allow } from '../../middleware';
413
import { DIST_TAGS, HEADER_TYPE, HEADERS, HTTP_STATUS } from '../../../lib/constants';
514
import { generateGravatarUrl } from '../../../utils/user';
@@ -104,22 +113,28 @@ function addPackageWebApi(route: Router, storage: IStorageHandler, auth: IAuth,
104113
req,
105114
callback: function(err: Error, info: $SidebarPackage): void {
106115
if (_.isNil(err)) {
116+
const {v} = req.query;
107117
let sideBarInfo: any = _.clone(info);
108118
sideBarInfo.versions = convertDistRemoteToLocalTarballUrls(info, req, config.url_prefix).versions;
109-
sideBarInfo.latest = sideBarInfo.versions[info[DIST_TAGS].latest];
110-
sideBarInfo.latest.author = formatAuthor(sideBarInfo.latest.author);
111-
sideBarInfo = deleteProperties(['readme', '_attachments', '_rev', 'name'], sideBarInfo);
112-
if (config.web) {
113-
sideBarInfo = addGravatarSupport(sideBarInfo, config.web.gravatar);
119+
if (isVersionValid(info, v)) {
120+
sideBarInfo.latest = sideBarInfo.versions[v];
121+
sideBarInfo.latest.author = formatAuthor(sideBarInfo.latest.author);
122+
} else {
123+
sideBarInfo.latest = sideBarInfo.versions[info[DIST_TAGS].latest];
124+
sideBarInfo.latest.author = formatAuthor(sideBarInfo.latest.author);
125+
}
126+
sideBarInfo = deleteProperties(['readme', '_attachments', '_rev', 'name'], sideBarInfo);
127+
if (config.web) {
128+
sideBarInfo = addGravatarSupport(sideBarInfo, config.web.gravatar);
129+
} else {
130+
sideBarInfo = addGravatarSupport(sideBarInfo);
131+
}
132+
next(sideBarInfo);
114133
} else {
115-
sideBarInfo = addGravatarSupport(sideBarInfo);
134+
res.status(HTTP_STATUS.NOT_FOUND);
135+
res.end();
116136
}
117-
next(sideBarInfo);
118-
} else {
119-
res.status(HTTP_STATUS.NOT_FOUND);
120-
res.end();
121137
}
122-
},
123138
});
124139
});
125140
}

‎src/lib/utils.ts

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/**
22
* @prettier
33
*/
4-
54
import _ from 'lodash';
65
import fs from 'fs';
76
import assert from 'assert';
@@ -599,3 +598,13 @@ export function encodeScopedUri(packageName) {
599598
export function hasDiffOneKey(versions) {
600599
return Object.keys(versions).length !== 1;
601600
}
601+
602+
export function isVersionValid(packageMeta, packageVersion): boolean {
603+
const hasVersion = typeof packageVersion !== 'undefined';
604+
if (!hasVersion) {
605+
return false;
606+
}
607+
608+
const hasMatchVersion = Object.keys(packageMeta.versions).includes(packageVersion);
609+
return hasMatchVersion;
610+
}

‎test/unit/modules/web/api.web.spec.ts

+28-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe('endpoint web unit test', () => {
8686
});
8787
});
8888

89-
//FIXME: disable, we need to inspect why fails randomly
89+
//FIXME: disabled, we need to inspect why fails randomly
9090
test.skip('should display scoped readme 404', (done) => {
9191
request(app)
9292
.get('/-/verdaccio/package/readme/@scope/404')
@@ -115,6 +115,23 @@ describe('endpoint web unit test', () => {
115115
});
116116
});
117117

118+
test('should display sidebar info by version', (done) => {
119+
request(app)
120+
.get('/-/verdaccio/sidebar/@scope/pk1-test?v=1.0.6')
121+
.expect(HTTP_STATUS.OK)
122+
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
123+
.end(function(err, res) {
124+
const sideBarInfo = res.body;
125+
const latestVersion = publishMetadata.versions[publishMetadata[DIST_TAGS].latest];
126+
127+
expect(sideBarInfo.latest.author).toBeDefined();
128+
expect(sideBarInfo.latest.author.avatar).toMatch(/www.gravatar.com/);
129+
expect(sideBarInfo.latest.author.name).toBe(latestVersion.author.name);
130+
expect(sideBarInfo.latest.author.email).toBe(latestVersion.author.email);
131+
done();
132+
});
133+
});
134+
118135
test('should display sidebar info 404', (done) => {
119136
request(app)
120137
.get('/-/verdaccio/sidebar/@scope/404')
@@ -124,6 +141,16 @@ describe('endpoint web unit test', () => {
124141
done();
125142
});
126143
});
144+
145+
test('should display sidebar info 404 with version', (done) => {
146+
request(app)
147+
.get('/-/verdaccio/sidebar/@scope/pk1-test?v=0.0.0-not-found')
148+
.expect(HTTP_STATUS.NOT_FOUND)
149+
.expect(HEADER_TYPE.CONTENT_TYPE, HEADERS.JSON_CHARSET)
150+
.end(function() {
151+
done();
152+
});
153+
});
127154
});
128155

129156
describe('Search', () => {

‎yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1732,10 +1732,10 @@
17321732
resolved "https://registry.verdaccio.org/@verdaccio%2ftypes/-/types-5.2.2.tgz#ecea86c864b905314e29c88e5f93aebcf116c5ff"
17331733
integrity sha512-5NbSsCcwCt5ZrA6+vXqUXFM2tAXkS++dju5XSh4TGM+ISon/FS/oUQtE7zmhlaftCt2z2LRhg0/b3wV8QUxSGQ==
17341734

1735-
"@verdaccio/ui-theme@0.2.3":
1736-
version "0.2.3"
1737-
resolved "https://registry.verdaccio.org/@verdaccio%2fui-theme/-/ui-theme-0.2.3.tgz#d25335be52bc15ad5c57cbff7607ddc8bf857833"
1738-
integrity sha512-rzn336VTjReOyxPdYapMDxgH+5PvxpT49GGdnHOcB7JEdDgl4Qa2mQIzRol/3GLahXMfOX+6uRY/ySBdlRo69A==
1735+
"@verdaccio/ui-theme@0.3.0":
1736+
version "0.3.0"
1737+
resolved "https://registry.verdaccio.org/@verdaccio%2fui-theme/-/ui-theme-0.3.0.tgz#573a04437cc672e3efe6f4db055f775d86df0958"
1738+
integrity sha512-CpbiJTxacv/j7yG31x089ZRM4bVTqGRxQEgN4uyqepWtYu6OgI/SvU6rpTuF1BjMkBuvSv8SRBKhpJav5oEs0Q==
17391739

17401740
"@yarnpkg/lockfile@^1.1.0":
17411741
version "1.1.0"

0 commit comments

Comments
 (0)
Please sign in to comment.