2022-04-18 23:36:09 +00:00
|
|
|
package funkin.util;
|
|
|
|
|
|
|
|
import thx.semver.Version;
|
|
|
|
import thx.semver.VersionRule;
|
|
|
|
|
|
|
|
/**
|
2023-11-07 09:04:22 +00:00
|
|
|
* Utility functions for operating on semantic versions.
|
|
|
|
*
|
2022-04-18 23:36:09 +00:00
|
|
|
* Remember, increment the patch version (1.0.x) if you make a bugfix,
|
|
|
|
* increment the minor version (1.x.0) if you make a new feature (but previous content is still compatible),
|
|
|
|
* and increment the major version (x.0.0) if you make a breaking change (e.g. new API or reorganized file format).
|
|
|
|
*/
|
|
|
|
class VersionUtil
|
|
|
|
{
|
2023-01-23 03:25:45 +00:00
|
|
|
/**
|
|
|
|
* Checks that a given verison number satisisfies a given version rule.
|
|
|
|
* Version rule can be complex, e.g. "1.0.x" or ">=1.0.0,<1.1.0", or anything NPM supports.
|
|
|
|
*/
|
2023-08-22 08:27:30 +00:00
|
|
|
public static function validateVersion(version:thx.semver.Version, versionRule:thx.semver.VersionRule):Bool
|
2023-01-23 03:25:45 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2023-08-22 08:27:30 +00:00
|
|
|
return version.satisfies(versionRule);
|
2023-01-23 03:25:45 +00:00
|
|
|
}
|
|
|
|
catch (e)
|
|
|
|
{
|
|
|
|
trace('[VERSIONUTIL] Invalid semantic version: ${version}');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2023-08-22 08:27:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks that a given verison number satisisfies a given version rule.
|
|
|
|
* Version rule can be complex, e.g. "1.0.x" or ">=1.0.0,<1.1.0", or anything NPM supports.
|
|
|
|
*/
|
|
|
|
public static function validateVersionStr(version:String, versionRule:String):Bool
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
var version:thx.semver.Version = version;
|
|
|
|
var versionRule:thx.semver.VersionRule = versionRule;
|
|
|
|
return version.satisfies(versionRule);
|
|
|
|
}
|
|
|
|
catch (e)
|
|
|
|
{
|
|
|
|
trace('[VERSIONUTIL] Invalid semantic version: ${version}');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get and parse the semantic version from a JSON string.
|
|
|
|
* @param input The JSON string to parse.
|
|
|
|
* @return The semantic version, or null if it could not be parsed.
|
|
|
|
*/
|
2023-09-18 21:59:55 +00:00
|
|
|
public static function getVersionFromJSON(input:Null<String>):Null<thx.semver.Version>
|
2023-08-22 08:27:30 +00:00
|
|
|
{
|
2023-09-18 21:59:55 +00:00
|
|
|
if (input == null) return null;
|
2023-08-22 08:27:30 +00:00
|
|
|
var parsed = SerializerUtil.fromJSON(input);
|
|
|
|
if (parsed == null) return null;
|
|
|
|
if (parsed.version == null) return null;
|
|
|
|
var versionStr:String = parsed.version; // Dynamic -> String cast
|
|
|
|
var version:thx.semver.Version = versionStr; // Implicit, not explicit, cast.
|
|
|
|
return version;
|
|
|
|
}
|
2022-04-18 23:36:09 +00:00
|
|
|
}
|