2017-01-02 04:53:04 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// enigma-bbs
|
|
|
|
const MenuModule = require('./menu_module.js').MenuModule;
|
|
|
|
const stringFormat = require('./string_format.js');
|
|
|
|
const getSortedAvailableFileAreas = require('./file_base_area.js').getSortedAvailableFileAreas;
|
|
|
|
const getAreaDefaultStorageDirectory = require('./file_base_area.js').getAreaDefaultStorageDirectory;
|
|
|
|
const scanFile = require('./file_base_area.js').scanFile;
|
|
|
|
const getFileAreaByTag = require('./file_base_area.js').getFileAreaByTag;
|
|
|
|
const getDescFromFileName = require('./file_base_area.js').getDescFromFileName;
|
|
|
|
const ansiGoto = require('./ansi_term.js').goto;
|
|
|
|
const moveFileWithCollisionHandling = require('./file_util.js').moveFileWithCollisionHandling;
|
|
|
|
const pathWithTerminatingSeparator = require('./file_util.js').pathWithTerminatingSeparator;
|
|
|
|
const Log = require('./logger.js').log;
|
|
|
|
const Errors = require('./enig_error.js').Errors;
|
|
|
|
const FileEntry = require('./file_entry.js');
|
|
|
|
const isAnsi = require('./string_util.js').isAnsi;
|
|
|
|
const Events = require('./events.js');
|
|
|
|
|
|
|
|
// deps
|
|
|
|
const async = require('async');
|
|
|
|
const _ = require('lodash');
|
|
|
|
const temptmp = require('temptmp').createTrackedSession('upload');
|
|
|
|
const paths = require('path');
|
|
|
|
const sanatizeFilename = require('sanitize-filename');
|
2017-01-02 04:53:04 +00:00
|
|
|
|
|
|
|
exports.moduleInfo = {
|
2018-06-23 03:26:46 +00:00
|
|
|
name : 'Upload',
|
|
|
|
desc : 'Module for classic file uploads',
|
|
|
|
author : 'NuSkooler',
|
2017-01-02 04:53:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const FormIds = {
|
2018-06-23 03:26:46 +00:00
|
|
|
options : 0,
|
|
|
|
processing : 1,
|
|
|
|
fileDetails : 2,
|
|
|
|
dupes : 3,
|
2017-01-02 04:53:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const MciViewIds = {
|
2018-06-22 05:15:04 +00:00
|
|
|
options : {
|
2018-06-23 03:26:46 +00:00
|
|
|
area : 1, // area selection
|
|
|
|
uploadType : 2, // blind vs specify filename
|
|
|
|
fileName : 3, // for non-blind; not editable for blind
|
|
|
|
navMenu : 4, // next/cancel/etc.
|
|
|
|
errMsg : 5, // errors (e.g. filename cannot be blank)
|
2018-06-22 05:15:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
processing : {
|
2018-06-23 03:26:46 +00:00
|
|
|
calcHashIndicator : 1,
|
|
|
|
archiveListIndicator : 2,
|
|
|
|
descFileIndicator : 3,
|
|
|
|
logStep : 4,
|
|
|
|
customRangeStart : 10, // 10+ = customs
|
2018-06-22 05:15:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
fileDetails : {
|
2018-06-23 03:26:46 +00:00
|
|
|
desc : 1, // defaults to 'desc' (e.g. from FILE_ID.DIZ)
|
|
|
|
tags : 2, // tag(s) for item
|
|
|
|
estYear : 3,
|
|
|
|
accept : 4, // accept fields & continue
|
|
|
|
customRangeStart : 10, // 10+ = customs
|
2018-06-22 05:15:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
dupes : {
|
2018-06-23 03:26:46 +00:00
|
|
|
dupeList : 1,
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
2017-01-02 04:53:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.getModule = class UploadModule extends MenuModule {
|
|
|
|
|
2018-06-22 05:15:04 +00:00
|
|
|
constructor(options) {
|
|
|
|
super(options);
|
|
|
|
|
2019-01-10 03:06:55 +00:00
|
|
|
this.interrupt = MenuModule.InterruptTypes.Never;
|
|
|
|
|
2018-06-22 05:15:04 +00:00
|
|
|
if(_.has(options, 'lastMenuResult.recvFilePaths')) {
|
|
|
|
this.recvFilePaths = options.lastMenuResult.recvFilePaths;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.availAreas = getSortedAvailableFileAreas(this.client, { writeAcs : true } );
|
|
|
|
|
|
|
|
this.menuMethods = {
|
|
|
|
optionsNavContinue : (formData, extraArgs, cb) => {
|
|
|
|
return this.performUpload(cb);
|
|
|
|
},
|
|
|
|
|
|
|
|
fileDetailsContinue : (formData, extraArgs, cb) => {
|
2018-06-23 03:26:46 +00:00
|
|
|
// see displayFileDetailsPageForUploadEntry() for this hackery:
|
2018-06-22 05:15:04 +00:00
|
|
|
cb(null);
|
2018-06-23 03:26:46 +00:00
|
|
|
return this.fileDetailsCurrentEntrySubmitCallback(null, formData.value); // move on to the next entry, if any
|
2018-06-22 05:15:04 +00:00
|
|
|
},
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// validation
|
2018-06-22 05:15:04 +00:00
|
|
|
validateNonBlindFileName : (fileName, cb) => {
|
|
|
|
if(0 === fileName.length) {
|
2018-06-26 00:08:41 +00:00
|
|
|
return cb(new Error('Filename cannot be empty'));
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
|
2018-06-26 00:08:41 +00:00
|
|
|
fileName = sanatizeFilename(fileName); // remove unsafe chars, path info, etc.
|
|
|
|
if(0 === fileName.length) { // sanatize nuked everything?
|
|
|
|
return cb(new Error('Invalid filename'));
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
|
2018-06-26 00:08:41 +00:00
|
|
|
// At least SEXYZ doesn't like non-blind names that start with a number - it becomes confused ;-(
|
2018-06-22 05:15:04 +00:00
|
|
|
if(/^[0-9].*$/.test(fileName)) {
|
|
|
|
return cb(new Error('Invalid filename'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return cb(null);
|
|
|
|
},
|
|
|
|
viewValidationListener : (err, cb) => {
|
|
|
|
const errView = this.viewControllers.options.getView(MciViewIds.options.errMsg);
|
|
|
|
if(errView) {
|
|
|
|
if(err) {
|
|
|
|
errView.setText(err.message);
|
|
|
|
} else {
|
|
|
|
errView.clearText();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
getSaveState() {
|
2018-06-23 03:26:46 +00:00
|
|
|
// if no areas, we're falling back due to lack of access/areas avail to upload to
|
2018-06-22 05:15:04 +00:00
|
|
|
if(this.availAreas.length > 0) {
|
|
|
|
return {
|
2018-06-23 03:26:46 +00:00
|
|
|
uploadType : this.uploadType,
|
|
|
|
tempRecvDirectory : this.tempRecvDirectory,
|
|
|
|
areaInfo : this.availAreas[ this.viewControllers.options.getView(MciViewIds.options.area).getData() ],
|
2018-06-22 05:15:04 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
restoreSavedState(savedState) {
|
|
|
|
if(savedState.areaInfo) {
|
2018-06-23 03:26:46 +00:00
|
|
|
this.uploadType = savedState.uploadType;
|
|
|
|
this.areaInfo = savedState.areaInfo;
|
|
|
|
this.tempRecvDirectory = savedState.tempRecvDirectory;
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
isBlindUpload() { return 'blind' === this.uploadType; }
|
|
|
|
isFileTransferComplete() { return !_.isUndefined(this.recvFilePaths); }
|
|
|
|
|
|
|
|
initSequence() {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
if(0 === this.availAreas.length) {
|
|
|
|
//
|
|
|
|
return this.gotoMenu(this.menuConfig.config.noUploadAreasAvailMenu || 'fileBaseNoUploadAreasAvail');
|
|
|
|
}
|
|
|
|
|
|
|
|
async.series(
|
|
|
|
[
|
|
|
|
function before(callback) {
|
|
|
|
return self.beforeArt(callback);
|
|
|
|
},
|
|
|
|
function display(callback) {
|
|
|
|
if(self.isFileTransferComplete()) {
|
|
|
|
return self.displayProcessingPage(callback);
|
|
|
|
} else {
|
|
|
|
return self.displayOptionsPage(callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
() => {
|
|
|
|
return self.finishedLoading();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
finishedLoading() {
|
|
|
|
if(this.isFileTransferComplete()) {
|
|
|
|
return this.processUploadedFiles();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
performUpload(cb) {
|
|
|
|
temptmp.mkdir( { prefix : 'enigul-' }, (err, tempRecvDirectory) => {
|
|
|
|
if(err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// need a terminator for various external protocols
|
2018-06-22 05:15:04 +00:00
|
|
|
this.tempRecvDirectory = pathWithTerminatingSeparator(tempRecvDirectory);
|
|
|
|
|
|
|
|
const modOpts = {
|
|
|
|
extraArgs : {
|
2018-06-23 03:26:46 +00:00
|
|
|
recvDirectory : this.tempRecvDirectory, // we'll move files from here to their area container once processed/confirmed
|
|
|
|
direction : 'recv',
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if(!this.isBlindUpload()) {
|
2018-06-23 03:26:46 +00:00
|
|
|
// data has been sanatized at this point
|
2018-06-22 05:15:04 +00:00
|
|
|
modOpts.extraArgs.recvFileName = this.viewControllers.options.getView(MciViewIds.options.fileName).getData();
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// Move along to protocol selection -> file transfer
|
|
|
|
// Upon completion, we'll re-enter the module with some file paths handed to us
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
return this.gotoMenu(
|
|
|
|
this.menuConfig.config.fileTransferProtocolSelection || 'fileTransferProtocolSelection',
|
|
|
|
modOpts,
|
|
|
|
cb
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
continueNonBlindUpload(cb) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
updateScanStepInfoViews(stepInfo) {
|
2018-06-23 03:26:46 +00:00
|
|
|
// :TODO: add some blinking (e.g. toggle items) indicators - see OBV.DOC
|
2018-06-22 05:15:04 +00:00
|
|
|
|
|
|
|
const fmtObj = Object.assign( {}, stepInfo);
|
|
|
|
let stepIndicatorFmt = '';
|
|
|
|
let logStepFmt;
|
|
|
|
|
|
|
|
const fmtConfig = this.menuConfig.config;
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
const indicatorStates = fmtConfig.indicatorStates || [ '|', '/', '-', '\\' ];
|
|
|
|
const indicatorFinished = fmtConfig.indicatorFinished || '√';
|
2018-06-22 05:15:04 +00:00
|
|
|
|
|
|
|
const indicator = { };
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
function updateIndicator(mci, isFinished) {
|
|
|
|
indicator.mci = mci;
|
|
|
|
|
|
|
|
if(isFinished) {
|
|
|
|
indicator.text = indicatorFinished;
|
|
|
|
} else {
|
|
|
|
self.scanStatus.indicatorPos += 1;
|
|
|
|
if(self.scanStatus.indicatorPos >= indicatorStates.length) {
|
|
|
|
self.scanStatus.indicatorPos = 0;
|
|
|
|
}
|
|
|
|
indicator.text = indicatorStates[self.scanStatus.indicatorPos];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(stepInfo.step) {
|
|
|
|
case 'start' :
|
|
|
|
logStepFmt = stepIndicatorFmt = fmtConfig.scanningStartFormat || 'Scanning {fileName}';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'hash_update' :
|
|
|
|
stepIndicatorFmt = fmtConfig.calcHashFormat || 'Calculating hash/checksums: {calcHashPercent}%';
|
|
|
|
updateIndicator(MciViewIds.processing.calcHashIndicator);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'hash_finish' :
|
|
|
|
stepIndicatorFmt = fmtConfig.calcHashCompleteFormat || 'Finished calculating hash/checksums';
|
|
|
|
updateIndicator(MciViewIds.processing.calcHashIndicator, true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'archive_list_start' :
|
|
|
|
stepIndicatorFmt = fmtConfig.extractArchiveListFormat || 'Extracting archive list';
|
|
|
|
updateIndicator(MciViewIds.processing.archiveListIndicator);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'archive_list_finish' :
|
|
|
|
fmtObj.archivedFileCount = stepInfo.archiveEntries.length;
|
|
|
|
stepIndicatorFmt = fmtConfig.extractArchiveListFinishFormat || 'Archive list extracted ({archivedFileCount} files)';
|
|
|
|
updateIndicator(MciViewIds.processing.archiveListIndicator, true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'archive_list_failed' :
|
|
|
|
stepIndicatorFmt = fmtConfig.extractArchiveListFailedFormat || 'Archive list extraction failed';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'desc_files_start' :
|
|
|
|
stepIndicatorFmt = fmtConfig.processingDescFilesFormat || 'Processing description files';
|
|
|
|
updateIndicator(MciViewIds.processing.descFileIndicator);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'desc_files_finish' :
|
|
|
|
stepIndicatorFmt = fmtConfig.processingDescFilesFinishFormat || 'Finished processing description files';
|
|
|
|
updateIndicator(MciViewIds.processing.descFileIndicator, true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'finished' :
|
|
|
|
logStepFmt = stepIndicatorFmt = fmtConfig.scanningStartFormat || 'Finished';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
fmtObj.stepIndicatorText = stringFormat(stepIndicatorFmt, fmtObj);
|
|
|
|
|
|
|
|
if(this.hasProcessingArt) {
|
|
|
|
this.updateCustomViewTextsWithFilter('processing', MciViewIds.processing.customRangeStart, fmtObj, { appendMultiLine : true } );
|
|
|
|
|
|
|
|
if(indicator.mci && indicator.text) {
|
|
|
|
this.setViewText('processing', indicator.mci, indicator.text);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(logStepFmt) {
|
|
|
|
this.setViewText('processing', MciViewIds.processing.logStep, stringFormat(logStepFmt, fmtObj), { appendMultiLine : true } );
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.client.term.pipeWrite(fmtObj.stepIndicatorText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scanFiles(cb) {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
const results = {
|
2018-06-23 03:26:46 +00:00
|
|
|
newEntries : [],
|
|
|
|
dupes : [],
|
2018-06-22 05:15:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
self.client.log.debug('Scanning upload(s)', { paths : this.recvFilePaths } );
|
|
|
|
|
|
|
|
let currentFileNum = 0;
|
|
|
|
|
|
|
|
async.eachSeries(this.recvFilePaths, (filePath, nextFilePath) => {
|
2018-06-23 03:26:46 +00:00
|
|
|
// :TODO: virus scanning/etc. should occur around here
|
2018-06-22 05:15:04 +00:00
|
|
|
|
|
|
|
currentFileNum += 1;
|
|
|
|
|
|
|
|
self.scanStatus = {
|
2018-06-23 03:26:46 +00:00
|
|
|
indicatorPos : 0,
|
2018-06-22 05:15:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const scanOpts = {
|
2018-06-23 03:26:46 +00:00
|
|
|
areaTag : self.areaInfo.areaTag,
|
|
|
|
storageTag : self.areaInfo.storageTags[0],
|
2018-06-22 05:15:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function handleScanStep(stepInfo, nextScanStep) {
|
2018-06-23 03:26:46 +00:00
|
|
|
stepInfo.totalFileNum = self.recvFilePaths.length;
|
|
|
|
stepInfo.currentFileNum = currentFileNum;
|
2018-06-22 05:15:04 +00:00
|
|
|
|
|
|
|
self.updateScanStepInfoViews(stepInfo);
|
|
|
|
return nextScanStep(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
self.client.log.debug('Scanning file', { filePath : filePath } );
|
|
|
|
|
|
|
|
scanFile(filePath, scanOpts, handleScanStep, (err, fileEntry, dupeEntries) => {
|
|
|
|
if(err) {
|
|
|
|
return nextFilePath(err);
|
|
|
|
}
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// new or dupe?
|
2018-06-22 05:15:04 +00:00
|
|
|
if(dupeEntries.length > 0) {
|
2018-06-23 03:26:46 +00:00
|
|
|
// 1:n dupes found
|
2018-06-22 05:15:04 +00:00
|
|
|
self.client.log.debug('Duplicate file(s) found', { dupeEntries : dupeEntries } );
|
|
|
|
|
|
|
|
results.dupes = results.dupes.concat(dupeEntries);
|
|
|
|
} else {
|
2018-06-23 03:26:46 +00:00
|
|
|
// new one
|
2018-06-22 05:15:04 +00:00
|
|
|
results.newEntries.push(fileEntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nextFilePath(null);
|
|
|
|
});
|
|
|
|
}, err => {
|
|
|
|
return cb(err, results);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
cleanupTempFiles() {
|
|
|
|
temptmp.cleanup( paths => {
|
|
|
|
Log.debug( { paths : paths, sessionId : temptmp.sessionId }, 'Temporary files cleaned up' );
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
moveAndPersistUploadsToDatabase(newEntries) {
|
|
|
|
|
|
|
|
const areaStorageDir = getAreaDefaultStorageDirectory(this.areaInfo);
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
async.eachSeries(newEntries, (newEntry, nextEntry) => {
|
2018-06-23 03:26:46 +00:00
|
|
|
const src = paths.join(self.tempRecvDirectory, newEntry.fileName);
|
|
|
|
const dst = paths.join(areaStorageDir, newEntry.fileName);
|
2018-06-22 05:15:04 +00:00
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
moveFileWithCollisionHandling(src, dst, (err, finalPath) => {
|
2018-06-22 05:15:04 +00:00
|
|
|
if(err) {
|
|
|
|
self.client.log.error(
|
|
|
|
'Failed moving physical upload file', { error : err.message, fileName : newEntry.fileName, source : src, dest : dst }
|
|
|
|
);
|
2018-06-23 03:26:46 +00:00
|
|
|
return nextEntry(null); // still try next file
|
2019-11-09 02:20:14 +00:00
|
|
|
} else if(dst !== finalPath)
|
|
|
|
{
|
|
|
|
// name changed; adjust before persist
|
|
|
|
newEntry.fileName = paths.basename(finalPath);
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.client.log.debug('Moved upload to area', { path : finalPath } );
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// persist to DB
|
2018-06-22 05:15:04 +00:00
|
|
|
newEntry.persist(err => {
|
|
|
|
if(err) {
|
|
|
|
self.client.log.error('Failed persisting upload to database', { path : finalPath, error : err.message } );
|
|
|
|
}
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
return nextEntry(null); // still try next file
|
2018-06-22 05:15:04 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}, () => {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// Finally, we can remove any temp files that we may have created
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
self.cleanupTempFiles();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
prepDetailsForUpload(scanResults, cb) {
|
|
|
|
async.eachSeries(scanResults.newEntries, (newEntry, nextEntry) => {
|
2018-06-23 03:26:46 +00:00
|
|
|
newEntry.meta.upload_by_username = this.client.user.username;
|
|
|
|
newEntry.meta.upload_by_user_id = this.client.user.userId;
|
2018-06-22 05:15:04 +00:00
|
|
|
|
|
|
|
this.displayFileDetailsPageForUploadEntry(newEntry, (err, newValues) => {
|
|
|
|
if(err) {
|
|
|
|
return nextEntry(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!newEntry.descIsAnsi) {
|
|
|
|
newEntry.desc = _.trimEnd(newValues.shortDesc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(newValues.estYear.length > 0) {
|
|
|
|
newEntry.meta.est_release_year = newValues.estYear;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(newValues.tags.length > 0) {
|
|
|
|
newEntry.setHashTags(newValues.tags);
|
|
|
|
}
|
|
|
|
|
|
|
|
return nextEntry(err);
|
|
|
|
});
|
|
|
|
}, err => {
|
|
|
|
delete this.fileDetailsCurrentEntrySubmitCallback;
|
|
|
|
return cb(err, scanResults);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
displayDupesPage(dupes, cb) {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// If we have custom art to show, use it - else just dump basic info.
|
|
|
|
// Pause at the end in either case.
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
function prepArtAndViewController(callback) {
|
|
|
|
self.prepViewControllerWithArt(
|
|
|
|
'dupes',
|
|
|
|
FormIds.dupes,
|
|
|
|
{ clearScreen : true, trailingLF : false },
|
|
|
|
err => {
|
|
|
|
if(err) {
|
|
|
|
self.client.term.pipeWrite('|00|07Duplicate upload(s) found:\n');
|
|
|
|
return callback(null, null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const dupeListView = self.viewControllers.dupes.getView(MciViewIds.dupes.dupeList);
|
|
|
|
return callback(null, dupeListView);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
function prepDupeObjects(dupeListView, callback) {
|
2018-06-23 03:26:46 +00:00
|
|
|
// update dupe objects with additional info that can be used for formatString() and the like
|
2018-06-22 05:15:04 +00:00
|
|
|
async.each(dupes, (dupe, nextDupe) => {
|
|
|
|
FileEntry.loadBasicEntry(dupe.fileId, dupe, err => {
|
|
|
|
if(err) {
|
|
|
|
return nextDupe(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
const areaInfo = getFileAreaByTag(dupe.areaTag);
|
|
|
|
if(areaInfo) {
|
2018-06-23 03:26:46 +00:00
|
|
|
dupe.areaName = areaInfo.name;
|
|
|
|
dupe.areaDesc = areaInfo.desc;
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
return nextDupe(null);
|
|
|
|
});
|
|
|
|
}, err => {
|
|
|
|
return callback(err, dupeListView);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function populateDupeInfo(dupeListView, callback) {
|
|
|
|
const dupeInfoFormat = self.menuConfig.config.dupeInfoFormat || '{fileName} @ {areaName}';
|
|
|
|
|
|
|
|
if(dupeListView) {
|
|
|
|
dupeListView.setItems(dupes.map(dupe => stringFormat(dupeInfoFormat, dupe) ) );
|
|
|
|
dupeListView.redraw();
|
|
|
|
} else {
|
|
|
|
dupes.forEach(dupe => {
|
|
|
|
self.client.term.pipeWrite(`${stringFormat(dupeInfoFormat, dupe)}\n`);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null);
|
|
|
|
},
|
|
|
|
function pause(callback) {
|
|
|
|
return self.pausePrompt( { row : self.client.term.termHeight }, callback);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
err => {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
processUploadedFiles() {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// For each file uploaded, we need to process & gather information
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
function prepNonBlind(callback) {
|
|
|
|
if(self.isBlindUpload()) {
|
|
|
|
return callback(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// For non-blind uploads, batch is not supported, we expect a single file
|
|
|
|
// in |recvFilePaths|. If not, it's an error (we don't want to process the wrong thing)
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
if(self.recvFilePaths.length > 1) {
|
|
|
|
self.client.log.warn( { recvFilePaths : self.recvFilePaths }, 'Non-blind upload received 2:n files' );
|
|
|
|
return callback(Errors.UnexpectedState(`Non-blind upload expected single file but got received ${self.recvFilePaths.length}`));
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null);
|
|
|
|
},
|
|
|
|
function scan(callback) {
|
|
|
|
return self.scanFiles(callback);
|
|
|
|
},
|
|
|
|
function pause(scanResults, callback) {
|
|
|
|
if(self.hasProcessingArt) {
|
|
|
|
self.client.term.rawWrite(ansiGoto(self.client.term.termHeight, 1));
|
|
|
|
} else {
|
|
|
|
self.client.term.write('\n');
|
|
|
|
}
|
|
|
|
|
|
|
|
self.pausePrompt( () => {
|
|
|
|
return callback(null, scanResults);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function displayDupes(scanResults, callback) {
|
|
|
|
if(0 === scanResults.dupes.length) {
|
|
|
|
return callback(null, scanResults);
|
|
|
|
}
|
|
|
|
|
|
|
|
return self.displayDupesPage(scanResults.dupes, () => {
|
|
|
|
return callback(null, scanResults);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
function prepDetails(scanResults, callback) {
|
|
|
|
return self.prepDetailsForUpload(scanResults, callback);
|
|
|
|
},
|
|
|
|
function startMovingAndPersistingToDatabase(scanResults, callback) {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// *Start* the process of moving files from their current |tempRecvDirectory|
|
|
|
|
// locations -> their final area destinations. Don't make the user wait
|
|
|
|
// here as I/O can take quite a bit of time. Log any failures.
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
self.moveAndPersistUploadsToDatabase(scanResults.newEntries);
|
|
|
|
return callback(null, scanResults.newEntries);
|
|
|
|
},
|
|
|
|
function sendEvent(uploadedEntries, callback) {
|
|
|
|
Events.emit(
|
|
|
|
Events.getSystemEvents().UserUpload,
|
|
|
|
{
|
2018-06-23 03:26:46 +00:00
|
|
|
user : self.client.user,
|
|
|
|
files : uploadedEntries,
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
return callback(null);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
err => {
|
|
|
|
if(err) {
|
|
|
|
self.client.log.warn('File upload error encountered', { error : err.message } );
|
2018-06-23 03:26:46 +00:00
|
|
|
self.cleanupTempFiles(); // normally called after moveAndPersistUploadsToDatabase() is completed.
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return self.prevMenu();
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
displayOptionsPage(cb) {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
async.series(
|
|
|
|
[
|
|
|
|
function prepArtAndViewController(callback) {
|
|
|
|
return self.prepViewControllerWithArt(
|
|
|
|
'options',
|
|
|
|
FormIds.options,
|
|
|
|
{ clearScreen : true, trailingLF : false },
|
|
|
|
callback
|
|
|
|
);
|
|
|
|
},
|
|
|
|
function populateViews(callback) {
|
|
|
|
const areaSelectView = self.viewControllers.options.getView(MciViewIds.options.area);
|
|
|
|
areaSelectView.setItems( self.availAreas.map(areaInfo => areaInfo.name ) );
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
const uploadTypeView = self.viewControllers.options.getView(MciViewIds.options.uploadType);
|
|
|
|
const fileNameView = self.viewControllers.options.getView(MciViewIds.options.fileName);
|
2018-06-22 05:15:04 +00:00
|
|
|
|
|
|
|
const blindFileNameText = self.menuConfig.config.blindFileNameText || '(blind - filename ignored)';
|
|
|
|
|
|
|
|
uploadTypeView.on('index update', idx => {
|
|
|
|
self.uploadType = (0 === idx) ? 'blind' : 'non-blind';
|
|
|
|
|
|
|
|
if(self.isBlindUpload()) {
|
|
|
|
fileNameView.setText(blindFileNameText);
|
|
|
|
fileNameView.acceptsFocus = false;
|
|
|
|
} else {
|
|
|
|
fileNameView.clearText();
|
|
|
|
fileNameView.acceptsFocus = true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// sanatize filename for display when leaving the view
|
2018-06-22 05:15:04 +00:00
|
|
|
self.viewControllers.options.on('leave', prevView => {
|
|
|
|
if(prevView.id === MciViewIds.options.fileName) {
|
|
|
|
fileNameView.setText(sanatizeFilename(fileNameView.getData()));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
self.uploadType = 'blind';
|
2018-06-23 03:26:46 +00:00
|
|
|
uploadTypeView.setFocusItemIndex(0); // default to blind
|
2018-06-22 05:15:04 +00:00
|
|
|
fileNameView.setText(blindFileNameText);
|
|
|
|
areaSelectView.redraw();
|
|
|
|
|
|
|
|
return callback(null);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
err => {
|
|
|
|
if(cb) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
displayProcessingPage(cb) {
|
|
|
|
return this.prepViewControllerWithArt(
|
|
|
|
'processing',
|
|
|
|
FormIds.processing,
|
|
|
|
{ clearScreen : true, trailingLF : false },
|
|
|
|
err => {
|
2018-06-23 03:26:46 +00:00
|
|
|
// note: this art is not required
|
2018-06-22 05:15:04 +00:00
|
|
|
this.hasProcessingArt = !err;
|
|
|
|
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
fileEntryHasDetectedDesc(fileEntry) {
|
|
|
|
return (fileEntry.desc && fileEntry.desc.length > 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
displayFileDetailsPageForUploadEntry(fileEntry, cb) {
|
|
|
|
const self = this;
|
|
|
|
|
|
|
|
async.waterfall(
|
|
|
|
[
|
|
|
|
function prepArtAndViewController(callback) {
|
|
|
|
return self.prepViewControllerWithArt(
|
|
|
|
'fileDetails',
|
|
|
|
FormIds.fileDetails,
|
|
|
|
{ clearScreen : true, trailingLF : false },
|
|
|
|
err => {
|
|
|
|
return callback(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
},
|
|
|
|
function populateViews(callback) {
|
|
|
|
const descView = self.viewControllers.fileDetails.getView(MciViewIds.fileDetails.desc);
|
|
|
|
const tagsView = self.viewControllers.fileDetails.getView(MciViewIds.fileDetails.tags);
|
|
|
|
const yearView = self.viewControllers.fileDetails.getView(MciViewIds.fileDetails.estYear);
|
|
|
|
|
|
|
|
self.updateCustomViewTextsWithFilter('fileDetails', MciViewIds.fileDetails.customRangeStart, fileEntry );
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
tagsView.setText( Array.from(fileEntry.hashTags).join(',') ); // :TODO: optional 'hashTagsSep' like file list/browse
|
2018-06-22 05:15:04 +00:00
|
|
|
yearView.setText(fileEntry.meta.est_release_year || '');
|
|
|
|
|
|
|
|
if(isAnsi(fileEntry.desc)) {
|
|
|
|
fileEntry.descIsAnsi = true;
|
|
|
|
|
|
|
|
return descView.setAnsi(
|
|
|
|
fileEntry.desc,
|
|
|
|
{
|
2018-06-23 03:26:46 +00:00
|
|
|
prepped : false,
|
|
|
|
forceLineTerm : true,
|
2018-06-22 05:15:04 +00:00
|
|
|
},
|
|
|
|
() => {
|
|
|
|
return callback(null, descView, 'preview', MciViewIds.fileDetails.tags);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
const hasDesc = self.fileEntryHasDetectedDesc(fileEntry);
|
|
|
|
descView.setText(
|
|
|
|
hasDesc ? fileEntry.desc : getDescFromFileName(fileEntry.fileName),
|
2018-06-23 03:26:46 +00:00
|
|
|
{ scrollMode : 'top' } // override scroll mode; we want to be @ top
|
2018-06-22 05:15:04 +00:00
|
|
|
);
|
|
|
|
return callback(null, descView, 'edit', hasDesc ? MciViewIds.fileDetails.tags : MciViewIds.fileDetails.desc);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
function finalizeViews(descView, descViewMode, focusId, callback) {
|
|
|
|
descView.setPropertyValue('mode', descViewMode);
|
2018-06-23 03:26:46 +00:00
|
|
|
descView.acceptsFocus = 'preview' === descViewMode ? false : true;
|
2018-06-22 05:15:04 +00:00
|
|
|
self.viewControllers.fileDetails.switchFocus(focusId);
|
|
|
|
return callback(null);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
err => {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// we only call |cb| here if there is an error
|
|
|
|
// else, wait for the current from to be submit - then call -
|
|
|
|
// this way we'll move on to the next file entry when ready
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
if(err) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
self.fileDetailsCurrentEntrySubmitCallback = cb; // stash for moduleMethods.fileDetailsContinue
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2017-01-02 04:53:04 +00:00
|
|
|
};
|