assetguard.js 62 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639
  1. /**
  2. * AssetGuard
  3. *
  4. * This module aims to provide a comprehensive and stable method for processing
  5. * and downloading game assets for the WesterosCraft server. Download meta is
  6. * for several identifiers (categories) is stored inside of an AssetGuard object.
  7. * This meta data is initially empty until one of the module's processing functions
  8. * are called. That function will process the corresponding asset index and validate
  9. * any exisitng local files. If a file is missing or fails validation, it will be
  10. * placed into a download queue (array). This queue is wrapped in a download tracker object
  11. * so that essential information can be cached. The download tracker object is then
  12. * assigned as the value of the identifier in the AssetGuard object. These download
  13. * trackers will remain idle until an async process is started to process them.
  14. *
  15. * Once the async process is started, any enqueued assets will be downloaded. The AssetGuard
  16. * object will emit events throughout the download whose name correspond to the identifier
  17. * being processed. For example, if the 'assets' identifier was being processed, whenever
  18. * the download stream recieves data, the event 'assetsdlprogress' will be emitted off of
  19. * the AssetGuard instance. This can be listened to by external modules allowing for
  20. * categorical tracking of the downloading process.
  21. *
  22. * @module assetguard
  23. */
  24. // Requirements
  25. const AdmZip = require('adm-zip')
  26. const async = require('async')
  27. const child_process = require('child_process')
  28. const crypto = require('crypto')
  29. const EventEmitter = require('events')
  30. const fs = require('fs')
  31. const isDev = require('electron-is-dev')
  32. const mkpath = require('mkdirp');
  33. const path = require('path')
  34. const Registry = require('winreg')
  35. const request = require('request')
  36. const tar = require('tar-fs')
  37. const zlib = require('zlib')
  38. // Constants
  39. const PLATFORM_MAP = {
  40. win32: '-windows-x64.tar.gz',
  41. darwin: '-macosx-x64.tar.gz',
  42. linux: '-linux-x64.tar.gz'
  43. }
  44. // Classes
  45. /** Class representing a base asset. */
  46. class Asset {
  47. /**
  48. * Create an asset.
  49. *
  50. * @param {any} id The id of the asset.
  51. * @param {string} hash The hash value of the asset.
  52. * @param {number} size The size in bytes of the asset.
  53. * @param {string} from The url where the asset can be found.
  54. * @param {string} to The absolute local file path of the asset.
  55. */
  56. constructor(id, hash, size, from, to){
  57. this.id = id
  58. this.hash = hash
  59. this.size = size
  60. this.from = from
  61. this.to = to
  62. }
  63. }
  64. /** Class representing a mojang library. */
  65. class Library extends Asset {
  66. /**
  67. * Converts the process.platform OS names to match mojang's OS names.
  68. */
  69. static mojangFriendlyOS(){
  70. const opSys = process.platform
  71. if (opSys === 'darwin') {
  72. return 'osx';
  73. } else if (opSys === 'win32'){
  74. return 'windows';
  75. } else if (opSys === 'linux'){
  76. return 'linux';
  77. } else {
  78. return 'unknown_os';
  79. }
  80. }
  81. /**
  82. * Checks whether or not a library is valid for download on a particular OS, following
  83. * the rule format specified in the mojang version data index. If the allow property has
  84. * an OS specified, then the library can ONLY be downloaded on that OS. If the disallow
  85. * property has instead specified an OS, the library can be downloaded on any OS EXCLUDING
  86. * the one specified.
  87. *
  88. * @param {Object} rules The Library's download rules.
  89. * @returns {boolean} True if the Library follows the specified rules, otherwise false.
  90. */
  91. static validateRules(rules){
  92. if(rules == null) return true
  93. let result = true
  94. rules.forEach((rule) => {
  95. const action = rule['action']
  96. const osProp = rule['os']
  97. if(action != null){
  98. if(osProp != null){
  99. const osName = osProp['name']
  100. const osMoj = Library.mojangFriendlyOS()
  101. if(action === 'allow'){
  102. result = osName === osMoj
  103. return
  104. } else if(action === 'disallow'){
  105. result = osName !== osMoj
  106. return
  107. }
  108. }
  109. }
  110. })
  111. return result
  112. }
  113. }
  114. class DistroModule extends Asset {
  115. /**
  116. * Create a DistroModule. This is for processing,
  117. * not equivalent to the module objects in the
  118. * distro index.
  119. *
  120. * @param {any} id The id of the asset.
  121. * @param {string} hash The hash value of the asset.
  122. * @param {number} size The size in bytes of the asset.
  123. * @param {string} from The url where the asset can be found.
  124. * @param {string} to The absolute local file path of the asset.
  125. * @param {string} type The the module type.
  126. */
  127. constructor(id, hash, size, from, to, type){
  128. super(id, hash, size, from, to)
  129. this.type = type
  130. }
  131. }
  132. /**
  133. * Class representing a download tracker. This is used to store meta data
  134. * about a download queue, including the queue itself.
  135. */
  136. class DLTracker {
  137. /**
  138. * Create a DLTracker
  139. *
  140. * @param {Array.<Asset>} dlqueue An array containing assets queued for download.
  141. * @param {number} dlsize The combined size of each asset in the download queue array.
  142. * @param {function(Asset)} callback Optional callback which is called when an asset finishes downloading.
  143. */
  144. constructor(dlqueue, dlsize, callback = null){
  145. this.dlqueue = dlqueue
  146. this.dlsize = dlsize
  147. this.callback = callback
  148. }
  149. }
  150. let distributionData = null
  151. /**
  152. * Central object class used for control flow. This object stores data about
  153. * categories of downloads. Each category is assigned an identifier with a
  154. * DLTracker object as its value. Combined information is also stored, such as
  155. * the total size of all the queued files in each category. This event is used
  156. * to emit events so that external modules can listen into processing done in
  157. * this module.
  158. */
  159. class AssetGuard extends EventEmitter {
  160. /**
  161. * Create an instance of AssetGuard.
  162. * On creation the object's properties are never-null default
  163. * values. Each identifier is resolved to an empty DLTracker.
  164. *
  165. * @param {string} basePath The base path for asset validation (game root).
  166. * @param {string} launcherPath The root launcher directory.
  167. * @param {string} javaexec The path to a java executable which will be used
  168. * to finalize installation.
  169. */
  170. constructor(basePath, launcherPath, javaexec){
  171. super()
  172. this.totaldlsize = 0
  173. this.progress = 0
  174. this.assets = new DLTracker([], 0)
  175. this.libraries = new DLTracker([], 0)
  176. this.files = new DLTracker([], 0)
  177. this.forge = new DLTracker([], 0)
  178. this.java = new DLTracker([], 0)
  179. this.extractQueue = []
  180. this.basePath = basePath
  181. this.launcherPath = launcherPath
  182. this.javaexec = javaexec
  183. }
  184. // Static Utility Functions
  185. // #region
  186. // Static General Resolve Functions
  187. // #region
  188. /**
  189. * Resolve an artifact id into a path. For example, on windows
  190. * 'net.minecraftforge:forge:1.11.2-13.20.0.2282', '.jar' becomes
  191. * net\minecraftforge\forge\1.11.2-13.20.0.2282\forge-1.11.2-13.20.0.2282.jar
  192. *
  193. * @param {string} artifactid The artifact id string.
  194. * @param {string} extension The extension of the file at the resolved path.
  195. * @returns {string} The resolved relative path from the artifact id.
  196. */
  197. static _resolvePath(artifactid, extension){
  198. let ps = artifactid.split(':')
  199. let cs = ps[0].split('.')
  200. cs.push(ps[1])
  201. cs.push(ps[2])
  202. cs.push(ps[1].concat('-').concat(ps[2]).concat(extension))
  203. return path.join.apply(path, cs)
  204. }
  205. /**
  206. * Resolve an artifact id into a URL. For example,
  207. * 'net.minecraftforge:forge:1.11.2-13.20.0.2282', '.jar' becomes
  208. * net/minecraftforge/forge/1.11.2-13.20.0.2282/forge-1.11.2-13.20.0.2282.jar
  209. *
  210. * @param {string} artifactid The artifact id string.
  211. * @param {string} extension The extension of the file at the resolved url.
  212. * @returns {string} The resolved relative URL from the artifact id.
  213. */
  214. static _resolveURL(artifactid, extension){
  215. let ps = artifactid.split(':')
  216. let cs = ps[0].split('.')
  217. cs.push(ps[1])
  218. cs.push(ps[2])
  219. cs.push(ps[1].concat('-').concat(ps[2]).concat(extension))
  220. return cs.join('/')
  221. }
  222. // #endregion
  223. // Static Hash Validation Functions
  224. // #region
  225. /**
  226. * Calculates the hash for a file using the specified algorithm.
  227. *
  228. * @param {Buffer} buf The buffer containing file data.
  229. * @param {string} algo The hash algorithm.
  230. * @returns {string} The calculated hash in hex.
  231. */
  232. static _calculateHash(buf, algo){
  233. return crypto.createHash(algo).update(buf).digest('hex')
  234. }
  235. /**
  236. * Used to parse a checksums file. This is specifically designed for
  237. * the checksums.sha1 files found inside the forge scala dependencies.
  238. *
  239. * @param {string} content The string content of the checksums file.
  240. * @returns {Object} An object with keys being the file names, and values being the hashes.
  241. */
  242. static _parseChecksumsFile(content){
  243. let finalContent = {}
  244. let lines = content.split('\n')
  245. for(let i=0; i<lines.length; i++){
  246. let bits = lines[i].split(' ')
  247. if(bits[1] == null) {
  248. continue
  249. }
  250. finalContent[bits[1]] = bits[0]
  251. }
  252. return finalContent
  253. }
  254. /**
  255. * Validate that a file exists and matches a given hash value.
  256. *
  257. * @param {string} filePath The path of the file to validate.
  258. * @param {string} algo The hash algorithm to check against.
  259. * @param {string} hash The existing hash to check against.
  260. * @returns {boolean} True if the file exists and calculated hash matches the given hash, otherwise false.
  261. */
  262. static _validateLocal(filePath, algo, hash){
  263. if(fs.existsSync(filePath)){
  264. //No hash provided, have to assume it's good.
  265. if(hash == null){
  266. return true
  267. }
  268. let fileName = path.basename(filePath)
  269. let buf = fs.readFileSync(filePath)
  270. let calcdhash = AssetGuard._calculateHash(buf, algo)
  271. return calcdhash === hash
  272. }
  273. return false;
  274. }
  275. /**
  276. * Validates a file in the style used by forge's version index.
  277. *
  278. * @param {string} filePath The path of the file to validate.
  279. * @param {Array.<string>} checksums The checksums listed in the forge version index.
  280. * @returns {boolean} True if the file exists and the hashes match, otherwise false.
  281. */
  282. static _validateForgeChecksum(filePath, checksums){
  283. if(fs.existsSync(filePath)){
  284. if(checksums == null || checksums.length === 0){
  285. return true
  286. }
  287. let buf = fs.readFileSync(filePath)
  288. let calcdhash = AssetGuard._calculateHash(buf, 'sha1')
  289. let valid = checksums.includes(calcdhash)
  290. if(!valid && filePath.endsWith('.jar')){
  291. valid = AssetGuard._validateForgeJar(filePath, checksums)
  292. }
  293. return valid
  294. }
  295. return false
  296. }
  297. /**
  298. * Validates a forge jar file dependency who declares a checksums.sha1 file.
  299. * This can be an expensive task as it usually requires that we calculate thousands
  300. * of hashes.
  301. *
  302. * @param {Buffer} buf The buffer of the jar file.
  303. * @param {Array.<string>} checksums The checksums listed in the forge version index.
  304. * @returns {boolean} True if all hashes declared in the checksums.sha1 file match the actual hashes.
  305. */
  306. static _validateForgeJar(buf, checksums){
  307. // Double pass method was the quickest I found. I tried a version where we store data
  308. // to only require a single pass, plus some quick cleanup but that seemed to take slightly more time.
  309. const hashes = {}
  310. let expected = {}
  311. const zip = new AdmZip(buf)
  312. const zipEntries = zip.getEntries()
  313. //First pass
  314. for(let i=0; i<zipEntries.length; i++){
  315. let entry = zipEntries[i]
  316. if(entry.entryName === 'checksums.sha1'){
  317. expected = AssetGuard._parseChecksumsFile(zip.readAsText(entry))
  318. }
  319. hashes[entry.entryName] = AssetGuard._calculateHash(entry.getData(), 'sha1')
  320. }
  321. if(!checksums.includes(hashes['checksums.sha1'])){
  322. return false
  323. }
  324. //Check against expected
  325. const expectedEntries = Object.keys(expected)
  326. for(let i=0; i<expectedEntries.length; i++){
  327. if(expected[expectedEntries[i]] !== hashes[expectedEntries[i]]){
  328. return false
  329. }
  330. }
  331. return true
  332. }
  333. // #endregion
  334. // Static Distribution Index Functions
  335. // #region
  336. /**
  337. * Statically retrieve the distribution data.
  338. *
  339. * @param {string} launcherPath The root launcher directory.
  340. * @param {boolean} cached Optional. False if the distro should be freshly downloaded, else
  341. * a cached copy will be returned.
  342. * @returns {Promise.<Object>} A promise which resolves to the distribution data object.
  343. */
  344. static retrieveDistributionData(launcherPath, cached = true){
  345. return new Promise((resolve, reject) => {
  346. if(!cached || distributionData == null){
  347. // TODO Download file from upstream.
  348. const distroURL = 'http://mc.westeroscraft.com/WesterosCraftLauncher/westeroscraft.json'
  349. const distroDest = path.join(launcherPath, 'westeroscraft.json')
  350. // TODO Fulfill with JSON.parse()
  351. request(distroURL, (error, resp, body) => {
  352. distributionData = JSON.parse(body)
  353. fs.writeFile(distroDest, body, 'utf-8', (err) => {
  354. if(!err){
  355. resolve(distributionData)
  356. } else {
  357. reject(err)
  358. }
  359. })
  360. })
  361. // Workaround while file is not hosted.
  362. /*fs.readFile(path.join(__dirname, '..', 'westeroscraft.json'), 'utf-8', (err, data) => {
  363. distributionData = JSON.parse(data)
  364. resolve(distributionData)
  365. })*/
  366. } else {
  367. resolve(distributionData)
  368. }
  369. })
  370. }
  371. /**
  372. * Recieved a cached version of the distribution index.
  373. *
  374. * @param {string} launcherPath The root launcher directory.
  375. * @param {boolean} cached Optional. False if the distro should be freshly downloaded, else
  376. * a cached copy will be returned.
  377. * @returns {Object} The distribution data object.
  378. */
  379. static retrieveDistributionDataSync(launcherPath, cached = true){
  380. if(!cached || distributionData == null){
  381. distributionData = JSON.parse(fs.readFileSync(path.join(launcherPath, 'westeroscraft.json'), 'utf-8'))
  382. }
  383. return distributionData
  384. }
  385. /**
  386. * Resolve the default selected server from the distribution index.
  387. *
  388. * @param {string} launcherPath The root launcher directory.
  389. * @returns {Object} An object resolving to the default selected server.
  390. */
  391. static resolveSelectedServer(launcherPath){
  392. const distro = AssetGuard.retrieveDistributionDataSync(launcherPath)
  393. const servers = distro.servers
  394. for(let i=0; i<servers.length; i++){
  395. if(servers[i].default_selected){
  396. return servers[i]
  397. }
  398. }
  399. // If no server declares default_selected, default to the first one declared.
  400. return (servers.length > 0) ? servers[0] : null
  401. }
  402. /**
  403. * Gets a server from the distro index which maches the provided ID.
  404. * Returns null if the ID could not be found or the distro index has
  405. * not yet been loaded.
  406. *
  407. * @param {string} launcherPath The root launcher directory.
  408. * @param {string} serverID The id of the server to retrieve.
  409. * @returns {Object} The server object whose id matches the parameter.
  410. */
  411. static getServerById(launcherPath, serverID){
  412. if(distributionData == null){
  413. AssetGuard.retrieveDistributionDataSync(launcherPath, false)
  414. }
  415. const servers = distributionData.servers
  416. let serv = null
  417. for(let i=0; i<servers.length; i++){
  418. if(servers[i].id === serverID){
  419. serv = servers[i]
  420. }
  421. }
  422. return serv
  423. }
  424. // #endregion
  425. // Miscellaneous Static Functions
  426. // #region
  427. /**
  428. * Extracts and unpacks a file from .pack.xz format.
  429. *
  430. * @param {Array.<string>} filePaths The paths of the files to be extracted and unpacked.
  431. * @returns {Promise.<void>} An empty promise to indicate the extraction has completed.
  432. */
  433. static _extractPackXZ(filePaths, javaExecutable){
  434. console.log('[PackXZExtract] Starting')
  435. return new Promise((resolve, reject) => {
  436. let libPath
  437. if(isDev){
  438. libPath = path.join(process.cwd(), 'libraries', 'java', 'PackXZExtract.jar')
  439. } else {
  440. if(process.platform === 'darwin'){
  441. libPath = path.join(process.cwd(),'Contents', 'Resources', 'libraries', 'java', 'PackXZExtract.jar')
  442. } else {
  443. libPath = path.join(process.cwd(), 'resources', 'libraries', 'java', 'PackXZExtract.jar')
  444. }
  445. }
  446. const filePath = filePaths.join(',')
  447. const child = child_process.spawn(javaExecutable, ['-jar', libPath, '-packxz', filePath])
  448. child.stdout.on('data', (data) => {
  449. console.log('[PackXZExtract]', data.toString('utf8'))
  450. })
  451. child.stderr.on('data', (data) => {
  452. console.log('[PackXZExtract]', data.toString('utf8'))
  453. })
  454. child.on('close', (code, signal) => {
  455. console.log('[PackXZExtract]', 'Exited with code', code)
  456. resolve()
  457. })
  458. })
  459. }
  460. /**
  461. * Function which finalizes the forge installation process. This creates a 'version'
  462. * instance for forge and saves its version.json file into that instance. If that
  463. * instance already exists, the contents of the version.json file are read and returned
  464. * in a promise.
  465. *
  466. * @param {Asset} asset The Asset object representing Forge.
  467. * @param {string} basePath Base path for asset validation (game root).
  468. * @returns {Promise.<Object>} A promise which resolves to the contents of forge's version.json.
  469. */
  470. static _finalizeForgeAsset(asset, basePath){
  471. return new Promise((resolve, reject) => {
  472. fs.readFile(asset.to, (err, data) => {
  473. const zip = new AdmZip(data)
  474. const zipEntries = zip.getEntries()
  475. for(let i=0; i<zipEntries.length; i++){
  476. if(zipEntries[i].entryName === 'version.json'){
  477. const forgeVersion = JSON.parse(zip.readAsText(zipEntries[i]))
  478. const versionPath = path.join(basePath, 'versions', forgeVersion.id)
  479. const versionFile = path.join(versionPath, forgeVersion.id + '.json')
  480. if(!fs.existsSync(versionFile)){
  481. mkpath.sync(versionPath)
  482. fs.writeFileSync(path.join(versionPath, forgeVersion.id + '.json'), zipEntries[i].getData())
  483. resolve(forgeVersion)
  484. } else {
  485. //Read the saved file to allow for user modifications.
  486. resolve(JSON.parse(fs.readFileSync(versionFile, 'utf-8')))
  487. }
  488. return
  489. }
  490. }
  491. //We didn't find forge's version.json.
  492. reject('Unable to finalize Forge processing, version.json not found! Has forge changed their format?')
  493. })
  494. })
  495. }
  496. // #endregion
  497. // Static Java Utility
  498. // #region
  499. /**
  500. * @typedef OracleJREData
  501. * @property {string} uri The base uri of the JRE.
  502. * @property {{major: string, update: string, build: string}} version Object containing version information.
  503. */
  504. /**
  505. * Resolves the latest version of Oracle's JRE and parses its download link.
  506. *
  507. * @returns {Promise.<OracleJREData>} Promise which resolved to an object containing the JRE download data.
  508. */
  509. static _latestJREOracle(){
  510. const url = 'http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html'
  511. const regex = /http:\/\/.+?(?=\/java)\/java\/jdk\/([0-9]+u[0-9]+)-(b[0-9]+)\/([a-f0-9]{32})?\/jre-\1/
  512. return new Promise((resolve, reject) => {
  513. request(url, (err, resp, body) => {
  514. if(!err){
  515. const arr = body.match(regex)
  516. const verSplit = arr[1].split('u')
  517. resolve({
  518. uri: arr[0],
  519. version: {
  520. major: verSplit[0],
  521. update: verSplit[1],
  522. build: arr[2]
  523. }
  524. })
  525. } else {
  526. resolve(null)
  527. }
  528. })
  529. })
  530. }
  531. /**
  532. * Returns the path of the OS-specific executable for the given Java
  533. * installation. Supported OS's are win32, darwin, linux.
  534. *
  535. * @param {string} rootDir The root directory of the Java installation.
  536. * @returns {string} The path to the Java executable.
  537. */
  538. static javaExecFromRoot(rootDir){
  539. if(process.platform === 'win32'){
  540. return path.join(rootDir, 'bin', 'javaw.exe')
  541. } else if(process.platform === 'darwin'){
  542. return path.join(rootDir, 'Contents', 'Home', 'bin', 'java')
  543. } else if(process.platform === 'linux'){
  544. return path.join(rootDir, 'bin', 'java')
  545. }
  546. return rootDir
  547. }
  548. /**
  549. * Check to see if the given path points to a Java executable.
  550. *
  551. * @param {string} pth The path to check against.
  552. * @returns {boolean} True if the path points to a Java executable, otherwise false.
  553. */
  554. static isJavaExecPath(pth){
  555. if(process.platform === 'win32'){
  556. return pth.endsWith(path.join('bin', 'javaw.exe'))
  557. } else if(process.platform === 'darwin'){
  558. return pth.endsWith(path.join('bin', 'java'))
  559. } else if(process.platform === 'linux'){
  560. return pth.endsWith(path.join('bin', 'java'))
  561. }
  562. return false
  563. }
  564. /**
  565. * Load Mojang's launcher.json file.
  566. *
  567. * @returns {Promise.<Object>} Promise which resolves to Mojang's launcher.json object.
  568. */
  569. static loadMojangLauncherData(){
  570. return new Promise((resolve, reject) => {
  571. request.get('https://launchermeta.mojang.com/mc/launcher.json', (err, resp, body) => {
  572. if(err){
  573. resolve(null)
  574. } else {
  575. resolve(JSON.parse(body))
  576. }
  577. })
  578. })
  579. }
  580. /**
  581. * Parses a **full** Java Runtime version string and resolves
  582. * the version information. Uses Java 8 formatting.
  583. *
  584. * @param {string} verString Full version string to parse.
  585. * @returns Object containing the version information.
  586. */
  587. static parseJavaRuntimeVersion(verString){
  588. // 1.{major}.0_{update}-b{build}
  589. // ex. 1.8.0_152-b16
  590. const ret = {}
  591. let pts = verString.split('-')
  592. ret.build = parseInt(pts[1].substring(1))
  593. pts = pts[0].split('_')
  594. ret.update = parseInt(pts[1])
  595. ret.major = parseInt(pts[0].split('.')[1])
  596. return ret
  597. }
  598. /**
  599. * Validates the output of a JVM's properties. Currently validates that a JRE is x64
  600. * and that the major = 8, update > 52.
  601. *
  602. * @param {string} stderr The output to validate.
  603. *
  604. * @returns {Promise.<boolean>} A promise which resolves to true if the properties are valid.
  605. * Otherwise false.
  606. */
  607. static _validateJVMProperties(stderr){
  608. const res = stderr
  609. const props = res.split('\n')
  610. const goal = 2
  611. let checksum = 0
  612. for(let i=0; i<props.length; i++){
  613. if(props[i].indexOf('sun.arch.data.model') > -1){
  614. let arch = props[i].split('=')[1].trim()
  615. console.log(props[i].trim())
  616. if(parseInt(arch) === 64){
  617. ++checksum
  618. if(checksum === goal){
  619. return true
  620. }
  621. }
  622. } else if(props[i].indexOf('java.runtime.version') > -1){
  623. let verString = props[i].split('=')[1].trim()
  624. console.log(props[i].trim())
  625. const verOb = AssetGuard.parseJavaRuntimeVersion(verString)
  626. if(verOb.major === 8 && verOb.update > 52){
  627. ++checksum
  628. if(checksum === goal){
  629. return true
  630. }
  631. }
  632. }
  633. }
  634. return checksum === goal
  635. }
  636. /**
  637. * Validates that a Java binary is at least 64 bit. This makes use of the non-standard
  638. * command line option -XshowSettings:properties. The output of this contains a property,
  639. * sun.arch.data.model = ARCH, in which ARCH is either 32 or 64. This option is supported
  640. * in Java 8 and 9. Since this is a non-standard option. This will resolve to true if
  641. * the function's code throws errors. That would indicate that the option is changed or
  642. * removed.
  643. *
  644. * @param {string} binaryExecPath Path to the java executable we wish to validate.
  645. *
  646. * @returns {Promise.<boolean>} Resolves to false only if the test is successful and the result
  647. * is less than 64.
  648. */
  649. static _validateJavaBinary(binaryExecPath){
  650. return new Promise((resolve, reject) => {
  651. if(fs.existsSync(binaryExecPath)){
  652. child_process.exec('"' + binaryExecPath + '" -XshowSettings:properties', (err, stdout, stderr) => {
  653. try {
  654. // Output is stored in stderr?
  655. resolve(this._validateJVMProperties(stderr))
  656. } catch (err){
  657. // Output format might have changed, validation cannot be completed.
  658. resolve(false)
  659. }
  660. })
  661. } else {
  662. resolve(false)
  663. }
  664. })
  665. }
  666. /*static _validateJavaBinaryDarwin(binaryPath){
  667. return new Promise((resolve, reject) => {
  668. if(fs.existsSync(binaryExecPath)){
  669. child_process.exec('export JAVA_HOME="' + binaryPath + '"; java -XshowSettings:properties', (err, stdout, stderr) => {
  670. try {
  671. // Output is stored in stderr?
  672. resolve(this._validateJVMProperties(stderr))
  673. } catch (err){
  674. // Output format might have changed, validation cannot be completed.
  675. resolve(false)
  676. }
  677. })
  678. } else {
  679. resolve(false)
  680. }
  681. })
  682. }*/
  683. /**
  684. * Checks for the presence of the environment variable JAVA_HOME. If it exits, we will check
  685. * to see if the value points to a path which exists. If the path exits, the path is returned.
  686. *
  687. * @returns {string} The path defined by JAVA_HOME, if it exists. Otherwise null.
  688. */
  689. static _scanJavaHome(){
  690. const jHome = process.env.JAVA_HOME
  691. try {
  692. let res = fs.existsSync(jHome)
  693. return res ? jHome : null
  694. } catch (err) {
  695. // Malformed JAVA_HOME property.
  696. return null
  697. }
  698. }
  699. /**
  700. * Scans the data folder's runtime directory for suitable JRE candidates.
  701. *
  702. * @param {string} dataDir The base launcher directory.
  703. * @returns {Promise.<Set.<string>>} A set containing suitable JRE candidates found
  704. * in the runtime directory.
  705. */
  706. static _scanDataFolder(dataDir){
  707. return new Promise((resolve, reject) => {
  708. const x64RuntimeDir = path.join(dataDir, 'runtime', 'x64')
  709. fs.exists(x64RuntimeDir, (e) => {
  710. let res = new Set()
  711. if(e){
  712. fs.readdir(x64RuntimeDir, (err, files) => {
  713. if(err){
  714. resolve(res)
  715. console.log(err)
  716. } else {
  717. for(let i=0; i<files.length; i++){
  718. res.add(path.join(x64RuntimeDir, files[i]))
  719. }
  720. resolve(res)
  721. }
  722. })
  723. } else {
  724. resolve(res)
  725. }
  726. })
  727. })
  728. }
  729. /**
  730. * Scans the registry for 64-bit Java entries. The paths of each entry are added to
  731. * a set and returned. Currently, only Java 8 (1.8) is supported.
  732. *
  733. * @returns {Promise.<Set.<string>>} A promise which resolves to a set of 64-bit Java root
  734. * paths found in the registry.
  735. */
  736. static _scanRegistry(){
  737. return new Promise((resolve, reject) => {
  738. // Keys for Java v9.0.0 and later:
  739. // 'SOFTWARE\\JavaSoft\\JRE'
  740. // 'SOFTWARE\\JavaSoft\\JDK'
  741. // Forge does not yet support Java 9, therefore we do not.
  742. let cbTracker = 0
  743. let cbAcc = 0
  744. // Keys for Java 1.8 and prior:
  745. const regKeys = [
  746. '\\SOFTWARE\\JavaSoft\\Java Runtime Environment',
  747. '\\SOFTWARE\\JavaSoft\\Java Development Kit'
  748. ]
  749. const candidates = new Set()
  750. for(let i=0; i<regKeys.length; i++){
  751. const key = new Registry({
  752. hive: Registry.HKLM,
  753. key: regKeys[i],
  754. arch: 'x64'
  755. })
  756. key.keyExists((err, exists) => {
  757. if(exists) {
  758. key.keys((err, javaVers) => {
  759. if(err){
  760. console.error(err)
  761. if(i === regKeys.length-1 && cbAcc === cbTracker){
  762. resolve(candidates)
  763. }
  764. } else {
  765. cbTracker += javaVers.length
  766. if(i === regKeys.length-1 && cbTracker === cbAcc){
  767. resolve(candidates)
  768. } else {
  769. for(let j=0; j<javaVers.length; j++){
  770. const javaVer = javaVers[j]
  771. const vKey = javaVer.key.substring(javaVer.key.lastIndexOf('\\')+1)
  772. // Only Java 8 is supported currently.
  773. if(parseFloat(vKey) === 1.8){
  774. javaVer.get('JavaHome', (err, res) => {
  775. const jHome = res.value
  776. if(jHome.indexOf('(x86)') === -1){
  777. candidates.add(jHome)
  778. }
  779. cbAcc++
  780. if(i === regKeys.length-1 && cbAcc === cbTracker){
  781. resolve(candidates)
  782. }
  783. })
  784. } else {
  785. cbAcc++
  786. if(i === regKeys.length-1 && cbAcc === cbTracker){
  787. resolve(candidates)
  788. }
  789. }
  790. }
  791. }
  792. }
  793. })
  794. } else {
  795. if(i === regKeys.length-1 && cbAcc === cbTracker){
  796. resolve(candidates)
  797. }
  798. }
  799. })
  800. }
  801. })
  802. }
  803. /**
  804. * Attempts to find a valid x64 installation of Java on Windows machines.
  805. * Possible paths will be pulled from the registry and the JAVA_HOME environment
  806. * variable. The paths will be sorted with higher versions preceeding lower, and
  807. * JREs preceeding JDKs. The binaries at the sorted paths will then be validated.
  808. * The first validated is returned.
  809. *
  810. * Higher versions > Lower versions
  811. * If versions are equal, JRE > JDK.
  812. *
  813. * @param {string} dataDir The base launcher directory.
  814. * @returns {Promise.<string>} A Promise which resolves to the executable path of a valid
  815. * x64 Java installation. If none are found, null is returned.
  816. */
  817. static async _win32JavaValidate(dataDir){
  818. // Get possible paths from the registry.
  819. const pathSet = await AssetGuard._scanRegistry()
  820. //console.log(Array.from(pathSet)) // DEBUGGING
  821. // Get possible paths from the data directory.
  822. const pathSet2 = await AssetGuard._scanDataFolder(dataDir)
  823. // Validate JAVA_HOME
  824. const jHome = AssetGuard._scanJavaHome()
  825. if(jHome != null && jHome.indexOf('(x86)') === -1){
  826. pathSet.add(jHome)
  827. }
  828. const mergedSet = new Set([...pathSet, ...pathSet2])
  829. // Convert path set to an array for processing.
  830. let pathArr = Array.from(mergedSet)
  831. //console.log(pathArr) // DEBUGGING
  832. // Sorts array. Higher version numbers preceed lower. JRE preceeds JDK.
  833. pathArr = pathArr.sort((a, b) => {
  834. // Note that Java 9+ uses semver and that will need to be accounted for in
  835. // the future.
  836. const aVer = parseInt(a.split('_')[1])
  837. const bVer = parseInt(b.split('_')[1])
  838. if(bVer === aVer){
  839. return a.indexOf('jdk') > -1 ? 1 : 0
  840. } else {
  841. return bVer - aVer
  842. }
  843. })
  844. //console.log(pathArr) // DEBUGGING
  845. // Validate that the binary is actually x64.
  846. for(let i=0; i<pathArr.length; i++) {
  847. const execPath = AssetGuard.javaExecFromRoot(pathArr[i])
  848. let res = await AssetGuard._validateJavaBinary(execPath)
  849. if(res){
  850. return execPath
  851. }
  852. }
  853. // No suitable candidates found.
  854. return null;
  855. }
  856. /**
  857. * See if JRE exists in the Internet Plug-Ins folder.
  858. *
  859. * @returns {string} The path of the JRE if found, otherwise null.
  860. */
  861. static _scanInternetPlugins(){
  862. // /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java
  863. const pth = '/Library/Internet Plug-Ins/JavaAppletPlugin.plugin'
  864. const res = fs.existsSync(AssetGuard.javaExecFromRoot(pth))
  865. return res ? pth : null
  866. }
  867. /**
  868. * WIP -> get a valid x64 Java path on macOS.
  869. */
  870. static async _darwinJavaValidate(dataDir){
  871. const pathSet = new Set()
  872. // Check Internet Plugins folder.
  873. const iPPath = AssetGuard._scanInternetPlugins()
  874. if(iPPath != null){
  875. pathSet.add(iPPath)
  876. }
  877. // Check the JAVA_HOME environment variable.
  878. const jHome = AssetGuard._scanJavaHome()
  879. if(jHome != null){
  880. // Ensure we are at the absolute root.
  881. if(jHome.contains('/Contents/Home')){
  882. jHome = jHome.substring(0, jHome.indexOf('/Contents/Home'))
  883. }
  884. pathSet.add(jHome)
  885. }
  886. // Get possible paths from the data directory.
  887. const pathSet2 = await AssetGuard._scanDataFolder(dataDir)
  888. // TODO Sort by highest version.
  889. let pathArr = Array.from(pathSet2).concat(Array.from(pathSet))
  890. for(let i=0; i<pathArr.length; i++) {
  891. const execPath = AssetGuard.javaExecFromRoot(pathArr[i])
  892. let res = await AssetGuard._validateJavaBinary(execPath)
  893. if(res){
  894. return execPath
  895. }
  896. }
  897. return null
  898. }
  899. /**
  900. * WIP -> get a valid x64 Java path on linux.
  901. */
  902. static async _linuxJavaValidate(dataDir){
  903. return null
  904. }
  905. /**
  906. * Retrieve the path of a valid x64 Java installation.
  907. *
  908. * @param {string} dataDir The base launcher directory.
  909. * @returns {string} A path to a valid x64 Java installation, null if none found.
  910. */
  911. static async validateJava(dataDir){
  912. return await AssetGuard['_' + process.platform + 'JavaValidate'](dataDir)
  913. }
  914. // #endregion
  915. // #endregion
  916. // Validation Functions
  917. // #region
  918. /**
  919. * Loads the version data for a given minecraft version.
  920. *
  921. * @param {string} version The game version for which to load the index data.
  922. * @param {boolean} force Optional. If true, the version index will be downloaded even if it exists locally. Defaults to false.
  923. * @returns {Promise.<Object>} Promise which resolves to the version data object.
  924. */
  925. loadVersionData(version, force = false){
  926. const self = this
  927. return new Promise((resolve, reject) => {
  928. const name = version + '.json'
  929. const url = 'https://s3.amazonaws.com/Minecraft.Download/versions/' + version + '/' + name
  930. const versionPath = path.join(self.basePath, 'versions', version)
  931. const versionFile = path.join(versionPath, name)
  932. if(!fs.existsSync(versionFile) || force){
  933. //This download will never be tracked as it's essential and trivial.
  934. console.log('Preparing download of ' + version + ' assets.')
  935. mkpath.sync(versionPath)
  936. const stream = request(url).pipe(fs.createWriteStream(versionFile))
  937. stream.on('finish', () => {
  938. resolve(JSON.parse(fs.readFileSync(versionFile)))
  939. })
  940. } else {
  941. resolve(JSON.parse(fs.readFileSync(versionFile)))
  942. }
  943. })
  944. }
  945. // Asset (Category=''') Validation Functions
  946. // #region
  947. /**
  948. * Public asset validation function. This function will handle the validation of assets.
  949. * It will parse the asset index specified in the version data, analyzing each
  950. * asset entry. In this analysis it will check to see if the local file exists and is valid.
  951. * If not, it will be added to the download queue for the 'assets' identifier.
  952. *
  953. * @param {Object} versionData The version data for the assets.
  954. * @param {boolean} force Optional. If true, the asset index will be downloaded even if it exists locally. Defaults to false.
  955. * @returns {Promise.<void>} An empty promise to indicate the async processing has completed.
  956. */
  957. validateAssets(versionData, force = false){
  958. const self = this
  959. return new Promise((resolve, reject) => {
  960. self._assetChainIndexData(versionData, force).then(() => {
  961. resolve()
  962. })
  963. })
  964. }
  965. //Chain the asset tasks to provide full async. The below functions are private.
  966. /**
  967. * Private function used to chain the asset validation process. This function retrieves
  968. * the index data.
  969. * @param {Object} versionData
  970. * @param {boolean} force
  971. * @returns {Promise.<void>} An empty promise to indicate the async processing has completed.
  972. */
  973. _assetChainIndexData(versionData, force = false){
  974. const self = this
  975. return new Promise((resolve, reject) => {
  976. //Asset index constants.
  977. const assetIndex = versionData.assetIndex
  978. const name = assetIndex.id + '.json'
  979. const indexPath = path.join(self.basePath, 'assets', 'indexes')
  980. const assetIndexLoc = path.join(indexPath, name)
  981. let data = null
  982. if(!fs.existsSync(assetIndexLoc) || force){
  983. console.log('Downloading ' + versionData.id + ' asset index.')
  984. mkpath.sync(indexPath)
  985. const stream = request(assetIndex.url).pipe(fs.createWriteStream(assetIndexLoc))
  986. stream.on('finish', () => {
  987. data = JSON.parse(fs.readFileSync(assetIndexLoc, 'utf-8'))
  988. self._assetChainValidateAssets(versionData, data).then(() => {
  989. resolve()
  990. })
  991. })
  992. } else {
  993. data = JSON.parse(fs.readFileSync(assetIndexLoc, 'utf-8'))
  994. self._assetChainValidateAssets(versionData, data).then(() => {
  995. resolve()
  996. })
  997. }
  998. })
  999. }
  1000. /**
  1001. * Private function used to chain the asset validation process. This function processes
  1002. * the assets and enqueues missing or invalid files.
  1003. * @param {Object} versionData
  1004. * @param {boolean} force
  1005. * @returns {Promise.<void>} An empty promise to indicate the async processing has completed.
  1006. */
  1007. _assetChainValidateAssets(versionData, indexData){
  1008. const self = this
  1009. return new Promise((resolve, reject) => {
  1010. //Asset constants
  1011. const resourceURL = 'http://resources.download.minecraft.net/'
  1012. const localPath = path.join(self.basePath, 'assets')
  1013. const indexPath = path.join(localPath, 'indexes')
  1014. const objectPath = path.join(localPath, 'objects')
  1015. const assetDlQueue = []
  1016. let dlSize = 0
  1017. let acc = 0
  1018. const total = Object.keys(indexData.objects).length
  1019. //const objKeys = Object.keys(data.objects)
  1020. async.forEachOfLimit(indexData.objects, 10, (value, key, cb) => {
  1021. acc++
  1022. self.emit('assetVal', {acc, total})
  1023. const hash = value.hash
  1024. const assetName = path.join(hash.substring(0, 2), hash)
  1025. const urlName = hash.substring(0, 2) + "/" + hash
  1026. const ast = new Asset(key, hash, String(value.size), resourceURL + urlName, path.join(objectPath, assetName))
  1027. if(!AssetGuard._validateLocal(ast.to, 'sha1', ast.hash)){
  1028. dlSize += (ast.size*1)
  1029. assetDlQueue.push(ast)
  1030. }
  1031. cb()
  1032. }, (err) => {
  1033. self.assets = new DLTracker(assetDlQueue, dlSize)
  1034. resolve()
  1035. })
  1036. })
  1037. }
  1038. // #endregion
  1039. // Library (Category=''') Validation Functions
  1040. // #region
  1041. /**
  1042. * Public library validation function. This function will handle the validation of libraries.
  1043. * It will parse the version data, analyzing each library entry. In this analysis, it will
  1044. * check to see if the local file exists and is valid. If not, it will be added to the download
  1045. * queue for the 'libraries' identifier.
  1046. *
  1047. * @param {Object} versionData The version data for the assets.
  1048. * @returns {Promise.<void>} An empty promise to indicate the async processing has completed.
  1049. */
  1050. validateLibraries(versionData){
  1051. const self = this
  1052. return new Promise((resolve, reject) => {
  1053. const libArr = versionData.libraries
  1054. const libPath = path.join(self.basePath, 'libraries')
  1055. const libDlQueue = []
  1056. let dlSize = 0
  1057. //Check validity of each library. If the hashs don't match, download the library.
  1058. async.eachLimit(libArr, 5, (lib, cb) => {
  1059. if(Library.validateRules(lib.rules)){
  1060. let artifact = (lib.natives == null) ? lib.downloads.artifact : lib.downloads.classifiers[lib.natives[Library.mojangFriendlyOS()]]
  1061. const libItm = new Library(lib.name, artifact.sha1, artifact.size, artifact.url, path.join(libPath, artifact.path))
  1062. if(!AssetGuard._validateLocal(libItm.to, 'sha1', libItm.hash)){
  1063. dlSize += (libItm.size*1)
  1064. libDlQueue.push(libItm)
  1065. }
  1066. }
  1067. cb()
  1068. }, (err) => {
  1069. self.libraries = new DLTracker(libDlQueue, dlSize)
  1070. resolve()
  1071. })
  1072. })
  1073. }
  1074. // #endregion
  1075. // Miscellaneous (Category=files) Validation Functions
  1076. // #region
  1077. /**
  1078. * Public miscellaneous mojang file validation function. These files will be enqueued under
  1079. * the 'files' identifier.
  1080. *
  1081. * @param {Object} versionData The version data for the assets.
  1082. * @returns {Promise.<void>} An empty promise to indicate the async processing has completed.
  1083. */
  1084. validateMiscellaneous(versionData){
  1085. const self = this
  1086. return new Promise(async (resolve, reject) => {
  1087. await self.validateClient(versionData)
  1088. await self.validateLogConfig(versionData)
  1089. resolve()
  1090. })
  1091. }
  1092. /**
  1093. * Validate client file - artifact renamed from client.jar to '{version}'.jar.
  1094. *
  1095. * @param {Object} versionData The version data for the assets.
  1096. * @param {boolean} force Optional. If true, the asset index will be downloaded even if it exists locally. Defaults to false.
  1097. * @returns {Promise.<void>} An empty promise to indicate the async processing has completed.
  1098. */
  1099. validateClient(versionData, force = false){
  1100. const self = this
  1101. return new Promise((resolve, reject) => {
  1102. const clientData = versionData.downloads.client
  1103. const version = versionData.id
  1104. const targetPath = path.join(self.basePath, 'versions', version)
  1105. const targetFile = version + '.jar'
  1106. let client = new Asset(version + ' client', clientData.sha1, clientData.size, clientData.url, path.join(targetPath, targetFile))
  1107. if(!AssetGuard._validateLocal(client.to, 'sha1', client.hash) || force){
  1108. self.files.dlqueue.push(client)
  1109. self.files.dlsize += client.size*1
  1110. resolve()
  1111. } else {
  1112. resolve()
  1113. }
  1114. })
  1115. }
  1116. /**
  1117. * Validate log config.
  1118. *
  1119. * @param {Object} versionData The version data for the assets.
  1120. * @param {boolean} force Optional. If true, the asset index will be downloaded even if it exists locally. Defaults to false.
  1121. * @returns {Promise.<void>} An empty promise to indicate the async processing has completed.
  1122. */
  1123. validateLogConfig(versionData){
  1124. const self = this
  1125. return new Promise((resolve, reject) => {
  1126. const client = versionData.logging.client
  1127. const file = client.file
  1128. const targetPath = path.join(self.basePath, 'assets', 'log_configs')
  1129. let logConfig = new Asset(file.id, file.sha1, file.size, file.url, path.join(targetPath, file.id))
  1130. if(!AssetGuard._validateLocal(logConfig.to, 'sha1', logConfig.hash)){
  1131. self.files.dlqueue.push(logConfig)
  1132. self.files.dlsize += logConfig.size*1
  1133. resolve()
  1134. } else {
  1135. resolve()
  1136. }
  1137. })
  1138. }
  1139. // #endregion
  1140. // Distribution (Category=forge) Validation Functions
  1141. // #region
  1142. /**
  1143. * Validate the distribution.
  1144. *
  1145. * @param {string} serverpackid The id of the server to validate.
  1146. * @returns {Promise.<Object>} A promise which resolves to the server distribution object.
  1147. */
  1148. validateDistribution(serverpackid){
  1149. const self = this
  1150. return new Promise((resolve, reject) => {
  1151. AssetGuard.retrieveDistributionData(self.launcherPath, false).then((value) => {
  1152. /*const servers = value.servers
  1153. let serv = null
  1154. for(let i=0; i<servers.length; i++){
  1155. if(servers[i].id === serverpackid){
  1156. serv = servers[i]
  1157. break
  1158. }
  1159. }*/
  1160. const serv = AssetGuard.getServerById(self.launcherPath, serverpackid)
  1161. if(serv == null) {
  1162. console.error('Invalid server pack id:', serverpackid)
  1163. }
  1164. self.forge = self._parseDistroModules(serv.modules, serv.mc_version)
  1165. // Correct our workaround here.
  1166. let decompressqueue = self.forge.callback
  1167. self.extractQueue = decompressqueue
  1168. self.forge.callback = (asset, self) => {
  1169. if(asset.type === 'forge-hosted' || asset.type === 'forge'){
  1170. AssetGuard._finalizeForgeAsset(asset, self.basePath)
  1171. }
  1172. }
  1173. resolve(serv)
  1174. })
  1175. })
  1176. }
  1177. _parseDistroModules(modules, version){
  1178. let alist = []
  1179. let asize = 0;
  1180. let decompressqueue = []
  1181. for(let i=0; i<modules.length; i++){
  1182. let ob = modules[i]
  1183. let obType = ob.type
  1184. let obArtifact = ob.artifact
  1185. let obPath = obArtifact.path == null ? AssetGuard._resolvePath(ob.id, obArtifact.extension) : obArtifact.path
  1186. switch(obType){
  1187. case 'forge-hosted':
  1188. case 'forge':
  1189. case 'library':
  1190. obPath = path.join(this.basePath, 'libraries', obPath)
  1191. break
  1192. case 'forgemod':
  1193. //obPath = path.join(this.basePath, 'mods', obPath)
  1194. obPath = path.join(this.basePath, 'modstore', obPath)
  1195. break
  1196. case 'litemod':
  1197. //obPath = path.join(this.basePath, 'mods', version, obPath)
  1198. obPath = path.join(this.basePath, 'modstore', obPath)
  1199. break
  1200. case 'file':
  1201. default:
  1202. obPath = path.join(this.basePath, obPath)
  1203. }
  1204. let artifact = new DistroModule(ob.id, obArtifact.MD5, obArtifact.size, obArtifact.url, obPath, obType)
  1205. const validationPath = obPath.toLowerCase().endsWith('.pack.xz') ? obPath.substring(0, obPath.toLowerCase().lastIndexOf('.pack.xz')) : obPath
  1206. if(!AssetGuard._validateLocal(validationPath, 'MD5', artifact.hash)){
  1207. asize += artifact.size*1
  1208. alist.push(artifact)
  1209. if(validationPath !== obPath) decompressqueue.push(obPath)
  1210. }
  1211. //Recursively process the submodules then combine the results.
  1212. if(ob.sub_modules != null){
  1213. let dltrack = this._parseDistroModules(ob.sub_modules, version)
  1214. asize += dltrack.dlsize*1
  1215. alist = alist.concat(dltrack.dlqueue)
  1216. decompressqueue = decompressqueue.concat(dltrack.callback)
  1217. }
  1218. }
  1219. //Since we have no callback at this point, we use this value to store the decompressqueue.
  1220. return new DLTracker(alist, asize, decompressqueue)
  1221. }
  1222. /**
  1223. * Loads Forge's version.json data into memory for the specified server id.
  1224. *
  1225. * @param {string} serverpack The id of the server to load Forge data for.
  1226. * @returns {Promise.<Object>} A promise which resolves to Forge's version.json data.
  1227. */
  1228. loadForgeData(serverpack){
  1229. const self = this
  1230. return new Promise(async (resolve, reject) => {
  1231. let distro = AssetGuard.retrieveDistributionDataSync(self.launcherPath)
  1232. const servers = distro.servers
  1233. let serv = null
  1234. for(let i=0; i<servers.length; i++){
  1235. if(servers[i].id === serverpack){
  1236. serv = servers[i]
  1237. break
  1238. }
  1239. }
  1240. const modules = serv.modules
  1241. for(let i=0; i<modules.length; i++){
  1242. const ob = modules[i]
  1243. if(ob.type === 'forge-hosted' || ob.type === 'forge'){
  1244. let obArtifact = ob.artifact
  1245. let obPath = obArtifact.path == null ? path.join(self.basePath, 'libraries', AssetGuard._resolvePath(ob.id, obArtifact.extension)) : obArtifact.path
  1246. let asset = new DistroModule(ob.id, obArtifact.MD5, obArtifact.size, obArtifact.url, obPath, ob.type)
  1247. let forgeData = await AssetGuard._finalizeForgeAsset(asset, self.basePath)
  1248. resolve(forgeData)
  1249. return
  1250. }
  1251. }
  1252. reject('No forge module found!')
  1253. })
  1254. }
  1255. _parseForgeLibraries(){
  1256. /* TODO
  1257. * Forge asset validations are already implemented. When there's nothing much
  1258. * to work on, implement forge downloads using forge's version.json. This is to
  1259. * have the code on standby if we ever need it (since it's half implemented already).
  1260. */
  1261. }
  1262. // #endregion
  1263. // Java (Category=''') Validation (download) Functions
  1264. // #region
  1265. _enqueueOracleJRE(dataDir){
  1266. return new Promise((resolve, reject) => {
  1267. AssetGuard._latestJREOracle().then(verData => {
  1268. if(verData != null){
  1269. const combined = verData.uri + PLATFORM_MAP[process.platform]
  1270. const opts = {
  1271. url: combined,
  1272. headers: {
  1273. 'Cookie': 'oraclelicense=accept-securebackup-cookie'
  1274. }
  1275. }
  1276. request.head(opts, (err, resp, body) => {
  1277. if(err){
  1278. resolve(false)
  1279. } else {
  1280. dataDir = path.join(dataDir, 'runtime', 'x64')
  1281. const name = combined.substring(combined.lastIndexOf('/')+1)
  1282. const fDir = path.join(dataDir, name)
  1283. const jre = new Asset(name, null, resp.headers['content-length'], opts, fDir)
  1284. this.java = new DLTracker([jre], jre.size, (a, self) => {
  1285. let h = null
  1286. fs.createReadStream(a.to)
  1287. .on('error', err => console.log(err))
  1288. .pipe(zlib.createGunzip())
  1289. .on('error', err => console.log(err))
  1290. .pipe(tar.extract(dataDir, {
  1291. map: (header) => {
  1292. if(h == null){
  1293. h = header.name
  1294. }
  1295. }
  1296. }))
  1297. .on('error', err => console.log(err))
  1298. .on('finish', () => {
  1299. fs.unlink(a.to, err => {
  1300. if(err){
  1301. console.log(err)
  1302. }
  1303. if(h.indexOf('/') > -1){
  1304. h = h.substring(0, h.indexOf('/'))
  1305. }
  1306. const pos = path.join(dataDir, h)
  1307. self.emit('jExtracted', AssetGuard.javaExecFromRoot(pos))
  1308. })
  1309. })
  1310. })
  1311. resolve(true)
  1312. }
  1313. })
  1314. } else {
  1315. resolve(false)
  1316. }
  1317. })
  1318. })
  1319. }
  1320. /*_enqueueMojangJRE(dir){
  1321. return new Promise((resolve, reject) => {
  1322. // Mojang does not host the JRE for linux.
  1323. if(process.platform === 'linux'){
  1324. resolve(false)
  1325. }
  1326. AssetGuard.loadMojangLauncherData().then(data => {
  1327. if(data != null) {
  1328. try {
  1329. const mJRE = data[Library.mojangFriendlyOS()]['64'].jre
  1330. const url = mJRE.url
  1331. request.head(url, (err, resp, body) => {
  1332. if(err){
  1333. resolve(false)
  1334. } else {
  1335. const name = url.substring(url.lastIndexOf('/')+1)
  1336. const fDir = path.join(dir, name)
  1337. const jre = new Asset('jre' + mJRE.version, mJRE.sha1, resp.headers['content-length'], url, fDir)
  1338. this.java = new DLTracker([jre], jre.size, a => {
  1339. fs.readFile(a.to, (err, data) => {
  1340. // Data buffer needs to be decompressed from lzma,
  1341. // not really possible using node.js
  1342. })
  1343. })
  1344. }
  1345. })
  1346. } catch (err){
  1347. resolve(false)
  1348. }
  1349. }
  1350. })
  1351. })
  1352. }*/
  1353. // #endregion
  1354. // #endregion
  1355. // Control Flow Functions
  1356. // #region
  1357. /**
  1358. * Initiate an async download process for an AssetGuard DLTracker.
  1359. *
  1360. * @param {string} identifier The identifier of the AssetGuard DLTracker.
  1361. * @param {number} limit Optional. The number of async processes to run in parallel.
  1362. * @returns {boolean} True if the process began, otherwise false.
  1363. */
  1364. startAsyncProcess(identifier, limit = 5){
  1365. const self = this
  1366. let acc = 0
  1367. const concurrentDlTracker = this[identifier]
  1368. const concurrentDlQueue = concurrentDlTracker.dlqueue.slice(0)
  1369. if(concurrentDlQueue.length === 0){
  1370. return false
  1371. } else {
  1372. async.eachLimit(concurrentDlQueue, limit, (asset, cb) => {
  1373. let count = 0;
  1374. mkpath.sync(path.join(asset.to, ".."))
  1375. let req = request(asset.from)
  1376. req.pause()
  1377. req.on('response', (resp) => {
  1378. if(resp.statusCode === 200){
  1379. let writeStream = fs.createWriteStream(asset.to)
  1380. writeStream.on('close', () => {
  1381. //console.log('DLResults ' + asset.size + ' ' + count + ' ', asset.size === count)
  1382. if(concurrentDlTracker.callback != null){
  1383. concurrentDlTracker.callback.apply(concurrentDlTracker, [asset, self])
  1384. }
  1385. cb()
  1386. })
  1387. req.pipe(writeStream)
  1388. req.resume()
  1389. } else {
  1390. req.abort()
  1391. const realFrom = typeof asset.from === 'object' ? asset.from.url : asset.from
  1392. console.log('Failed to download ' + realFrom + '. Response code', resp.statusCode)
  1393. self.progress += asset.size*1
  1394. self.emit('totaldlprogress', {acc: self.progress, total: self.totaldlsize})
  1395. cb()
  1396. }
  1397. })
  1398. req.on('error', (err) => {
  1399. self.emit('dlerror', err)
  1400. })
  1401. req.on('data', (chunk) => {
  1402. count += chunk.length
  1403. self.progress += chunk.length
  1404. acc += chunk.length
  1405. self.emit(identifier + 'dlprogress', acc)
  1406. self.emit('totaldlprogress', {acc: self.progress, total: self.totaldlsize})
  1407. })
  1408. }, (err) => {
  1409. if(err){
  1410. self.emit(identifier + 'dlerror')
  1411. console.log('An item in ' + identifier + ' failed to process');
  1412. } else {
  1413. self.emit(identifier + 'dlcomplete')
  1414. console.log('All ' + identifier + ' have been processed successfully')
  1415. }
  1416. self.totaldlsize -= self[identifier].dlsize
  1417. self.progress -= self[identifier].dlsize
  1418. self[identifier] = new DLTracker([], 0)
  1419. if(self.totaldlsize === 0) {
  1420. if(self.extractQueue.length > 0){
  1421. self.emit('extracting')
  1422. AssetGuard._extractPackXZ(self.extractQueue, self.javaexec).then(() => {
  1423. self.extractQueue = []
  1424. self.emit('dlcomplete')
  1425. })
  1426. } else {
  1427. self.emit('dlcomplete')
  1428. }
  1429. }
  1430. })
  1431. return true
  1432. }
  1433. }
  1434. /**
  1435. * This function will initiate the download processed for the specified identifiers. If no argument is
  1436. * given, all identifiers will be initiated. Note that in order for files to be processed you need to run
  1437. * the processing function corresponding to that identifier. If you run this function without processing
  1438. * the files, it is likely nothing will be enqueued in the object and processing will complete
  1439. * immediately. Once all downloads are complete, this function will fire the 'dlcomplete' event on the
  1440. * global object instance.
  1441. *
  1442. * @param {Array.<{id: string, limit: number}>} identifiers Optional. The identifiers to process and corresponding parallel async task limit.
  1443. */
  1444. processDlQueues(identifiers = [{id:'assets', limit:20}, {id:'libraries', limit:5}, {id:'files', limit:5}, {id:'forge', limit:5}]){
  1445. this.progress = 0;
  1446. let shouldFire = true
  1447. // Assign dltracking variables.
  1448. this.totaldlsize = 0
  1449. this.progress = 0
  1450. for(let i=0; i<identifiers.length; i++){
  1451. this.totaldlsize += this[identifiers[i].id].dlsize
  1452. }
  1453. for(let i=0; i<identifiers.length; i++){
  1454. let iden = identifiers[i]
  1455. let r = this.startAsyncProcess(iden.id, iden.limit)
  1456. if(r) shouldFire = false
  1457. }
  1458. if(shouldFire){
  1459. this.emit('dlcomplete')
  1460. }
  1461. }
  1462. // #endregion
  1463. }
  1464. module.exports = {
  1465. AssetGuard,
  1466. Asset,
  1467. Library
  1468. }