mirror of
https://github.com/koush/scrypted.git
synced 2026-03-03 01:32:09 +00:00
387 lines
16 KiB
TypeScript
387 lines
16 KiB
TypeScript
import { StorageSettings } from "@scrypted/sdk/storage-settings";
|
|
import { SettingsMixinDeviceOptions } from '@scrypted/common/src/settings-mixin';
|
|
import sdk, { DeviceProvider, MixinProvider, Online, ScryptedDeviceBase, ScryptedDeviceType, ScryptedInterface, ScryptedInterfaceProperty, Setting, Settings } from '@scrypted/sdk';
|
|
import crypto from 'crypto';
|
|
import packageJson from "../package.json";
|
|
import { maybeAddBatteryService } from './battery';
|
|
import { CameraMixin, canCameraMixin } from './camera-mixin';
|
|
import { SnapshotThrottle, supportedTypes } from './common';
|
|
import { Accessory, Bridge, Categories, Characteristic, ControllerStorage, MDNSAdvertiser, PublishInfo, Service } from './hap';
|
|
import { createHAPUsernameStorageSettingsDict, getAddresses, getHAPUUID, getRandomPort as createRandomPort, initializeHapStorage, logConnections, typeToCategory } from './hap-utils';
|
|
import { HomekitMixin, HOMEKIT_MIXIN } from './homekit-mixin';
|
|
import { randomPinCode } from './pincode';
|
|
import './types';
|
|
import { VIDEO_CLIPS_NATIVE_ID } from './types/camera/camera-recording-files';
|
|
import { VideoClipsMixinProvider } from './video-clips-provider';
|
|
|
|
const { systemManager, deviceManager } = sdk;
|
|
|
|
initializeHapStorage();
|
|
const includeToken = 4;
|
|
|
|
export class HomeKitPlugin extends ScryptedDeviceBase implements MixinProvider, Settings, DeviceProvider {
|
|
seenConnections = new Set<string>();
|
|
bridge = new Bridge('Scrypted', getHAPUUID(this.storage));
|
|
snapshotThrottles = new Map<string, SnapshotThrottle>();
|
|
standalones = new Map<string, Accessory>();
|
|
videoClips: VideoClipsMixinProvider;
|
|
videoClipsId: string;
|
|
cameraMixins = new Map<string, CameraMixin>();
|
|
storageSettings = new StorageSettings(this, {
|
|
...createHAPUsernameStorageSettingsDict(this, undefined, 'Network'),
|
|
addressOverride: {
|
|
group: 'Network',
|
|
title: 'Scrypted Server Address',
|
|
key: 'addressOverride',
|
|
description: 'Optional: The IP address used by the Scrypted server. Set this to the wired IP address to prevent usage of a wireless address.',
|
|
placeholder: '192.168.2.100',
|
|
combobox: true,
|
|
async onGet() {
|
|
return {
|
|
choices: getAddresses(),
|
|
}
|
|
}
|
|
},
|
|
portOverride: {
|
|
group: 'Network',
|
|
title: 'Server Port',
|
|
persistedDefaultValue: createRandomPort(),
|
|
description: 'Optional: The TCP port used by the Scrypted Server. If none is specified, a random port will be chosen.',
|
|
type: 'number',
|
|
},
|
|
advertiserOverride: {
|
|
group: 'Network',
|
|
title: 'mDNS Advertiser',
|
|
description: 'Optional: Override the mDNS advertiser used to locate the Scrypted bridge',
|
|
choices: [MDNSAdvertiser.CIAO, MDNSAdvertiser.BONJOUR, MDNSAdvertiser.AVAHI],
|
|
defaultValue: MDNSAdvertiser.CIAO,
|
|
},
|
|
slowConnections: {
|
|
group: 'Network',
|
|
title: 'Slow Mode Addresses',
|
|
description: 'The addressesses of Home Hubs and iOS clients that will always be served remote/medium streams.',
|
|
type: 'string',
|
|
multiple: true,
|
|
combobox: true,
|
|
onGet: async () => {
|
|
return {
|
|
choices: [...this.seenConnections],
|
|
}
|
|
}
|
|
},
|
|
lastKnownHomeHub: {
|
|
hide: true,
|
|
description: 'The last home hub to request a recording. Internally used to determine if a streaming request is coming from remote wifi.',
|
|
},
|
|
});
|
|
|
|
constructor() {
|
|
super();
|
|
this.start();
|
|
|
|
(async () => {
|
|
await deviceManager.onDevicesChanged({
|
|
devices: [
|
|
{
|
|
name: 'HomeKit Secure Video Local Copy',
|
|
nativeId: VIDEO_CLIPS_NATIVE_ID,
|
|
type: ScryptedDeviceType.DataSource,
|
|
interfaces: [
|
|
ScryptedInterface.VideoClips,
|
|
ScryptedInterface.MixinProvider,
|
|
ScryptedInterface.Settings,
|
|
ScryptedInterface.Readme,
|
|
],
|
|
}
|
|
]
|
|
});
|
|
this.videoClips = new VideoClipsMixinProvider(VIDEO_CLIPS_NATIVE_ID);
|
|
this.videoClipsId = this.videoClips.id;
|
|
})();
|
|
}
|
|
|
|
getDevice(nativeId: string) {
|
|
if (nativeId === VIDEO_CLIPS_NATIVE_ID)
|
|
return this.videoClips;
|
|
throw new Error('unknown device: ' + nativeId);
|
|
}
|
|
|
|
async getSettings(): Promise<Setting[]> {
|
|
return this.storageSettings.getSettings();
|
|
}
|
|
|
|
async putSetting(key: string, value: string | number | boolean): Promise<void> {
|
|
await this.storageSettings.putSetting(key, value);
|
|
|
|
if (key === this.storageSettings.keys.portOverride || key === this.storageSettings.keys.addressOverride) {
|
|
this.log.a('Reload the HomeKit plugin to apply this change.');
|
|
}
|
|
}
|
|
|
|
async start() {
|
|
this.log.clearAlerts();
|
|
|
|
let defaultIncluded: any;
|
|
try {
|
|
defaultIncluded = JSON.parse(this.storage.getItem('defaultIncluded'));
|
|
}
|
|
catch (e) {
|
|
defaultIncluded = {};
|
|
}
|
|
|
|
const plugins = await systemManager.getComponent('plugins');
|
|
|
|
const accessoryIds = new Set<string>();
|
|
|
|
for (const id of Object.keys(systemManager.getSystemState())) {
|
|
const device = systemManager.getDeviceById<Online>(id);
|
|
const supportedType = supportedTypes[device.type];
|
|
if (!supportedType?.probe(device))
|
|
continue;
|
|
|
|
try {
|
|
const mixins = (device.mixins || []).slice();
|
|
if (!mixins.includes(this.id)) {
|
|
if (defaultIncluded[device.id] === includeToken)
|
|
continue;
|
|
mixins.push(this.id);
|
|
await plugins.setMixins(device.id, mixins);
|
|
defaultIncluded[device.id] = includeToken;
|
|
}
|
|
}
|
|
catch (e) {
|
|
console.error('error while checking device if syncable', e);
|
|
this.log.a('Error while checking device if syncable. See Console.');
|
|
continue;
|
|
}
|
|
|
|
this.console.log('adding', device.name);
|
|
|
|
const accessory = await supportedType.getAccessory(device, this);
|
|
if (accessory) {
|
|
accessoryIds.add(id);
|
|
|
|
maybeAddBatteryService(device, accessory);
|
|
|
|
const deviceInfo = device.info;
|
|
if (deviceInfo) {
|
|
const info = accessory.getService(Service.AccessoryInformation)!;
|
|
if (deviceInfo.manufacturer)
|
|
info.updateCharacteristic(Characteristic.Manufacturer, deviceInfo.manufacturer);
|
|
if (deviceInfo.model)
|
|
info.updateCharacteristic(Characteristic.Model, deviceInfo.model);
|
|
if (deviceInfo.serialNumber)
|
|
info.updateCharacteristic(Characteristic.SerialNumber, deviceInfo.serialNumber);
|
|
if (deviceInfo.firmware)
|
|
info.updateCharacteristic(Characteristic.FirmwareRevision, deviceInfo.firmware);
|
|
if (deviceInfo.version)
|
|
info.updateCharacteristic(Characteristic.HardwareRevision, deviceInfo.version);
|
|
}
|
|
|
|
const mixinStorage = deviceManager.getMixinStorage(device.id, this.nativeId);
|
|
const standalone = mixinStorage.getItem('standalone') === 'true';
|
|
const standaloneCategory = typeToCategory(device.type);
|
|
if (standalone && standaloneCategory) {
|
|
this.standalones.set(device.id, accessory);
|
|
|
|
const storageSettings = new StorageSettings({
|
|
storage: mixinStorage,
|
|
onDeviceEvent: async () => {
|
|
}
|
|
}, createHAPUsernameStorageSettingsDict({
|
|
storage: mixinStorage,
|
|
get name() {
|
|
return device.name
|
|
}
|
|
},
|
|
'HomeKit', 'HomeKit Pairing'));
|
|
storageSettings.settings.pincode.persistedDefaultValue = randomPinCode();
|
|
|
|
const mixinConsole = deviceManager.getMixinConsole(device.id, this.nativeId);
|
|
|
|
let published = false;
|
|
let hasPublished = false;
|
|
const publish = async () => {
|
|
try {
|
|
published = true;
|
|
mixinConsole.log('Device is in accessory mode and is online. HomeKit services are being published.');
|
|
|
|
await this.publishAccessory(accessory, storageSettings.values.mac, storageSettings.values.pincode, standaloneCategory, storageSettings.values.portOverride);
|
|
if (!hasPublished) {
|
|
hasPublished = true;
|
|
storageSettings.values.qrCode = accessory.setupURI();
|
|
logConnections(mixinConsole, accessory, this.seenConnections);
|
|
}
|
|
}
|
|
catch (e) {
|
|
mixinConsole.error('There was an error publishing the standalone accessory', e);
|
|
}
|
|
}
|
|
|
|
const unpublish = () => {
|
|
mixinConsole.warn('Device is in accessory mode and is offline. HomeKit services are being unpublished. ')
|
|
published = false;
|
|
// hack to allow republishing.
|
|
accessory.controllerStorage = new ControllerStorage(accessory);
|
|
accessory.unpublish();
|
|
}
|
|
|
|
const updateDeviceAdvertisement = () => {
|
|
const isOnline = !device.interfaces.includes(ScryptedInterface.Online) || device.online;
|
|
if (isOnline && !published) {
|
|
publish();
|
|
}
|
|
else if (!isOnline && published) {
|
|
unpublish();
|
|
}
|
|
}
|
|
|
|
try {
|
|
if (true) {
|
|
publish();
|
|
}
|
|
else {
|
|
updateDeviceAdvertisement();
|
|
if (!published)
|
|
mixinConsole.warn('Device is in accessory mode and was offline during HomeKit startup. Device will not be started until it comes back online. Disable accessory mode if this is in error.');
|
|
|
|
// throttle this in case the device comes back online very quickly.
|
|
device.listen(ScryptedInterface.Online, () => {
|
|
const isOnline = !device.interfaces.includes(ScryptedInterface.Online) || device.online;
|
|
if (isOnline)
|
|
updateDeviceAdvertisement();
|
|
else
|
|
setTimeout(updateDeviceAdvertisement, 30000);
|
|
});
|
|
}
|
|
}
|
|
catch (e) {
|
|
mixinConsole.error('There was an error publishing the standalone accessory', e);
|
|
}
|
|
}
|
|
else {
|
|
if (standalone)
|
|
this.console.warn('Could not find standalone category mapping for accessory', device.name, device.type);
|
|
this.bridge.addBridgedAccessory(accessory);
|
|
}
|
|
}
|
|
}
|
|
|
|
this.storage.setItem('defaultIncluded', JSON.stringify(defaultIncluded));
|
|
|
|
const username = this.storageSettings.values.mac
|
|
const info = this.bridge.getService(Service.AccessoryInformation)!;
|
|
info.updateCharacteristic(Characteristic.Manufacturer, "scrypted.app");
|
|
info.updateCharacteristic(Characteristic.Model, "scrypted");
|
|
info.updateCharacteristic(Characteristic.SerialNumber, username);
|
|
info.updateCharacteristic(Characteristic.FirmwareRevision, packageJson.version);
|
|
|
|
const publishInfo: PublishInfo = {
|
|
username,
|
|
port: this.storageSettings.values.portOverride,
|
|
pincode: this.storageSettings.values.pincode,
|
|
category: Categories.BRIDGE,
|
|
addIdentifyingMaterial: true,
|
|
advertiser: this.storageSettings.values.advertiserOverride,
|
|
// bind: this.storageSettings.values.addressOverride || undefined,
|
|
};
|
|
|
|
this.bridge.publish(publishInfo, true);
|
|
this.storageSettings.values.qrCode = this.bridge.setupURI();
|
|
logConnections(this.console, this.bridge, this.seenConnections);
|
|
|
|
systemManager.listen(async (eventSource, eventDetails, eventData) => {
|
|
if (eventDetails.eventInterface !== ScryptedInterface.ScryptedDevice)
|
|
return;
|
|
|
|
if (!eventDetails.changed)
|
|
return;
|
|
|
|
if (eventDetails.property === ScryptedInterfaceProperty.id)
|
|
return;
|
|
|
|
const canMixin = await this.canMixin(eventSource.type, eventSource.interfaces);
|
|
const includes = eventSource?.mixins?.includes(this.id);
|
|
const has = accessoryIds.has(eventSource?.id);
|
|
if (has && !canMixin) {
|
|
this.console.log('restart event', eventSource?.id, eventDetails.property, eventData);
|
|
this.log.a(`${eventSource.name} can no longer be synced. Reload the HomeKit plugin to apply these changes.`);
|
|
return;
|
|
}
|
|
|
|
if (!has && includes) {
|
|
this.console.log('restart event', eventSource?.id, eventDetails.property, eventData);
|
|
this.log.a(`${eventSource.name} was added. HomeKit plugin will reload momentarily.`);
|
|
deviceManager.requestRestart();
|
|
return;
|
|
}
|
|
});
|
|
}
|
|
|
|
async canMixin(type: ScryptedDeviceType, interfaces: string[]) {
|
|
const supportedType = supportedTypes[type];
|
|
if (!supportedType?.probe({
|
|
interfaces,
|
|
type,
|
|
})) {
|
|
return null;
|
|
}
|
|
|
|
const ret = [
|
|
ScryptedInterface.Settings,
|
|
HOMEKIT_MIXIN,
|
|
];
|
|
|
|
if (interfaces.includes(ScryptedInterface.VideoCamera) && (type === ScryptedDeviceType.Doorbell || type === ScryptedDeviceType.Camera))
|
|
ret.push(ScryptedInterface.Readme);
|
|
|
|
return ret;
|
|
}
|
|
|
|
async publishAccessory(accessory: Accessory, username: string, pincode: string, category: Categories, port: number) {
|
|
await accessory.publish({
|
|
username,
|
|
port,
|
|
pincode,
|
|
category,
|
|
addIdentifyingMaterial: false,
|
|
advertiser: this.storageSettings.values.advertiserOverride,
|
|
// bind: this.storageSettings.values.addressOverride || undefined,
|
|
});
|
|
}
|
|
|
|
async getMixin(mixinDevice: any, mixinDeviceInterfaces: ScryptedInterface[], mixinDeviceState: { [key: string]: any }) {
|
|
const options: SettingsMixinDeviceOptions<any> = {
|
|
mixinProviderNativeId: this.nativeId,
|
|
mixinDeviceInterfaces,
|
|
group: "HomeKit Settings",
|
|
groupKey: "homekit",
|
|
mixinDevice, mixinDeviceState,
|
|
};
|
|
let ret: CameraMixin | HomekitMixin<any>;
|
|
|
|
if (canCameraMixin(mixinDeviceState.type, mixinDeviceInterfaces)) {
|
|
ret = new CameraMixin(options);
|
|
this.cameraMixins.set(ret.id, ret as any);
|
|
}
|
|
else {
|
|
ret = new HomekitMixin(options);
|
|
}
|
|
|
|
ret.storageSettings.settings.pincode.persistedDefaultValue = randomPinCode();
|
|
return ret;
|
|
}
|
|
|
|
async releaseMixin(id: string, mixinDevice: any) {
|
|
const device = systemManager.getDeviceById(id);
|
|
if (device.mixins?.includes(this.id)) {
|
|
return;
|
|
}
|
|
this.console.log('release mixin', id);
|
|
this.log.a(`${device.name} was removed. The HomeKit plugin will reload momentarily.`);
|
|
deviceManager.requestRestart();
|
|
}
|
|
}
|
|
|
|
export default new HomeKitPlugin();
|