-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
81454b5
commit e3c396e
Showing
8 changed files
with
199 additions
and
200 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
import {Action} from "@/modules/homeassistant/actions/action"; | ||
import { Action } from '@/modules/homeassistant/actions/action' | ||
|
||
/** | ||
* ServiceAction, extending Action, facilitates interactions with HomeAssistant services. | ||
*/ | ||
export class ServiceAction extends Action { | ||
/** | ||
* Constructs a ServiceAction instance. | ||
* @param {string} domain - Service domain, must be a non-empty string. | ||
* @param {string} service - Service name, must be a non-empty string. | ||
* @param {Array} [entity_id=[]] - Target entity IDs array. | ||
* @param {Object} [serviceData={}] - Additional service data. | ||
* @throws {Error} if 'domain' or 'service' are empty or not strings. | ||
* @throws {TypeError} if 'entity_id' is not an array or 'serviceData' is not an object. | ||
*/ | ||
constructor(domain, service, entity_id, serviceData) { | ||
super(); | ||
/** | ||
* Constructs a ServiceAction instance. | ||
* @param {string} domain - Service domain, must be a non-empty string. | ||
* @param {string} service - Service name, must be a non-empty string. | ||
* @param {Array} [entity_id=[]] - Target entity IDs array. | ||
* @param {Object} [serviceData={}] - Additional service data. | ||
* @throws {Error} if 'domain' or 'service' are empty or not strings. | ||
* @throws {TypeError} if 'entity_id' is not an array or 'serviceData' is not an object. | ||
*/ | ||
constructor(domain, service, entity_id, serviceData) { | ||
super() | ||
|
||
if (typeof domain !== 'string' || !domain.trim()) { | ||
throw new Error('Domain must be a non-empty string'); | ||
} | ||
if (typeof service !== 'string' || !service.trim()) { | ||
throw new Error('Service must be a non-empty string'); | ||
} | ||
if (!Array.isArray(entity_id)) { | ||
throw new TypeError('entity_id must be an array'); | ||
} | ||
if (typeof serviceData !== 'object' || serviceData === null) { | ||
throw new TypeError('serviceData must be an object'); | ||
} | ||
|
||
this.service = `${domain}.${service}`; | ||
this.data = serviceData; | ||
this.target = {"entity_id": entity_id}; | ||
if (typeof domain !== 'string' || !domain.trim()) { | ||
throw new Error('Domain must be a non-empty string') | ||
} | ||
if (typeof service !== 'string' || !service.trim()) { | ||
throw new Error('Service must be a non-empty string') | ||
} | ||
if (!Array.isArray(entity_id)) { | ||
throw new TypeError('entity_id must be an array') | ||
} | ||
if (typeof serviceData !== 'object' || serviceData === null) { | ||
throw new TypeError('serviceData must be an object') | ||
} | ||
|
||
this.service = `${domain}.${service}` | ||
this.data = serviceData | ||
this.target = { entity_id: entity_id } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import {Command} from "@/modules/homeassistant/commands/command"; | ||
import { Command } from '@/modules/homeassistant/commands/command' | ||
|
||
/** | ||
* The GetServicesCommand class, a subclass of Command, is used for requesting | ||
* service information from HomeAssistant. | ||
*/ | ||
export class GetServicesCommand extends Command { | ||
/** | ||
* Constructs a GetServicesCommand instance.* | ||
* @param {number} requestId - The unique identifier for the command request. | ||
*/ | ||
constructor(requestId) { | ||
super(requestId, "get_services"); | ||
} | ||
/** | ||
* Constructs a GetServicesCommand instance.* | ||
* @param {number} requestId - The unique identifier for the command request. | ||
*/ | ||
constructor(requestId) { | ||
super(requestId, 'get_services') | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import {Command} from "@/modules/homeassistant/commands/command"; | ||
import { Command } from '@/modules/homeassistant/commands/command' | ||
|
||
/** | ||
* The GetStatesCommand class, a subclass of Command, handles the retrieval of | ||
* state information from HomeAssistant. | ||
*/ | ||
export class GetStatesCommand extends Command { | ||
/** | ||
* Constructs a GetStatesCommand instance. | ||
* @param {number} requestId - The unique identifier for the command request. | ||
*/ | ||
constructor(requestId) { | ||
super(requestId, "get_states"); | ||
} | ||
/** | ||
* Constructs a GetStatesCommand instance. | ||
* @param {number} requestId - The unique identifier for the command request. | ||
*/ | ||
constructor(requestId) { | ||
super(requestId, 'get_states') | ||
} | ||
} |
18 changes: 9 additions & 9 deletions
18
src/modules/homeassistant/commands/subscribe-events-command.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
import {Command} from "@/modules/homeassistant/commands/command"; | ||
import { Command } from '@/modules/homeassistant/commands/command' | ||
|
||
/** | ||
* The SubscribeEventCommand class, a subclass of Command, specifically handles | ||
* subscription to event types in HomeAssistant. | ||
*/ | ||
export class SubscribeEventsCommand extends Command { | ||
/** | ||
* Constructs a SubscribeEventCommand instance. | ||
* @param {number} requestId - The unique identifier for the command request. | ||
*/ | ||
constructor(requestId) { | ||
super(requestId, "subscribe_events"); | ||
this.event_type = "state_changed"; | ||
} | ||
/** | ||
* Constructs a SubscribeEventCommand instance. | ||
* @param {number} requestId - The unique identifier for the command request. | ||
*/ | ||
constructor(requestId) { | ||
super(requestId, 'subscribe_events') | ||
this.event_type = 'state_changed' | ||
} | ||
} |
Oops, something went wrong.