Merge pull request #12 from rishighan/getbundles-fix
getBundles Fix
This commit was merged in pull request #12.
This commit is contained in:
2732
package-lock.json
generated
2732
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -57,6 +57,7 @@ const through2 = require("through2");
|
|||||||
import klaw from "klaw";
|
import klaw from "klaw";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import { COMICS_DIRECTORY, USERDATA_DIRECTORY } from "../constants/directories";
|
import { COMICS_DIRECTORY, USERDATA_DIRECTORY } from "../constants/directories";
|
||||||
|
import AirDCPPSocket from "../shared/airdcpp.socket";
|
||||||
|
|
||||||
export default class LibraryService extends Service {
|
export default class LibraryService extends Service {
|
||||||
public constructor(
|
public constructor(
|
||||||
@@ -527,7 +528,9 @@ export default class LibraryService 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(ctx.params.id);
|
return await Comic.findById(
|
||||||
|
new ObjectId(ctx.params.id)
|
||||||
|
);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
getComicBooksByIds: {
|
getComicBooksByIds: {
|
||||||
@@ -746,6 +749,48 @@ export default class LibraryService extends Service {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// This method belongs in library service,
|
||||||
|
// because bundles can only exist for comics _in the library_
|
||||||
|
// (wanted or imported)
|
||||||
|
getBundles: {
|
||||||
|
rest: "POST /getBundles",
|
||||||
|
params: {},
|
||||||
|
handler: async (
|
||||||
|
ctx: Context<{
|
||||||
|
comicObjectId: string;
|
||||||
|
config: any;
|
||||||
|
}>
|
||||||
|
) => {
|
||||||
|
try {
|
||||||
|
// 1. Get the comic object Id
|
||||||
|
const { config } = ctx.params;
|
||||||
|
const comicObject = await Comic.findById(
|
||||||
|
new ObjectId(ctx.params.comicObjectId)
|
||||||
|
);
|
||||||
|
// 2. Init AirDC++
|
||||||
|
const ADCPPSocket = new AirDCPPSocket(config);
|
||||||
|
await ADCPPSocket.connect();
|
||||||
|
// 3. Get the bundles for the comic object
|
||||||
|
if (comicObject) {
|
||||||
|
// make the call to get the bundles from AirDC++ using the bundleId
|
||||||
|
const bundles =
|
||||||
|
comicObject.acquisition.directconnect.downloads.map(
|
||||||
|
async (bundle) => {
|
||||||
|
return await ADCPPSocket.get(
|
||||||
|
`queue/bundles/${bundle.bundleId}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
return Promise.all(bundles);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
throw new Errors.MoleculerError(
|
||||||
|
"Couldn't fetch bundles from AirDC++",
|
||||||
|
500
|
||||||
|
);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
flushDB: {
|
flushDB: {
|
||||||
rest: "POST /flushDB",
|
rest: "POST /flushDB",
|
||||||
params: {},
|
params: {},
|
||||||
|
|||||||
@@ -61,12 +61,8 @@ export default class SocketService extends Service {
|
|||||||
|
|
||||||
if (active > 0 || paused > 0 || waiting > 0) {
|
if (active > 0 || paused > 0 || waiting > 0) {
|
||||||
// 3. Get job counts
|
// 3. Get job counts
|
||||||
const completedJobCount = await pubClient.get(
|
const completedJobCount = await pubClient.get("completedJobCount");
|
||||||
"completedJobCount"
|
const failedJobCount = await pubClient.get("failedJobCount");
|
||||||
);
|
|
||||||
const failedJobCount = await pubClient.get(
|
|
||||||
"failedJobCount"
|
|
||||||
);
|
|
||||||
|
|
||||||
// 4. Send the counts to the active socket.io session
|
// 4. Send the counts to the active socket.io session
|
||||||
await this.broker.call("socket.broadcast", {
|
await this.broker.call("socket.broadcast", {
|
||||||
@@ -83,14 +79,9 @@ export default class SocketService extends Service {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
throw new MoleculerError(
|
throw new MoleculerError(err, 500, "SESSION_ID_NOT_FOUND", {
|
||||||
err,
|
data: sessionId,
|
||||||
500,
|
});
|
||||||
"SESSION_ID_NOT_FOUND",
|
|
||||||
{
|
|
||||||
data: sessionId,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -101,11 +92,7 @@ export default class SocketService extends Service {
|
|||||||
}>
|
}>
|
||||||
) => {
|
) => {
|
||||||
const { queueAction } = ctx.params;
|
const { queueAction } = ctx.params;
|
||||||
await this.broker.call(
|
await this.broker.call("jobqueue.toggle", { action: queueAction }, {});
|
||||||
"jobqueue.toggle",
|
|
||||||
{ action: queueAction },
|
|
||||||
{}
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
importSingleIssue: async (ctx: Context<{}>) => {
|
importSingleIssue: async (ctx: Context<{}>) => {
|
||||||
console.info("AirDC++ finished a download -> ");
|
console.info("AirDC++ finished a download -> ");
|
||||||
@@ -116,7 +103,6 @@ export default class SocketService extends Service {
|
|||||||
// {}
|
// {}
|
||||||
// );
|
// );
|
||||||
},
|
},
|
||||||
// AirDCPP Socket actions
|
|
||||||
|
|
||||||
search: {
|
search: {
|
||||||
params: {
|
params: {
|
||||||
@@ -124,18 +110,12 @@ export default class SocketService extends Service {
|
|||||||
config: "object",
|
config: "object",
|
||||||
},
|
},
|
||||||
async handler(ctx) {
|
async handler(ctx) {
|
||||||
console.log("a, a kanha kanha...");
|
|
||||||
|
|
||||||
const { query, config, namespace } = ctx.params;
|
const { query, config, namespace } = ctx.params;
|
||||||
const namespacedInstance = this.io.of(namespace || "/");
|
const namespacedInstance = this.io.of(namespace || "/");
|
||||||
const ADCPPSocket = new AirDCPPSocket(config);
|
const ADCPPSocket = new AirDCPPSocket(config);
|
||||||
console.log("asdas", ADCPPSocket);
|
|
||||||
try {
|
try {
|
||||||
await ADCPPSocket.connect();
|
await ADCPPSocket.connect();
|
||||||
const instance = await ADCPPSocket.post(
|
const instance = await ADCPPSocket.post("search", query);
|
||||||
"search",
|
|
||||||
query
|
|
||||||
);
|
|
||||||
|
|
||||||
// Send the instance to the client
|
// Send the instance to the client
|
||||||
await namespacedInstance.emit("searchInitiated", {
|
await namespacedInstance.emit("searchInitiated", {
|
||||||
@@ -147,10 +127,8 @@ export default class SocketService extends Service {
|
|||||||
`search`,
|
`search`,
|
||||||
`search_result_added`,
|
`search_result_added`,
|
||||||
(groupedResult) => {
|
(groupedResult) => {
|
||||||
namespacedInstance.emit(
|
console.log(JSON.stringify(groupedResult, null, 4));
|
||||||
"searchResultAdded",
|
namespacedInstance.emit("searchResultAdded", groupedResult);
|
||||||
groupedResult
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
instance.id
|
instance.id
|
||||||
);
|
);
|
||||||
@@ -159,10 +137,7 @@ export default class SocketService extends Service {
|
|||||||
`search`,
|
`search`,
|
||||||
`search_result_updated`,
|
`search_result_updated`,
|
||||||
(updatedResult) => {
|
(updatedResult) => {
|
||||||
namespacedInstance.emit(
|
namespacedInstance.emit("searchResultUpdated", updatedResult);
|
||||||
"searchResultUpdated",
|
|
||||||
updatedResult
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
instance.id
|
instance.id
|
||||||
);
|
);
|
||||||
@@ -172,47 +147,30 @@ export default class SocketService extends Service {
|
|||||||
`search_hub_searches_sent`,
|
`search_hub_searches_sent`,
|
||||||
async (searchInfo) => {
|
async (searchInfo) => {
|
||||||
await this.sleep(5000);
|
await this.sleep(5000);
|
||||||
const currentInstance =
|
const currentInstance = await ADCPPSocket.get(
|
||||||
await ADCPPSocket.get(
|
`search/${instance.id}`
|
||||||
`search/${instance.id}`
|
|
||||||
);
|
|
||||||
// Send the instance to the client
|
|
||||||
await namespacedInstance.emit(
|
|
||||||
"searchesSent",
|
|
||||||
{
|
|
||||||
searchInfo,
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
|
// Send the instance to the client
|
||||||
|
await namespacedInstance.emit("searchesSent", {
|
||||||
|
searchInfo,
|
||||||
|
});
|
||||||
if (currentInstance.result_count === 0) {
|
if (currentInstance.result_count === 0) {
|
||||||
console.log("No more search results.");
|
console.log("No more search results.");
|
||||||
namespacedInstance.emit(
|
namespacedInstance.emit("searchComplete", {
|
||||||
"searchComplete",
|
message: "No more search results.",
|
||||||
{
|
});
|
||||||
message:
|
|
||||||
"No more search results.",
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
instance.id
|
instance.id
|
||||||
);
|
);
|
||||||
|
|
||||||
// Perform the actual search
|
// Perform the actual search
|
||||||
await ADCPPSocket.post(
|
await ADCPPSocket.post(`search/${instance.id}/hub_search`, query);
|
||||||
`search/${instance.id}/hub_search`,
|
|
||||||
query
|
|
||||||
);
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
await namespacedInstance.emit(
|
await namespacedInstance.emit("searchError", error.message);
|
||||||
"searchError",
|
throw new MoleculerError("Search failed", 500, "SEARCH_FAILED", {
|
||||||
error.message
|
error,
|
||||||
);
|
});
|
||||||
throw new MoleculerError(
|
|
||||||
"Search failed",
|
|
||||||
500,
|
|
||||||
"SEARCH_FAILED",
|
|
||||||
{ error }
|
|
||||||
);
|
|
||||||
} finally {
|
} finally {
|
||||||
// await ADCPPSocket.disconnect();
|
// await ADCPPSocket.disconnect();
|
||||||
}
|
}
|
||||||
@@ -263,10 +221,7 @@ export default class SocketService extends Service {
|
|||||||
"Download and metadata update successful",
|
"Download and metadata update successful",
|
||||||
bundleDBImportResult
|
bundleDBImportResult
|
||||||
);
|
);
|
||||||
this.broker.emit(
|
this.broker.emit("downloadCompleted", bundleDBImportResult);
|
||||||
"downloadCompleted",
|
|
||||||
bundleDBImportResult
|
|
||||||
);
|
|
||||||
return bundleDBImportResult;
|
return bundleDBImportResult;
|
||||||
} else {
|
} else {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
@@ -275,12 +230,9 @@ export default class SocketService extends Service {
|
|||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.broker.emit("downloadError", error.message);
|
this.broker.emit("downloadError", error.message);
|
||||||
throw new MoleculerError(
|
throw new MoleculerError("Download failed", 500, "DOWNLOAD_FAILED", {
|
||||||
"Download failed",
|
error,
|
||||||
500,
|
});
|
||||||
"DOWNLOAD_FAILED",
|
|
||||||
{ error }
|
|
||||||
);
|
|
||||||
} finally {
|
} finally {
|
||||||
// await ADCPPSocket.disconnect();
|
// await ADCPPSocket.disconnect();
|
||||||
}
|
}
|
||||||
@@ -300,10 +252,7 @@ export default class SocketService extends Service {
|
|||||||
"queue",
|
"queue",
|
||||||
"queue_bundle_tick",
|
"queue_bundle_tick",
|
||||||
(tickData) => {
|
(tickData) => {
|
||||||
console.log(
|
console.log("Received tick data: ", tickData);
|
||||||
"Received tick data: ",
|
|
||||||
tickData
|
|
||||||
);
|
|
||||||
this.io.emit("bundleTickUpdate", tickData);
|
this.io.emit("bundleTickUpdate", tickData);
|
||||||
},
|
},
|
||||||
null
|
null
|
||||||
|
|||||||
Reference in New Issue
Block a user