translator.py 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. from flask import request
  2. from rdflib.term import URIRef
  3. from lakesuperior.core.namespaces import ns_collection as nsc
  4. class Translator:
  5. '''
  6. Utility class to perform translations of strings and their wrappers.
  7. All static methods.
  8. '''
  9. @staticmethod
  10. def uuid_to_uri(uuid):
  11. '''Convert a UUID to a URI.
  12. @return URIRef
  13. '''
  14. return URIRef('{}rest/{}'.format(request.host_url, uuid))
  15. @staticmethod
  16. def localize_string(s):
  17. '''Convert URIs into URNs in a string using the application base URI.
  18. @param string s Input string.
  19. @return string
  20. '''
  21. return s.replace(
  22. request.host_url + 'rest/',
  23. str(nsc['fcres'])
  24. )
  25. @staticmethod
  26. def globalize_string(s):
  27. '''Convert URNs into URIs in a string using the application base URI.
  28. @param string s Input string.
  29. @return string
  30. '''
  31. return s.replace(
  32. str(nsc['fcres']),
  33. request.host_url + 'rest/'
  34. )
  35. @staticmethod
  36. def globalize_term(urn):
  37. '''
  38. Convert an URN into an URI using the application base URI.
  39. @param rdflib.term.URIRef urn Input URN.
  40. @return rdflib.term.URIRef
  41. '''
  42. return URIRef(Translator.globalize_string(str(urn)))
  43. @staticmethod
  44. def globalize_graph(g):
  45. '''
  46. Globalize a graph.
  47. '''
  48. q = '''
  49. CONSTRUCT {{ ?s ?p ?o . }} WHERE {{
  50. ?s ?p ?o .
  51. {{ FILTER STRSTARTS(str(?s), "{0}") . }}
  52. UNION
  53. {{ FILTER STRSTARTS(str(?o), "{0}") . }}
  54. }}'''.format(nsc['fcres'])
  55. flt_g = g.query(q)
  56. for t in flt_g:
  57. print('Triple: {}'.format(t))
  58. global_s = Translator.globalize_term(t[0])
  59. global_o = Translator.globalize_term(t[2]) \
  60. if isinstance(t[2], URIRef) \
  61. else t[2]
  62. g.remove(t)
  63. g.add((global_s, t[1], global_o))
  64. return g
  65. @staticmethod
  66. def globalize_rsrc(rsrc):
  67. '''
  68. Globalize a resource.
  69. '''
  70. g = rsrc.graph
  71. urn = rsrc.identifier
  72. global_g = Translator.globalize_graph(g)
  73. global_uri = Translator.globalize_term(urn)
  74. return global_g.resource(global_uri)