hydrus/include/ClientParsing.py

905 lines
27 KiB
Python
Raw Normal View History

2016-07-20 19:57:10 +00:00
import bs4
2016-11-02 21:09:14 +00:00
import ClientNetworking
2016-09-21 19:54:04 +00:00
import HydrusConstants as HC
2016-09-07 20:01:05 +00:00
import HydrusData
2016-11-09 23:13:22 +00:00
import HydrusExceptions
import HydrusGlobals
2016-07-20 19:57:10 +00:00
import HydrusSerialisable
2016-10-26 20:45:34 +00:00
import HydrusTags
2016-10-19 20:02:56 +00:00
import os
2016-11-16 20:21:43 +00:00
import time
2016-11-02 21:09:14 +00:00
import urlparse
2016-07-20 19:57:10 +00:00
2016-11-02 21:09:14 +00:00
def ChildHasDesiredContent( child, desired_content ):
return desired_content == 'all' or len( child.GetParsableContent().intersection( desired_content ) ) > 0
2016-10-26 20:45:34 +00:00
def ConvertContentResultToPrettyString( result ):
2016-11-02 21:09:14 +00:00
( ( name, content_type, additional_info ), parsed_text ) = result
2016-10-26 20:45:34 +00:00
if content_type == HC.CONTENT_TYPE_MAPPINGS:
return 'tag: ' + HydrusTags.CombineTag( additional_info, parsed_text )
2016-11-02 21:09:14 +00:00
elif content_type == HC.CONTENT_TYPE_VETO:
return 'veto'
2016-10-26 20:45:34 +00:00
raise NotImplementedError()
2016-11-02 21:09:14 +00:00
def ConvertParsableContentToPrettyString( parsable_content, include_veto = False ):
pretty_strings = []
content_type_to_additional_infos = HydrusData.BuildKeyToSetDict( ( ( content_type, additional_infos ) for ( name, content_type, additional_infos ) in parsable_content ) )
for ( content_type, additional_infos ) in content_type_to_additional_infos.items():
if content_type == HC.CONTENT_TYPE_MAPPINGS:
namespaces = [ namespace for namespace in additional_infos if namespace != '' ]
if '' in additional_infos:
namespaces.append( 'unnamespaced' )
pretty_strings.append( 'tags: ' + ', '.join( namespaces ) )
elif content_type == HC.CONTENT_TYPE_VETO:
if include_veto:
pretty_strings.append( 'veto' )
2016-10-05 20:22:40 +00:00
2016-11-02 21:09:14 +00:00
if len( pretty_strings ) == 0:
2016-10-05 20:22:40 +00:00
return 'nothing'
else:
2016-11-02 21:09:14 +00:00
return ', '.join( pretty_strings )
2016-10-05 20:22:40 +00:00
2016-11-02 21:09:14 +00:00
2016-11-16 20:21:43 +00:00
def GetChildrenContent( job_key, children, data, referral_url, desired_content ):
2016-11-02 21:09:14 +00:00
for child in children:
2016-10-19 20:02:56 +00:00
2016-11-02 21:09:14 +00:00
if child.Vetoes( data ):
2016-10-19 20:02:56 +00:00
2016-11-02 21:09:14 +00:00
return []
2016-10-19 20:02:56 +00:00
2016-11-02 21:09:14 +00:00
content = []
for child in children:
if ChildHasDesiredContent( child, desired_content ):
2016-11-16 20:21:43 +00:00
child_content = child.Parse( job_key, data, referral_url, desired_content )
2016-11-02 21:09:14 +00:00
content.extend( child_content )
return content
2016-11-09 23:13:22 +00:00
def GetTagsFromContentResults( results ):
tag_results = []
for ( ( name, content_type, additional_info ), parsed_text ) in results:
if content_type == HC.CONTENT_TYPE_MAPPINGS:
tag_results.append( HydrusTags.CombineTag( additional_info, parsed_text ) )
tag_results = HydrusTags.CleanTags( tag_results )
return tag_results
2016-11-02 21:09:14 +00:00
def GetVetoes( parsed_texts, additional_info ):
( veto_if_matches_found, match_if_text_present, search_text ) = additional_info
if match_if_text_present:
matches = [ 'veto' for parsed_text in parsed_texts if search_text in parsed_text ]
else:
matches = [ 'veto' for parsed_text in parsed_texts if search_text not in parsed_text ]
if veto_if_matches_found:
return matches
else:
if len( matches ) == 0:
return [ 'veto through absence' ]
else:
return []
2016-10-05 20:22:40 +00:00
2016-09-07 20:01:05 +00:00
def RenderTagRule( ( name, attrs, index ) ):
if index is None:
result = 'all ' + name + ' tags'
else:
2016-10-26 20:45:34 +00:00
result = HydrusData.ConvertIntToFirst( index + 1 ) + ' ' + name + ' tag'
2016-09-07 20:01:05 +00:00
if len( attrs ) > 0:
result += ' with ' + ' and '.join( [ key + ' = ' + value for ( key, value ) in attrs.items() ] )
return result
2016-09-21 19:54:04 +00:00
class ParseFormulaHTML( HydrusSerialisable.SerialisableBase ):
2016-07-20 19:57:10 +00:00
2016-09-21 19:54:04 +00:00
SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_PARSE_FORMULA_HTML
2016-11-16 20:21:43 +00:00
SERIALISABLE_VERSION = 2
2016-07-20 19:57:10 +00:00
2016-11-16 20:21:43 +00:00
def __init__( self, tag_rules = None, content_rule = None, culling_and_adding = None ):
2016-07-20 19:57:10 +00:00
2016-09-07 20:01:05 +00:00
if tag_rules is None:
tag_rules = [ ( 'a', {}, None ) ]
2016-07-20 19:57:10 +00:00
2016-11-16 20:21:43 +00:00
if culling_and_adding is None:
culling_and_adding = ( 0, 0, '', '' )
2016-09-07 20:01:05 +00:00
self._tag_rules = tag_rules
self._content_rule = content_rule
2016-07-20 19:57:10 +00:00
2016-11-16 20:21:43 +00:00
self._culling_and_adding = culling_and_adding
def _CullAndAdd( self, text ):
( cull_front, cull_back, prepend, append ) = self._culling_and_adding
if cull_front != 0:
text = text[ cull_front : ]
if cull_back != 0:
text = text[ : - cull_back ]
if text == '':
return None
text = prepend + text + append
return text
2016-10-19 20:02:56 +00:00
2016-07-20 19:57:10 +00:00
def _GetSerialisableInfo( self ):
2016-11-16 20:21:43 +00:00
return ( self._tag_rules, self._content_rule, self._culling_and_adding )
2016-07-20 19:57:10 +00:00
def _InitialiseFromSerialisableInfo( self, serialisable_info ):
2016-11-16 20:21:43 +00:00
( self._tag_rules, self._content_rule, self._culling_and_adding ) = serialisable_info
def _UpdateSerialisableInfo( self, version, old_serialisable_info ):
if version == 1:
( tag_rules, content_rule ) = old_serialisable_info
culling_and_adding = ( 0, 0, '', '' )
new_serialisable_info = ( tag_rules, content_rule, culling_and_adding )
return ( 2, new_serialisable_info )
2016-07-20 19:57:10 +00:00
def _ParseContent( self, root ):
if self._content_rule is None:
2016-10-26 20:45:34 +00:00
result = root.string
else:
if root.has_attr( self._content_rule ):
2016-11-23 20:37:53 +00:00
unknown_attr_result = root[ self._content_rule ]
# 'class' attr returns a list because it has multiple values under html spec, wew
if isinstance( unknown_attr_result, list ):
if len( unknown_attr_result ) == 0:
result = None
else:
result = ' '.join( unknown_attr_result )
else:
result = unknown_attr_result
2016-10-26 20:45:34 +00:00
else:
result = None
2016-11-16 20:21:43 +00:00
if result == '' or result is None:
2016-10-26 20:45:34 +00:00
return None
2016-07-20 19:57:10 +00:00
else:
2016-11-16 20:21:43 +00:00
return self._CullAndAdd( result )
2016-07-20 19:57:10 +00:00
def _ParseTags( self, root, name, attrs, index ):
results = root.find_all( name = name, attrs = attrs )
if index is not None:
2016-11-02 21:09:14 +00:00
if len( results ) < index + 1:
2016-07-20 19:57:10 +00:00
2016-11-02 21:09:14 +00:00
results = []
2016-07-20 19:57:10 +00:00
2016-11-02 21:09:14 +00:00
else:
2016-07-20 19:57:10 +00:00
2016-11-02 21:09:14 +00:00
results = [ results[ index ] ]
2016-07-20 19:57:10 +00:00
return results
def Parse( self, html ):
root = bs4.BeautifulSoup( html, 'lxml' )
roots = ( root, )
for ( name, attrs, index ) in self._tag_rules:
next_roots = []
for root in roots:
next_roots.extend( self._ParseTags( root, name, attrs, index ) )
roots = next_roots
contents = [ self._ParseContent( root ) for root in roots ]
2016-10-26 20:45:34 +00:00
contents = [ content for content in contents if content is not None ]
2016-07-20 19:57:10 +00:00
return contents
2016-10-19 20:02:56 +00:00
def ToPrettyMultilineString( self ):
pretty_strings = []
for ( name, attrs, index ) in self._tag_rules:
s = ''
if index is None:
2016-11-02 21:09:14 +00:00
s += 'get every'
2016-10-19 20:02:56 +00:00
else:
num = index + 1
2016-11-02 21:09:14 +00:00
s += 'get the ' + HydrusData.ConvertIntToPrettyOrdinalString( num )
2016-10-19 20:02:56 +00:00
2016-11-02 21:09:14 +00:00
s += ' <' + name + '> tag'
2016-10-19 20:02:56 +00:00
if len( attrs ) > 0:
2016-11-02 21:09:14 +00:00
s += ' with attributes ' + ', '.join( key + '=' + value for ( key, value ) in attrs.items() )
2016-10-19 20:02:56 +00:00
pretty_strings.append( s )
if self._content_rule is None:
pretty_strings.append( 'get the text content of those tags' )
else:
pretty_strings.append( 'get the ' + self._content_rule + ' attribute of those tags' )
2016-11-16 20:21:43 +00:00
cull_munge_strings = []
( cull_front, cull_back, prepend, append ) = self._culling_and_adding
if cull_front > 0:
cull_munge_strings.append( 'the first ' + HydrusData.ConvertIntToPrettyString( cull_front ) + ' characters' )
elif cull_front < 0:
cull_munge_strings.append( 'all but the last ' + HydrusData.ConvertIntToPrettyString( abs( cull_front ) ) + ' characters' )
if cull_back > 0:
cull_munge_strings.append( 'the last ' + HydrusData.ConvertIntToPrettyString( cull_back ) + ' characters' )
elif cull_back < 0:
cull_munge_strings.append( 'all but the first ' + HydrusData.ConvertIntToPrettyString( abs( cull_back ) ) + ' characters' )
if len( cull_munge_strings ) > 0:
pretty_strings.append( 'remove ' + ' and '.join( cull_munge_strings ) )
add_munge_strings = []
if prepend != '':
add_munge_strings.append( 'prepend "' + prepend + '"' )
if append != '':
add_munge_strings.append( 'append "' + append + '"' )
if len( add_munge_strings ) > 0:
pretty_strings.append( ' and '.join( add_munge_strings ) )
2016-10-19 20:02:56 +00:00
separator = os.linesep + 'and then '
pretty_multiline_string = separator.join( pretty_strings )
return pretty_multiline_string
2016-09-07 20:01:05 +00:00
def ToTuple( self ):
2016-07-20 19:57:10 +00:00
2016-11-16 20:21:43 +00:00
return ( self._tag_rules, self._content_rule, self._culling_and_adding )
2016-07-20 19:57:10 +00:00
2016-09-21 19:54:04 +00:00
HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_PARSE_FORMULA_HTML ] = ParseFormulaHTML
class ParseNodeContent( HydrusSerialisable.SerialisableBase ):
SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_PARSE_NODE_CONTENT
SERIALISABLE_VERSION = 1
def __init__( self, name = None, content_type = None, formula = None, additional_info = None ):
2016-10-19 20:02:56 +00:00
if name is None:
name = ''
if content_type is None:
content_type = HC.CONTENT_TYPE_MAPPINGS
if formula is None:
formula = ParseFormulaHTML()
if additional_info is None:
if content_type == HC.CONTENT_TYPE_MAPPINGS:
additional_info = ''
2016-09-21 19:54:04 +00:00
self._name = name
self._content_type = content_type
self._formula = formula
self._additional_info = additional_info
def _GetSerialisableInfo( self ):
serialisable_formula = self._formula.GetSerialisableTuple()
return ( self._name, self._content_type, serialisable_formula, self._additional_info )
def _InitialiseFromSerialisableInfo( self, serialisable_info ):
( self._name, self._content_type, serialisable_formula, self._additional_info ) = serialisable_info
2016-11-02 21:09:14 +00:00
if isinstance( self._additional_info, list ):
self._additional_info = tuple( self._additional_info )
2016-09-21 19:54:04 +00:00
self._formula = HydrusSerialisable.CreateFromSerialisableTuple( serialisable_formula )
def GetParsableContent( self ):
2016-11-02 21:09:14 +00:00
return { ( self._name, self._content_type, self._additional_info ) }
2016-09-21 19:54:04 +00:00
2016-11-16 20:21:43 +00:00
def Parse( self, job_key, data, referral_url, desired_content ):
2016-09-21 19:54:04 +00:00
2016-11-02 21:09:14 +00:00
content_description = ( self._name, self._content_type, self._additional_info )
2016-09-21 19:54:04 +00:00
2016-11-02 21:09:14 +00:00
parsed_texts = self._formula.Parse( data )
2016-09-21 19:54:04 +00:00
2016-11-02 21:09:14 +00:00
if self._content_type == HC.CONTENT_TYPE_VETO:
vetoes = GetVetoes( parsed_texts, self._additional_info )
return [ ( content_description, veto ) for veto in vetoes ]
else:
return [ ( content_description, parsed_text ) for parsed_text in parsed_texts ]
2016-09-21 19:54:04 +00:00
2016-10-19 20:02:56 +00:00
def ToPrettyStrings( self ):
2016-09-21 19:54:04 +00:00
2016-11-02 21:09:14 +00:00
return ( self._name, 'content', ConvertParsableContentToPrettyString( self.GetParsableContent(), include_veto = True ) )
2016-10-19 20:02:56 +00:00
def ToTuple( self ):
return ( self._name, self._content_type, self._formula, self._additional_info )
2016-09-21 19:54:04 +00:00
2016-11-02 21:09:14 +00:00
def Vetoes( self, data ):
if self._content_type == HC.CONTENT_TYPE_VETO:
parsed_texts = self._formula.Parse( data )
vetoes = GetVetoes( parsed_texts, self._additional_info )
return len( vetoes ) > 0
else:
return False
2016-09-21 19:54:04 +00:00
HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_PARSE_NODE_CONTENT ] = ParseNodeContent
2016-10-05 20:22:40 +00:00
class ParseNodeContentLink( HydrusSerialisable.SerialisableBase ):
2016-09-21 19:54:04 +00:00
2016-10-05 20:22:40 +00:00
SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_PARSE_NODE_CONTENT_LINK
2016-09-21 19:54:04 +00:00
SERIALISABLE_VERSION = 1
2016-10-19 20:02:56 +00:00
def __init__( self, name = None, formula = None, children = None ):
2016-09-21 19:54:04 +00:00
2016-10-19 20:02:56 +00:00
if name is None:
name = ''
if formula is None:
formula = ParseFormulaHTML()
if children is None:
children = []
self._name = name
2016-09-21 19:54:04 +00:00
self._formula = formula
self._children = children
def _GetSerialisableInfo( self ):
serialisable_formula = self._formula.GetSerialisableTuple()
serialisable_children = [ child.GetSerialisableTuple() for child in self._children ]
2016-10-19 20:02:56 +00:00
return ( self._name, serialisable_formula, serialisable_children )
2016-09-21 19:54:04 +00:00
def _InitialiseFromSerialisableInfo( self, serialisable_info ):
2016-10-19 20:02:56 +00:00
( self._name, serialisable_formula, serialisable_children ) = serialisable_info
2016-09-21 19:54:04 +00:00
self._formula = HydrusSerialisable.CreateFromSerialisableTuple( serialisable_formula )
self._children = [ HydrusSerialisable.CreateFromSerialisableTuple( serialisable_child ) for serialisable_child in serialisable_children ]
def GetParsableContent( self ):
children_parsable_content = set()
for child in self._children:
children_parsable_content.update( child.GetParsableContent() )
return children_parsable_content
2016-11-16 20:21:43 +00:00
def Parse( self, job_key, data, referral_url, desired_content ):
2016-09-21 19:54:04 +00:00
2016-11-16 20:21:43 +00:00
search_urls = self.ParseURLs( job_key, data, referral_url )
2016-09-21 19:54:04 +00:00
content = []
for search_url in search_urls:
2016-11-16 20:21:43 +00:00
try:
job_key.SetVariable( 'script_status', 'fetching ' + search_url )
headers = { 'Referer' : referral_url }
response = ClientNetworking.RequestsGet( search_url, headers = headers )
except HydrusExceptions.NotFoundException:
job_key.SetVariable( 'script_status', '404 - nothing found' )
time.sleep( 2 )
continue
except HydrusExceptions.NetworkException as e:
job_key.SetVariable( 'script_status', 'Network error! Details written to log.' )
HydrusData.PrintException( e )
time.sleep( 2 )
continue
2016-09-21 19:54:04 +00:00
2016-11-09 23:13:22 +00:00
linked_data = response.content
2016-11-16 20:21:43 +00:00
children_content = GetChildrenContent( job_key, self._children, linked_data, search_url, desired_content )
2016-11-02 21:09:14 +00:00
content.extend( children_content )
2016-09-21 19:54:04 +00:00
2016-11-16 20:21:43 +00:00
if job_key.IsCancelled():
raise HydrusExceptions.CancelledException()
2016-09-21 19:54:04 +00:00
return content
2016-11-16 20:21:43 +00:00
def ParseURLs( self, job_key, data, referral_url ):
2016-11-02 21:09:14 +00:00
basic_urls = self._formula.Parse( data )
absolute_urls = [ urlparse.urljoin( referral_url, basic_url ) for basic_url in basic_urls ]
2016-11-16 20:21:43 +00:00
for url in absolute_urls:
job_key.AddURL( url )
2016-11-02 21:09:14 +00:00
return absolute_urls
2016-10-19 20:02:56 +00:00
def ToPrettyStrings( self ):
2016-09-21 19:54:04 +00:00
2016-10-19 20:02:56 +00:00
return ( self._name, 'link', ConvertParsableContentToPrettyString( self.GetParsableContent() ) )
2016-09-21 19:54:04 +00:00
2016-11-02 21:09:14 +00:00
def ToTuple( self ):
return ( self._name, self._formula, self._children )
def Vetoes( self, data ):
return False
2016-10-05 20:22:40 +00:00
HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_PARSE_NODE_CONTENT_LINK ] = ParseNodeContentLink
FILE_IDENTIFIER_TYPE_FILE = 0
FILE_IDENTIFIER_TYPE_MD5 = 1
FILE_IDENTIFIER_TYPE_SHA1 = 2
FILE_IDENTIFIER_TYPE_SHA256 = 3
2016-10-12 21:52:50 +00:00
FILE_IDENTIFIER_TYPE_SHA512 = 4
2016-10-05 20:22:40 +00:00
FILE_IDENTIFIER_TYPE_USER_INPUT = 5
file_identifier_string_lookup = {}
file_identifier_string_lookup[ FILE_IDENTIFIER_TYPE_FILE ] = 'the actual file (POST only)'
file_identifier_string_lookup[ FILE_IDENTIFIER_TYPE_MD5 ] = 'md5 hash'
file_identifier_string_lookup[ FILE_IDENTIFIER_TYPE_SHA1 ] = 'sha1 hash'
file_identifier_string_lookup[ FILE_IDENTIFIER_TYPE_SHA256 ] = 'sha256 hash'
file_identifier_string_lookup[ FILE_IDENTIFIER_TYPE_SHA512 ] = 'sha512 hash'
file_identifier_string_lookup[ FILE_IDENTIFIER_TYPE_USER_INPUT ] = 'custom user input'
2016-09-21 19:54:04 +00:00
2016-10-05 20:22:40 +00:00
class ParseRootFileLookup( HydrusSerialisable.SerialisableBaseNamed ):
2016-09-21 19:54:04 +00:00
2016-10-05 20:22:40 +00:00
SERIALISABLE_TYPE = HydrusSerialisable.SERIALISABLE_TYPE_PARSE_ROOT_FILE_LOOKUP
2016-09-21 19:54:04 +00:00
SERIALISABLE_VERSION = 1
2016-11-02 21:09:14 +00:00
def __init__( self, name, url = None, query_type = None, file_identifier_type = None, file_identifier_encoding = None, file_identifier_arg_name = None, static_args = None, children = None ):
2016-09-21 19:54:04 +00:00
2016-10-05 20:22:40 +00:00
HydrusSerialisable.SerialisableBaseNamed.__init__( self, name )
2016-11-02 21:09:14 +00:00
self._url = url
2016-09-21 19:54:04 +00:00
self._query_type = query_type
2016-10-05 20:22:40 +00:00
self._file_identifier_type = file_identifier_type
self._file_identifier_encoding = file_identifier_encoding
self._file_identifier_arg_name = file_identifier_arg_name
2016-09-21 19:54:04 +00:00
self._static_args = static_args
self._children = children
def _GetSerialisableInfo( self ):
serialisable_children = [ child.GetSerialisableTuple() for child in self._children ]
2016-11-02 21:09:14 +00:00
return ( self._url, self._query_type, self._file_identifier_type, self._file_identifier_encoding, self._file_identifier_arg_name, self._static_args, serialisable_children )
2016-09-21 19:54:04 +00:00
def _InitialiseFromSerialisableInfo( self, serialisable_info ):
2016-11-02 21:09:14 +00:00
( self._url, self._query_type, self._file_identifier_type, self._file_identifier_encoding, self._file_identifier_arg_name, self._static_args, serialisable_children ) = serialisable_info
2016-09-21 19:54:04 +00:00
self._children = [ HydrusSerialisable.CreateFromSerialisableTuple( serialisable_child ) for serialisable_child in serialisable_children ]
2016-11-09 23:13:22 +00:00
def ConvertMediaToFileIdentifier( self, media ):
if self._file_identifier_type == FILE_IDENTIFIER_TYPE_USER_INPUT:
raise Exception( 'Cannot convert media to file identifier--this script takes user input!' )
elif self._file_identifier_type == FILE_IDENTIFIER_TYPE_SHA256:
return media.GetHash()
elif self._file_identifier_type in ( FILE_IDENTIFIER_TYPE_MD5, FILE_IDENTIFIER_TYPE_SHA1, FILE_IDENTIFIER_TYPE_SHA512 ):
sha256_hash = media.GetHash()
if self._file_identifier_type == FILE_IDENTIFIER_TYPE_MD5:
hash_type = 'md5'
elif self._file_identifier_type == FILE_IDENTIFIER_TYPE_SHA1:
hash_type = 'sha1'
elif self._file_identifier_type == FILE_IDENTIFIER_TYPE_SHA512:
hash_type = 'sha512'
try:
( other_hash, ) = HydrusGlobals.client_controller.Read( 'file_hashes', ( sha256_hash, ), 'sha256', hash_type )
return other_hash
except:
raise Exception( 'I do not know that file\'s ' + hash_type + ' hash, so I cannot look it up!' )
elif self._file_identifier_type == FILE_IDENTIFIER_TYPE_FILE:
hash = media.GetHash()
mime = media.GetMime()
client_files_manager = HydrusGlobals.client_controller.GetClientFilesManager()
try:
path = client_files_manager.GetFilePath( hash, mime )
return path
except HydrusExceptions.FileMissingException as e:
raise Exception( 'That file is not in the database\'s local files, so I cannot look it up!' )
2016-11-16 20:21:43 +00:00
def FetchData( self, job_key, file_identifier ):
# add gauge report hook and cancel support here
2016-10-05 20:22:40 +00:00
2016-11-02 21:09:14 +00:00
request_args = dict( self._static_args )
if self._file_identifier_type != FILE_IDENTIFIER_TYPE_FILE:
2016-10-05 20:22:40 +00:00
2016-11-02 21:09:14 +00:00
request_args[ self._file_identifier_arg_name ] = HydrusData.EncodeBytes( self._file_identifier_encoding, file_identifier )
2016-10-05 20:22:40 +00:00
2016-11-02 21:09:14 +00:00
if self._query_type == HC.GET:
if self._file_identifier_type == FILE_IDENTIFIER_TYPE_FILE:
raise Exception( 'Cannot have a file as an argument on a GET query!' )
2016-11-16 20:21:43 +00:00
rendered_url = self._url + '?' + '&'.join( ( HydrusData.ToByteString( key ) + '=' + HydrusData.ToByteString( value ) for ( key, value ) in request_args.items() ) )
job_key.SetVariable( 'script_status', 'fetching ' + rendered_url )
job_key.AddURL( rendered_url )
2016-11-02 21:09:14 +00:00
response = ClientNetworking.RequestsGet( self._url, params = request_args )
elif self._query_type == HC.POST:
if self._file_identifier_type == FILE_IDENTIFIER_TYPE_FILE:
2016-11-16 20:21:43 +00:00
job_key.SetVariable( 'script_status', 'uploading file' )
2016-11-02 21:09:14 +00:00
path = file_identifier
files = { self._file_identifier_arg_name : open( path, 'rb' ) }
else:
2016-11-16 20:21:43 +00:00
job_key.SetVariable( 'script_status', 'uploading identifier' )
2016-11-02 21:09:14 +00:00
files = None
response = ClientNetworking.RequestsPost( self._url, data = request_args, files = files )
2016-10-05 20:22:40 +00:00
2016-11-16 20:21:43 +00:00
if job_key.IsCancelled():
raise HydrusExceptions.CancelledException()
2016-11-02 21:09:14 +00:00
data = response.content
2016-10-05 20:22:40 +00:00
return data
2016-09-21 19:54:04 +00:00
def GetParsableContent( self ):
children_parsable_content = set()
for child in self._children:
children_parsable_content.update( child.GetParsableContent() )
return children_parsable_content
2016-11-16 20:21:43 +00:00
def DoQuery( self, job_key, file_identifier, desired_content ):
2016-09-21 19:54:04 +00:00
2016-11-16 20:21:43 +00:00
try:
try:
data = self.FetchData( job_key, file_identifier )
except HydrusExceptions.NotFoundException:
job_key.SetVariable( 'script_status', '404 - nothing found' )
return []
except HydrusExceptions.NetworkException as e:
job_key.SetVariable( 'script_status', 'Network error!' )
HydrusData.ShowException( e )
return []
content_results = self.Parse( job_key, data, desired_content )
if len( content_results ) == 0:
job_key.SetVariable( 'script_status', 'Did not find anything.' )
else:
job_key.SetVariable( 'script_status', 'Found ' + HydrusData.ConvertIntToPrettyString( len( content_results ) ) + ' rows.' )
return content_results
except HydrusExceptions.CancelledException:
job_key.SetVariable( 'script_status', 'Cancelled!' )
return []
finally:
job_key.Finish()
2016-10-19 20:02:56 +00:00
2016-11-09 23:13:22 +00:00
def UsesUserInput( self ):
2016-10-19 20:02:56 +00:00
2016-11-09 23:13:22 +00:00
return self._file_identifier_type == FILE_IDENTIFIER_TYPE_USER_INPUT
2016-10-19 20:02:56 +00:00
2016-11-16 20:21:43 +00:00
def Parse( self, job_key, data, desired_content ):
2016-09-21 19:54:04 +00:00
2016-11-16 20:21:43 +00:00
content = GetChildrenContent( job_key, self._children, data, self._url, desired_content )
2016-09-21 19:54:04 +00:00
return content
def SetChildren( self, children ):
self._children = children
2016-10-05 20:22:40 +00:00
def ToPrettyStrings( self ):
2016-09-21 19:54:04 +00:00
2016-10-19 20:02:56 +00:00
return ( self._name, HC.query_type_string_lookup[ self._query_type ], 'File Lookup', ConvertParsableContentToPrettyString( self.GetParsableContent() ) )
2016-09-21 19:54:04 +00:00
def ToTuple( self ):
2016-11-02 21:09:14 +00:00
return ( self._name, self._url, self._query_type, self._file_identifier_type, self._file_identifier_encoding, self._file_identifier_arg_name, self._static_args, self._children )
2016-09-21 19:54:04 +00:00
2016-10-05 20:22:40 +00:00
HydrusSerialisable.SERIALISABLE_TYPES_TO_OBJECT_TYPES[ HydrusSerialisable.SERIALISABLE_TYPE_PARSE_ROOT_FILE_LOOKUP ] = ParseRootFileLookup