Files
homarr/packages/integrations/src/prowlarr/prowlarr-integration.ts
Yossi Hillali 08d4472d8b feat: indexer manager widget (#1057)
* fix(deps): update tanstack-query monorepo to ^5.53.2 (#1055)
Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>

<br/>
<div align="center">
  <img src="https://homarr.dev/img/logo.png" height="80" alt="" />
  <h3>Homarr</h3>
</div>

**Thank you for your contribution. Please ensure that your pull request meets the following pull request:**

- [ ] Builds without warnings or errors (``pnpm buid``, autofix with ``pnpm format:fix``)
- [ ] Pull request targets ``dev`` branch
- [ ] Commits follow the [conventional commits guideline](https://www.conventionalcommits.org/en/v1.0.0/)
- [ ] No shorthand variable names are used (eg. ``x``, ``y``, ``i`` or any abbrevation)

* fix: requested changes

* fix: requested changes

* feat: add cron job

* fix: review changes

* fix: add missing oldmarr import mappings

---------

Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
2024-09-07 23:18:16 +02:00

100 lines
3.3 KiB
TypeScript

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 fetch(`${this.integration.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 fetch(`${this.integration.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: { id: number }) => status.id));
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 fetch(`${this.integration.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 fetch(`${this.integration.url}/api`, {
headers: {
"X-Api-Key": apiKey,
},
});
},
handleResponseAsync: async (response) => {
try {
const result = (await response.json()) as unknown;
if (typeof result === "object" && result !== null) return;
} catch {
throw new IntegrationTestConnectionError("invalidJson");
}
throw new IntegrationTestConnectionError("invalidCredentials");
},
});
}
}