44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
import datetime
|
|
import re
|
|
|
|
|
|
CUTOFF_HOUR = 17
|
|
|
|
|
|
class ParseInfo(object):
|
|
|
|
def __init__(self):
|
|
self.errors = []
|
|
self.warnings = {}
|
|
|
|
def add_error(self, error_str):
|
|
self.errors.append(error_str)
|
|
|
|
def add_warning(self, warning_type, warning_str):
|
|
warn_list = self.warnings.get(warning_type, [])
|
|
self.warnings[warning_type] = warn_list + [warning_str]
|
|
|
|
|
|
class FileParser(object):
|
|
|
|
def __init__(self, fd):
|
|
self.fd = fd
|
|
self.parsed_info = ParseInfo()
|
|
|
|
def parse_critical(self):
|
|
if not self.fd:
|
|
return self.parsed_info
|
|
for attr in dir(self):
|
|
if attr.startswith('parse_critical_'):
|
|
method = getattr(self, attr, None)
|
|
if callable(method):
|
|
method()
|
|
return self.parsed_info
|
|
|
|
def parse_critical_invalid_chars_in_filename(self):
|
|
name = self.fd.name
|
|
regexp = re.compile(r'&|\|\/|;|\*|\s|\$')
|
|
chars = regexp.findall(name)
|
|
if chars:
|
|
self.parsed_info.add_error('Invalid characters were found in the name of the file which was just submitted: %s' % ', '.join(set(chars)))
|