* All file imports change from commonjs to es-module * Improved plex error responses back from api * Converted viewHistory to es module * Es-module requires file extension, updated all imports * Fix esmodule not having __dirname defined in scope * Replace dynamic-require with fs readFileSync * Short message service module function is exported as default * Resolved lint issues & ignore import/extension rule until typescript * All tests file imports changed from commonjs to es-module * Import json fixtures with new helper
50 lines
1.5 KiB
JavaScript
50 lines
1.5 KiB
JavaScript
import Plex from "../src/plex/plexRepository";
|
|
import establishedDatabase from "../src/database/database";
|
|
import Configuration from "../src/config/configuration";
|
|
|
|
const configuration = Configuration.getInstance();
|
|
const plex = new Plex(
|
|
configuration.get("plex", "ip"),
|
|
configuration.get("plex", "token")
|
|
);
|
|
|
|
const queries = {
|
|
getRequestsNotYetInPlex: `SELECT * FROM requests WHERE status = 'requested' OR status = 'downloading'`,
|
|
saveNewStatus: `UPDATE requests SET status = ? WHERE id IS ? and type IS ?`
|
|
};
|
|
|
|
const getByStatus = () =>
|
|
establishedDatabase.all(queries.getRequestsNotYetInPlex);
|
|
|
|
const checkIfRequestExistInPlex = async request => {
|
|
request.existsInPlex = await plex.existsInPlex(request);
|
|
return request;
|
|
};
|
|
|
|
const commitNewStatus = (status, id, type, title) => {
|
|
console.log(type, title, "updated to:", status);
|
|
return establishedDatabase.run(queries.saveNewStatus, [status, id, type]);
|
|
};
|
|
|
|
const getNewRequestMatchesInPlex = async () => {
|
|
const requests = await getByStatus();
|
|
|
|
return Promise.all(requests.map(checkIfRequestExistInPlex))
|
|
.catch(error =>
|
|
console.log("error from checking plex for existance:", error)
|
|
)
|
|
.then(matchedRequests =>
|
|
matchedRequests.filter(request => request.existsInPlex)
|
|
);
|
|
};
|
|
|
|
const updateMatchInDb = (match, status) => {
|
|
return commitNewStatus(status, match.id, match.type, match.title);
|
|
};
|
|
|
|
getNewRequestMatchesInPlex()
|
|
.then(newMatches =>
|
|
Promise.all(newMatches.map(match => updateMatchInDb(match, "downloaded")))
|
|
)
|
|
.then(() => process.exit(0));
|