Working on updating constants

This commit is contained in:
Kevin Fronczak
2017-03-08 21:26:28 -05:00
parent 3653e9d63d
commit 7fa1353173
3 changed files with 10 additions and 12 deletions
+4 -10
View File
@@ -5,9 +5,7 @@
blinkpy by Kevin Fronczak - A Blink camera Python library
https://github.com/fronzbot/blinkpy
Original protocol hacking by MattTW : https://github.com/MattTW/BlinkMonitorProtocol
Published under the MIT license - See LICENSE file for more details.
"Blink Wire-Free HS Home Monitoring & Alert Systems" is a trademark owned by Immedia Inc., see www.blinkforhome.com for more information.
I am in no way affiliated with Blink, nor Immedia Inc.
'''
@@ -185,11 +183,7 @@ class BlinkCamera(object):
self._NOTIFICATIONS = values['notifications']
def image_refresh(self):
<<<<<<< HEAD
url = HOME_URL
=======
url = BASE_URL + '/homescreen'
>>>>>>> 8206a49dc76913b9f175bb473e17758fd2e26956
response = _request(url, headers=self._HEADER, type='get')['devices']
for element in response:
try:
@@ -262,7 +256,7 @@ class Blink(object):
@property
def events(self):
"""Gets all events on server"""
url = EVENT_URL + self._NETWORKID
url = BASE_URL + '/events/network/' + self._NETWORKID
headers = self._AUTH_HEADER
self._EVENTS = _request(url, headers=headers, type='get')['event']
return self._EVENTS
@@ -270,10 +264,10 @@ class Blink(object):
@property
def online(self):
"""Returns True or False depending on if sync module is online/offline"""
url = NETWORK_URL + self._NETWORKID + '/syncmodules'
url = BASE_URL + 'network/' + self._NETWORKID + '/syncmodules'
headers = self._AUTH_HEADER
online_dict = {'online': True, 'offline': False}
return online_dict[_request(url, headers=headers, type='get')[KEY_SYNCMODULE]['status']]
return online_dict[_request(url, headers=headers, type='get')['syncmodule']['status']]
def last_motion(self):
"""Finds last motion of each camera"""
@@ -395,4 +389,4 @@ class Blink(object):
response = _request(url, headers=headers, type='get')
self._NETWORKID = str(response['networks'][0]['id'])
self._ACCOUNTID = str(response['networks'][0]['account_id'])
self._ACCOUNTID = str(response['networks'][0]['account_id'])
+2 -2
View File
@@ -15,6 +15,6 @@ EVENT_URL = BASE_URL + '/events/network/'
NETWORK_URL = BASE_URL + '/network/'
'''
DICT KEYS
Dictionaries
'''
ONLINE = {'online': True, 'offline': False}
+4
View File
@@ -0,0 +1,4 @@
USERNAME = (0, "Username must be a string")
PASSWORD = (1, "Password must be a string")
AUTHENTICATE = (2, "Cannot authenticate since either password or username has not been set")