namespaces.py 1.6 KB

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