namespaces.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import rdflib
  2. from rdflib import Graph
  3. from rdflib.namespace import Namespace, NamespaceManager
  4. from lakesuperior.config_parser import config
  5. # Core namespace prefixes. These add to and override any user-defined prefixes.
  6. # @TODO Some of these have been copy-pasted from FCREPO4 and may be deprecated.
  7. core_namespaces = {
  8. 'dc' : rdflib.namespace.DC,
  9. 'dcterms' : rdflib.namespace.DCTERMS,
  10. 'ebucore' : Namespace(
  11. 'http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#'),
  12. 'fcrepo' : Namespace('http://fedora.info/definitions/v4/repository#'),
  13. 'fcrconfig' : Namespace('http://fedora.info/definitions/v4/config#'),
  14. 'iana' : Namespace('http://www.iana.org/assignments/relation/'),
  15. 'ldp' : Namespace('http://www.w3.org/ns/ldp#'),
  16. 'premis' : Namespace('http://www.loc.gov/premis/rdf/v1#'),
  17. 'rdf' : rdflib.namespace.RDF,
  18. 'rdfs' : rdflib.namespace.RDFS,
  19. # For info: vs. urn:, see https://tools.ietf.org/html/rfc4452#section-6.3
  20. 'fcres' : Namespace('info:fcres/'),
  21. 'fcmeta' : Namespace('info:fcmeta/'),
  22. 'fcstate' : Namespace('info:fcstate/'),
  23. 'fcstruct' : Namespace('info:fcstruct/'),
  24. 'fcsystem' : Namespace('info:fcsystem/'),
  25. 'webac' : Namespace('http://www.w3.org/ns/auth/acl#'),
  26. 'xml' : Namespace('http://www.w3.org/XML/1998/namespace'),
  27. 'xsd' : rdflib.namespace.XSD,
  28. 'xsi' : Namespace('http://www.w3.org/2001/XMLSchema-instance'),
  29. }
  30. ns_collection = core_namespaces.copy()
  31. ns_collection.update(config['namespaces'])
  32. ns_mgr = NamespaceManager(Graph())
  33. ns_pfx_sparql = {}
  34. # Collection of prefixes in a dict.
  35. for ns,uri in ns_collection.items():
  36. ns_mgr.bind(ns, uri, override=False)
  37. #ns_pfx_sparql[ns] = 'PREFIX {}: <{}>'.format(ns, uri)