423 lines
14 KiB
Dart
423 lines
14 KiB
Dart
part of 'main.dart';
|
|
|
|
class HomeAssistant {
|
|
|
|
static final HomeAssistant _instance = HomeAssistant._internal();
|
|
|
|
factory HomeAssistant() {
|
|
return _instance;
|
|
}
|
|
|
|
EntityCollection entities;
|
|
HomeAssistantUI ui;
|
|
Map _instanceConfig = {};
|
|
String _userName;
|
|
bool childMode;
|
|
HSVColor savedColor;
|
|
int savedPlayerPosition;
|
|
String sendToPlayerId;
|
|
String sendFromPlayerId;
|
|
|
|
String fcmToken;
|
|
|
|
Map _rawLovelaceData;
|
|
|
|
List<Panel> panels = [];
|
|
|
|
Duration fetchTimeout = Duration(seconds: 30);
|
|
|
|
String get locationName {
|
|
if (ConnectionManager().useLovelace) {
|
|
return ui?.title ?? "";
|
|
} else {
|
|
return _instanceConfig["location_name"] ?? "";
|
|
}
|
|
}
|
|
String get userName => _userName ?? locationName;
|
|
String get userAvatarText => userName.length > 0 ? userName[0] : "";
|
|
bool get isNoEntities => entities == null || entities.isEmpty;
|
|
bool get isNoViews => ui == null || ui.isEmpty;
|
|
bool get isMobileAppEnabled => _instanceConfig["components"] != null && (_instanceConfig["components"] as List).contains("mobile_app");
|
|
|
|
HomeAssistant._internal() {
|
|
ConnectionManager().onStateChangeCallback = _handleEntityStateChange;
|
|
DeviceInfoManager().loadDeviceInfo();
|
|
}
|
|
|
|
Completer _fetchCompleter;
|
|
|
|
Future fetchData() {
|
|
if (_fetchCompleter != null && !_fetchCompleter.isCompleted) {
|
|
Logger.w("Previous data fetch is not completed yet");
|
|
return _fetchCompleter.future;
|
|
}
|
|
if (entities == null) entities = EntityCollection(ConnectionManager().httpWebHost);
|
|
_fetchCompleter = Completer();
|
|
List<Future> futures = [];
|
|
futures.add(_getStates());
|
|
if (ConnectionManager().useLovelace) {
|
|
futures.add(_getLovelace());
|
|
}
|
|
futures.add(_getConfig());
|
|
futures.add(_getUserInfo());
|
|
futures.add(_getPanels());
|
|
Future.wait(futures).then((_) {
|
|
if (isMobileAppEnabled) {
|
|
if (!childMode) _createUI();
|
|
_fetchCompleter.complete();
|
|
MobileAppIntegrationManager.checkAppRegistration();
|
|
} else {
|
|
_fetchCompleter.completeError(HAError("Mobile app component not found", actions: [HAErrorAction.tryAgain(), HAErrorAction(type: HAErrorActionType.URL ,title: "Help",url: "http://ha-client.app/docs#mobile-app-integration")]));
|
|
}
|
|
}).catchError((e) {
|
|
_fetchCompleter.completeError(e);
|
|
});
|
|
return _fetchCompleter.future;
|
|
}
|
|
|
|
Future logout() async {
|
|
Logger.d("Logging out...");
|
|
await ConnectionManager().logout().then((_) {
|
|
ui?.clear();
|
|
entities?.clear();
|
|
panels?.clear();
|
|
});
|
|
}
|
|
|
|
Future _getConfig() async {
|
|
await ConnectionManager().sendSocketMessage(type: "get_config").then((data) {
|
|
_instanceConfig = Map.from(data);
|
|
}).catchError((e) {
|
|
throw HAError("Error getting config: ${e}");
|
|
});
|
|
}
|
|
|
|
Future _getStates() async {
|
|
await ConnectionManager().sendSocketMessage(type: "get_states").then(
|
|
(data) => entities.parse(data)
|
|
).catchError((e) {
|
|
throw HAError("Error getting states: $e");
|
|
});
|
|
}
|
|
|
|
Future _getLovelace() {
|
|
Completer completer = Completer();
|
|
|
|
ConnectionManager().sendSocketMessage(type: "lovelace/config").then((data) {
|
|
_rawLovelaceData = data;
|
|
completer.complete();
|
|
}).catchError((e) {
|
|
if ("$e" == "config_not_found") {
|
|
ConnectionManager().useLovelace = false;
|
|
completer.complete();
|
|
} else {
|
|
completer.completeError(HAError("Error getting lovelace config: $e"));
|
|
}
|
|
});
|
|
return completer.future;
|
|
}
|
|
|
|
Future getCameraStream(String entityId) {
|
|
Completer completer = Completer();
|
|
|
|
ConnectionManager().sendSocketMessage(type: "camera/stream", additionalData: {"entity_id": entityId}).then((data) {
|
|
completer.complete(data);
|
|
}).catchError((e) {
|
|
completer.completeError(e);
|
|
});
|
|
return completer.future;
|
|
}
|
|
|
|
Future _getUserInfo() async {
|
|
_userName = null;
|
|
await ConnectionManager().sendSocketMessage(type: "auth/current_user").then((data) {
|
|
_userName = data["name"];
|
|
childMode = _userName.startsWith("[child]");
|
|
}).catchError((e) {
|
|
Logger.w("Can't get user info: $e");
|
|
});
|
|
}
|
|
|
|
Future _getPanels() async {
|
|
panels.clear();
|
|
await ConnectionManager().sendSocketMessage(type: "get_panels").then((data) {
|
|
data.forEach((k,v) {
|
|
String title = v['title'] == null ? "${k[0].toUpperCase()}${k.substring(1)}" : "${v['title'][0].toUpperCase()}${v['title'].substring(1)}";
|
|
panels.add(Panel(
|
|
id: k,
|
|
type: v["component_name"],
|
|
title: title,
|
|
urlPath: v["url_path"],
|
|
config: v["config"],
|
|
icon: v["icon"]
|
|
)
|
|
);
|
|
});
|
|
}).catchError((e) {
|
|
throw HAError("Error getting panels list: $e");
|
|
});
|
|
}
|
|
|
|
void _handleEntityStateChange(Map eventData) {
|
|
//TheLogger.debug( "New state for ${eventData['entity_id']}");
|
|
if (_fetchCompleter != null && _fetchCompleter.isCompleted) {
|
|
Map data = Map.from(eventData);
|
|
eventBus.fire(new StateChangedEvent(
|
|
entityId: data["entity_id"],
|
|
needToRebuildUI: entities.updateState(data)
|
|
));
|
|
}
|
|
}
|
|
|
|
void _parseLovelace() {
|
|
Logger.d("--Title: ${_rawLovelaceData["title"]}");
|
|
ui.title = _rawLovelaceData["title"];
|
|
int viewCounter = 0;
|
|
Logger.d("--Views count: ${_rawLovelaceData['views'].length}");
|
|
_rawLovelaceData["views"].forEach((rawView){
|
|
Logger.d("----view id: ${rawView['id']}");
|
|
HAView view = HAView(
|
|
count: viewCounter,
|
|
id: "${rawView['id']}",
|
|
name: rawView['title'],
|
|
iconName: rawView['icon'],
|
|
panel: rawView['panel'] ?? false,
|
|
);
|
|
|
|
if (rawView['badges'] != null && rawView['badges'] is List) {
|
|
rawView['badges'].forEach((entity) {
|
|
if (entity is String) {
|
|
if (entities.isExist(entity)) {
|
|
Entity e = entities.get(entity);
|
|
view.badges.add(e);
|
|
}
|
|
} else {
|
|
String eId = '${entity['entity']}';
|
|
if (entities.isExist(eId)) {
|
|
Entity e = entities.get(eId);
|
|
view.badges.add(e);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
view.cards.addAll(_createLovelaceCards(rawView["cards"] ?? []));
|
|
ui.views.add(
|
|
view
|
|
);
|
|
viewCounter += 1;
|
|
});
|
|
}
|
|
|
|
List<HACard> _createLovelaceCards(List rawCards) {
|
|
List<HACard> result = [];
|
|
rawCards.forEach((rawCard){
|
|
try {
|
|
//bool isThereCardOptionsInside = rawCard["card"] != null;
|
|
var rawCardInfo = rawCard["card"] ?? rawCard;
|
|
HACard card = HACard(
|
|
id: "card",
|
|
name: rawCardInfo["title"] ?? rawCardInfo["name"],
|
|
type: rawCardInfo['type'] ?? CardType.ENTITIES,
|
|
columnsCount: rawCardInfo['columns'] ?? 4,
|
|
showName: (rawCardInfo['show_name'] ?? rawCard['show_name']) ?? true,
|
|
showHeaderToggle: (rawCardInfo['show_header_toggle'] ?? rawCard['show_header_toggle']) ?? true,
|
|
showState: (rawCardInfo['show_state'] ?? rawCard['show_state']) ?? true,
|
|
showEmpty: (rawCardInfo['show_empty'] ?? rawCard['show_empty']) ?? true,
|
|
stateFilter: (rawCard['state_filter'] ?? rawCardInfo['state_filter']) ?? [],
|
|
states: rawCardInfo['states'],
|
|
conditions: rawCard['conditions'] ?? [],
|
|
content: rawCardInfo['content'],
|
|
min: rawCardInfo['min'] ?? 0,
|
|
max: rawCardInfo['max'] ?? 100,
|
|
unit: rawCardInfo['unit'],
|
|
severity: rawCardInfo['severity']
|
|
);
|
|
if (rawCardInfo["cards"] != null) {
|
|
card.childCards = _createLovelaceCards(rawCardInfo["cards"]);
|
|
}
|
|
var rawEntities = rawCard["entities"] ?? rawCardInfo["entities"];
|
|
rawEntities?.forEach((rawEntity) {
|
|
if (rawEntity is String) {
|
|
if (entities.isExist(rawEntity)) {
|
|
card.entities.add(EntityWrapper(entity: entities.get(rawEntity)));
|
|
} else {
|
|
card.entities.add(EntityWrapper(entity: Entity.missed(rawEntity)));
|
|
}
|
|
} else {
|
|
if (rawEntity["type"] == "divider") {
|
|
card.entities.add(EntityWrapper(entity: Entity.divider()));
|
|
} else if (rawEntity["type"] == "section") {
|
|
card.entities.add(EntityWrapper(entity: Entity.section(rawEntity["label"] ?? "")));
|
|
} else if (rawEntity["type"] == "call-service") {
|
|
Map uiActionData = {
|
|
"tap_action": {
|
|
"action": EntityUIAction.callService,
|
|
"service": rawEntity["service"],
|
|
"service_data": rawEntity["service_data"]
|
|
},
|
|
"hold_action": EntityUIAction.none
|
|
};
|
|
card.entities.add(EntityWrapper(
|
|
entity: Entity.callService(
|
|
icon: rawEntity["icon"],
|
|
name: rawEntity["name"],
|
|
service: rawEntity["service"],
|
|
actionName: rawEntity["action_name"]
|
|
),
|
|
uiAction: EntityUIAction(rawEntityData: uiActionData)
|
|
)
|
|
);
|
|
} else if (rawEntity["type"] == "weblink") {
|
|
Map uiActionData = {
|
|
"tap_action": {
|
|
"action": EntityUIAction.navigate,
|
|
"service": rawEntity["url"]
|
|
},
|
|
"hold_action": EntityUIAction.none
|
|
};
|
|
card.entities.add(EntityWrapper(
|
|
entity: Entity.weblink(
|
|
icon: rawEntity["icon"],
|
|
name: rawEntity["name"],
|
|
url: rawEntity["url"]
|
|
),
|
|
uiAction: EntityUIAction(rawEntityData: uiActionData)
|
|
)
|
|
);
|
|
} else if (entities.isExist(rawEntity["entity"])) {
|
|
Entity e = entities.get(rawEntity["entity"]);
|
|
card.entities.add(
|
|
EntityWrapper(
|
|
entity: e,
|
|
displayName: rawEntity["name"],
|
|
icon: rawEntity["icon"],
|
|
stateFilter: rawEntity['state_filter'] ?? [],
|
|
uiAction: EntityUIAction(rawEntityData: rawEntity)
|
|
)
|
|
);
|
|
} else {
|
|
card.entities.add(EntityWrapper(entity: Entity.missed(rawEntity["entity"])));
|
|
}
|
|
}
|
|
});
|
|
var rawSingleEntity = rawCard["entity"] ?? rawCardInfo["entity"];
|
|
if (rawSingleEntity != null) {
|
|
var en = rawSingleEntity;
|
|
if (en is String) {
|
|
if (entities.isExist(en)) {
|
|
Entity e = entities.get(en);
|
|
card.linkedEntityWrapper = EntityWrapper(
|
|
entity: e,
|
|
icon: rawCardInfo["icon"],
|
|
displayName: rawCardInfo["name"],
|
|
uiAction: EntityUIAction(rawEntityData: rawCard)
|
|
);
|
|
} else {
|
|
card.linkedEntityWrapper = EntityWrapper(entity: Entity.missed(en));
|
|
}
|
|
} else {
|
|
if (entities.isExist(en["entity"])) {
|
|
Entity e = entities.get(en["entity"]);
|
|
card.linkedEntityWrapper = EntityWrapper(
|
|
entity: e,
|
|
icon: en["icon"],
|
|
displayName: en["name"],
|
|
stateFilter: en['state_filter'] ?? [],
|
|
uiAction: EntityUIAction(rawEntityData: rawCard)
|
|
);
|
|
} else {
|
|
card.linkedEntityWrapper = EntityWrapper(entity: Entity.missed(en["entity"]));
|
|
}
|
|
}
|
|
}
|
|
result.add(card);
|
|
} catch (e) {
|
|
Logger.e("There was an error parsing card: ${e.toString()}");
|
|
}
|
|
});
|
|
return result;
|
|
}
|
|
|
|
void _createUI() {
|
|
ui = HomeAssistantUI();
|
|
if ((ConnectionManager().useLovelace) && (_rawLovelaceData != null)) {
|
|
Logger.d("Creating Lovelace UI");
|
|
_parseLovelace();
|
|
} else {
|
|
Logger.d("Creating group-based UI");
|
|
int viewCounter = 0;
|
|
if (!entities.hasDefaultView) {
|
|
HAView view = HAView(
|
|
count: viewCounter,
|
|
id: "group.default_view",
|
|
name: "Home",
|
|
childEntities: entities.filterEntitiesForDefaultView()
|
|
);
|
|
ui.views.add(
|
|
view
|
|
);
|
|
viewCounter += 1;
|
|
}
|
|
entities.viewEntities.forEach((viewEntity) {
|
|
HAView view = HAView(
|
|
count: viewCounter,
|
|
id: viewEntity.entityId,
|
|
name: viewEntity.displayName,
|
|
childEntities: viewEntity.childEntities
|
|
);
|
|
view.linkedEntity = viewEntity;
|
|
ui.views.add(
|
|
view
|
|
);
|
|
viewCounter += 1;
|
|
});
|
|
}
|
|
}
|
|
|
|
Widget buildViews(BuildContext context, TabController tabController) {
|
|
return ui.build(context, tabController);
|
|
}
|
|
}
|
|
|
|
/*
|
|
class SendMessageQueue {
|
|
int _messageTimeout;
|
|
List<HAMessage> _queue = [];
|
|
|
|
SendMessageQueue(this._messageTimeout);
|
|
|
|
void add(String message) {
|
|
_queue.add(HAMessage(_messageTimeout, message));
|
|
}
|
|
|
|
List<String> getActualMessages() {
|
|
_queue.removeWhere((item) => item.isExpired());
|
|
List<String> result = [];
|
|
_queue.forEach((haMessage){
|
|
result.add(haMessage.message);
|
|
});
|
|
this.clear();
|
|
return result;
|
|
}
|
|
|
|
void clear() {
|
|
_queue.clear();
|
|
}
|
|
|
|
}
|
|
|
|
class HAMessage {
|
|
DateTime _timeStamp;
|
|
int _messageTimeout;
|
|
String message;
|
|
|
|
HAMessage(this._messageTimeout, this.message) {
|
|
_timeStamp = DateTime.now();
|
|
}
|
|
|
|
bool isExpired() {
|
|
return DateTime.now().difference(_timeStamp).inSeconds > _messageTimeout;
|
|
}
|
|
}*/
|