|
|
|
@ -7,19 +7,20 @@ from changedetectionio.html_tools import FilterNotFoundInResponse
|
|
|
|
|
|
|
|
|
|
# A single update worker
|
|
|
|
|
#
|
|
|
|
|
# Requests for checking on a single site(watch) from a queue of watches
|
|
|
|
|
# (another process inserts watches into the queue that are time-ready for checking)
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
class update_worker(threading.Thread):
|
|
|
|
|
current_uuid = None
|
|
|
|
|
|
|
|
|
|
def __init__(self, q, notification_q, app, datastore, *args, **kwargs):
|
|
|
|
|
def __init__(self, q, notification_q, app, datastore, uuid, *args, **kwargs):
|
|
|
|
|
self.q = q
|
|
|
|
|
|
|
|
|
|
self.app = app
|
|
|
|
|
self.notification_q = notification_q
|
|
|
|
|
self.datastore = datastore
|
|
|
|
|
self.current_uuid = uuid
|
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
self.name = "update_worker"
|
|
|
|
|
|
|
|
|
|
def send_filter_failure_notification(self, uuid):
|
|
|
|
|
|
|
|
|
@ -47,22 +48,29 @@ class update_worker(threading.Thread):
|
|
|
|
|
self.notification_q.put(n_object)
|
|
|
|
|
print("Sent filter not found notification for {}".format(uuid))
|
|
|
|
|
|
|
|
|
|
# Pick one job off the list, process it threaded, exist
|
|
|
|
|
def run(self):
|
|
|
|
|
from changedetectionio import fetch_site_status
|
|
|
|
|
# Go talk to the website
|
|
|
|
|
self.perform_site_update()
|
|
|
|
|
|
|
|
|
|
update_handler = fetch_site_status.perform_site_check(datastore=self.datastore)
|
|
|
|
|
self.current_uuid = None # Done
|
|
|
|
|
self.q.task_done()
|
|
|
|
|
|
|
|
|
|
while not self.app.config.exit.is_set():
|
|
|
|
|
# Let the thread die after processing 1
|
|
|
|
|
# We will launch nice juicy fresh threads every time to prevent memory leaks in complex runner code (playwright etc)
|
|
|
|
|
print ("EXITING THREAD!")
|
|
|
|
|
self.app.config.exit.wait(1)
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
uuid = self.q.get(block=False)
|
|
|
|
|
except queue.Empty:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
self.current_uuid = uuid
|
|
|
|
|
|
|
|
|
|
if uuid in list(self.datastore.data['watching'].keys()):
|
|
|
|
|
def perform_site_update(self):
|
|
|
|
|
|
|
|
|
|
from changedetectionio import fetch_site_status
|
|
|
|
|
|
|
|
|
|
if not self.current_uuid in list(self.datastore.data['watching'].keys()):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
changed_detected = False
|
|
|
|
|
contents = ""
|
|
|
|
@ -71,55 +79,56 @@ class update_worker(threading.Thread):
|
|
|
|
|
xpath_data = False
|
|
|
|
|
now = time.time()
|
|
|
|
|
|
|
|
|
|
update_handler = fetch_site_status.perform_site_check(datastore=self.datastore)
|
|
|
|
|
try:
|
|
|
|
|
changed_detected, update_obj, contents, screenshot, xpath_data = update_handler.run(uuid)
|
|
|
|
|
changed_detected, update_obj, contents, screenshot, xpath_data = update_handler.run(self.current_uuid)
|
|
|
|
|
# Re #342
|
|
|
|
|
# In Python 3, all strings are sequences of Unicode characters. There is a bytes type that holds raw bytes.
|
|
|
|
|
# We then convert/.decode('utf-8') for the notification etc
|
|
|
|
|
if not isinstance(contents, (bytes, bytearray)):
|
|
|
|
|
raise Exception("Error - returned data from the fetch handler SHOULD be bytes")
|
|
|
|
|
except PermissionError as e:
|
|
|
|
|
self.app.logger.error("File permission error updating", uuid, str(e))
|
|
|
|
|
self.app.logger.error("File permission error updating", self.current_uuid, str(e))
|
|
|
|
|
except content_fetcher.ReplyWithContentButNoText as e:
|
|
|
|
|
# Totally fine, it's by choice - just continue on, nothing more to care about
|
|
|
|
|
# Page had elements/content but no renderable text
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': "Got HTML content but no text found."})
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'last_error': "Got HTML content but no text found."})
|
|
|
|
|
except FilterNotFoundInResponse as e:
|
|
|
|
|
err_text = "Filter '{}' not found - Did the page change its layout?".format(str(e))
|
|
|
|
|
c = 0
|
|
|
|
|
if self.datastore.data['watching'].get(uuid, False):
|
|
|
|
|
c = self.datastore.data['watching'][uuid].get('consecutive_filter_failures', 5)
|
|
|
|
|
if self.datastore.data['watching'].get(self.current_uuid, False):
|
|
|
|
|
c = self.datastore.data['watching'][self.current_uuid].get('consecutive_filter_failures', 5)
|
|
|
|
|
c += 1
|
|
|
|
|
|
|
|
|
|
# Send notification if we reached the threshold?
|
|
|
|
|
threshold = self.datastore.data['settings']['application'].get('filter_failure_notification_threshold_attempts', 0)
|
|
|
|
|
print("Filter for {} not found, consecutive_filter_failures: {}".format(uuid, c))
|
|
|
|
|
print("Filter for {} not found, consecutive_filter_failures: {}".format(self.current_uuid, c))
|
|
|
|
|
if threshold >0 and c >= threshold:
|
|
|
|
|
self.send_filter_failure_notification(uuid)
|
|
|
|
|
self.send_filter_failure_notification(self.current_uuid)
|
|
|
|
|
c = 0
|
|
|
|
|
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text,
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'last_error': err_text,
|
|
|
|
|
'consecutive_filter_failures': c})
|
|
|
|
|
except content_fetcher.EmptyReply as e:
|
|
|
|
|
# Some kind of custom to-str handler in the exception handler that does this?
|
|
|
|
|
err_text = "EmptyReply - try increasing 'Wait seconds before extracting text', Status Code {}".format(e.status_code)
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text,
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'last_error': err_text,
|
|
|
|
|
'last_check_status': e.status_code})
|
|
|
|
|
except content_fetcher.ScreenshotUnavailable as e:
|
|
|
|
|
err_text = "Screenshot unavailable, page did not render fully in the expected time - try increasing 'Wait seconds before extracting text'"
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text,
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'last_error': err_text,
|
|
|
|
|
'last_check_status': e.status_code})
|
|
|
|
|
except content_fetcher.PageUnloadable as e:
|
|
|
|
|
err_text = "Page request from server didnt respond correctly"
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text,
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'last_error': err_text,
|
|
|
|
|
'last_check_status': e.status_code})
|
|
|
|
|
except Exception as e:
|
|
|
|
|
self.app.logger.error("Exception reached processing watch UUID: %s - %s", uuid, str(e))
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': str(e)})
|
|
|
|
|
self.app.logger.error("Exception reached processing watch UUID: %s - %s", self.current_uuid, str(e))
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'last_error': str(e)})
|
|
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
try:
|
|
|
|
|
watch = self.datastore.data['watching'][uuid]
|
|
|
|
|
watch = self.datastore.data['watching'][self.current_uuid]
|
|
|
|
|
fname = "" # Saved history text filename
|
|
|
|
|
|
|
|
|
|
# For the FIRST time we check a site, or a change detected, save the snapshot.
|
|
|
|
@ -129,17 +138,17 @@ class update_worker(threading.Thread):
|
|
|
|
|
|
|
|
|
|
# Generally update anything interesting returned
|
|
|
|
|
update_obj['consecutive_filter_failures'] = 0
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj=update_obj)
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj=update_obj)
|
|
|
|
|
|
|
|
|
|
# A change was detected
|
|
|
|
|
if changed_detected:
|
|
|
|
|
n_object = {}
|
|
|
|
|
print (">> Change detected in UUID {} - {}".format(uuid, watch['url']))
|
|
|
|
|
print (">> Change detected in UUID {} - {}".format(self.current_uuid, watch['url']))
|
|
|
|
|
|
|
|
|
|
# Notifications should only trigger on the second time (first time, we gather the initial snapshot)
|
|
|
|
|
if watch.history_n >= 2:
|
|
|
|
|
# Atleast 2, means there really was a change
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_changed': round(now)})
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'last_changed': round(now)})
|
|
|
|
|
|
|
|
|
|
watch_history = watch.history
|
|
|
|
|
dates = list(watch_history.keys())
|
|
|
|
@ -153,7 +162,7 @@ class update_worker(threading.Thread):
|
|
|
|
|
|
|
|
|
|
# Did it have any notification alerts to hit?
|
|
|
|
|
if len(watch['notification_urls']):
|
|
|
|
|
print(">>> Notifications queued for UUID from watch {}".format(uuid))
|
|
|
|
|
print(">>> Notifications queued for UUID from watch {}".format(self.current_uuid))
|
|
|
|
|
n_object['notification_urls'] = watch['notification_urls']
|
|
|
|
|
n_object['notification_title'] = watch['notification_title']
|
|
|
|
|
n_object['notification_body'] = watch['notification_body']
|
|
|
|
@ -161,7 +170,7 @@ class update_worker(threading.Thread):
|
|
|
|
|
|
|
|
|
|
# No? maybe theres a global setting, queue them all
|
|
|
|
|
elif len(self.datastore.data['settings']['application']['notification_urls']):
|
|
|
|
|
print(">>> Watch notification URLs were empty, using GLOBAL notifications for UUID: {}".format(uuid))
|
|
|
|
|
print(">>> Watch notification URLs were empty, using GLOBAL notifications for UUID: {}".format(self.current_uuid))
|
|
|
|
|
n_object['notification_urls'] = self.datastore.data['settings']['application']['notification_urls']
|
|
|
|
|
n_object['notification_title'] = self.datastore.data['settings']['application']['notification_title']
|
|
|
|
|
n_object['notification_body'] = self.datastore.data['settings']['application']['notification_body']
|
|
|
|
@ -180,7 +189,7 @@ class update_worker(threading.Thread):
|
|
|
|
|
from changedetectionio import diff
|
|
|
|
|
n_object.update({
|
|
|
|
|
'watch_url': watch['url'],
|
|
|
|
|
'uuid': uuid,
|
|
|
|
|
'uuid': self.current_uuid,
|
|
|
|
|
'current_snapshot': contents.decode('utf-8'),
|
|
|
|
|
'diff': diff.render_diff(prev_fname, fname, line_feed_sep=line_feed_sep),
|
|
|
|
|
'diff_full': diff.render_diff(prev_fname, fname, True, line_feed_sep=line_feed_sep)
|
|
|
|
@ -191,25 +200,18 @@ class update_worker(threading.Thread):
|
|
|
|
|
except Exception as e:
|
|
|
|
|
# Catch everything possible here, so that if a worker crashes, we don't lose it until restart!
|
|
|
|
|
print("!!!! Exception in update_worker !!!\n", e)
|
|
|
|
|
self.app.logger.error("Exception reached processing watch UUID: %s - %s", uuid, str(e))
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'last_error': str(e)})
|
|
|
|
|
self.app.logger.error("Exception reached processing watch UUID: %s - %s", self.current_uuid, str(e))
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'last_error': str(e)})
|
|
|
|
|
|
|
|
|
|
finally:
|
|
|
|
|
# Always record that we atleast tried
|
|
|
|
|
self.datastore.update_watch(uuid=uuid, update_obj={'fetch_time': round(time.time() - now, 3),
|
|
|
|
|
self.datastore.update_watch(uuid=self.current_uuid, update_obj={'fetch_time': round(time.time() - now, 3),
|
|
|
|
|
'last_checked': round(time.time())})
|
|
|
|
|
|
|
|
|
|
# Always save the screenshot if it's available
|
|
|
|
|
if screenshot:
|
|
|
|
|
self.datastore.save_screenshot(watch_uuid=uuid, screenshot=screenshot)
|
|
|
|
|
self.datastore.save_screenshot(watch_uuid=self.current_uuid, screenshot=screenshot)
|
|
|
|
|
if xpath_data:
|
|
|
|
|
self.datastore.save_xpath_data(watch_uuid=uuid, data=xpath_data)
|
|
|
|
|
self.datastore.save_xpath_data(watch_uuid=self.current_uuid, data=xpath_data)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.current_uuid = None # Done
|
|
|
|
|
self.q.task_done()
|
|
|
|
|
|
|
|
|
|
# Give the CPU time to interrupt
|
|
|
|
|
time.sleep(0.1)
|
|
|
|
|
|
|
|
|
|
self.app.config.exit.wait(1)
|
|
|
|
|