Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
automated commit 22/02/2019 22:55:49

cr comments

cr comments

automated commit 24/02/2019 14:41:08

automated commit 24/02/2019 14:41:59

automated commit 24/02/2019 14:54:16

automated commit 24/02/2019 14:54:49

automated commit 24/02/2019 19:46:15

automated commit 25/02/2019 10:10:46

automated commit 25/02/2019 10:10:52

automated commit 25/02/2019 10:12:16

automated commit 25/02/2019 10:15:59
  • Loading branch information
ljmerza committed Feb 25, 2019
1 parent 0ccbf61 commit 49dc7a1
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 0 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ omit =
homeassistant/components/rainmachine/switch.py
homeassistant/components/raspihats/*
homeassistant/components/raspyrfm/*
homeassistant/components/reddit/*
homeassistant/components/remember_the_milk/__init__.py
homeassistant/components/remote/harmony.py
homeassistant/components/remote/itach.py
Expand Down
1 change: 1 addition & 0 deletions homeassistant/components/reddit/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Reddit Component"""
125 changes: 125 additions & 0 deletions homeassistant/components/reddit/sensor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
"""Support for Reddit."""
from datetime import timedelta
import logging

import voluptuous as vol

from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import (CONF_USERNAME, CONF_PASSWORD, CONF_MAXIMUM)
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity

REQUIREMENTS = ['praw==6.1.1']

_LOGGER = logging.getLogger(__name__)

CONF_CLIENT_ID = 'client_id'
CONF_CLIENT_SECRET = 'client_secret'
CONF_SUBREDDITS = 'subreddits'

ATTR_ID = 'id'
ATTR_BODY = 'body'
ATTR_COMMENTS_NUMBER = 'comms_num'
ATTR_CREATED = 'created'
ATTR_POSTS = 'posts'
ATTR_SUBREDDIT = 'subreddit'
ATTR_SCORE = 'score'
ATTR_TITLE = 'title'
ATTR_URL = 'url'

DEFAULT_NAME = 'Reddit'

SCAN_INTERVAL = timedelta(seconds=300)

PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
vol.Required(CONF_CLIENT_ID): cv.string,
vol.Required(CONF_CLIENT_SECRET): cv.string,
vol.Required(CONF_USERNAME): cv.string,
vol.Required(CONF_PASSWORD): cv.string,
vol.Required(CONF_SUBREDDITS): vol.All(cv.ensure_list, [cv.string]),
vol.Optional(CONF_MAXIMUM, default=10): cv.positive_int
})


def setup_platform(hass, config, add_entities, discovery_info=None):
"""Set up the Reddit sensor platform."""
import praw

subreddits = config[CONF_SUBREDDITS]
user_agent = '{}_home_assistant_sensor'.format(config[CONF_USERNAME])
limit = config[CONF_MAXIMUM]

try:
reddit = praw.Reddit(
client_id=config[CONF_CLIENT_ID],
client_secret=config[CONF_CLIENT_SECRET],
username=config[CONF_USERNAME],
password=config[CONF_PASSWORD],
user_agent=user_agent)

_LOGGER.debug('Connected to praw')

except praw.exceptions.PRAWException as err:
_LOGGER.error("Reddit error %s", err)
return

sensors = [RedditSensor(reddit, sub, limit) for sub in subreddits]
add_entities(sensors, True)


class RedditSensor(Entity):
"""Representation of a Reddit sensor."""

def __init__(self, reddit, subreddit: str, limit: int):
"""Initialize the Reddit sensor."""
self._reddit = reddit
self._limit = limit
self._subreddit = subreddit

self._subreddit_data = []

@property
def name(self):
"""Return the name of the sensor."""
return 'reddit_{}'.format(self._subreddit)

@property
def state(self):
"""Return the state of the sensor."""
return len(self._subreddit_data)

@property
def device_state_attributes(self):
"""Return the state attributes."""
return {
ATTR_SUBREDDIT: self._subreddit,
ATTR_POSTS: self._subreddit_data
}

@property
def icon(self):
"""Return the icon to use in the frontend."""
return 'mdi:reddit'

def update(self):
"""Update data from Reddit API."""
import praw

self._subreddit_data = []

try:
subreddit = self._reddit.subreddit(self._subreddit)

for submission in subreddit.top(limit=self._limit):
self._subreddit_data.append({
ATTR_ID: submission.id,
ATTR_URL: submission.url,
ATTR_TITLE: submission.title,
ATTR_SCORE: submission.score,
ATTR_COMMENTS_NUMBER: submission.num_comments,
ATTR_CREATED: submission.created,
ATTR_BODY: submission.selftext
})

except praw.exceptions.PRAWException as err:
_LOGGER.error("Reddit error %s", err)
3 changes: 3 additions & 0 deletions requirements_all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,9 @@ pocketcasts==0.1
# homeassistant.components.sensor.postnl
postnl_api==1.0.2

# homeassistant.components.sensor.reddit
praw==6.1.1

# homeassistant.components.sensor.islamic_prayer_times
prayer_times_calculator==0.0.3

Expand Down

0 comments on commit 49dc7a1

Please sign in to comment.