translator.py 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. from flask import request
  2. from rdflib.term import URIRef
  3. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  4. from lakesuperior.store_layouts.rdf.base_rdf_layout import BaseRdfLayout
  5. class Translator:
  6. '''
  7. Utility class to perform translations of strings and their wrappers.
  8. All static methods.
  9. '''
  10. @staticmethod
  11. def camelcase(word):
  12. '''
  13. Convert a string with underscores with a camel-cased one.
  14. Ripped from https://stackoverflow.com/a/6425628
  15. '''
  16. return ''.join(x.capitalize() or '_' for x in word.split('_'))
  17. @staticmethod
  18. def uuid_to_uri(uuid):
  19. '''Convert a UUID to a URI.
  20. @return URIRef
  21. '''
  22. return URIRef('{}rest/{}'.format(request.host_url, uuid))
  23. @staticmethod
  24. def localize_string(s):
  25. '''Convert URIs into URNs in a string using the application base URI.
  26. @param string s Input string.
  27. @return string
  28. '''
  29. return s.replace(
  30. request.host_url + 'rest/',
  31. str(nsc['fcres'])
  32. )
  33. @staticmethod
  34. def globalize_string(s):
  35. '''Convert URNs into URIs in a string using the application base URI.
  36. @param string s Input string.
  37. @return string
  38. '''
  39. return s.replace(
  40. str(nsc['fcres']),
  41. request.host_url + 'rest/'
  42. )
  43. @staticmethod
  44. def globalize_term(urn):
  45. '''
  46. Convert an URN into an URI using the application base URI.
  47. @param rdflib.term.URIRef urn Input URN.
  48. @return rdflib.term.URIRef
  49. '''
  50. if urn == BaseRdfLayout.ROOT_NODE_URN:
  51. urn = nsc['fcres']
  52. return URIRef(Translator.globalize_string(str(urn)))
  53. @staticmethod
  54. def globalize_graph(g):
  55. '''
  56. Globalize a graph.
  57. '''
  58. from lakesuperior.model.ldpr import Ldpr
  59. q = '''
  60. CONSTRUCT {{ ?s ?p ?o . }} WHERE {{
  61. {{
  62. ?s ?p ?o .
  63. FILTER (
  64. STRSTARTS(str(?s), "{0}")
  65. ||
  66. STRSTARTS(str(?o), "{0}")
  67. ||
  68. STRSTARTS(str(?s), "{1}")
  69. ||
  70. STRSTARTS(str(?o), "{1}")
  71. ) .
  72. }}
  73. }}'''.format(nsc['fcres'], BaseRdfLayout.ROOT_NODE_URN)
  74. flt_g = g.query(q)
  75. for t in flt_g:
  76. global_s = Translator.globalize_term(t[0])
  77. global_o = Translator.globalize_term(t[2]) \
  78. if isinstance(t[2], URIRef) \
  79. else t[2]
  80. g.remove(t)
  81. g.add((global_s, t[1], global_o))
  82. return g
  83. @staticmethod
  84. def globalize_rsrc(rsrc):
  85. '''
  86. Globalize a resource.
  87. '''
  88. g = rsrc.graph
  89. urn = rsrc.identifier
  90. global_g = Translator.globalize_graph(g)
  91. global_uri = Translator.globalize_term(urn)
  92. return global_g.resource(global_uri)