mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
61e26804ba
* ⚡ enabled array-type * ⚡ await-thenable on * ⚡ ban-types on * ⚡ default-param-last on * ⚡ dot-notation on * ⚡ member-delimiter-style on * ⚡ no-duplicate-imports on * ⚡ no-empty-interface on * ⚡ no-floating-promises on * ⚡ no-for-in-array on * ⚡ no-invalid-void-type on * ⚡ no-loop-func on * ⚡ no-shadow on * ⚡ ban-ts-comment re enabled * ⚡ @typescript-eslint/lines-between-class-members on * address my own comment * @typescript-eslint/return-await on * @typescript-eslint/promise-function-async on * @typescript-eslint/no-unnecessary-boolean-literal-compare on * @typescript-eslint/no-unnecessary-type-assertion on * prefer-const on * @typescript-eslint/prefer-optional-chain on Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
92 lines
2.6 KiB
TypeScript
92 lines
2.6 KiB
TypeScript
import { OptionsWithUri } from 'request';
|
|
|
|
import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-core';
|
|
|
|
import { IDataObject, INodePropertyOptions, NodeApiError } from 'n8n-workflow';
|
|
|
|
export async function homeAssistantApiRequest(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
method: string,
|
|
resource: string,
|
|
body: IDataObject = {},
|
|
qs: IDataObject = {},
|
|
uri?: string,
|
|
option: IDataObject = {},
|
|
) {
|
|
const credentials = await this.getCredentials('homeAssistantApi');
|
|
|
|
let options: OptionsWithUri = {
|
|
headers: {
|
|
Authorization: `Bearer ${credentials.accessToken}`,
|
|
},
|
|
method,
|
|
qs,
|
|
body,
|
|
uri:
|
|
uri ??
|
|
`${credentials.ssl === true ? 'https' : 'http'}://${credentials.host}:${
|
|
credentials.port
|
|
}/api${resource}`,
|
|
json: true,
|
|
};
|
|
|
|
options = Object.assign({}, options, option);
|
|
if (Object.keys(options.body).length === 0) {
|
|
delete options.body;
|
|
}
|
|
try {
|
|
if (this.helpers.request) {
|
|
return await this.helpers.request(options);
|
|
}
|
|
} catch (error) {
|
|
throw new NodeApiError(this.getNode(), error);
|
|
}
|
|
}
|
|
|
|
export async function getHomeAssistantEntities(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
domain = '',
|
|
) {
|
|
const returnData: INodePropertyOptions[] = [];
|
|
const entities = await homeAssistantApiRequest.call(this, 'GET', '/states');
|
|
for (const entity of entities) {
|
|
const entityId = entity.entity_id as string;
|
|
if (domain === '' || (domain && entityId.startsWith(domain))) {
|
|
const entityName = (entity.attributes.friendly_name as string) || entityId;
|
|
returnData.push({
|
|
name: entityName,
|
|
value: entityId,
|
|
});
|
|
}
|
|
}
|
|
return returnData;
|
|
}
|
|
|
|
export async function getHomeAssistantServices(
|
|
this: IExecuteFunctions | ILoadOptionsFunctions,
|
|
domain = '',
|
|
) {
|
|
const returnData: INodePropertyOptions[] = [];
|
|
const services = await homeAssistantApiRequest.call(this, 'GET', '/services');
|
|
if (domain === '') {
|
|
// If no domain specified return domains
|
|
const domains = services.map(({ domain: service }: IDataObject) => service as string).sort();
|
|
returnData.push(...domains.map((service: string) => ({ name: service, value: service })));
|
|
return returnData;
|
|
} else {
|
|
// If we have a domain, return all relevant services
|
|
const domainServices = services.filter((service: IDataObject) => service.domain === domain);
|
|
for (const domainService of domainServices) {
|
|
for (const [serviceID, value] of Object.entries(domainService.services)) {
|
|
const serviceProperties = value as IDataObject;
|
|
const serviceName = serviceProperties.description || serviceID;
|
|
returnData.push({
|
|
name: serviceName as string,
|
|
value: serviceID,
|
|
});
|
|
}
|
|
}
|
|
}
|
|
return returnData;
|
|
}
|