Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ omit =
homeassistant/components/eufy.py
homeassistant/components/*/eufy.py

homeassistant/components/fastdotcom/*

homeassistant/components/fibaro/__init__.py
homeassistant/components/*/fibaro.py

Expand Down Expand Up @@ -778,7 +780,6 @@ omit =
homeassistant/components/sensor/enphase_envoy.py
homeassistant/components/sensor/envirophat.py
homeassistant/components/sensor/etherscan.py
homeassistant/components/sensor/fastdotcom.py
homeassistant/components/sensor/fedex.py
homeassistant/components/sensor/filesize.py
homeassistant/components/sensor/fints.py
Expand Down
76 changes: 76 additions & 0 deletions homeassistant/components/fastdotcom/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
"""
Support for testing internet speed via Fast.com.

For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/fastdotcom/
"""

import logging
from datetime import timedelta

import voluptuous as vol

import homeassistant.helpers.config_validation as cv
from homeassistant.const import CONF_UPDATE_INTERVAL
from homeassistant.helpers.discovery import async_load_platform
from homeassistant.helpers.dispatcher import dispatcher_send
from homeassistant.helpers.event import async_track_time_interval

REQUIREMENTS = ['fastdotcom==0.0.3']

DOMAIN = 'fastdotcom'
DATA_UPDATED = '{}_data_updated'.format(DOMAIN)

_LOGGER = logging.getLogger(__name__)

CONF_MANUAL = 'manual'

DEFAULT_INTERVAL = timedelta(hours=1)

CONFIG_SCHEMA = vol.Schema({
DOMAIN: vol.Schema({
vol.Optional(CONF_UPDATE_INTERVAL, default=DEFAULT_INTERVAL):
vol.All(
cv.time_period, cv.positive_timedelta
),
vol.Optional(CONF_MANUAL, default=False): cv.boolean,
})
}, extra=vol.ALLOW_EXTRA)


async def async_setup(hass, config):
"""Set up the Fast.com component."""
conf = config[DOMAIN]
data = hass.data[DOMAIN] = SpeedtestData(
hass, conf[CONF_UPDATE_INTERVAL], conf[CONF_MANUAL]
)

def update(call=None):
"""Service call to manually update the data."""
data.update()

hass.services.async_register(DOMAIN, 'speedtest', update)

hass.async_create_task(
async_load_platform(hass, 'sensor', DOMAIN, {}, config)
)

return True


class SpeedtestData:
"""Get the latest data from fast.com."""

def __init__(self, hass, interval, manual):
"""Initialize the data object."""
self.data = None
self._hass = hass
if not manual:
async_track_time_interval(self._hass, self.update, interval)

def update(self):
"""Get the latest data from fast.com."""
from fastdotcom import fast_com
_LOGGER.debug("Executing fast.com speedtest")
self.data = {'download': fast_com()}
dispatcher_send(self._hass, DATA_UPDATED)
Comment thread
rohankapoorcom marked this conversation as resolved.
85 changes: 85 additions & 0 deletions homeassistant/components/fastdotcom/sensor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
"""
Support for Fast.com internet speed testing sensor.

For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/sensor.fastdotcom/
"""
import logging

from homeassistant.components.fastdotcom import DOMAIN as FASTDOTCOM_DOMAIN, \
DATA_UPDATED
from homeassistant.core import callback
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.helpers.restore_state import RestoreEntity

DEPENDENCIES = ['fastdotcom']

_LOGGER = logging.getLogger(__name__)

ICON = 'mdi:speedometer'

UNIT_OF_MEASUREMENT = 'Mbit/s'


async def async_setup_platform(hass, config, async_add_entities,
discovery_info=None):
"""Set up the Fast.com sensor."""
async_add_entities([SpeedtestSensor(hass.data[FASTDOTCOM_DOMAIN])])


class SpeedtestSensor(RestoreEntity):
"""Implementation of a FAst.com sensor."""

def __init__(self, speedtest_data):
"""Initialize the sensor."""
self._name = 'Fast.com Download'
self.speedtest_client = speedtest_data
self._state = None

@property
def name(self):
"""Return the name of the sensor."""
return self._name

@property
def state(self):
"""Return the state of the device."""
return self._state

@property
def unit_of_measurement(self):
"""Return the unit of measurement of this entity, if any."""
return UNIT_OF_MEASUREMENT

@property
def icon(self):
"""Return icon."""
return ICON

@property
def should_poll(self):
"""Return the polling requirement for this sensor."""
return False

async def async_added_to_hass(self):
Comment thread
rohankapoorcom marked this conversation as resolved.
"""Handle entity which will be added."""
await super().async_added_to_hass()
state = await self.async_get_last_state()
if not state:
return
self._state = state.state

async_dispatcher_connect(
self.hass, DATA_UPDATED, self._schedule_immediate_update
)

def update(self):
"""Get the latest data and update the states."""
data = self.speedtest_client.data
if data is None:
return
self._state = data['download']

@callback
def _schedule_immediate_update(self):
self.async_schedule_update_ha_state(True)
2 changes: 2 additions & 0 deletions homeassistant/components/fastdotcom/services.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
speedtest:
description: Immediately take a speedest with Fast.com
115 changes: 0 additions & 115 deletions homeassistant/components/sensor/fastdotcom.py

This file was deleted.

2 changes: 1 addition & 1 deletion requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ evohomeclient==0.2.8
# homeassistant.components.image_processing.dlib_face_identify
# face_recognition==1.0.0

# homeassistant.components.sensor.fastdotcom
# homeassistant.components.fastdotcom
fastdotcom==0.0.3

# homeassistant.components.sensor.fedex
Expand Down