namespaces.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. 'fcg' : Namespace('info:fcgraph:'),
  21. 'fcres' : Namespace('info:fcres:'),
  22. 'fcsystem' : Namespace('info:fcsystem:'),
  23. 'webac' : Namespace('http://www.w3.org/ns/auth/acl#'),
  24. 'xml' : Namespace('http://www.w3.org/XML/1998/namespace'),
  25. 'xsd' : rdflib.namespace.XSD,
  26. 'xsi' : Namespace('http://www.w3.org/2001/XMLSchema-instance'),
  27. }
  28. ns_collection = core_namespaces.copy()
  29. ns_collection.update(config['namespaces'])
  30. ns_mgr = NamespaceManager(Graph())
  31. ns_pfx_sparql = dict()
  32. # Collection of prefixes in a dict.
  33. for ns,uri in ns_collection.items():
  34. ns_mgr.bind(ns, uri, override=False)