-
-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #4173 Autogenerate spec version for modpacks
- Loading branch information
Showing
5 changed files
with
132 additions
and
118 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
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
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,127 @@ | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
|
||
using Newtonsoft.Json.Linq; | ||
|
||
using CKAN.Versioning; | ||
|
||
namespace CKAN | ||
{ | ||
public static class SpecVersionAnalyzer | ||
{ | ||
public static ModuleVersion MinimumSpecVersion(CkanModule module) | ||
=> MinimumSpecVersion(JObject.FromObject(module)); | ||
|
||
public static ModuleVersion MinimumSpecVersion(JObject json) | ||
// Add new stuff at the top, versions in this function should be in descending order | ||
=> json["download_hash"] is JObject hashes | ||
&& (!hashes.ContainsKey("sha256") || !hashes.ContainsKey("sha1")) ? v1p35 | ||
|
||
: json["download"] is JArray ? v1p34 | ||
|
||
: AllRelationships(json).Any(rel => rel.ContainsKey("any_of") | ||
&& rel.ContainsKey("choice_help_text")) ? v1p31 | ||
|
||
: HasLicense(json, "MPL-2.0") ? v1p30 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>().Any(stanza => | ||
(((string?)stanza["install_to"])?.StartsWith("Ships/Script") ?? false) | ||
|| ((string?)stanza["install_to"] == "Ships" && ( | ||
// find: .../Script, install_to: Ships | ||
((string?)stanza["find"])?.Split(new char[] {'/'})?.LastOrDefault() == "Script" | ||
// file: .../Script, install_to: Ships | ||
|| ((string?)stanza["file"])?.Split(new char[] {'/'})?.LastOrDefault() == "Script" | ||
// install_to: Ships, as: Script | ||
|| (((string?)stanza["as"])?.EndsWith("Script") ?? false)))) ?? false ? v1p29 | ||
|
||
: (string?)json["kind"] == "dlc" ? v1p28 | ||
|
||
: json.ContainsKey("replaced_by") ? v1p26 | ||
|
||
: AllRelationships(json).Any(rel => rel.ContainsKey("any_of")) ? v1p26 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => (string?)stanza["install_to"] == "Missions") ?? false ? v1p25 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => stanza.ContainsKey("include_only") | ||
|| stanza.ContainsKey("include_only_regexp")) ?? false ? v1p24 | ||
|
||
: HasLicense(json, "Unlicense") ? v1p18 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => stanza.ContainsKey("as")) ?? false ? v1p18 | ||
|
||
: json.ContainsKey("ksp_version_strict") ? v1p16 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => ((string?)stanza["install_to"] ?? "").StartsWith("Ships/@thumbs")) ?? false ? v1p16 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => stanza.ContainsKey("find_matches_files")) ?? false ? v1p16 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => (string?)stanza["install_to"] == "Scenarios") ?? false ? v1p14 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => ((string?)stanza["install_to"] ?? "").StartsWith("Ships/")) ?? false ? v1p12 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => stanza.ContainsKey("find_regexp") | ||
|| stanza.ContainsKey("filter_regexp")) ?? false ? v1p10 | ||
|
||
: json["license"] is JArray ? v1p8 | ||
|
||
: (string?)json["kind"] == "metapackage" ? v1p6 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => stanza.ContainsKey("find")) ?? false ? v1p4 | ||
|
||
: HasLicense(json, "WTFPL") ? v1p2 | ||
|
||
: json.ContainsKey("supports") ? v1p2 | ||
|
||
: (json["install"] as JArray)?.OfType<JObject>() | ||
.Any(stanza => ((string?)stanza["install_to"] ?? "").StartsWith("GameData/")) ?? false ? v1p2 | ||
|
||
: v1p0; | ||
|
||
private static bool HasLicense(JObject json, | ||
string name) | ||
=> json["license"] is JArray array ? array.Contains(name) | ||
: json["license"] is JToken token && ((string?)token) == name; | ||
|
||
private static IEnumerable<JObject> AllRelationships(JObject json) | ||
=> relProps.SelectMany(p => json[p] is JArray array ? array.OfType<JObject>() | ||
: Enumerable.Empty<JObject>()); | ||
|
||
private static readonly string[] relProps = new string[] | ||
{ | ||
"depends", | ||
"recommends", | ||
"suggests", | ||
"conflicts", | ||
"supports" | ||
}; | ||
|
||
private static readonly ModuleVersion v1p0 = new ModuleVersion("v1.0"); | ||
private static readonly ModuleVersion v1p2 = new ModuleVersion("v1.2"); | ||
private static readonly ModuleVersion v1p4 = new ModuleVersion("v1.4"); | ||
private static readonly ModuleVersion v1p6 = new ModuleVersion("v1.6"); | ||
private static readonly ModuleVersion v1p8 = new ModuleVersion("v1.8"); | ||
private static readonly ModuleVersion v1p10 = new ModuleVersion("v1.10"); | ||
private static readonly ModuleVersion v1p12 = new ModuleVersion("v1.12"); | ||
private static readonly ModuleVersion v1p14 = new ModuleVersion("v1.14"); | ||
private static readonly ModuleVersion v1p16 = new ModuleVersion("v1.16"); | ||
private static readonly ModuleVersion v1p18 = new ModuleVersion("v1.18"); | ||
private static readonly ModuleVersion v1p24 = new ModuleVersion("v1.24"); | ||
private static readonly ModuleVersion v1p25 = new ModuleVersion("v1.25"); | ||
private static readonly ModuleVersion v1p26 = new ModuleVersion("v1.26"); | ||
private static readonly ModuleVersion v1p28 = new ModuleVersion("v1.28"); | ||
private static readonly ModuleVersion v1p29 = new ModuleVersion("v1.29"); | ||
private static readonly ModuleVersion v1p30 = new ModuleVersion("v1.30"); | ||
private static readonly ModuleVersion v1p31 = new ModuleVersion("v1.31"); | ||
private static readonly ModuleVersion v1p34 = new ModuleVersion("v1.34"); | ||
private static readonly ModuleVersion v1p35 = new ModuleVersion("v1.35"); | ||
} | ||
} |
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
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