2017-12-20 19:33:33 +08:00
|
|
|
import _ from 'lodash';
|
2017-10-20 21:25:19 +08:00
|
|
|
|
|
|
|
|
const versionPattern = /^(\d+)(?:\.(\d+))?(?:\.(\d+))?(?:-([0-9A-Za-z\.]+))?/;
|
2017-10-20 20:50:44 +08:00
|
|
|
|
|
|
|
|
export class SemVersion {
|
|
|
|
|
major: number;
|
|
|
|
|
minor: number;
|
|
|
|
|
patch: number;
|
|
|
|
|
meta: string;
|
|
|
|
|
|
|
|
|
|
constructor(version: string) {
|
2018-08-26 23:14:40 +08:00
|
|
|
const match = versionPattern.exec(version);
|
2017-10-20 20:50:44 +08:00
|
|
|
if (match) {
|
|
|
|
|
this.major = Number(match[1]);
|
|
|
|
|
this.minor = Number(match[2] || 0);
|
|
|
|
|
this.patch = Number(match[3] || 0);
|
|
|
|
|
this.meta = match[4];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isGtOrEq(version: string): boolean {
|
2018-08-26 23:14:40 +08:00
|
|
|
const compared = new SemVersion(version);
|
2019-02-07 00:59:28 +08:00
|
|
|
|
|
|
|
|
for (let i = 0; i < this.comparable.length; ++i) {
|
|
|
|
|
if (this.comparable[i] > compared.comparable[i]) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (this.comparable[i] < compared.comparable[i]) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2017-10-20 20:50:44 +08:00
|
|
|
}
|
2017-10-20 21:25:19 +08:00
|
|
|
|
|
|
|
|
isValid(): boolean {
|
|
|
|
|
return _.isNumber(this.major);
|
|
|
|
|
}
|
2019-02-07 00:59:28 +08:00
|
|
|
|
|
|
|
|
get comparable() {
|
|
|
|
|
return [this.major, this.minor, this.patch];
|
|
|
|
|
}
|
2017-10-20 20:50:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function isVersionGtOrEq(a: string, b: string): boolean {
|
2018-09-03 17:00:46 +08:00
|
|
|
const aSemver = new SemVersion(a);
|
|
|
|
|
return aSemver.isGtOrEq(b);
|
2017-10-20 20:50:44 +08:00
|
|
|
}
|