ma urlwatch: use hook for json api
This commit is contained in:
parent
3d6b370d42
commit
77752aa14e
|
@ -5,6 +5,7 @@
|
|||
enable = true;
|
||||
mailto = config.krebs.users.makefu.mail;
|
||||
onCalendar = "*-*-* 05:00:00";
|
||||
hooksFile = ./hook.py;
|
||||
urls = [
|
||||
## nixpkgs maintenance
|
||||
https://api.github.com/repos/ovh/python-ovh/tags
|
||||
|
@ -12,6 +13,7 @@
|
|||
https://api.github.com/repos/Mic92/vicious/tags
|
||||
https://pypi.python.org/simple/bepasty/
|
||||
https://pypi.python.org/simple/xstatic/
|
||||
https://pypi.python.org/simple/devpi-client/
|
||||
http://guest:derpi@cvs2svn.tigris.org/svn/cvs2svn/tags/
|
||||
http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/
|
||||
https://github.com/amadvance/snapraid/releases.atom
|
||||
|
@ -21,6 +23,12 @@
|
|||
https://api.github.com/repos/dorimanx/exfat-nofuse/tags
|
||||
https://api.github.com/repos/radare/radare2/tags
|
||||
https://api.github.com/repos/rapid7/metasploit-framework/tags
|
||||
https://api.github.com/repos/mcepl/gen-oath-safe/commits
|
||||
https://api.github.com/repos/naim94a/udpt/commits
|
||||
https://git.tasktools.org/TM/taskd/info/refs?service=git-upload-pack
|
||||
https://api.github.com/repos/dirkvdb/ps3netsrv--/commits
|
||||
# TODO: dymo cups
|
||||
|
||||
];
|
||||
};
|
||||
}
|
12
2configs/urlwatch/hook.py
Normal file
12
2configs/urlwatch/hook.py
Normal file
|
@ -0,0 +1,12 @@
|
|||
import logging
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
log = logging.getLogger()
|
||||
# log.setLevel(level=logging.INFO)
|
||||
def filter(url, data):
|
||||
log.info("handling url '{}'".format(url))
|
||||
if "api.github.com" in url:
|
||||
import json
|
||||
log.info("url is a github api link, assuming json")
|
||||
return json.dumps(json.loads(data),indent=2)
|
||||
|
||||
return data
|
Loading…
Reference in a new issue