This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/disabled_stuff/validate.py

27 lines
750 B
Python
Raw Permalink Normal View History

2013-09-04 12:30:04 +02:00
"""
2011-11-20 10:23:31 +01:00
Runs a given url through the w3c validator
by Vladi
2013-09-04 12:30:04 +02:00
"""
2011-11-20 10:23:31 +01:00
from util import hook, http
2012-02-29 07:09:19 +01:00
@hook.command('w3c')
2011-11-20 10:23:31 +01:00
@hook.command
def validate(inp):
2013-09-04 12:30:04 +02:00
"""validate <url> -- Runs url through the w3c markup validator."""
2011-11-20 10:23:31 +01:00
if not inp.startswith('http://'):
inp = 'http://' + inp
url = 'http://validator.w3.org/check?uri=' + http.quote_plus(inp)
info = dict(http.open(url).info())
status = info['x-w3c-validator-status'].lower()
if status in ("valid", "invalid"):
error_count = info['x-w3c-validator-errors']
warning_count = info['x-w3c-validator-warnings']
return "{} was found to be {} with {} errors and {} warnings." \
" see: {}".format(inp, status, error_count, warning_count, url)