toolbox.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. import logging
  2. import pickle
  3. from collections import defaultdict
  4. from hashlib import sha1
  5. from flask import request, g
  6. from rdflib.term import Literal, URIRef, Variable
  7. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  8. class Toolbox:
  9. '''
  10. Utility class to translate and generate strings and other objects.
  11. '''
  12. _logger = logging.getLogger(__name__)
  13. ROOT_NODE_URN = nsc['fcsystem'].root
  14. def __init__(self):
  15. '''
  16. Set the base URL for the requests. This class has to be instantiated
  17. within a request context.
  18. '''
  19. self.base_url = request.host_url + g.url_prefix
  20. def camelcase(self, word):
  21. '''
  22. Convert a string with underscores with a camel-cased one.
  23. Ripped from https://stackoverflow.com/a/6425628
  24. '''
  25. return ''.join(x.capitalize() or '_' for x in word.split('_'))
  26. def uuid_to_uri(self, uuid):
  27. '''Convert a UUID to a URI.
  28. @return URIRef
  29. '''
  30. uri = '{}/{}'.format(self.base_url, uuid) if uuid else self.base_url
  31. return URIRef(uri)
  32. def uri_to_uuid(self, uri):
  33. '''Convert an absolute URI (internal or external) to a UUID.
  34. @return string
  35. '''
  36. if uri == self.ROOT_NODE_URN:
  37. return ''
  38. elif uri.startswith(nsc['fcres']):
  39. return str(uri).replace(nsc['fcres'], '')
  40. else:
  41. return str(uri).replace(self.base_url, '').strip('/')
  42. def localize_string(self, s):
  43. '''Convert URIs into URNs in a string using the application base URI.
  44. @param string s Input string.
  45. @return string
  46. '''
  47. if s.strip('/') == self.base_url:
  48. return str(self.ROOT_NODE_URN)
  49. else:
  50. return s.strip('/').replace(self.base_url+'/', str(nsc['fcres']))
  51. def localize_term(self, uri):
  52. '''
  53. Convert an URI into an URN.
  54. @param rdflib.term.URIRef urn Input URI.
  55. @return rdflib.term.URIRef
  56. '''
  57. return URIRef(self.localize_string(str(uri)))
  58. def globalize_string(self, s):
  59. '''Convert URNs into URIs in a string using the application base URI.
  60. @param string s Input string.
  61. @return string
  62. '''
  63. return s.replace(str(nsc['fcres']), self.base_url + '/')
  64. def globalize_term(self, urn):
  65. '''
  66. Convert an URN into an URI using the application base URI.
  67. @param rdflib.term.URIRef urn Input URN.
  68. @return rdflib.term.URIRef
  69. '''
  70. if urn == self.ROOT_NODE_URN:
  71. urn = nsc['fcres']
  72. return URIRef(self.globalize_string(str(urn)))
  73. def globalize_graph(self, g):
  74. '''
  75. Globalize a graph.
  76. '''
  77. from lakesuperior.model.ldpr import Ldpr
  78. q = '''
  79. CONSTRUCT {{ ?s ?p ?o . }} WHERE {{
  80. {{
  81. ?s ?p ?o .
  82. FILTER (
  83. STRSTARTS(str(?s), "{0}")
  84. ||
  85. STRSTARTS(str(?o), "{0}")
  86. ||
  87. STRSTARTS(str(?s), "{1}")
  88. ||
  89. STRSTARTS(str(?o), "{1}")
  90. ) .
  91. }}
  92. }}'''.format(nsc['fcres'], self.ROOT_NODE_URN)
  93. flt_g = g.query(q)
  94. for t in flt_g:
  95. global_s = self.globalize_term(t[0])
  96. global_o = self.globalize_term(t[2]) \
  97. if isinstance(t[2], URIRef) \
  98. else t[2]
  99. g.remove(t)
  100. g.add((global_s, t[1], global_o))
  101. return g
  102. def globalize_rsrc(self, rsrc):
  103. '''
  104. Globalize a resource.
  105. '''
  106. g = rsrc.graph
  107. urn = rsrc.identifier
  108. global_g = self.globalize_graph(g)
  109. global_uri = self.globalize_term(urn)
  110. return global_g.resource(global_uri)
  111. def parse_rfc7240(self, h_str):
  112. '''
  113. Parse `Prefer` header as per https://tools.ietf.org/html/rfc7240
  114. The `cgi.parse_header` standard method does not work with all possible
  115. use cases for this header.
  116. @param h_str (string) The header(s) as a comma-separated list of Prefer
  117. statements, excluding the `Prefer: ` token.
  118. '''
  119. parsed_hdr = defaultdict(dict)
  120. # Split up headers by comma
  121. hdr_list = [ x.strip() for x in h_str.split(',') ]
  122. for hdr in hdr_list:
  123. parsed_pref = defaultdict(dict)
  124. # Split up tokens by semicolon
  125. token_list = [ token.strip() for token in hdr.split(';') ]
  126. prefer_token = token_list.pop(0).split('=')
  127. prefer_name = prefer_token[0]
  128. # If preference has a '=', it has a value, else none.
  129. if len(prefer_token)>1:
  130. parsed_pref['value'] = prefer_token[1].strip('"')
  131. for param_token in token_list:
  132. # If the token list had a ';' the preference has a parameter.
  133. print('Param token: {}'.format(param_token))
  134. param_parts = [ prm.strip().strip('"') \
  135. for prm in param_token.split('=') ]
  136. param_value = param_parts[1] if len(param_parts) > 1 else None
  137. parsed_pref['parameters'][param_parts[0]] = param_value
  138. parsed_hdr[prefer_name] = parsed_pref
  139. return parsed_hdr
  140. def rdf_cksum(self, g):
  141. '''
  142. Generate a checksum for a graph.
  143. This is not straightforward because a graph is derived from an
  144. unordered data structure (RDF).
  145. What this method does is ordering the graph by subject, predicate,
  146. object, then creating a pickle string and a checksum of it.
  147. N.B. The context of the triples is ignored, so isomorphic graphs would
  148. have the same checksum regardless of the context(s) they are found in.
  149. @TODO This can be later reworked to use a custom hashing algorithm.
  150. @param rdflib.Graph g The graph to be hashed.
  151. @return string SHA1 checksum.
  152. '''
  153. # Remove the messageDigest property, which very likely reflects the
  154. # previous state of the resource.
  155. g.remove((Variable('s'), nsc['premis'].messageDigest, Variable('o')))
  156. ord_g = sorted(list(g), key=lambda x : (x[0], x[1], x[2]))
  157. hash = sha1(pickle.dumps(ord_g)).hexdigest()
  158. return hash