mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
Merge branch 'SEARCH-444' into SEARCH-440
This commit is contained in:
commit
0ba1fd3cf5
@ -116,32 +116,6 @@ class Crypto {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Deleting the data index folder
|
|
||||||
* when the app is closed
|
|
||||||
*/
|
|
||||||
deleteFolders() {
|
|
||||||
Crypto.deleteFolderRecursive(this.dataFolder);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Removing all the folders and files inside the data folder
|
|
||||||
* @param location
|
|
||||||
*/
|
|
||||||
static deleteFolderRecursive(location) {
|
|
||||||
if (fs.existsSync(location)) {
|
|
||||||
fs.readdirSync(location).forEach((file) => {
|
|
||||||
let curPath = location + "/" + file;
|
|
||||||
if (fs.lstatSync(curPath).isDirectory()) {
|
|
||||||
Crypto.deleteFolderRecursive(curPath);
|
|
||||||
} else {
|
|
||||||
fs.unlinkSync(curPath);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
fs.rmdirSync(location);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Crypto;
|
module.exports = Crypto;
|
@ -18,8 +18,7 @@ const protocolHandler = require('./protocolHandler');
|
|||||||
const getCmdLineArg = require('./utils/getCmdLineArg.js');
|
const getCmdLineArg = require('./utils/getCmdLineArg.js');
|
||||||
const log = require('./log.js');
|
const log = require('./log.js');
|
||||||
const logLevels = require('./enums/logLevels.js');
|
const logLevels = require('./enums/logLevels.js');
|
||||||
const Crypto = require('./cryptoLib');
|
const { deleteIndexFolder } = require('./search/search.js');
|
||||||
const crypto = new Crypto();
|
|
||||||
|
|
||||||
require('electron-dl')();
|
require('electron-dl')();
|
||||||
|
|
||||||
@ -132,7 +131,7 @@ app.on('activate', function() {
|
|||||||
|
|
||||||
app.on('will-quit', function (e) {
|
app.on('will-quit', function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
crypto.deleteFolders();
|
deleteIndexFolder();
|
||||||
app.exit();
|
app.exit();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -136,6 +136,11 @@ function createAPI() {
|
|||||||
*/
|
*/
|
||||||
Search: remote.require('./search/search.js').Search,
|
Search: remote.require('./search/search.js').Search,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function to clear the user index data
|
||||||
|
*/
|
||||||
|
deleteIndexFolder: remote.require('./search/search.js').deleteIndexFolder,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Brings window forward and gives focus.
|
* Brings window forward and gives focus.
|
||||||
* @param {String} windowName Name of window. Note: main window name is 'main'
|
* @param {String} windowName Name of window. Note: main window name is 'main'
|
||||||
|
@ -492,6 +492,33 @@ class Search {
|
|||||||
throw new Error(err);
|
throw new Error(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removing all the folders and files inside the data folder
|
||||||
|
* @param location
|
||||||
|
*/
|
||||||
|
static deleteFolderRecursive(location) {
|
||||||
|
if (fs.existsSync(location)) {
|
||||||
|
fs.readdirSync(location).forEach((file) => {
|
||||||
|
let curPath = location + "/" + file;
|
||||||
|
if (fs.lstatSync(curPath).isDirectory()) {
|
||||||
|
Search.deleteFolderRecursive(curPath);
|
||||||
|
} else {
|
||||||
|
fs.unlinkSync(curPath);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
fs.rmdirSync(location);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Deleting the data index folder
|
||||||
|
* when the app is closed/signed-out/navigates
|
||||||
|
*/
|
||||||
|
function deleteIndexFolder() {
|
||||||
|
Search.deleteFolderRecursive(INDEX_DATA_FOLDER);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -499,5 +526,6 @@ class Search {
|
|||||||
* @type {{Search: Search}}
|
* @type {{Search: Search}}
|
||||||
*/
|
*/
|
||||||
module.exports = {
|
module.exports = {
|
||||||
Search: Search
|
Search: Search,
|
||||||
|
deleteIndexFolder: deleteIndexFolder
|
||||||
};
|
};
|
||||||
|
@ -20,6 +20,7 @@ const eventEmitter = require('./eventEmitter');
|
|||||||
const throttle = require('./utils/throttle.js');
|
const throttle = require('./utils/throttle.js');
|
||||||
const { getConfigField, updateConfigField } = require('./config.js');
|
const { getConfigField, updateConfigField } = require('./config.js');
|
||||||
const { isMac, isNodeEnv } = require('./utils/misc');
|
const { isMac, isNodeEnv } = require('./utils/misc');
|
||||||
|
const { deleteIndexFolder } = require('./search/search.js');
|
||||||
|
|
||||||
// show dialog when certificate errors occur
|
// show dialog when certificate errors occur
|
||||||
require('./dialogs/showCertError.js');
|
require('./dialogs/showCertError.js');
|
||||||
@ -256,6 +257,11 @@ function doCreateMainWindow(initialUrl, initialBounds) {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// To delete the user index data folder on navigation
|
||||||
|
mainWindow.webContents.on('will-navigate', () => {
|
||||||
|
deleteIndexFolder();
|
||||||
|
});
|
||||||
|
|
||||||
getConfigField('url')
|
getConfigField('url')
|
||||||
.then(initializeCrashReporter)
|
.then(initializeCrashReporter)
|
||||||
.catch(app.quit);
|
.catch(app.quit);
|
||||||
|
Loading…
Reference in New Issue
Block a user