Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

External audit events can be added to an LDP Container as a repository resource.  For each object, create an LDP Container that manages the audit event relationship automatically (Where ../foo/audit is configured with param -Dfcrepo.audit.container=/foo/audit)  When using Internal Audit Events, the audit container will be created automatically.  Otherwise, a container for audit events can be created in the usual way:

Code Block
languagebash
curl -X PUT --data-binary @audit_container.ttlPOST -H "Content-typeSlug: text/turtleaudit" http://localhost:8080/fcrepo4/rest/foo/audit 
Code Block
languagexml
titleaudit_container.ttl
@prefix ldp:    <http://www.w3.org/ns/ldp#> .
@prefix premis: <http://www.loc.gov/premis/rdf/v1#>

<> a ldp:DirectContainer;
   ldp:membershipResource <http://localhost:8080/fcrepo4/rest/foo>;
   ldp:hasMemberRelation premis:hasEvent .

 

For Then, for each event, post the RDF for the event to the audit container:

Code Block
languagebash
curl -X POST --data-binary @audit_event.ttl -H "Content-type: text/turtle" http://localhost:8080/fcrepo4/rest/fooaudit/audit 
 
Code Block
languagexml
titleaudit_event.ttl
@prefix audit:  <http://fedora.info/definitions/v4/audit#> .
@prefix premis: <http://www.loc.gov/premis/rdf/v1#> .
@prefix prov:   <http://www.w3.org/ns/prov#> .
@prefix xsd:    <http://www.w3.org/2001/XMLSchema#> .

<> a prov:InstantaneousEvent, premis:Event, audit:ExternalEvent ;
   premis:hasEventRelatedAgent "jquser"^^xsd:string,
                               "ImageMagick 6.8.8-9"^^xsd:string,
                               "thumbnail-generator.example.edu"^^xsd:string ;
   premis:hasEventType audit:derivativeCreation ;
   premis:hasEventRelatedObject <http://localhost:8080/rest/foo> ;
   premis:hasEventDateTime "2012-04-30T20:40:40"^^xsd:dateTime .

...