You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
changedetection.io/backend/store.py

106 lines
3.1 KiB

4 years ago
import json
import uuid as uuid_builder
4 years ago
import validators
4 years ago
# Is there an existing library to ensure some data store (JSON etc) is in sync with CRUD methods?
# Open a github issue if you know something :)
4 years ago
# https://stackoverflow.com/questions/6190468/how-to-trigger-function-on-value-change
4 years ago
class ChangeDetectionStore:
def __init__(self):
self.data = {
'watching': {}
}
# Base definition for all watchers
self.generic_definition = {
'url': None,
'tag': None,
'last_checked': 0,
'last_changed': 0,
4 years ago
'title': None,
'uuid': str(uuid_builder.uuid4()),
'headers' : {}, # Extra headers to send
'history' : {} # Dict of timestamp and output stripped filename
}
4 years ago
try:
with open('/datastore/url-watches.json') as json_file:
self.data.update(json.load(json_file))
# Reinitialise each `watching` with our generic_definition in the case that we add a new var in the future.
# @todo pretty sure theres a python we todo this with an abstracted(?) object!
i = 0
for uuid, watch in self.data['watching'].items():
_blank = self.generic_definition.copy()
_blank.update(watch)
self.data['watching'].update({uuid: _blank})
print("Watching:", uuid, _blank['url'])
4 years ago
# First time ran, doesnt exist.
except (FileNotFoundError, json.decoder.JSONDecodeError):
print("Creating JSON store")
4 years ago
self.add_watch(url='https://changedetection.io', tag='general')
self.add_watch(url='http://www.quotationspage.com/random.php', tag='test')
def update_watch(self, uuid, val, var):
self.data['watching'][uuid].update({val: var})
self.sync_to_json()
def get_all_tags(self):
tags=[]
for uuid, watch in self.data['watching'].items():
if not watch['tag'] in tags:
tags.append(watch['tag'])
4 years ago
return tags
def delete(self, uuid):
4 years ago
# Probably their should be dict...
del(self.data['watching'][uuid])
self.sync_to_json()
4 years ago
4 years ago
def url_exists(self, url):
# Probably their should be dict...
for watch in self.data['watching']:
if watch['url'] == url:
return True
4 years ago
return False
4 years ago
def get_val(self, uuid, val):
# Probably their should be dict...
return self.data['watching'][uuid].get(val)
4 years ago
4 years ago
def add_watch(self, url, tag):
# @todo deal with exception
4 years ago
validators.url(url)
4 years ago
# @todo use a common generic version of this
_blank = self.generic_definition.copy()
_blank.update({
4 years ago
'url': url,
'tag': tag,
'uuid': str(uuid_builder.uuid4())
4 years ago
})
self.data['watching'].update({_blank['uuid']: _blank})
4 years ago
self.sync_to_json()
4 years ago
def sync_to_json(self):
with open('/datastore/url-watches.json', 'w') as json_file:
4 years ago
json.dump(self.data, json_file, indent=4)
4 years ago
# body of the constructor