nvchecker/nvchecker_source/regex.py

40 lines
1.0 KiB
Python
Raw Permalink Normal View History

2017-02-28 07:24:53 +00:00
# MIT licensed
2020-08-14 10:25:48 +00:00
# Copyright (c) 2013-2020 lilydjwg <lilydjwg@gmail.com>, et al.
2017-02-28 07:24:53 +00:00
2013-11-03 10:21:50 +00:00
import re
2018-04-11 08:18:41 +00:00
2020-08-14 12:04:05 +00:00
from nvchecker.api import session, GetVersionError
2013-11-03 10:21:50 +00:00
2020-08-14 10:25:48 +00:00
async def get_version(name, conf, *, cache, **kwargs):
2013-11-03 10:21:50 +00:00
try:
2017-07-04 09:04:29 +00:00
regex = re.compile(conf['regex'])
except re.error as e:
2020-08-14 10:25:48 +00:00
raise GetVersionError('bad regex', exc_info=e)
if regex.groups > 1:
raise GetVersionError('multi-group regex')
2013-11-03 10:21:50 +00:00
key = (
conf['url'],
conf.get('encoding', 'latin1'),
conf.get('post_data'),
conf.get('post_data_type', 'application/x-www-form-urlencoded'),
)
body = await cache.get(key, get_url)
2013-11-03 10:21:50 +00:00
versions = regex.findall(body)
if not versions and not conf.get('missing_ok', False):
raise GetVersionError('version string not found.')
return versions
async def get_url(info):
url, encoding, post_data, post_data_type = info
if post_data is None:
res = await session.get(url)
else:
res = await session.post(url, body = post_data, headers = {
'Content-Type': post_data_type,
})
body = res.body.decode(encoding)
return body