2017-04-23 12:24:07 -07:00
|
|
|
const fs = require('fs')
|
|
|
|
const request = require('request')
|
|
|
|
const path = require('path')
|
2017-04-23 23:20:38 -07:00
|
|
|
const mkpath = require('mkdirp');
|
|
|
|
const async = require('async')
|
2017-04-23 12:24:07 -07:00
|
|
|
|
|
|
|
function Asset(from, to, size){
|
|
|
|
this.from = from
|
|
|
|
this.to = to
|
|
|
|
this.size = size
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.getMojangAssets = function(version, basePath){
|
|
|
|
const name = version + '.json'
|
|
|
|
const indexURL = 'https://s3.amazonaws.com/Minecraft.Download/indexes/' + name
|
|
|
|
const resourceURL = 'http://resources.download.minecraft.net/'
|
|
|
|
const localPath = path.join(basePath, 'assets')
|
|
|
|
const indexPath = path.join(localPath, 'indexes')
|
|
|
|
const objectPath = path.join(localPath, 'objects')
|
|
|
|
|
|
|
|
request.head(indexURL, function (err, res, body) {
|
|
|
|
console.log('Downloading ' + version + ' asset index.')
|
|
|
|
mkpath.sync(indexPath)
|
2017-04-23 23:20:38 -07:00
|
|
|
const stream = request(indexURL).pipe(fs.createWriteStream(path.join(indexPath, name)))
|
2017-04-23 12:24:07 -07:00
|
|
|
stream.on('finish', function() {
|
2017-04-23 23:20:38 -07:00
|
|
|
const data = JSON.parse(fs.readFileSync(path.join(indexPath, name), 'utf-8'))
|
|
|
|
const assetArr = []
|
|
|
|
let datasize = 0;
|
2017-04-23 12:24:07 -07:00
|
|
|
Object.keys(data['objects']).forEach(function(key, index){
|
2017-04-23 23:20:38 -07:00
|
|
|
const ob = data['objects'][key]
|
|
|
|
const hash = String(ob['hash'])
|
|
|
|
const assetName = path.join(hash.substring(0, 2), hash)
|
|
|
|
const urlName = hash.substring(0, 2) + "/" + hash
|
|
|
|
const ast = new Asset(resourceURL + urlName, path.join(objectPath, assetName), ob['size'])
|
|
|
|
datasize += ob['size']
|
2017-04-23 12:24:07 -07:00
|
|
|
assetArr.push(ast)
|
|
|
|
})
|
2017-04-23 23:20:38 -07:00
|
|
|
let acc = 0;
|
|
|
|
async.eachLimit(assetArr, 5, function(asset, cb){
|
|
|
|
mkpath.sync(path.join(asset.to, ".."))
|
|
|
|
let req = request(asset.from)
|
|
|
|
let writeStream = fs.createWriteStream(asset.to)
|
|
|
|
req.pipe(writeStream)
|
|
|
|
req.on('data', function(chunk){
|
|
|
|
acc += chunk.length
|
|
|
|
console.log('Progress', acc/datasize)
|
|
|
|
})
|
|
|
|
writeStream.on('close', function(){
|
|
|
|
cb()
|
|
|
|
})
|
|
|
|
}, function(err){
|
|
|
|
if(err){
|
|
|
|
console.log('A file failed to process');
|
|
|
|
} else {
|
|
|
|
console.log('All files have been processed successfully');
|
|
|
|
}
|
2017-04-23 12:24:07 -07:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|