Skip to main content

Python SDK for GE Kitchen Appliances

Project description

gekitchen

Python SDK for GE WiFi-enabled kitchen appliances based on slixmpp. The primary goal is to use this to power integrations for Home Assistant, though that will probably need to wait on some new entity types.

Installation

pip install gekitchen

Usage

Simple Operation

from gekitchen import do_full_login_flow, GeClient
from secrets import USERNAME, PASSWORD

xmpp_credentials = do_full_login_flow(USERNAME, PASSWORD)
client = GeClient(xmpp_credentials)
client.connect()
client.process(timeout=120)

Longer example

Here we're going to run the client in a pre-existing event loop. We're also going to register some event callbacks to update appliances every five minutes and to turn on our oven the first time we see it. Because that is safe!

import aiohttp
import asyncio
import logging
from datetime import timedelta
from typing import Any, Dict, Tuple
from gekitchen import (
    EVENT_ADD_APPLIANCE,
    EVENT_APPLIANCE_STATE_CHANGE,
    EVENT_APPLIANCE_INITIAL_UPDATE,
    ErdApplianceType,
    ErdCode,
    ErdCodeType,
    ErdOvenCookMode,
    GeAppliance,
    GeClient,
    OvenCookSetting,
    async_do_full_login_flow,
)
from secrets import USERNAME, PASSWORD

_LOGGER = logging.getLogger(__name__)

async def log_state_change(data: Tuple[GeAppliance, Dict[ErdCodeType, Any]]):
    """Log changes in appliance state"""
    appliance, state_changes = data
    updated_keys = ', '.join([str(s) for s in state_changes])
    _LOGGER.debug(f'Appliance state change detected in {appliance:s}. Updated keys: {updated_keys:s}')


async def detect_appliance_type(appliance: GeAppliance):
    """
    Detect the appliance type.
    This should only be triggered once since the appliance type should never change.

    Also, let's turn on ovens!
    """
    _LOGGER.debug(f'Appliance state change detected in {appliance}')
    if appliance.appliance_type == ErdApplianceType.OVEN:
        _LOGGER.info('Turning on the oven!')
        appliance.set_erd_value(
            ErdCode.UPPER_OVEN_COOK_MODE,
            OvenCookSetting(ErdOvenCookMode.BAKE_NOOPTION, 350)
        )
        _LOGGER.info('Set the timer!')
        appliance.set_erd_value(ErdCode.UPPER_OVEN_KITCHEN_TIMER, timedelta(minutes=45))
        pass


async def do_periodic_update(appliance: GeAppliance):
    """Request a full state update every minute forever"""
    _LOGGER.debug(f'Registering update callback for {appliance:s}')
    while True:
        await asyncio.sleep(60 * 1)
        _LOGGER.debug(f'Requesting update for {appliance:s}')
        appliance.request_update()


async def start_client(evt_loop: asyncio.AbstractEventLoop, username: str, password: str):
    """Authenticate and launch the client."""
    session = aiohttp.ClientSession()
    _LOGGER.debug('Logging in')
    xmpp_credentials = await async_do_full_login_flow(session, username, password)
    await session.close()

    client = GeClient(xmpp_credentials, event_loop=evt_loop)
    client.add_event_handler(EVENT_APPLIANCE_INITIAL_UPDATE, detect_appliance_type)
    client.add_event_handler(EVENT_APPLIANCE_STATE_CHANGE, log_state_change)
    client.add_event_handler(EVENT_ADD_APPLIANCE, do_periodic_update)
    _LOGGER.debug('Connecting')
    client.connect()
    _LOGGER.debug('Processing')
    asyncio.ensure_future(client.process_in_running_loop(), loop=evt_loop)

logging.basicConfig(level=logging.DEBUG, format='%(levelname)-8s %(message)s')
loop = asyncio.get_event_loop()
asyncio.ensure_future(start_client(loop, USERNAME, PASSWORD), loop=loop)
loop.run_until_complete(asyncio.sleep(300))

API Overview

The GE app communicates with devices via XMPP (Jabbber), sending pseudo-HTTP chat messages back and forth. Device properties are represented by hex codes (represented by ErdCode objects in gekitchen), and values are sent as hexadecimal strings without leading "0x", then json encoded as a dictionary. The device informs the client of a state change by sending a PUBLISH message like this, informing us that the value of property 0x5205 (ErdCode.LOWER_OVEN_KITCHEN_TIMER in gekitchen) is now "002d" (45 minutes):

<body>
    <publish>
        <method>PUBLISH</method>
        <uri>/UUID/erd/0x5205</uri>
        <json>{"0x5205":"002d"}</json>
    </publish>
</body>

Similarly, we can set the timer to 45 minutes by POSTing to the same "endpoint":

<body>
    <request>
        <method>POST</method>
        <uri>/UUID/erd/0x5205</uri>
        <json>{"0x5205":"002d"}</json>
    </request>
</body>

In gekitchen, that would handled by the GeAppliance.set_erd_value method:

appliance.set_erd_value(ErdCode.LOWER_OVEN_KITCHEN_TIMER, timedelta(minutes=45))

We can also get a specific property, or, more commonly, request a full cache refresh by GETing the /UUID/cache endpoint:

