toolbox.py 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. import logging
  2. import pickle
  3. import re
  4. from collections import defaultdict
  5. from hashlib import sha1
  6. from flask import g
  7. from rdflib import Graph
  8. from rdflib.term import URIRef, Variable
  9. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  10. from lakesuperior.model.ldpr import ROOT_GRAPH_URI, ROOT_RSRC_URI
  11. class Toolbox:
  12. '''
  13. Utility class to translate and generate strings and other objects.
  14. '''
  15. _logger = logging.getLogger(__name__)
  16. def replace_term_domain(self, term, search, replace):
  17. '''
  18. Replace the domain of a term.
  19. @param term (URIRef) The term (URI) to change.
  20. @param search (string) Domain string to replace.
  21. @param replace (string) Domain string to use for replacement.
  22. @return URIRef
  23. '''
  24. s = str(term)
  25. if s.startswith(search):
  26. s = s.replace(search, replace)
  27. return URIRef(s)
  28. def uuid_to_uri(self, uid):
  29. '''Convert a UID to a URI.
  30. @return URIRef
  31. '''
  32. uri = '{}/{}'.format(g.webroot, uid) if uid else g.webroot
  33. return URIRef(uri)
  34. def uri_to_uuid(self, uri):
  35. '''Convert an absolute URI (internal or external) to a UID.
  36. @return string
  37. '''
  38. if uri == ROOT_GRAPH_URI or uri == ROOT_RSRC_URI:
  39. return None
  40. elif uri.startswith(nsc['fcres']):
  41. return str(uri).replace(nsc['fcres'], '')
  42. else:
  43. return str(uri).replace(g.webroot, '').strip('/')
  44. def localize_string(self, s):
  45. '''Convert URIs into URNs in a string using the application base URI.
  46. @param string s Input string.
  47. @return string
  48. '''
  49. if s.strip('/') == g.webroot:
  50. return str(ROOT_RSRC_URI)
  51. else:
  52. return s.strip('/').replace(g.webroot+'/', str(nsc['fcres']))
  53. def localize_term(self, uri):
  54. '''
  55. Localize an individual term.
  56. @param rdflib.term.URIRef urn Input URI.
  57. @return rdflib.term.URIRef
  58. '''
  59. return URIRef(self.localize_string(str(uri)))
  60. def localize_triple(self, trp):
  61. '''
  62. Localize terms in a triple.
  63. @param trp (tuple(rdflib.term.URIRef)) The triple to be converted
  64. @return tuple(rdflib.term.URIRef)
  65. '''
  66. s, p, o = trp
  67. if s.startswith(g.webroot):
  68. s = self.localize_term(s)
  69. if o.startswith(g.webroot):
  70. o = self.localize_term(o)
  71. return s, p, o
  72. def localize_graph(self, gr):
  73. '''
  74. Localize a graph.
  75. '''
  76. l_gr = Graph()
  77. for trp in gr:
  78. l_gr.add(self.localize_triple(trp))
  79. return l_gr
  80. def localize_ext_str(self, s, urn):
  81. '''
  82. Convert global URIs to local in a SPARQL or RDF string.
  83. Also replace empty URIs (`<>`) with a fixed local URN and take care
  84. of fragments and relative URIs.
  85. This is a 3-pass replacement. First, global URIs whose webroot matches
  86. the application ones are replaced with local URNs. Then, relative URIs
  87. are converted to absolute using the URN as the base; finally, the
  88. root node is appropriately addressed.
  89. '''
  90. esc_webroot = g.webroot.replace('/', '\\/')
  91. #loc_ptn = r'<({}\/?)?(.*?)?(\?.*?)?(#.*?)?>'.format(esc_webroot)
  92. loc_ptn1 = r'<{}\/?(.*?)>'.format(esc_webroot)
  93. loc_sub1 = '<{}\\1>'.format(nsc['fcres'])
  94. s1 = re.sub(loc_ptn1, loc_sub1, s)
  95. loc_ptn2 = r'<([#?].*?)?>'
  96. loc_sub2 = '<{}\\1>'.format(urn)
  97. s2 = re.sub(loc_ptn2, loc_sub2, s1)
  98. loc_ptn3 = r'<{}([#?].*?)?>'.format(nsc['fcres'])
  99. loc_sub3 = '<{}\\1>'.format(ROOT_RSRC_URI)
  100. s3 = re.sub(loc_ptn3, loc_sub3, s2)
  101. return s3
  102. def globalize_string(self, s):
  103. '''Convert URNs into URIs in a string using the application base URI.
  104. @param string s Input string.
  105. @return string
  106. '''
  107. return s.replace(str(nsc['fcres']), g.webroot + '/')
  108. def globalize_term(self, urn):
  109. '''
  110. Convert an URN into an URI using the application base URI.
  111. @param rdflib.term.URIRef urn Input URN.
  112. @return rdflib.term.URIRef
  113. '''
  114. if urn == ROOT_RSRC_URI:
  115. urn = nsc['fcres']
  116. return URIRef(self.globalize_string(str(urn)))
  117. def globalize_triple(self, trp):
  118. '''
  119. Globalize terms in a triple.
  120. @param trp (tuple(rdflib.term.URIRef)) The triple to be converted
  121. @return tuple(rdflib.term.URIRef)
  122. '''
  123. s, p, o = trp
  124. if s.startswith(nsc['fcres']):
  125. s = self.globalize_term(s)
  126. if o.startswith(nsc['fcres']):
  127. o = self.globalize_term(o)
  128. return s, p, o
  129. def globalize_graph(self, gr):
  130. '''
  131. Globalize a graph.
  132. '''
  133. g_gr = Graph()
  134. for trp in gr:
  135. g_gr.add(self.globalize_triple(trp))
  136. return g_gr
  137. def globalize_rsrc(self, rsrc):
  138. '''
  139. Globalize a resource.
  140. '''
  141. gr = rsrc.graph
  142. urn = rsrc.identifier
  143. global_gr = self.globalize_graph(gr)
  144. global_uri = self.globalize_term(urn)
  145. return global_gr.resource(global_uri)
  146. def parse_rfc7240(self, h_str):
  147. '''
  148. Parse `Prefer` header as per https://tools.ietf.org/html/rfc7240
  149. The `cgi.parse_header` standard method does not work with all possible
  150. use cases for this header.
  151. @param h_str (string) The header(s) as a comma-separated list of Prefer
  152. statements, excluding the `Prefer: ` token.
  153. '''
  154. parsed_hdr = defaultdict(dict)
  155. # Split up headers by comma
  156. hdr_list = [ x.strip() for x in h_str.split(',') ]
  157. for hdr in hdr_list:
  158. parsed_pref = defaultdict(dict)
  159. # Split up tokens by semicolon
  160. token_list = [ token.strip() for token in hdr.split(';') ]
  161. prefer_token = token_list.pop(0).split('=')
  162. prefer_name = prefer_token[0]
  163. # If preference has a '=', it has a value, else none.
  164. if len(prefer_token)>1:
  165. parsed_pref['value'] = prefer_token[1].strip('"')
  166. for param_token in token_list:
  167. # If the token list had a ';' the preference has a parameter.
  168. param_parts = [ prm.strip().strip('"') \
  169. for prm in param_token.split('=') ]
  170. param_value = param_parts[1] if len(param_parts) > 1 else None
  171. parsed_pref['parameters'][param_parts[0]] = param_value
  172. parsed_hdr[prefer_name] = parsed_pref
  173. return parsed_hdr
  174. def rdf_cksum(self, gr):
  175. '''
  176. Generate a checksum for a graph.
  177. This is not straightforward because a graph is derived from an
  178. unordered data structure (RDF).
  179. What this method does is ordering the graph by subject, predicate,
  180. object, then creating a pickle string and a checksum of it.
  181. N.B. The context of the triples is ignored, so isomorphic graphs would
  182. have the same checksum regardless of the context(s) they are found in.
  183. @TODO This can be later reworked to use a custom hashing algorithm.
  184. @param rdflib.Graph gr The graph to be hashed.
  185. @return string SHA1 checksum.
  186. '''
  187. # Remove the messageDigest property, which very likely reflects the
  188. # previous state of the resource.
  189. gr.remove((Variable('s'), nsc['premis'].messageDigest, Variable('o')))
  190. ord_gr = sorted(list(gr), key=lambda x : (x[0], x[1], x[2]))
  191. hash = sha1(pickle.dumps(ord_gr)).hexdigest()
  192. return hash
  193. def split_uuid(self, uuid):
  194. '''
  195. Split a UID into pairtree segments. This mimics FCREPO4 behavior.
  196. '''
  197. path = '{}/{}/{}/{}/{}'.format(uuid[:2], uuid[2:4],
  198. uuid[4:6], uuid[6:8], uuid)
  199. return path