* wip: add page and loading of certificates in folder * wip: add certificate addition and removal * feat: add removal ui for certificates * feat: migrate integrations to fetch or agent with trusted certificates * fix: lock file issues * fix: typecheck issue * fix: inconsistent package versions * chore: address pull request feedback * fix: add missing navigation item and restrict access to page * chore: address pull request feedback * fix: inconsistent undici dependency version * fix: inconsistent undici dependency version
102 lines
3.5 KiB
TypeScript
102 lines
3.5 KiB
TypeScript
import { fetchWithTrustedCertificatesAsync } from "@homarr/certificates/server";
|
|
|
|
import { Integration } from "../base/integration";
|
|
import { IntegrationTestConnectionError } from "../base/test-connection-error";
|
|
import type { Indexer } from "../interfaces/indexer-manager/indexer";
|
|
import { indexerResponseSchema, statusResponseSchema } from "./prowlarr-types";
|
|
|
|
export class ProwlarrIntegration extends Integration {
|
|
public async getIndexersAsync(): Promise<Indexer[]> {
|
|
const apiKey = super.getSecretValue("apiKey");
|
|
|
|
const indexerResponse = await fetchWithTrustedCertificatesAsync(this.url("/api/v1/indexer"), {
|
|
headers: {
|
|
"X-Api-Key": apiKey,
|
|
},
|
|
});
|
|
if (!indexerResponse.ok) {
|
|
throw new Error(
|
|
`Failed to fetch indexers for ${this.integration.name} (${this.integration.id}): ${indexerResponse.statusText}`,
|
|
);
|
|
}
|
|
|
|
const statusResponse = await fetchWithTrustedCertificatesAsync(this.url("/api/v1/indexerstatus"), {
|
|
headers: {
|
|
"X-Api-Key": apiKey,
|
|
},
|
|
});
|
|
if (!statusResponse.ok) {
|
|
throw new Error(
|
|
`Failed to fetch status for ${this.integration.name} (${this.integration.id}): ${statusResponse.statusText}`,
|
|
);
|
|
}
|
|
|
|
const indexersResult = indexerResponseSchema.array().safeParse(await indexerResponse.json());
|
|
const statusResult = statusResponseSchema.safeParse(await statusResponse.json());
|
|
|
|
const errorMessages: string[] = [];
|
|
if (!indexersResult.success) {
|
|
errorMessages.push(`Indexers parsing error: ${indexersResult.error.message}`);
|
|
}
|
|
if (!statusResult.success) {
|
|
errorMessages.push(`Status parsing error: ${statusResult.error.message}`);
|
|
}
|
|
if (!indexersResult.success || !statusResult.success) {
|
|
throw new Error(
|
|
`Failed to parse indexers for ${this.integration.name} (${this.integration.id}), most likely your api key is wrong:\n${errorMessages.join("\n")}`,
|
|
);
|
|
}
|
|
|
|
const inactiveIndexerIds = new Set(statusResult.data.map((status: { indexerId: number }) => status.indexerId));
|
|
|
|
const indexers: Indexer[] = indexersResult.data.map((indexer) => ({
|
|
id: indexer.id,
|
|
name: indexer.name,
|
|
url: indexer.indexerUrls[0] ?? "",
|
|
enabled: indexer.enable,
|
|
status: !inactiveIndexerIds.has(indexer.id),
|
|
}));
|
|
|
|
return indexers;
|
|
}
|
|
|
|
public async testAllAsync(): Promise<void> {
|
|
const apiKey = super.getSecretValue("apiKey");
|
|
const response = await fetchWithTrustedCertificatesAsync(this.url("/api/v1/indexer/testall"), {
|
|
headers: {
|
|
"X-Api-Key": apiKey,
|
|
},
|
|
});
|
|
|
|
if (!response.ok) {
|
|
throw new Error(
|
|
`Failed to test all indexers for ${this.integration.name} (${this.integration.id}): ${response.statusText}`,
|
|
);
|
|
}
|
|
}
|
|
|
|
public async testConnectionAsync(): Promise<void> {
|
|
const apiKey = super.getSecretValue("apiKey");
|
|
|
|
await super.handleTestConnectionResponseAsync({
|
|
queryFunctionAsync: async () => {
|
|
return await fetchWithTrustedCertificatesAsync(this.url("/api"), {
|
|
headers: {
|
|
"X-Api-Key": apiKey,
|
|
},
|
|
});
|
|
},
|
|
handleResponseAsync: async (response) => {
|
|
try {
|
|
const result = await response.json();
|
|
if (typeof result === "object" && result !== null) return;
|
|
} catch {
|
|
throw new IntegrationTestConnectionError("invalidJson");
|
|
}
|
|
|
|
throw new IntegrationTestConnectionError("invalidCredentials");
|
|
},
|
|
});
|
|
}
|
|
}
|