toolbox.py 6.0 KB

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