Merge pull request #9 from MillenniumEarl/deepsource-transform-5bd5050a
Format code with prettierpull/10/head
commit
0014627d48
|
@ -308,8 +308,7 @@ module.exports.logout = function () {
|
||||||
|
|
||||||
// Gracefully close shared browser
|
// Gracefully close shared browser
|
||||||
if (!shared.isolation && _browser !== null) {
|
if (!shared.isolation && _browser !== null) {
|
||||||
_browser.close()
|
_browser.close().then(() => (_browser = null));
|
||||||
.then(() => _browser = null);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
'use strict';
|
"use strict";
|
||||||
|
|
||||||
class GameDownload {
|
class GameDownload {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
@ -28,16 +28,10 @@ class GameDownload {
|
||||||
* Download the game data in the indicated path
|
* Download the game data in the indicated path
|
||||||
* @param {string} path Save path
|
* @param {string} path Save path
|
||||||
*/
|
*/
|
||||||
download(path){
|
download(path) {}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
module.exports = GameDownload;
|
module.exports = GameDownload;
|
||||||
|
|
||||||
function downloadMEGA(url){
|
function downloadMEGA(url) {}
|
||||||
|
|
||||||
}
|
function downloadNOPY(url) {}
|
||||||
|
|
||||||
function downloadNOPY(url){
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
'use strict';
|
"use strict";
|
||||||
|
|
||||||
const UNKNOWN = 'Unknown';
|
const UNKNOWN = "Unknown";
|
||||||
|
|
||||||
class GameInfo {
|
class GameInfo {
|
||||||
constructor() {
|
constructor() {
|
||||||
|
@ -97,8 +97,8 @@ class GameInfo {
|
||||||
lastPlayed: this.lastPlayed,
|
lastPlayed: this.lastPlayed,
|
||||||
isMod: this.isMod,
|
isMod: this.isMod,
|
||||||
gameDir: this.gameDir,
|
gameDir: this.gameDir,
|
||||||
downloadInfo: this.downloadInfo
|
downloadInfo: this.downloadInfo,
|
||||||
}
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
'use strict';
|
"use strict";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class containing the data of the user currently connected to the F95Zone platform.
|
* Class containing the data of the user currently connected to the F95Zone platform.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
'use strict';
|
"use strict";
|
||||||
|
|
||||||
// Core modules
|
// Core modules
|
||||||
const { join } = require('path');
|
const { join } = require("path");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class containing variables shared between modules.
|
* Class containing variables shared between modules.
|
||||||
|
@ -37,12 +37,12 @@ class Shared {
|
||||||
* Wait instruction for the browser created by puppeteer.
|
* Wait instruction for the browser created by puppeteer.
|
||||||
* @type String
|
* @type String
|
||||||
*/
|
*/
|
||||||
static WAIT_STATEMENT = 'domcontentloaded';
|
static WAIT_STATEMENT = "domcontentloaded";
|
||||||
/**
|
/**
|
||||||
* Path to the directory to save the cache generated by the API.
|
* Path to the directory to save the cache generated by the API.
|
||||||
* @type String
|
* @type String
|
||||||
*/
|
*/
|
||||||
static _cacheDir = './f95cache';
|
static _cacheDir = "./f95cache";
|
||||||
/**
|
/**
|
||||||
* If true, it opens a new browser for each request to
|
* If true, it opens a new browser for each request to
|
||||||
* the F95Zone platform, otherwise it reuses the same.
|
* the F95Zone platform, otherwise it reuses the same.
|
||||||
|
@ -99,21 +99,21 @@ class Shared {
|
||||||
* @returns {String}
|
* @returns {String}
|
||||||
*/
|
*/
|
||||||
static get cookiesCachePath() {
|
static get cookiesCachePath() {
|
||||||
return join(this._cacheDir, 'cookies.json');
|
return join(this._cacheDir, "cookies.json");
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Path to the game engine cache.
|
* Path to the game engine cache.
|
||||||
* @returns {String}
|
* @returns {String}
|
||||||
*/
|
*/
|
||||||
static get enginesCachePath() {
|
static get enginesCachePath() {
|
||||||
return join(this._cacheDir, 'engines.json');
|
return join(this._cacheDir, "engines.json");
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Path to the cache of possible game states.
|
* Path to the cache of possible game states.
|
||||||
* @returns {String}
|
* @returns {String}
|
||||||
*/
|
*/
|
||||||
static get statusesCachePath() {
|
static get statusesCachePath() {
|
||||||
return join(this._cacheDir, 'statuses.json');
|
return join(this._cacheDir, "statuses.json");
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* If true, it opens a new browser for each request
|
* If true, it opens a new browser for each request
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
'use strict';
|
"use strict";
|
||||||
|
|
||||||
// Modules from file
|
// Modules from file
|
||||||
const {
|
const { F95_BASE_URL } = require("./constants/urls.js");
|
||||||
F95_BASE_URL
|
|
||||||
} = require('./constants/urls.js');
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @protected
|
* @protected
|
||||||
|
@ -14,7 +12,7 @@ const {
|
||||||
module.exports.isF95URL = function (url) {
|
module.exports.isF95URL = function (url) {
|
||||||
if (url.toString().startsWith(F95_BASE_URL)) return true;
|
if (url.toString().startsWith(F95_BASE_URL)) return true;
|
||||||
else return false;
|
else return false;
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @protected
|
* @protected
|
||||||
|
@ -29,4 +27,4 @@ module.exports.isStringAValidURL = function(url) {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
Loading…
Reference in New Issue