<body>
    <request>
        <id>0</id>
        <method>GET</method>
        <uri>/UUID/cache</uri>
    </request>
</body>

The device will then respond to the GET with a response having a json payload:

<body>
    <response>
        <id>0</id>
        <method>GET</method>
        <uri>/UUID/cache</uri>
        <json>{
            "0x0006":"00",
            "0x0007":"00",
            "0x0008":"07",
            "0x0009":"00",
            "0x000a":"03",
            "0x0089":"",
            ...
        }</json>
    </response>
</body>

Authentication

The authentication process has a few steps. First, we use Oauth2 to authenticate to the HTTPS API. After authenticating, we can get a mobile device token, which in turn be used to get a new Bearer token, which, finally, is used to get XMPP credentials to authenticate to the Jabber server. In gekitchen, going from username/password to XMPP credentials is handled by do_full_login_flow(username, password).

Useful functions

do_full_login_flow(username, password)

Function to authenticate to the web API and get XMPP credentials. Returns a dict of XMPP credentials

Objects

GeClient(xmpp_credentials, event_loop=None, **kwargs)

Main XMPP client, and a subclass of slixmpp.ClientXMPP.

  • xmpp_credentials: dict A dictionary of XMPP credentials, usually obtained from either do_full_login_flow or, in a more manual process, get_xmpp_credentials
  • event_loop: asyncio.AbstractEventLoop Optional event loop. If None, the client will use asyncio.get_event_loop()
  • **kwargs Passed to slixmpp.ClientXMPP

Useful Methods

  • connect() Connect to the XMPP server
  • process_in_running_loop(timeout: Optional[int] = None) Run in an existing event loop. If timeout is given, stop running after timeout seconds
  • add_event_handler(name: str, func: Callable) Add an event handler. In addition to the events supported by slixmpp.ClientXMPP, we've added some more event types detailed below.

Properties

  • appliances A Dict[str, GeAppliance] of all known appliances keyed on the appliances' JIDs.

Events

In addition to the standard slixmpp events, the GeClient object has support for the following:

  • EVENT_ADD_APPLIANCE - Triggered immediately after a new appliance is added, before the initial update request has even been sent. The GeAppliance object is passed to the callback.
  • EVENT_APPLIANCE_INITIAL_UPDATE - Triggered when an appliance's type changes, at which point we know at least a little about the appliance. The GeAppliance object is passed to the callback.
  • EVENT_APPLIANCE_STATE_CHANGE - Triggered when an appliance message with a new state, different from the existing, cached state is received. A tuple (appliance, state_changes) is passed to the callback, where appliance is the GeAppliance object with the updated state and state_changes is a dictionary {erd_key: new_value} of the changed state.

GeAppliance(jid, xmpp_client)

Representation of a single appliance

  • jid: Union[str, slixmpp.JID] The appliance's Jabber ID
  • xmpp_client: GeClient The client used to communicate with the device

Useful Methods

  • decode_erd_value(erd_code: ErdCodeType, erd_value: str) Decode a raw ERD property value.
  • encode_erd_value(erd_code: ErdCodeType, erd_value: str) Decode a raw ERD property value.
  • get_erd_value(erd_code: ErdCodeType) Get the cached value of ERD code erd_code. If erd_code is a string, this function will attempt to convert it to an ErdCode object first.
  • request_update() Request the appliance send an update of all properties
  • send_raw_message(mto, mbody, mtype='chat', msg_id=None) Send a message to mto with mbody in the body. No processing or sanity checking will be applied.
  • send_request(method: str, uri: str, key=None, value=None, message_id=None) Send a pseudo-HTTP request to the appliance
  • set_available() Mark the appliance as available
  • set_erd_value(erd_code: ErdType, value) Tell the device to set the property represented by erd_code to value
  • set_unavailable() Mark the appliance as unavailable
  • update_erd_value(erd_code: ErdType, value) Update the local property cache value for erd_code to value, where value is the not yet decoded hex string sent from the API. Returns True if that is a change in state, False otherwise.
  • update_erd_values(self, erd_values: Dict[ErdCodeType, str]) Update multiple values in the local property cache. Returns a dictionary of changed states or an empty dict if nothing actually changed.

Properties

  • appliance_type: Optional[ErdApplianceType] The type of appliance, None if unknown
  • available: bool True if the appliance is available, otherwise False
  • jid: slixmpp.JID The appliance's Jabber ID

Useful Enum types

  • ErdCode Enum of known ERD property codes
  • ErdApplianceType Values for ErdCode.APPLIANCE_TYPE
  • ErdMeasurementUnits Values for ErdCode.TEMPERATURE_UNIT
  • ErdOvenCookMode Possible oven cook modes, used for OvenCookSetting among other things
  • ErdOvenState Values for ErdCode.LOWER_OVEN_CURRENT_STATE and ErdCode.UPPER_OVEN_CURRENT_STATE

Other types

  • OvenCookSetting A namedtuple of an ErdOvenCookMode and an int temperature
  • OvenConfiguration A namedtuple of boolean properties representing an oven's physical configuration

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gekitchen-0.1.3.tar.gz (22.0 kB view hashes)

Uploaded Source

Built Distribution

gekitchen-0.1.3-py3-none-any.whl (25.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page