🔧 Prettification
This commit is contained in:
@@ -33,7 +33,13 @@ SOFTWARE.
|
|||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
import { isNil } from "lodash";
|
import { isNil } from "lodash";
|
||||||
import { Context, Service, ServiceBroker, ServiceSchema, Errors } from "moleculer";
|
import {
|
||||||
|
Context,
|
||||||
|
Service,
|
||||||
|
ServiceBroker,
|
||||||
|
ServiceSchema,
|
||||||
|
Errors,
|
||||||
|
} from "moleculer";
|
||||||
import { DbMixin } from "../mixins/db.mixin";
|
import { DbMixin } from "../mixins/db.mixin";
|
||||||
import Comic from "../models/comic.model";
|
import Comic from "../models/comic.model";
|
||||||
import { walkFolder, getSizeOfDirectory } from "../utils/file.utils";
|
import { walkFolder, getSizeOfDirectory } from "../utils/file.utils";
|
||||||
@@ -128,7 +134,8 @@ export default class ImportService extends Service {
|
|||||||
});
|
});
|
||||||
// Determine source where the comic was added from
|
// Determine source where the comic was added from
|
||||||
// and gather identifying information about it
|
// and gather identifying information about it
|
||||||
const sourceName = referenceComicObject[0].acquisition.source.name;
|
const sourceName =
|
||||||
|
referenceComicObject[0].acquisition.source.name;
|
||||||
const { sourcedMetadata } = referenceComicObject[0];
|
const { sourcedMetadata } = referenceComicObject[0];
|
||||||
|
|
||||||
const filePath = `${COMICS_DIRECTORY}/${ctx.params.bundle.data.name}`;
|
const filePath = `${COMICS_DIRECTORY}/${ctx.params.bundle.data.name}`;
|
||||||
@@ -172,8 +179,14 @@ export default class ImportService extends Service {
|
|||||||
// 1.1 Filter on .cb* extensions
|
// 1.1 Filter on .cb* extensions
|
||||||
.pipe(
|
.pipe(
|
||||||
through2.obj(function (item, enc, next) {
|
through2.obj(function (item, enc, next) {
|
||||||
let fileExtension = path.extname(item.path);
|
let fileExtension = path.extname(
|
||||||
if ([".cbz", ".cbr", ".cb7"].includes(fileExtension)) {
|
item.path
|
||||||
|
);
|
||||||
|
if (
|
||||||
|
[".cbz", ".cbr", ".cb7"].includes(
|
||||||
|
fileExtension
|
||||||
|
)
|
||||||
|
) {
|
||||||
this.push(item);
|
this.push(item);
|
||||||
}
|
}
|
||||||
next();
|
next();
|
||||||
@@ -182,7 +195,10 @@ export default class ImportService extends Service {
|
|||||||
// 1.2 Pipe filtered results to the next step
|
// 1.2 Pipe filtered results to the next step
|
||||||
// Enqueue the job in the queue
|
// Enqueue the job in the queue
|
||||||
.on("data", async (item) => {
|
.on("data", async (item) => {
|
||||||
console.info("Found a file at path: %s", item.path);
|
console.info(
|
||||||
|
"Found a file at path: %s",
|
||||||
|
item.path
|
||||||
|
);
|
||||||
let comicExists = await Comic.exists({
|
let comicExists = await Comic.exists({
|
||||||
"rawFileDetails.name": `${path.basename(
|
"rawFileDetails.name": `${path.basename(
|
||||||
item.path,
|
item.path,
|
||||||
@@ -191,8 +207,14 @@ export default class ImportService extends Service {
|
|||||||
});
|
});
|
||||||
if (!comicExists) {
|
if (!comicExists) {
|
||||||
// 2.1 Reset the job counters in Redis
|
// 2.1 Reset the job counters in Redis
|
||||||
await pubClient.set("completedJobCount", 0);
|
await pubClient.set(
|
||||||
await pubClient.set("failedJobCount", 0);
|
"completedJobCount",
|
||||||
|
0
|
||||||
|
);
|
||||||
|
await pubClient.set(
|
||||||
|
"failedJobCount",
|
||||||
|
0
|
||||||
|
);
|
||||||
// 2.2 Send the extraction job to the queue
|
// 2.2 Send the extraction job to the queue
|
||||||
this.broker.call("jobqueue.enqueue", {
|
this.broker.call("jobqueue.enqueue", {
|
||||||
fileObject: {
|
fileObject: {
|
||||||
@@ -204,7 +226,9 @@ export default class ImportService extends Service {
|
|||||||
action: "enqueue.async",
|
action: "enqueue.async",
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
console.log("Comic already exists in the library.");
|
console.log(
|
||||||
|
"Comic already exists in the library."
|
||||||
|
);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.on("end", () => {
|
.on("end", () => {
|
||||||
@@ -249,13 +273,19 @@ export default class ImportService extends Service {
|
|||||||
}>
|
}>
|
||||||
) {
|
) {
|
||||||
try {
|
try {
|
||||||
console.log(JSON.stringify(ctx.params.payload, null, 4));
|
console.log(
|
||||||
|
JSON.stringify(ctx.params.payload, null, 4)
|
||||||
|
);
|
||||||
const { payload } = ctx.params;
|
const { payload } = ctx.params;
|
||||||
const { wanted } = payload;
|
const { wanted } = payload;
|
||||||
|
|
||||||
console.log("Saving to Mongo...");
|
console.log("Saving to Mongo...");
|
||||||
|
|
||||||
if (!wanted || !wanted.volume || !wanted.volume.id) {
|
if (
|
||||||
|
!wanted ||
|
||||||
|
!wanted.volume ||
|
||||||
|
!wanted.volume.id
|
||||||
|
) {
|
||||||
console.log(
|
console.log(
|
||||||
"No valid identifier for upsert. Attempting to create a new document with minimal data..."
|
"No valid identifier for upsert. Attempting to create a new document with minimal data..."
|
||||||
);
|
);
|
||||||
@@ -300,7 +330,11 @@ export default class ImportService extends Service {
|
|||||||
new: true,
|
new: true,
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = await Comic.findOneAndUpdate(condition, update, options);
|
const result = await Comic.findOneAndUpdate(
|
||||||
|
condition,
|
||||||
|
update,
|
||||||
|
options
|
||||||
|
);
|
||||||
console.log(
|
console.log(
|
||||||
"Operation completed. Document updated or inserted:",
|
"Operation completed. Document updated or inserted:",
|
||||||
result
|
result
|
||||||
@@ -313,7 +347,10 @@ export default class ImportService extends Service {
|
|||||||
};
|
};
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log(error);
|
console.log(error);
|
||||||
throw new Errors.MoleculerError("Operation failed.", 500);
|
throw new Errors.MoleculerError(
|
||||||
|
"Operation failed.",
|
||||||
|
500
|
||||||
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -353,7 +390,9 @@ export default class ImportService extends Service {
|
|||||||
) {
|
) {
|
||||||
// 1. Find mongo object by id
|
// 1. Find mongo object by id
|
||||||
// 2. Import payload into sourcedMetadata.comicvine
|
// 2. Import payload into sourcedMetadata.comicvine
|
||||||
const comicObjectId = new ObjectId(ctx.params.comicObjectId);
|
const comicObjectId = new ObjectId(
|
||||||
|
ctx.params.comicObjectId
|
||||||
|
);
|
||||||
|
|
||||||
return new Promise(async (resolve, reject) => {
|
return new Promise(async (resolve, reject) => {
|
||||||
let volumeDetails = {};
|
let volumeDetails = {};
|
||||||
@@ -362,15 +401,18 @@ export default class ImportService extends Service {
|
|||||||
const volumeDetails = await this.broker.call(
|
const volumeDetails = await this.broker.call(
|
||||||
"comicvine.getVolumes",
|
"comicvine.getVolumes",
|
||||||
{
|
{
|
||||||
volumeURI: matchedResult.volume.api_detail_url,
|
volumeURI:
|
||||||
|
matchedResult.volume.api_detail_url,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
matchedResult.volumeInformation = volumeDetails.results;
|
matchedResult.volumeInformation =
|
||||||
|
volumeDetails.results;
|
||||||
Comic.findByIdAndUpdate(
|
Comic.findByIdAndUpdate(
|
||||||
comicObjectId,
|
comicObjectId,
|
||||||
{
|
{
|
||||||
$set: {
|
$set: {
|
||||||
"sourcedMetadata.comicvine": matchedResult,
|
"sourcedMetadata.comicvine":
|
||||||
|
matchedResult,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{ new: true },
|
{ new: true },
|
||||||
@@ -401,7 +443,9 @@ export default class ImportService extends Service {
|
|||||||
}>
|
}>
|
||||||
) {
|
) {
|
||||||
console.log(JSON.stringify(ctx.params, null, 2));
|
console.log(JSON.stringify(ctx.params, null, 2));
|
||||||
const comicObjectId = new ObjectId(ctx.params.comicObjectId);
|
const comicObjectId = new ObjectId(
|
||||||
|
ctx.params.comicObjectId
|
||||||
|
);
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
Comic.findByIdAndUpdate(
|
Comic.findByIdAndUpdate(
|
||||||
@@ -439,8 +483,13 @@ export default class ImportService extends Service {
|
|||||||
announce: [String];
|
announce: [String];
|
||||||
}>
|
}>
|
||||||
) => {
|
) => {
|
||||||
const { name, torrentToDownload, comicObjectId, announce, infoHash } =
|
const {
|
||||||
ctx.params;
|
name,
|
||||||
|
torrentToDownload,
|
||||||
|
comicObjectId,
|
||||||
|
announce,
|
||||||
|
infoHash,
|
||||||
|
} = ctx.params;
|
||||||
console.log(JSON.stringify(ctx.params, null, 4));
|
console.log(JSON.stringify(ctx.params, null, 4));
|
||||||
try {
|
try {
|
||||||
return await Comic.findByIdAndUpdate(
|
return await Comic.findByIdAndUpdate(
|
||||||
@@ -503,7 +552,9 @@ export default class ImportService extends Service {
|
|||||||
params: { id: "string" },
|
params: { id: "string" },
|
||||||
async handler(ctx: Context<{ id: string }>) {
|
async handler(ctx: Context<{ id: string }>) {
|
||||||
console.log(ctx.params.id);
|
console.log(ctx.params.id);
|
||||||
return await Comic.findById(new ObjectId(ctx.params.id));
|
return await Comic.findById(
|
||||||
|
new ObjectId(ctx.params.id)
|
||||||
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
getComicBooksByIds: {
|
getComicBooksByIds: {
|
||||||
@@ -511,7 +562,9 @@ export default class ImportService extends Service {
|
|||||||
params: { ids: "array" },
|
params: { ids: "array" },
|
||||||
handler: async (ctx: Context<{ ids: [string] }>) => {
|
handler: async (ctx: Context<{ ids: [string] }>) => {
|
||||||
console.log(ctx.params.ids);
|
console.log(ctx.params.ids);
|
||||||
const queryIds = ctx.params.ids.map((id) => new ObjectId(id));
|
const queryIds = ctx.params.ids.map(
|
||||||
|
(id) => new ObjectId(id)
|
||||||
|
);
|
||||||
return await Comic.find({
|
return await Comic.find({
|
||||||
_id: {
|
_id: {
|
||||||
$in: queryIds,
|
$in: queryIds,
|
||||||
@@ -527,7 +580,8 @@ export default class ImportService extends Service {
|
|||||||
const volumes = await Comic.aggregate([
|
const volumes = await Comic.aggregate([
|
||||||
{
|
{
|
||||||
$project: {
|
$project: {
|
||||||
volumeInfo: "$sourcedMetadata.comicvine.volumeInformation",
|
volumeInfo:
|
||||||
|
"$sourcedMetadata.comicvine.volumeInformation",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -573,46 +627,52 @@ export default class ImportService extends Service {
|
|||||||
const { queryObjects } = ctx.params;
|
const { queryObjects } = ctx.params;
|
||||||
// construct the query for ElasticSearch
|
// construct the query for ElasticSearch
|
||||||
let elasticSearchQuery = {};
|
let elasticSearchQuery = {};
|
||||||
const elasticSearchQueries = queryObjects.map((queryObject) => {
|
const elasticSearchQueries = queryObjects.map(
|
||||||
console.log("Volume: ", queryObject.volumeName);
|
(queryObject) => {
|
||||||
console.log("Issue: ", queryObject.issueName);
|
console.log("Volume: ", queryObject.volumeName);
|
||||||
if (queryObject.issueName === null) {
|
console.log("Issue: ", queryObject.issueName);
|
||||||
queryObject.issueName = "";
|
if (queryObject.issueName === null) {
|
||||||
}
|
queryObject.issueName = "";
|
||||||
if (queryObject.volumeName === null) {
|
}
|
||||||
queryObject.volumeName = "";
|
if (queryObject.volumeName === null) {
|
||||||
}
|
queryObject.volumeName = "";
|
||||||
elasticSearchQuery = {
|
}
|
||||||
bool: {
|
elasticSearchQuery = {
|
||||||
must: [
|
bool: {
|
||||||
{
|
must: [
|
||||||
match_phrase: {
|
{
|
||||||
"rawFileDetails.name": queryObject.volumeName,
|
match_phrase: {
|
||||||
|
"rawFileDetails.name":
|
||||||
|
queryObject.volumeName,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
{
|
||||||
{
|
term: {
|
||||||
term: {
|
"inferredMetadata.issue.number":
|
||||||
"inferredMetadata.issue.number": parseInt(
|
parseInt(
|
||||||
queryObject.issueNumber,
|
queryObject.issueNumber,
|
||||||
10
|
10
|
||||||
),
|
),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
],
|
||||||
],
|
},
|
||||||
},
|
};
|
||||||
};
|
|
||||||
|
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
index: "comics",
|
index: "comics",
|
||||||
search_type: "dfs_query_then_fetch",
|
search_type: "dfs_query_then_fetch",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
query: elasticSearchQuery,
|
query: elasticSearchQuery,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
});
|
}
|
||||||
console.log(JSON.stringify(elasticSearchQueries, null, 2));
|
);
|
||||||
|
console.log(
|
||||||
|
JSON.stringify(elasticSearchQueries, null, 2)
|
||||||
|
);
|
||||||
|
|
||||||
return await ctx.broker.call("search.searchComic", {
|
return await ctx.broker.call("search.searchComic", {
|
||||||
elasticSearchQueries,
|
elasticSearchQueries,
|
||||||
@@ -625,11 +685,10 @@ export default class ImportService extends Service {
|
|||||||
rest: "GET /libraryStatistics",
|
rest: "GET /libraryStatistics",
|
||||||
params: {},
|
params: {},
|
||||||
handler: async (ctx: Context<{}>) => {
|
handler: async (ctx: Context<{}>) => {
|
||||||
const comicDirectorySize = await getSizeOfDirectory(COMICS_DIRECTORY, [
|
const comicDirectorySize = await getSizeOfDirectory(
|
||||||
".cbz",
|
COMICS_DIRECTORY,
|
||||||
".cbr",
|
[".cbz", ".cbr", ".cb7"]
|
||||||
".cb7",
|
);
|
||||||
]);
|
|
||||||
const totalCount = await Comic.countDocuments({});
|
const totalCount = await Comic.countDocuments({});
|
||||||
const statistics = await Comic.aggregate([
|
const statistics = await Comic.aggregate([
|
||||||
{
|
{
|
||||||
@@ -638,7 +697,11 @@ export default class ImportService extends Service {
|
|||||||
{
|
{
|
||||||
$match: {
|
$match: {
|
||||||
"rawFileDetails.extension": {
|
"rawFileDetails.extension": {
|
||||||
$in: [".cbr", ".cbz", ".cb7"],
|
$in: [
|
||||||
|
".cbr",
|
||||||
|
".cbz",
|
||||||
|
".cb7",
|
||||||
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -652,9 +715,10 @@ export default class ImportService extends Service {
|
|||||||
issues: [
|
issues: [
|
||||||
{
|
{
|
||||||
$match: {
|
$match: {
|
||||||
"sourcedMetadata.comicvine.volumeInformation": {
|
"sourcedMetadata.comicvine.volumeInformation":
|
||||||
$gt: {},
|
{
|
||||||
},
|
$gt: {},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -709,7 +773,6 @@ export default class ImportService extends Service {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
// This method belongs in library service,
|
// This method belongs in library service,
|
||||||
// because bundles can only exist for comics _in the library_
|
// because bundles can only exist for comics _in the library_
|
||||||
// (wanted or imported)
|
// (wanted or imported)
|
||||||
@@ -722,25 +785,32 @@ export default class ImportService extends Service {
|
|||||||
config: any;
|
config: any;
|
||||||
}>
|
}>
|
||||||
) => {
|
) => {
|
||||||
// 1. Get the comic object Id
|
try {
|
||||||
const { config } = ctx.params;
|
// 1. Get the comic object Id
|
||||||
const comicObject = await Comic.findById(
|
const { config } = ctx.params;
|
||||||
new ObjectId(ctx.params.comicObjectId)
|
const comicObject = await Comic.findById(
|
||||||
);
|
new ObjectId(ctx.params.comicObjectId)
|
||||||
// 2. Init AirDC++
|
|
||||||
// 3. Get the bundles for the comic object
|
|
||||||
const ADCPPSocket = new AirDCPPSocket(config);
|
|
||||||
if (comicObject) {
|
|
||||||
const foo = comicObject.acquisition.directconnect.downloads.map(
|
|
||||||
async (bundle) => {
|
|
||||||
// make the call to get the bundles from AirDC++ using the bundleId
|
|
||||||
return await ADCPPSocket.get(`queue/bundles/${bundle.id}`);
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
return foo;
|
// 2. Init AirDC++
|
||||||
}
|
// 3. Get the bundles for the comic object
|
||||||
return false;
|
const ADCPPSocket = new AirDCPPSocket(config);
|
||||||
|
if (comicObject) {
|
||||||
|
// make the call to get the bundles from AirDC++ using the bundleId
|
||||||
|
return comicObject.acquisition.directconnect.downloads.map(
|
||||||
|
async (bundle) =>
|
||||||
|
await ADCPPSocket.get(
|
||||||
|
`queue/bundles/${bundle.id}`
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
} catch (error) {
|
||||||
|
throw new Errors.MoleculerError(
|
||||||
|
"Couldn't fetch bundles from AirDC++",
|
||||||
|
500
|
||||||
|
);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
flushDB: {
|
flushDB: {
|
||||||
@@ -751,16 +821,23 @@ export default class ImportService extends Service {
|
|||||||
.drop()
|
.drop()
|
||||||
.then(async (data) => {
|
.then(async (data) => {
|
||||||
console.info(data);
|
console.info(data);
|
||||||
const coversFolderDeleteResult = fsExtra.emptyDirSync(
|
const coversFolderDeleteResult =
|
||||||
path.resolve(`${USERDATA_DIRECTORY}/covers`)
|
fsExtra.emptyDirSync(
|
||||||
);
|
path.resolve(
|
||||||
const expandedFolderDeleteResult = fsExtra.emptyDirSync(
|
`${USERDATA_DIRECTORY}/covers`
|
||||||
path.resolve(`${USERDATA_DIRECTORY}/expanded`)
|
)
|
||||||
);
|
);
|
||||||
const eSIndicesDeleteResult = await ctx.broker.call(
|
const expandedFolderDeleteResult =
|
||||||
"search.deleteElasticSearchIndices",
|
fsExtra.emptyDirSync(
|
||||||
{}
|
path.resolve(
|
||||||
);
|
`${USERDATA_DIRECTORY}/expanded`
|
||||||
|
)
|
||||||
|
);
|
||||||
|
const eSIndicesDeleteResult =
|
||||||
|
await ctx.broker.call(
|
||||||
|
"search.deleteElasticSearchIndices",
|
||||||
|
{}
|
||||||
|
);
|
||||||
return {
|
return {
|
||||||
data,
|
data,
|
||||||
coversFolderDeleteResult,
|
coversFolderDeleteResult,
|
||||||
|
|||||||
Reference in New Issue
Block a user