mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
160 lines
4.4 KiB
TypeScript
160 lines
4.4 KiB
TypeScript
/*
|
|
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
*/
|
|
|
|
import { PlexAPICore } from "../core.js";
|
|
import { encodeFormQuery, encodeSimple } from "../lib/encodings.js";
|
|
import * as M from "../lib/matchers.js";
|
|
import { compactMap } from "../lib/primitives.js";
|
|
import { safeParse } from "../lib/schemas.js";
|
|
import { RequestOptions } from "../lib/sdks.js";
|
|
import { extractSecurity, resolveGlobalSecurity } from "../lib/security.js";
|
|
import { pathToFunc } from "../lib/url.js";
|
|
import {
|
|
ConnectionError,
|
|
InvalidRequestError,
|
|
RequestAbortedError,
|
|
RequestTimeoutError,
|
|
UnexpectedClientError,
|
|
} from "../sdk/models/errors/httpclienterrors.js";
|
|
import * as errors from "../sdk/models/errors/index.js";
|
|
import { SDKError } from "../sdk/models/errors/sdkerror.js";
|
|
import { SDKValidationError } from "../sdk/models/errors/sdkvalidationerror.js";
|
|
import * as operations from "../sdk/models/operations/index.js";
|
|
import { Result } from "../sdk/types/fp.js";
|
|
|
|
/**
|
|
* Refresh Metadata Of The Library
|
|
*
|
|
* @remarks
|
|
* This endpoint Refreshes all the Metadata of the library.
|
|
*/
|
|
export async function libraryGetRefreshLibraryMetadata(
|
|
client: PlexAPICore,
|
|
sectionKey: number,
|
|
force?: operations.Force | undefined,
|
|
options?: RequestOptions,
|
|
): Promise<
|
|
Result<
|
|
operations.GetRefreshLibraryMetadataResponse,
|
|
| errors.GetRefreshLibraryMetadataBadRequest
|
|
| errors.GetRefreshLibraryMetadataUnauthorized
|
|
| SDKError
|
|
| SDKValidationError
|
|
| UnexpectedClientError
|
|
| InvalidRequestError
|
|
| RequestAbortedError
|
|
| RequestTimeoutError
|
|
| ConnectionError
|
|
>
|
|
> {
|
|
const input: operations.GetRefreshLibraryMetadataRequest = {
|
|
sectionKey: sectionKey,
|
|
force: force,
|
|
};
|
|
|
|
const parsed = safeParse(
|
|
input,
|
|
(value) =>
|
|
operations.GetRefreshLibraryMetadataRequest$outboundSchema.parse(value),
|
|
"Input validation failed",
|
|
);
|
|
if (!parsed.ok) {
|
|
return parsed;
|
|
}
|
|
const payload = parsed.value;
|
|
const body = null;
|
|
|
|
const pathParams = {
|
|
sectionKey: encodeSimple("sectionKey", payload.sectionKey, {
|
|
explode: false,
|
|
charEncoding: "percent",
|
|
}),
|
|
};
|
|
|
|
const path = pathToFunc("/library/sections/{sectionKey}/refresh")(pathParams);
|
|
|
|
const query = encodeFormQuery({
|
|
"force": payload.force,
|
|
});
|
|
|
|
const headers = new Headers(compactMap({
|
|
Accept: "application/json",
|
|
}));
|
|
|
|
const secConfig = await extractSecurity(client._options.accessToken);
|
|
const securityInput = secConfig == null ? {} : { accessToken: secConfig };
|
|
const requestSecurity = resolveGlobalSecurity(securityInput);
|
|
|
|
const context = {
|
|
operationID: "get-refresh-library-metadata",
|
|
oAuth2Scopes: [],
|
|
|
|
resolvedSecurity: requestSecurity,
|
|
|
|
securitySource: client._options.accessToken,
|
|
retryConfig: options?.retries
|
|
|| client._options.retryConfig
|
|
|| { strategy: "none" },
|
|
retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"],
|
|
};
|
|
|
|
const requestRes = client._createRequest(context, {
|
|
security: requestSecurity,
|
|
method: "GET",
|
|
baseURL: options?.serverURL,
|
|
path: path,
|
|
headers: headers,
|
|
query: query,
|
|
body: body,
|
|
timeoutMs: options?.timeoutMs || client._options.timeoutMs || -1,
|
|
}, options);
|
|
if (!requestRes.ok) {
|
|
return requestRes;
|
|
}
|
|
const req = requestRes.value;
|
|
|
|
const doResult = await client._do(req, {
|
|
context,
|
|
errorCodes: ["400", "401", "4XX", "5XX"],
|
|
retryConfig: context.retryConfig,
|
|
retryCodes: context.retryCodes,
|
|
});
|
|
if (!doResult.ok) {
|
|
return doResult;
|
|
}
|
|
const response = doResult.value;
|
|
|
|
const responseFields = {
|
|
ContentType: response.headers.get("content-type")
|
|
?? "application/octet-stream",
|
|
StatusCode: response.status,
|
|
RawResponse: response,
|
|
Headers: {},
|
|
};
|
|
|
|
const [result] = await M.match<
|
|
operations.GetRefreshLibraryMetadataResponse,
|
|
| errors.GetRefreshLibraryMetadataBadRequest
|
|
| errors.GetRefreshLibraryMetadataUnauthorized
|
|
| SDKError
|
|
| SDKValidationError
|
|
| UnexpectedClientError
|
|
| InvalidRequestError
|
|
| RequestAbortedError
|
|
| RequestTimeoutError
|
|
| ConnectionError
|
|
>(
|
|
M.nil(200, operations.GetRefreshLibraryMetadataResponse$inboundSchema),
|
|
M.jsonErr(400, errors.GetRefreshLibraryMetadataBadRequest$inboundSchema),
|
|
M.jsonErr(401, errors.GetRefreshLibraryMetadataUnauthorized$inboundSchema),
|
|
M.fail("4XX"),
|
|
M.fail("5XX"),
|
|
)(response, { extraFields: responseFields });
|
|
if (!result.ok) {
|
|
return result;
|
|
}
|
|
|
|
return result;
|
|
}
|