mirror of
https://github.com/lilydjwg/nvchecker
synced 2025-01-13 09:40:54 +00:00
c43d4e900f
Example: source = "regex" regex = "spcm_linux_libs_v[0-9a-zA-Z]*" url = "https://spectrum-instrumentation.com/spcm_downloads_downloads_ajax" post_data = "series%5B%5D=273&families%5B%5D=475"
35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
# MIT licensed
|
|
# Copyright (c) 2020 Ypsilik <tt2laurent.maud@gmail.com>, et al.
|
|
# Copyright (c) 2013-2020 lilydjwg <lilydjwg@gmail.com>, et al.
|
|
|
|
from lxml import html, etree
|
|
|
|
from nvchecker.api import session, GetVersionError
|
|
|
|
async def get_version(name, conf, *, cache, **kwargs):
|
|
key = tuple(sorted(conf.items()))
|
|
return await cache.get(key, get_version_impl)
|
|
|
|
async def get_version_impl(info):
|
|
conf = dict(info)
|
|
|
|
encoding = conf.get('encoding')
|
|
parser = html.HTMLParser(encoding=encoding)
|
|
data = conf.get('post_data')
|
|
if data is None:
|
|
res = await session.get(conf['url'])
|
|
else:
|
|
res = await session.post(conf['url'], body = data, headers = {
|
|
'Content-Type': conf.get('post_data_type', 'application/x-www-form-urlencoded')
|
|
})
|
|
doc = html.fromstring(res.body, base_url=conf['url'], parser=parser)
|
|
|
|
try:
|
|
version = doc.xpath(conf.get('xpath'))
|
|
except ValueError:
|
|
if not conf.get('missing_ok', False):
|
|
raise GetVersionError('version string not found.')
|
|
except etree.XPathEvalError as e:
|
|
raise GetVersionError('bad xpath', exc_info=e)
|
|
return version
|