toolbox.py 7.6 KB

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