Difference between revisions of "API:EPrints/DataObj"
(New page: <!-- Pod2Wiki=_preamble_ This page has been automatically generated from the EPrints source. Any wiki changes made between the 'Pod2Wiki=*' and 'End of Pod2Wiki' comments will be lost. -...) |
|||
(50 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
<!-- Pod2Wiki=_preamble_ | <!-- Pod2Wiki=_preamble_ | ||
− | This page has been automatically generated from the EPrints source. Any wiki changes made between the 'Pod2Wiki=*' and ' | + | This page has been automatically generated from the EPrints 3.4 source. Any wiki changes made between the 'Pod2Wiki=*' and 'Edit below this comment' comments will be lost. |
− | -->[[Category:API]]<!-- | + | -->{{API}}{{Pod2Wiki}}{{API:Source|file=EPrints/DataObj.pm|package_name=EPrints::DataObj}}[[Category:API|DATAOBJ]][[Category:API:EPrints/DataObj|DATAOBJ]]<div><!-- Edit below this comment --> |
− | <!-- Pod2Wiki=head_name -->=NAME= | + | |
+ | |||
+ | <!-- Pod2Wiki=_private_ --><!-- Pod2Wiki=head_name --> | ||
+ | ==NAME== | ||
'''EPrints::DataObj''' - Base class for records in EPrints. | '''EPrints::DataObj''' - Base class for records in EPrints. | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | $ | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_description --> | ||
+ | ==DESCRIPTION== | ||
+ | This is a base class that is inherited by [[API:EPrints/DataObj/EPrint|EPrints::DataObj::EPrint]], [[API:EPrints/DataObj/User|EPrints::DataObj::User]], [[API:EPrints/DataObj/Subject|EPrints::DataObj::Subject]] and [[API:EPrints/DataObj/Document|EPrints::DataObj::Document]] and various other classes representing data objects. | ||
+ | |||
+ | This class is abstract and its methods should not be called directly. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_synopsis --> | ||
+ | ===Synopsis=== | ||
+ | $dataobj = $dataset->dataobj( $id ); | ||
+ | $dataobj->delete; | ||
+ | $dataobj->commit( $force ); | ||
+ | $dataset = $dataobj->dataset; | ||
+ | $repo = $dataobj->repository; | ||
+ | $id = $dataobj->id; | ||
+ | $dataobj->set_value( $fieldname, $value ); | ||
+ | $value = $dataobj->value( $fieldname ); | ||
+ | \@value = $dataobj->value( $fieldname ); # multiple | ||
+ | $boolean = $dataobj->is_set( $fieldname ); | ||
+ | $xhtml = $dataobj->render_value( $fieldname ); | ||
+ | $xhtml = $dataobj->render_citation( $style, %opts ); | ||
+ | $uri = $dataobj->uri; | ||
+ | $string = $dataobj->export( $plugin_id, %opts ); | ||
+ | $dataobj = $dataobj->create_subobject( $fieldname, $epdata ); | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_core_metadata_fields --> | ||
+ | ==CORE METADATA FIELDS== | ||
+ | None. This is an abstract class from which real data objects inherit and then add their metadata fields. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_references_and_related_objects --> | ||
+ | ==REFERENCES AND RELATED OBJECTS== | ||
+ | None. This is an abstract class from which real data objects inherit and then add their references and related objects. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_instance_variables --> | ||
+ | ==INSTANCE VARIABLES== | ||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_$self->{changed} --> | ||
+ | ===$self->{changed}=== | ||
+ | |||
+ | A reference to a hash containing the old values of metadata that has changed since his the data object was last committed. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_$self->{data} --> | ||
+ | ===$self->{data}=== | ||
+ | |||
+ | A reference to a hash containing the metadata of this record. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_$self->{dataset} --> | ||
+ | ===$self->{dataset}=== | ||
+ | |||
+ | The [[API:EPrints/DataSet|EPrints::DataSet]] to which this record belongs. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_$self->{non_volatile_change} --> | ||
+ | ===$self->{non_volatile_change}=== | ||
+ | |||
+ | A boolean signifying whether the current changes include at least one change to a non-volatile field. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_$self->{session} --> | ||
+ | ===$self->{session}=== | ||
+ | |||
+ | The current [[API:EPrints/Repository|EPrints::Repository]]. This use to be [[API:EPrints/Session|EPrints::Session]] but was replaced in later versions. See [[API:EPrints/BackCompatibility|EPrints::BackCompatibility]]. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=item_$self->{under_construction} --> | ||
+ | ===$self->{under_construction}=== | ||
+ | A boolean signifying if the data object is currently under construction and therefore know house-keeping should be carried out on the data object whilst set. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_methods --> | ||
+ | ==METHODS== | ||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_constructor_methods --> | ||
+ | ===Constructor Methods=== | ||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_new --> | ||
+ | ====new==== | ||
+ | |||
+ | $dataobj = EPrints::DataObj->new( $session, $id, [ $dataset ] ) | ||
Return new data object, created by loading it from the database. | Return new data object, created by loading it from the database. | ||
− | |||
− | |||
− | |||
− | + | If <tt>$dataset</tt> is not defined uses the default dataset for this object. | |
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_new_from_data --> | ||
+ | ====new_from_data==== | ||
+ | |||
+ | $dataobj = EPrints::DataObj->new_from_data( $session, $data, [ $dataset ] ) | ||
+ | Construct and and returns a new data object based on the <tt>$data</tt> hash reference of metadata. | ||
+ | |||
+ | This is usually called by [[API:EPrints/DataObj#create_from_data|create_from_data]] to ensure default values are set for those field values not initially included in <tt>$data</tt> before this method constructs the data object. | ||
+ | |||
+ | <tt>$dataset</tt> is determined from the class if not provided. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_create --> | ||
+ | ====create==== | ||
+ | |||
+ | $dataobj = EPrints::DataObj::create( $session, @default_data ) | ||
+ | ABSTRACT | ||
+ | |||
+ | Create a new object of this type in the database. | ||
+ | |||
+ | The syntax for <tt>@default_data</tt> depends on the type of data object. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_create_from_data --> | ||
+ | ====create_from_data==== | ||
+ | |||
+ | $dataobj = EPrints::DataObj->create_from_data( $session, $data, [ $dataset ] ) | ||
+ | Creates and returns a new data object of this type in the database. | ||
+ | |||
+ | <tt>$data</tt> is a structured hash reference with multiple dimensions to encompass compound, multiple and sub-object field values. | ||
+ | |||
+ | <tt>$dataset</tt> is the dataset to which the new data object will belong. If this is not defined, it is determined from the class. | ||
+ | |||
+ | This will pull in defaults for unset field values in <tt>$data</tt> before calling [[API:EPrints/DataObj#new_from_data|new_from_data]]. It will also create any sub-objects as well as the main object. | ||
+ | |||
+ | Call this via: | ||
+ | |||
+ | $dataset->create_object( $session, $data ) | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_class_methods --> | ||
+ | ===Class Methods=== | ||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_system_field_info --> | ||
+ | ====get_system_field_info==== | ||
+ | |||
+ | $sys_fields = EPrints::DataObj->get_system_field_info | ||
+ | Return an array describing the system metadata of the this dataset. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_defaults --> | ||
+ | ====get_defaults==== | ||
+ | |||
+ | $defaults = EPrints::DataObj->get_defaults( $session, $data, [ $dataset ] ) | ||
+ | Return default values for this object based on the starting <tt>$data</tt>. Uses the data object class to determine dataset if <tt>$dataset</tt> not set. | ||
+ | |||
+ | Should be subclassed. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_dataset_id --> | ||
+ | ====get_dataset_id==== | ||
+ | |||
+ | $dataset = EPrints::DataObj->get_dataset_id | ||
+ | Returns the ID of the [[API:EPrints/DataSet|EPrints::DataSet]] object to which this record belongs. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_xml_to_epdata --> | ||
+ | ====xml_to_epdata==== | ||
+ | |||
+ | $epdata = EPrints::DataObj->xml_to_epdata( $session, $xml, %opts ) | ||
+ | Populates <tt>$epdata</tt> based on <tt>$xml</tt> using options in <tt>%opts</tt>. This is the inverse of [[API:EPrints/DataObj#to_xml|to_xml]] but doesn't create a new object. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_export_fieldlist --> | ||
+ | ====export_fieldlist==== | ||
+ | |||
+ | EPrints::DataObj->export_fieldlist | ||
+ | Returns fields to be exported by plugins that do not have pre-defined fields to export, (e.g. {{API:PodLink|file=Export/XML|package_name=Export::XML|section=|text=Export::XML}}). | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_in_export_fieldlist --> | ||
+ | ====in_export_fieldlist==== | ||
+ | |||
+ | EPrints::DataObj->in_export_fieldlist | ||
+ | Returns whether a field is in the export fieldlist for a particular data object. Returns <tt>true</tt> if there is no fieldlist restriction. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_start_element --> | ||
+ | ====start_element==== | ||
+ | |||
+ | EPrints::DataObj->start_element( $data, $epdata, $state ) | ||
+ | Consumes a SAX event. | ||
+ | |||
+ | <tt>$data</tt> is the SAX node data. | ||
+ | |||
+ | <tt>$epdata</tt> is an EPrints data structure to write values to. | ||
+ | |||
+ | <tt>$state</tt> maintains state between SAX calls but must contain at least: | ||
+ | |||
+ | dataset - the dataset the class belongs to | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_end_element --> | ||
+ | ====end_element==== | ||
+ | |||
+ | EPrints::DataObj->end_element( $data, $epdata, $state ) | ||
+ | Ends element from [[API:EPrints/DataObj#start_element|start_element]]. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_characters --> | ||
+ | ====characters==== | ||
+ | |||
+ | EPrints::DataObj->characters( $data, $epdata, $state ) | ||
+ | Consumes characters within [[API:EPrints/DataObj#start_element|start_element]]. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=head_object_methods --> | ||
+ | ===Object Methods=== | ||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_clone --> | ||
+ | ====clone==== | ||
+ | |||
+ | $clone = $dataobj->clone | ||
+ | Clone the current data object, by creating a new data object of the same type and metadata but a new ID. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
− | + | <!-- Pod2Wiki= --> | |
− | + | </div> | |
− | <!-- | + | <!-- Pod2Wiki=item_create_subdataobj --> |
− | <!-- Pod2Wiki= | + | ====create_subdataobj==== |
− | + | $subdataobj = $dataobj->create_subdataobj( $fieldname, $epdata ) | |
+ | Creates and returns a new data object that is a sub-object of this object in field <tt>$fieldname</tt> with initial data <tt>$epdata</tt>. | ||
+ | |||
+ | Clears the sub-object cache for this <tt>$fieldname</tt> which is equivalent to: | ||
+ | |||
+ | $dataobj->set_value( $fieldname, undef ); | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_local_path --> | ||
+ | ====local_path==== | ||
+ | |||
+ | $local_path = $dataobj->local_path | ||
+ | Return local_path string for the history of the data object. | ||
− | |||
Should be subclassed. | Should be subclassed. | ||
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_update_triggers --> | ||
+ | ====update_triggers==== | ||
+ | |||
+ | $dataobj->update_triggers | ||
+ | Update all the stuff that needs to be updated before the data object is written to the database. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_delete --> | ||
+ | ====delete==== | ||
+ | |||
+ | $success = $dataobj->delete | ||
+ | Delete this data object from the database and any sub-objects or related files. | ||
+ | |||
+ | Alias for: | ||
+ | |||
+ | $dataobj->remove | ||
+ | |||
+ | Return <tt>true</tt> if successful. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_empty --> | ||
+ | ====empty==== | ||
+ | |||
+ | $dataobj->empty | ||
+ | Remove all of this object's values that may be imported. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_update --> | ||
+ | ====update==== | ||
− | + | $dataobj->update( $epdata [, %opts ] ) | |
− | + | Update this object's values from $epdata. Ignores any values that do not exist in the dataset or do not have the 'import' property set. | |
− | |||
− | |||
− | $dataobj-> | + | include_subdataobjs - replace sub-dataobjs if given |
+ | |||
+ | # replaces all documents in $dataobj | ||
+ | $dataobj->update( { | ||
+ | title => "Wombats on Fire", | ||
+ | documents => [{ | ||
+ | main => "wombat.pdf", | ||
+ | ... | ||
+ | }], | ||
+ | }, include_subdataobjs => 1 ); | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=item_set_under_construction --> | ||
+ | ====set_under_construction==== | ||
+ | $dataobj->set_under_construction( $boolean ) | ||
+ | Set a flag to indicate this object is being constructed and any house keeping will be handled by the method constructing it so don't do it elsewhere. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_under_construction --> | ||
+ | ====under_construction==== | ||
+ | |||
+ | $boolean = $dataobj->under_construction | ||
+ | Returns c<true> if this object is part way through being constructed. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_clear_changed --> | ||
+ | ====clear_changed==== | ||
+ | |||
+ | $dataobj->clear_changed | ||
+ | Clear any changed fields, which will result in them not being committed unless force is used. | ||
+ | |||
+ | This method is used by the [[API:EPrints/Database|EPrints::Database]] to avoid unnecessary commits. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_clear_citationcaches --> | ||
+ | ====clear_citationcaches==== | ||
+ | |||
+ | $dataobj->clear_citationcaches | ||
+ | Clear any [[API:EPrints/DataObj/CitationCache|EPrints::DataObj::CitationCache]] objects associated with the data object. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_commit --> | ||
+ | ====commit==== | ||
+ | |||
+ | $success = $dataobj->commit( [ $force ] ) | ||
Write this object to the database and reset the changed fields. | Write this object to the database and reset the changed fields. | ||
− | |||
− | |||
− | |||
− | |||
− | $value = $dataobj-> | + | If <tt>$force</tt> isn't true then it only actually modifies the database if one or more fields have been changed. |
+ | |||
+ | Commit may also queue indexer jobs or log changes, depending on the object. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_value --> | ||
+ | ====value==== | ||
+ | |||
+ | $value = $dataobj->value( $fieldname ) | ||
+ | Get a the value of a metadata field with <tt>$fieldname</tt>. If the field is not set then it returns undef unless the field has the property multiple set, in which case it returns [] (a reference to an empty a rray). | ||
+ | |||
+ | Alias for: | ||
+ | |||
+ | $dataobj->get_value( $fieldname ) | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_set_value --> | ||
+ | ====set_value==== | ||
+ | |||
+ | $dataobj->set_value( $fieldname, $value ) | ||
+ | Set the <tt>$value</tt> of the named metadata field <tt>$fieldname</tt> for this data object. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_set_value_raw --> | ||
+ | ====set_value_raw==== | ||
+ | |||
+ | $dataobj->set_value_raw( $fieldname, $value ) | ||
+ | Set the <tt>$value</tt> of the named metadata field <tt>$fieldname</tt> for this data object by directly modifying its <tt>data</tt> hash reference. Use with care! | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_values --> | ||
+ | ====get_values==== | ||
+ | |||
+ | @values = $dataobj->get_values( $fieldnames ) | ||
+ | Returns a list of all the values in this record of all the $fields specified by <tt>$fieldnames</tt>. These should be in the format used by browse views, using <tt>/</tt> to seperate individual field names with an optional <tt>.id</tt> suffix to indicate the ID part rather than the main part. | ||
+ | |||
+ | E.g. <tt>author.id/editor.id</tt> would return a list of all author and editor IDs from this record. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_repository --> | ||
+ | ====repository==== | ||
+ | |||
+ | $session = $dataobj->repository | ||
+ | Returns the [[API:EPrints/Repository|EPrints::Repository]] object to which this record belongs. | ||
+ | |||
+ | Alias for: | ||
+ | |||
+ | $dataobj->get_session | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_data --> | ||
+ | ====get_data==== | ||
− | + | $data = $dataobj->get_data | |
− | + | Returns a reference to the hash of all the metadata for this record keyed by fieldname. | |
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_dataset --> | ||
+ | ====get_dataset==== | ||
− | + | $dataset = $dataobj->get_dataset | |
− | + | Returns the [[API:EPrints/DataSet|EPrints::DataSet]] object to which this record belongs. | |
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=item_is_set --> | ||
+ | ====is_set==== | ||
− | Returns | + | $boolean = $dataobj->is_set( $fieldname ) |
− | < | + | Returns <tt>true</tt> if the field with <tt>$fieldname</tt> is set in this record, otherwise <tt>false</tt>. |
− | < | ||
− | + | Warns if the field with <tt>$fieldname</tt> does not exist. | |
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
− | < | + | <span style='display:none'>User Comments</span> |
− | <!-- | + | <!-- Edit below this comment --> |
− | |||
− | + | <!-- Pod2Wiki= --> | |
− | <!-- | + | </div> |
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=item_exists_and_set --> |
+ | ====exists_and_set==== | ||
− | + | $boolean = $dataobj->exists_and_set( $fieldname ) | |
+ | Returns <tt>true</tt> if the field with <tt>$fieldname</tt> is set in this record, otherwise <tt>false</tt>. | ||
− | + | If the field does not exist, just return <tt>false</tt>. | |
− | |||
− | < | ||
− | < | ||
− | + | This method is useful for plugins which may operate on multiple repositories, when field not existing is not an issue for a particular repository. | |
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
− | + | <span style='display:none'>User Comments</span> | |
− | + | <!-- Edit below this comment --> | |
− | < | ||
− | <!-- | ||
− | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_id --> | ||
+ | ====id==== | ||
+ | |||
+ | $id = $dataobj->id | ||
Returns the value of the primary key of this record. | Returns the value of the primary key of this record. | ||
− | |||
− | |||
− | $ | + | Alias for: |
+ | |||
+ | $dataobj->get_id | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_gid --> | ||
+ | ====get_gid==== | ||
+ | |||
+ | $gid = $dataobj->get_gid | ||
+ | DEPRECATED (see [[API:EPrints/DataObj#uri|uri]]) | ||
− | + | Returns the globally referential fully-qualified identifier for this data object or <tt>undef</tt> if this object can not be externally referenced. | |
− | Returns the globally referential fully-qualified identifier for this object | ||
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_datestamp --> | ||
+ | ====get_datestamp==== | ||
+ | |||
+ | $datestamp = $dataobj->get_datestamp | ||
Returns the datestamp of this object in "YYYY-MM-DD hh:mm:ss" format. | Returns the datestamp of this object in "YYYY-MM-DD hh:mm:ss" format. | ||
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_render_value --> | ||
+ | ====render_value==== | ||
+ | |||
+ | $xhtml = $dataobj->render_value( $fieldname, [ $showall ] ) | ||
+ | Returns the rendered version of the value of the given <tt>$fieldname</tt> as appropriate for the current session. If <tt>$showall</tt> is <tt>true</tt> then all values are rendered - this is usually used for staff viewing data. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_render_citation --> | ||
+ | ====render_citation==== | ||
+ | |||
+ | $xhtml = $dataobj->render_citation( [ $style, %params ] ) | ||
+ | Renders the record as a citation. If $style is set then it uses that citation style from the citations config file. Otherwise <tt>$style</tt> defaults to the type of this record. If <tt>$params{url}</tt> is set then the citation will link to the specified URL. | ||
+ | |||
+ | If <tt>$style</tt> is unset then use <tt>default</tt>. | ||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
− | < | + | <span style='display:none'>User Comments</span> |
− | <!-- | + | <!-- Edit below this comment --> |
− | |||
− | + | <!-- Pod2Wiki= --> | |
− | <!-- | + | </div> |
− | <!-- Pod2Wiki=item_render_citation_link -->==render_citation_link== | + | <!-- Pod2Wiki=item_render_citation_link --> |
+ | ====render_citation_link==== | ||
− | + | $xhtml = $dataobj->render_citation_link( [ $style, %params ] ) | |
+ | Renders a citation as like [[API:EPrints/DataObj#render_citation|render_citation]] but as a link to the URL for this item. E.g. the abstract page of an eprint. | ||
− | + | <tt>$params{url}</tt> is set to data object's URL if not set. | |
− | < | ||
− | < | ||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=item_render_citation_link --> | ||
+ | ====render_citation_link==== | ||
− | + | $xhtml = $dataobj->render_citation_link( [ $style, %params ] ) | |
− | + | Renders a citation as like [[API:EPrints/DataObj#render_citation|render_citation]] but as a link to the control URL for this item. E.g. for items that are not yet in the live archive. | |
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=item_render_description --> | ||
+ | ====render_description==== | ||
− | + | $xhtml = $dataobj->render_description | |
− | + | Returns a short description of this object using the <tt>brief</tt> citation style for this dataset or the <tt>default</tt> citation style of the former does not exist. | |
− | < | ||
− | < | ||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_render --> | ||
+ | ====render==== | ||
+ | |||
+ | ( $xhtml, $title ) = $dataobj->render | ||
+ | Return a chunk of XHTML DOM describing this object in the normal way. This is the public view of the record, not the staff view. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_render_full --> | ||
+ | ====render_full==== | ||
+ | |||
+ | $xhtml = $dataobj->render_full | ||
+ | Return an XHTML table in DOM describing this record. All values of all fields are listed. This is the staff view. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_render_export_links --> | ||
+ | ====render_export_links==== | ||
+ | |||
+ | $xhtml_ul_list = $dataobj->render_export_links( [ $staff ] ) | ||
+ | Return a <tt><ul></tt> list containing links to all the formats this eprint is available in. | ||
+ | |||
+ | If <tt>$staff</tt> is <tt>true</tt> then show all formats available to staff and link to the staff export URL. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_render_export_bar --> | ||
+ | ====render_export_bar==== | ||
+ | |||
+ | $xhtml = $dataobj->render_export_bar( [ $staff ] ) | ||
+ | Returns a rendered drop-down list of exports. | ||
+ | |||
+ | If <tt>$staff</tt> is <tt>true</tt> then include both public and staff visible export options. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_uri --> | ||
+ | ====uri==== | ||
+ | |||
+ | $url = $dataobj->uri | ||
+ | Returns a unique URI for this object. Not certain to resolve as a URL. | ||
+ | |||
+ | If <tt>$c-</tt>{dataobj_uri}->{eprint}> is a function, call that to work it out. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_internal_uri --> | ||
+ | ====internal_uri==== | ||
+ | |||
+ | $uri = $dataobj->internal_uri | ||
Return an internal URI for this object (independent of repository hostname). | Return an internal URI for this object (independent of repository hostname). | ||
− | |||
− | |||
− | |||
− | + | To retrieve an object by internal URI use [[API:EPrints/DataSet|EPrints::DataSet]]::get_object_from_uri(). | |
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_path --> | ||
+ | ====path==== | ||
+ | |||
+ | $path = $dataobj->path | ||
+ | Returns the relative path to this object from the repository's base URL, if the object has a URL. | ||
+ | |||
+ | Does not include any leading slash. | ||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
− | < | + | <span style='display:none'>User Comments</span> |
− | <!-- | + | <!-- Edit below this comment --> |
− | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_url --> | ||
+ | ====url==== | ||
+ | |||
+ | $url = $dataobj->url | ||
+ | Returns the URL for this record, e.g.the URL of the abstract page of an eprint. | ||
+ | |||
+ | Alias for: | ||
+ | |||
+ | $dataobj->get_url | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_control_url --> | ||
+ | ====get_control_url==== | ||
+ | |||
+ | $url = $dataobj->get_control_url | ||
Returns the URL for the control page for this object. | Returns the URL for the control page for this object. | ||
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_type --> | ||
+ | ====get_type==== | ||
+ | |||
+ | $type = $dataobj->get_type | ||
+ | ABSTRACT. | ||
+ | |||
+ | Returns the type of this data object. This not the dataset it belongs to but the specific type within the dataset (e.g. c<user> could be <tt>editor</tt>, <tt>admin</tt>, etc.). | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_to_xml --> | ||
+ | ====to_xml==== | ||
+ | |||
+ | $xmlfragment = $dataobj->to_xml( %opts ) | ||
+ | Convert this object into an XML fragment using options <tt>%opts</tt>. | ||
+ | |||
+ | Options: | ||
+ | |||
+ | no_xmlns - Do not include a xmlns attribute in the outer element. | ||
+ | (This assumes this chunk appears in a larger tree where the xmlns is | ||
+ | already set correctly. | ||
+ | showempty - Fields with no value are shown. | ||
+ | embed - Include the data of a file, not just it's URL. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_to_sax --> | ||
+ | ====to_sax==== | ||
+ | |||
+ | $dataobj->to_sax( %opts ) | ||
+ | Stream this object to a SAX handler using the options in <tt>$opts</tt>. | ||
− | + | Options: | |
− | + | Handler - the SAX handler to build the output. | |
− | + | revision_generation - Generate XML for revision files rather than | |
+ | export. | ||
− | + | This does not output any document-level events. | |
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
− | + | <span style='display:none'>User Comments</span> | |
− | + | <!-- Edit below this comment --> | |
− | |||
− | |||
− | |||
− | < | ||
− | <!-- | ||
− | |||
− | + | <!-- Pod2Wiki= --> | |
− | <!-- | + | </div> |
− | <!-- Pod2Wiki=item_export -->==export== | + | <!-- Pod2Wiki=item_export --> |
+ | ====export==== | ||
− | + | $plugin_output = $dataobj->export( $plugin_id, %params ) | |
+ | Apply an export plugin with <tt>$plugin_id</tt> to this data object, using the parameters provided by <tt>%params</tt> and supplying them to the <tt>output_dataobj</tt> method of the [[API:EPrints/Plugin:Export|EPrints::Plugin:Export]] plugin. | ||
− | + | Return the output of the export plugin. | |
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_queue_changes --> | ||
+ | ====queue_changes==== | ||
+ | |||
+ | $dataobj->queue_changes | ||
Add all the changed fields into the indexers todo queue. | Add all the changed fields into the indexers todo queue. | ||
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_queue_all --> | ||
+ | ====queue_all==== | ||
+ | $dataobj->queue_all | ||
Add all the fields into the indexers todo queue. | Add all the fields into the indexers todo queue. | ||
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_queue_fulltext --> | ||
+ | ====queue_fulltext==== | ||
+ | |||
+ | $dataobj->queue_fulltext | ||
Add a fulltext index into the indexers todo queue. | Add a fulltext index into the indexers todo queue. | ||
− | |||
− | |||
− | $boolean = $dataobj-> | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_queue_removed --> | ||
+ | ====queue_removed==== | ||
+ | |||
+ | $dataobj->queue_removed | ||
+ | Add an index removed event to the indexer's queue. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_has_owner --> | ||
+ | ====has_owner==== | ||
+ | |||
+ | $boolean = $dataobj->has_owner( $user ) | ||
+ | Return <tt>true</tt> if <tt>$user</tt> owns this record. Normally this means they created it, but a group of users could count as owners of the same record if you wanted. | ||
+ | |||
+ | It's <tt>false</tt> on most data objects, except those which override this method. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_permit --> | ||
+ | ====permit==== | ||
+ | |||
+ | $rc = $dataobj->permit( $priv, [ $user ] ) | ||
+ | # current user can edit via editorial role | ||
+ | if( $dataobj->permit( "xxx/edit", $user ) & 8 ) | ||
+ | { | ||
+ | ... | ||
+ | } | ||
+ | # anyone can view this object | ||
+ | if( $dataobj->permit( "xxx/view" ) ) | ||
+ | { | ||
+ | } | ||
+ | |||
+ | Returns <tt>true</tt> if the specified <tt>$user</tt> (or 'anybody') can perform this action. | ||
+ | |||
+ | Returns a bit mask where: | ||
+ | |||
+ | 0 - not permitted | ||
+ | 1 - anybody | ||
+ | 2 - logged in user | ||
+ | 4 - user as owner | ||
+ | 8 - user as editor | ||
+ | |||
+ | See also [[API:EPrints/Repository#allow_anybody|EPrints::Repository/allow_anybody]] and [[API:EPrints/DataObj/User#allow|EPrints::DataObj::User/allow]]. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_in_editorial_scope_of --> | ||
+ | ====in_editorial_scope_of==== | ||
+ | |||
+ | $boolean = $dataobj->in_editorial_scope_of( $user ) | ||
+ | As for [[API:EPrints/DataObj#has_owner|has_owner]], but if the <tt>$user</tt> is identified as someone with an editorial scope which includes this record. | ||
+ | |||
+ | Defaults to <tt>true</tt>. Which doesn't mean that they have the right to edit it, just that their scope matches. You also need editor rights to use this. It's currently used just to filter eprint editors so that only ones with appropriate scope and privilege can edit. | ||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
− | + | <span style='display:none'>User Comments</span> | |
− | < | + | <!-- Edit below this comment --> |
− | <!-- | ||
− | |||
− | + | <!-- Pod2Wiki= --> | |
− | + | </div> | |
− | <!-- | + | <!-- Pod2Wiki=item_validate --> |
− | <!-- Pod2Wiki=item_validate -->==validate== | + | ====validate==== |
− | + | $problems = $dataobj->validate( $for_archive ) | |
+ | Validate this data object. Not used on all sub-classed. <tt>$for_archive</tt> being <tt>true</tt> indicates that the item is beting validated to go live. | ||
+ | |||
+ | Returns a reference to an array of XHTML DOM objects describing validation problems with the entire data object for the supplied <tt>$for_archive</tt> archive ID. | ||
− | |||
− | |||
A reference to an empty array indicates no problems. | A reference to an empty array indicates no problems. | ||
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_get_warnings --> | ||
+ | ====get_warnings==== | ||
+ | |||
+ | $warnings = $dataobj->get_warnings | ||
+ | Returns a reference to an array of XHTML DOM objects describing problems with the entire data object. | ||
− | |||
A reference to an empty array indicates no problems. | A reference to an empty array indicates no problems. | ||
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_validate_field --> | ||
+ | ====validate_field==== | ||
+ | |||
+ | @problems = $dataobj->validate_field( $fieldname ) | ||
+ | Check if a field named <tt>$fieldname</tt> is valid. | ||
+ | |||
+ | Returns a reference to an array of XHTML problems. | ||
+ | |||
+ | A reference to an empty array indicates no problems. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_tidy --> | ||
+ | ====tidy==== | ||
+ | |||
+ | $dataobj->tidy | ||
+ | Cleans up any multiple fields with gaps. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_add_stored_file --> | ||
+ | ====add_stored_file==== | ||
+ | |||
+ | $file = $dataobj->add_stored_file( $filename, $filehandle, $filesize ) | ||
+ | Convenience method to add (or replace) the file record for <tt>$filename</tt> to this object. Reads <tt>$filesize</tt> bytes from <tt>$filehandle</tt>. | ||
+ | |||
+ | Returns the file object or <tt>undef</tt> if the storage failed. | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_stored_file --> | ||
+ | ====stored_file==== | ||
+ | |||
+ | $file = $dataobj->stored_file( $filename ) | ||
+ | Get the file object for <tt>$filename</tt>. | ||
+ | |||
+ | Returns the file object or <tt>undef</tt> if the file doesn't exist. | ||
+ | |||
+ | Has alias: | ||
+ | |||
+ | $dataobj->get_stored_file( $filename ) | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_add_dataobj_relations --> | ||
+ | ====add_dataobj_relations==== | ||
+ | |||
+ | $dataobj->add_dataobj_relations( $target, %relations ) | ||
+ | Add a relation from this data object to the <tt>$target</tt> data object using predicates defined in the keys of the <tt>%relations</tt> hash. If values are defined in the hash reciprocal relationships from the <tt>$target</tt> data object to this data object are also. | ||
+ | |||
+ | You must commit <tt>$target</tt> data object after calling this method. | ||
+ | |||
+ | Has alias: | ||
+ | |||
+ | $dataobj->add_object_relations( $target, %relations ) | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_has_dataobj_relations --> | ||
+ | ====has_dataobj_relations==== | ||
+ | |||
+ | $boolean = $dataobj->has_dataobj_relations( $target, @required ) | ||
+ | Returns <tt>true</tt> if this object is related to <tt>$target</tt> by all <tt>@required</tt>. | ||
+ | |||
+ | If <tt>@required</tt> is empty will return <tt>true</tt> if any relationships exist. | ||
+ | |||
+ | Has alias: | ||
+ | |||
+ | $dataobj->has_object_relations( $target, @required ) | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_has_related_dataobjs --> | ||
+ | ====has_related_dataobjs==== | ||
+ | |||
+ | $boolean = $dataobj->has_related_dataobjs( @required ) | ||
+ | Returns <tt>true</tt> if [[API:EPrints/DataObj#related_dataobjs|related_dataobjs]] would return some objects but without actually retrieving the related objects from the database. | ||
+ | |||
+ | Has alias: | ||
+ | |||
+ | $dataobj->has_related_objects( @required ) | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
+ | |||
+ | |||
+ | <!-- Pod2Wiki= --> | ||
+ | </div> | ||
+ | <!-- Pod2Wiki=item_related_dataobjs --> | ||
+ | ====related_dataobjs==== | ||
+ | |||
+ | @dataobjs = $dataobj->related_dataobjs( @required ) | ||
+ | Returns a list of objects related to this data object by a relation in <tt>@required</tt>. | ||
+ | |||
+ | Has alias: | ||
+ | |||
+ | $dataobj->get_related_objects( @required ) | ||
+ | |||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=item_remove_dataobj_relations --> | ||
+ | ====remove_dataobj_relations==== | ||
− | + | $dataobj->remove_dataobj_relations( $target, %relations ) | |
− | + | Remove relations between this data object and the <tt>$target</tt> data object. If <tt>%relations</tt> is not empty only remove those relationships which are keys in this hash. | |
− | < | ||
− | < | ||
− | < | ||
− | < | ||
− | + | You must [[API:EPrints/DataObj#commit|commit]] this object and <tt>$target</tt> to write the changes. | |
− | + | Has alias: | |
− | + | $dataobj->remove_object_relations( $target, %relations ) | |
− | |||
− | |||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | |||
− | |||
− | |||
− | + | <!-- Pod2Wiki= --> | |
+ | </div> | ||
+ | <!-- Pod2Wiki=head_see_also --> | ||
+ | ==SEE ALSO== | ||
+ | [[API:EPrints/DataSet|EPrints::DataSet]] | ||
− | + | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | |
− | < | + | <span style='display:none'>User Comments</span> |
− | <!-- | + | <!-- Edit below this comment --> |
− | |||
− | + | <!-- Pod2Wiki= --> | |
− | <!-- | + | </div> |
− | <!-- Pod2Wiki= | + | <!-- Pod2Wiki=head_copyright --> |
+ | ==COPYRIGHT== | ||
+ | {{API:Copyright}} | ||
+ | <div style='background-color: #e8e8f; margin: 0.5em 0em 1em 0em; border: solid 1px #cce; padding: 0em 1em 0em 1em; font-size: 80%; '> | ||
+ | <span style='display:none'>User Comments</span> | ||
+ | <!-- Edit below this comment --> | ||
− | |||
− | + | <!-- Pod2Wiki= --> | |
− | + | </div> | |
− | <!-- | + | <!-- Pod2Wiki=_postamble_ --><!-- Edit below this comment --> |
− | <!-- Pod2Wiki=_postamble_ --><!-- |
Latest revision as of 16:41, 10 January 2022
EPrints 3 Reference: Directory Structure - Metadata Fields - Repository Configuration - XML Config Files - XML Export Format - EPrints data structure - Core API - Data Objects
Latest Source Code (3.4, 3.3) | Revision Log | Before editing this page please read Pod2Wiki
Contents
- 1 NAME
- 2 DESCRIPTION
- 3 CORE METADATA FIELDS
- 4 REFERENCES AND RELATED OBJECTS
- 5 INSTANCE VARIABLES
- 6 METHODS
- 6.1 Constructor Methods
- 6.2 Class Methods
- 6.3 Object Methods
- 6.3.1 clone
- 6.3.2 create_subdataobj
- 6.3.3 local_path
- 6.3.4 update_triggers
- 6.3.5 delete
- 6.3.6 empty
- 6.3.7 update
- 6.3.8 set_under_construction
- 6.3.9 under_construction
- 6.3.10 clear_changed
- 6.3.11 clear_citationcaches
- 6.3.12 commit
- 6.3.13 value
- 6.3.14 set_value
- 6.3.15 set_value_raw
- 6.3.16 get_values
- 6.3.17 repository
- 6.3.18 get_data
- 6.3.19 get_dataset
- 6.3.20 is_set
- 6.3.21 exists_and_set
- 6.3.22 id
- 6.3.23 get_gid
- 6.3.24 get_datestamp
- 6.3.25 render_value
- 6.3.26 render_citation
- 6.3.27 render_citation_link
- 6.3.28 render_citation_link
- 6.3.29 render_description
- 6.3.30 render
- 6.3.31 render_full
- 6.3.32 render_export_links
- 6.3.33 render_export_bar
- 6.3.34 uri
- 6.3.35 internal_uri
- 6.3.36 path
- 6.3.37 url
- 6.3.38 get_control_url
- 6.3.39 get_type
- 6.3.40 to_xml
- 6.3.41 to_sax
- 6.3.42 export
- 6.3.43 queue_changes
- 6.3.44 queue_all
- 6.3.45 queue_fulltext
- 6.3.46 queue_removed
- 6.3.47 has_owner
- 6.3.48 permit
- 6.3.49 in_editorial_scope_of
- 6.3.50 validate
- 6.3.51 get_warnings
- 6.3.52 validate_field
- 6.3.53 tidy
- 6.3.54 add_stored_file
- 6.3.55 stored_file
- 6.3.56 add_dataobj_relations
- 6.3.57 has_dataobj_relations
- 6.3.58 has_related_dataobjs
- 6.3.59 related_dataobjs
- 6.3.60 remove_dataobj_relations
- 7 SEE ALSO
- 8 COPYRIGHT
NAME
EPrints::DataObj - Base class for records in EPrints.
DESCRIPTION
This is a base class that is inherited by EPrints::DataObj::EPrint, EPrints::DataObj::User, EPrints::DataObj::Subject and EPrints::DataObj::Document and various other classes representing data objects.
This class is abstract and its methods should not be called directly.
Synopsis
$dataobj = $dataset->dataobj( $id ); $dataobj->delete; $dataobj->commit( $force ); $dataset = $dataobj->dataset; $repo = $dataobj->repository; $id = $dataobj->id; $dataobj->set_value( $fieldname, $value ); $value = $dataobj->value( $fieldname ); \@value = $dataobj->value( $fieldname ); # multiple $boolean = $dataobj->is_set( $fieldname ); $xhtml = $dataobj->render_value( $fieldname ); $xhtml = $dataobj->render_citation( $style, %opts ); $uri = $dataobj->uri; $string = $dataobj->export( $plugin_id, %opts ); $dataobj = $dataobj->create_subobject( $fieldname, $epdata );
CORE METADATA FIELDS
None. This is an abstract class from which real data objects inherit and then add their metadata fields.
REFERENCES AND RELATED OBJECTS
None. This is an abstract class from which real data objects inherit and then add their references and related objects.
INSTANCE VARIABLES
$self->{changed}
A reference to a hash containing the old values of metadata that has changed since his the data object was last committed.
$self->{data}
A reference to a hash containing the metadata of this record.
$self->{dataset}
The EPrints::DataSet to which this record belongs.
$self->{non_volatile_change}
A boolean signifying whether the current changes include at least one change to a non-volatile field.
$self->{session}
The current EPrints::Repository. This use to be EPrints::Session but was replaced in later versions. See EPrints::BackCompatibility.
$self->{under_construction}
A boolean signifying if the data object is currently under construction and therefore know house-keeping should be carried out on the data object whilst set.
METHODS
Constructor Methods
new
$dataobj = EPrints::DataObj->new( $session, $id, [ $dataset ] )
Return new data object, created by loading it from the database.
If $dataset is not defined uses the default dataset for this object.
new_from_data
$dataobj = EPrints::DataObj->new_from_data( $session, $data, [ $dataset ] )
Construct and and returns a new data object based on the $data hash reference of metadata.
This is usually called by create_from_data to ensure default values are set for those field values not initially included in $data before this method constructs the data object.
$dataset is determined from the class if not provided.
create
$dataobj = EPrints::DataObj::create( $session, @default_data )
ABSTRACT
Create a new object of this type in the database.
The syntax for @default_data depends on the type of data object.
create_from_data
$dataobj = EPrints::DataObj->create_from_data( $session, $data, [ $dataset ] )
Creates and returns a new data object of this type in the database.
$data is a structured hash reference with multiple dimensions to encompass compound, multiple and sub-object field values.
$dataset is the dataset to which the new data object will belong. If this is not defined, it is determined from the class.
This will pull in defaults for unset field values in $data before calling new_from_data. It will also create any sub-objects as well as the main object.
Call this via:
$dataset->create_object( $session, $data )
Class Methods
get_system_field_info
$sys_fields = EPrints::DataObj->get_system_field_info
Return an array describing the system metadata of the this dataset.
get_defaults
$defaults = EPrints::DataObj->get_defaults( $session, $data, [ $dataset ] )
Return default values for this object based on the starting $data. Uses the data object class to determine dataset if $dataset not set.
Should be subclassed.
get_dataset_id
$dataset = EPrints::DataObj->get_dataset_id
Returns the ID of the EPrints::DataSet object to which this record belongs.
xml_to_epdata
$epdata = EPrints::DataObj->xml_to_epdata( $session, $xml, %opts )
Populates $epdata based on $xml using options in %opts. This is the inverse of to_xml but doesn't create a new object.
export_fieldlist
EPrints::DataObj->export_fieldlist
Returns fields to be exported by plugins that do not have pre-defined fields to export, (e.g. Export::XML).
in_export_fieldlist
EPrints::DataObj->in_export_fieldlist
Returns whether a field is in the export fieldlist for a particular data object. Returns true if there is no fieldlist restriction.
start_element
EPrints::DataObj->start_element( $data, $epdata, $state )
Consumes a SAX event.
$data is the SAX node data.
$epdata is an EPrints data structure to write values to.
$state maintains state between SAX calls but must contain at least:
dataset - the dataset the class belongs to
end_element
EPrints::DataObj->end_element( $data, $epdata, $state )
Ends element from start_element.
characters
EPrints::DataObj->characters( $data, $epdata, $state )
Consumes characters within start_element.
Object Methods
clone
$clone = $dataobj->clone
Clone the current data object, by creating a new data object of the same type and metadata but a new ID.
create_subdataobj
$subdataobj = $dataobj->create_subdataobj( $fieldname, $epdata )
Creates and returns a new data object that is a sub-object of this object in field $fieldname with initial data $epdata.
Clears the sub-object cache for this $fieldname which is equivalent to:
$dataobj->set_value( $fieldname, undef );
local_path
$local_path = $dataobj->local_path
Return local_path string for the history of the data object.
Should be subclassed.
update_triggers
$dataobj->update_triggers
Update all the stuff that needs to be updated before the data object is written to the database.
delete
$success = $dataobj->delete
Delete this data object from the database and any sub-objects or related files.
Alias for:
$dataobj->remove
Return true if successful.
empty
$dataobj->empty
Remove all of this object's values that may be imported.
update
$dataobj->update( $epdata [, %opts ] )
Update this object's values from $epdata. Ignores any values that do not exist in the dataset or do not have the 'import' property set.
include_subdataobjs - replace sub-dataobjs if given # replaces all documents in $dataobj $dataobj->update( { title => "Wombats on Fire", documents => [{ main => "wombat.pdf", ... }], }, include_subdataobjs => 1 );
set_under_construction
$dataobj->set_under_construction( $boolean )
Set a flag to indicate this object is being constructed and any house keeping will be handled by the method constructing it so don't do it elsewhere.
under_construction
$boolean = $dataobj->under_construction
Returns c<true> if this object is part way through being constructed.
clear_changed
$dataobj->clear_changed
Clear any changed fields, which will result in them not being committed unless force is used.
This method is used by the EPrints::Database to avoid unnecessary commits.
clear_citationcaches
$dataobj->clear_citationcaches
Clear any EPrints::DataObj::CitationCache objects associated with the data object.
commit
$success = $dataobj->commit( [ $force ] )
Write this object to the database and reset the changed fields.
If $force isn't true then it only actually modifies the database if one or more fields have been changed.
Commit may also queue indexer jobs or log changes, depending on the object.
value
$value = $dataobj->value( $fieldname )
Get a the value of a metadata field with $fieldname. If the field is not set then it returns undef unless the field has the property multiple set, in which case it returns [] (a reference to an empty a rray).
Alias for:
$dataobj->get_value( $fieldname )
set_value
$dataobj->set_value( $fieldname, $value )
Set the $value of the named metadata field $fieldname for this data object.
set_value_raw
$dataobj->set_value_raw( $fieldname, $value )
Set the $value of the named metadata field $fieldname for this data object by directly modifying its data hash reference. Use with care!
get_values
@values = $dataobj->get_values( $fieldnames )
Returns a list of all the values in this record of all the $fields specified by $fieldnames. These should be in the format used by browse views, using / to seperate individual field names with an optional .id suffix to indicate the ID part rather than the main part.
E.g. author.id/editor.id would return a list of all author and editor IDs from this record.
repository
$session = $dataobj->repository
Returns the EPrints::Repository object to which this record belongs.
Alias for:
$dataobj->get_session
get_data
$data = $dataobj->get_data
Returns a reference to the hash of all the metadata for this record keyed by fieldname.
get_dataset
$dataset = $dataobj->get_dataset
Returns the EPrints::DataSet object to which this record belongs.
is_set
$boolean = $dataobj->is_set( $fieldname )
Returns true if the field with $fieldname is set in this record, otherwise false.
Warns if the field with $fieldname does not exist.
exists_and_set
$boolean = $dataobj->exists_and_set( $fieldname )
Returns true if the field with $fieldname is set in this record, otherwise false.
If the field does not exist, just return false.
This method is useful for plugins which may operate on multiple repositories, when field not existing is not an issue for a particular repository.
id
$id = $dataobj->id
Returns the value of the primary key of this record.
Alias for:
$dataobj->get_id
get_gid
$gid = $dataobj->get_gid
DEPRECATED (see uri)
Returns the globally referential fully-qualified identifier for this data object or undef if this object can not be externally referenced.
get_datestamp
$datestamp = $dataobj->get_datestamp
Returns the datestamp of this object in "YYYY-MM-DD hh:mm:ss" format.
render_value
$xhtml = $dataobj->render_value( $fieldname, [ $showall ] )
Returns the rendered version of the value of the given $fieldname as appropriate for the current session. If $showall is true then all values are rendered - this is usually used for staff viewing data.
render_citation
$xhtml = $dataobj->render_citation( [ $style, %params ] )
Renders the record as a citation. If $style is set then it uses that citation style from the citations config file. Otherwise $style defaults to the type of this record. If $params{url} is set then the citation will link to the specified URL.
If $style is unset then use default.
render_citation_link
$xhtml = $dataobj->render_citation_link( [ $style, %params ] )
Renders a citation as like render_citation but as a link to the URL for this item. E.g. the abstract page of an eprint.
$params{url} is set to data object's URL if not set.
render_citation_link
$xhtml = $dataobj->render_citation_link( [ $style, %params ] )
Renders a citation as like render_citation but as a link to the control URL for this item. E.g. for items that are not yet in the live archive.
render_description
$xhtml = $dataobj->render_description
Returns a short description of this object using the brief citation style for this dataset or the default citation style of the former does not exist.
render
( $xhtml, $title ) = $dataobj->render
Return a chunk of XHTML DOM describing this object in the normal way. This is the public view of the record, not the staff view.
render_full
$xhtml = $dataobj->render_full
Return an XHTML table in DOM describing this record. All values of all fields are listed. This is the staff view.
render_export_links
$xhtml_ul_list = $dataobj->render_export_links( [ $staff ] )
Return a <ul> list containing links to all the formats this eprint is available in.
If $staff is true then show all formats available to staff and link to the staff export URL.
render_export_bar
$xhtml = $dataobj->render_export_bar( [ $staff ] )
Returns a rendered drop-down list of exports.
If $staff is true then include both public and staff visible export options.
uri
$url = $dataobj->uri
Returns a unique URI for this object. Not certain to resolve as a URL.
If $c-{dataobj_uri}->{eprint}> is a function, call that to work it out.
internal_uri
$uri = $dataobj->internal_uri
Return an internal URI for this object (independent of repository hostname).
To retrieve an object by internal URI use EPrints::DataSet::get_object_from_uri().
path
$path = $dataobj->path
Returns the relative path to this object from the repository's base URL, if the object has a URL.
Does not include any leading slash.
url
$url = $dataobj->url
Returns the URL for this record, e.g.the URL of the abstract page of an eprint.
Alias for:
$dataobj->get_url
get_control_url
$url = $dataobj->get_control_url
Returns the URL for the control page for this object.
get_type
$type = $dataobj->get_type
ABSTRACT.
Returns the type of this data object. This not the dataset it belongs to but the specific type within the dataset (e.g. c<user> could be editor, admin, etc.).
to_xml
$xmlfragment = $dataobj->to_xml( %opts )
Convert this object into an XML fragment using options %opts.
Options:
no_xmlns - Do not include a xmlns attribute in the outer element. (This assumes this chunk appears in a larger tree where the xmlns is already set correctly. showempty - Fields with no value are shown. embed - Include the data of a file, not just it's URL.
to_sax
$dataobj->to_sax( %opts )
Stream this object to a SAX handler using the options in $opts.
Options:
Handler - the SAX handler to build the output. revision_generation - Generate XML for revision files rather than export.
This does not output any document-level events.
export
$plugin_output = $dataobj->export( $plugin_id, %params )
Apply an export plugin with $plugin_id to this data object, using the parameters provided by %params and supplying them to the output_dataobj method of the EPrints::Plugin:Export plugin.
Return the output of the export plugin.
queue_changes
$dataobj->queue_changes
Add all the changed fields into the indexers todo queue.
queue_all
$dataobj->queue_all
Add all the fields into the indexers todo queue.
queue_fulltext
$dataobj->queue_fulltext
Add a fulltext index into the indexers todo queue.
queue_removed
$dataobj->queue_removed
Add an index removed event to the indexer's queue.
has_owner
$boolean = $dataobj->has_owner( $user )
Return true if $user owns this record. Normally this means they created it, but a group of users could count as owners of the same record if you wanted.
It's false on most data objects, except those which override this method.
permit
$rc = $dataobj->permit( $priv, [ $user ] ) # current user can edit via editorial role if( $dataobj->permit( "xxx/edit", $user ) & 8 ) { ... } # anyone can view this object if( $dataobj->permit( "xxx/view" ) ) { }
Returns true if the specified $user (or 'anybody') can perform this action.
Returns a bit mask where:
0 - not permitted 1 - anybody 2 - logged in user 4 - user as owner 8 - user as editor
See also EPrints::Repository/allow_anybody and EPrints::DataObj::User/allow.
in_editorial_scope_of
$boolean = $dataobj->in_editorial_scope_of( $user )
As for has_owner, but if the $user is identified as someone with an editorial scope which includes this record.
Defaults to true. Which doesn't mean that they have the right to edit it, just that their scope matches. You also need editor rights to use this. It's currently used just to filter eprint editors so that only ones with appropriate scope and privilege can edit.
validate
$problems = $dataobj->validate( $for_archive )
Validate this data object. Not used on all sub-classed. $for_archive being true indicates that the item is beting validated to go live.
Returns a reference to an array of XHTML DOM objects describing validation problems with the entire data object for the supplied $for_archive archive ID.
A reference to an empty array indicates no problems.
get_warnings
$warnings = $dataobj->get_warnings
Returns a reference to an array of XHTML DOM objects describing problems with the entire data object.
A reference to an empty array indicates no problems.
validate_field
@problems = $dataobj->validate_field( $fieldname )
Check if a field named $fieldname is valid.
Returns a reference to an array of XHTML problems.
A reference to an empty array indicates no problems.
tidy
$dataobj->tidy
Cleans up any multiple fields with gaps.
add_stored_file
$file = $dataobj->add_stored_file( $filename, $filehandle, $filesize )
Convenience method to add (or replace) the file record for $filename to this object. Reads $filesize bytes from $filehandle.
Returns the file object or undef if the storage failed.
stored_file
$file = $dataobj->stored_file( $filename )
Get the file object for $filename.
Returns the file object or undef if the file doesn't exist.
Has alias:
$dataobj->get_stored_file( $filename )
add_dataobj_relations
$dataobj->add_dataobj_relations( $target, %relations )
Add a relation from this data object to the $target data object using predicates defined in the keys of the %relations hash. If values are defined in the hash reciprocal relationships from the $target data object to this data object are also.
You must commit $target data object after calling this method.
Has alias:
$dataobj->add_object_relations( $target, %relations )
has_dataobj_relations
$boolean = $dataobj->has_dataobj_relations( $target, @required )
Returns true if this object is related to $target by all @required.
If @required is empty will return true if any relationships exist.
Has alias:
$dataobj->has_object_relations( $target, @required )
$boolean = $dataobj->has_related_dataobjs( @required )
Returns true if related_dataobjs would return some objects but without actually retrieving the related objects from the database.
Has alias:
$dataobj->has_related_objects( @required )
@dataobjs = $dataobj->related_dataobjs( @required )
Returns a list of objects related to this data object by a relation in @required.
Has alias:
$dataobj->get_related_objects( @required )
remove_dataobj_relations
$dataobj->remove_dataobj_relations( $target, %relations )
Remove relations between this data object and the $target data object. If %relations is not empty only remove those relationships which are keys in this hash.
You must commit this object and $target to write the changes.
Has alias:
$dataobj->remove_object_relations( $target, %relations )
SEE ALSO
COPYRIGHT
© Copyright 2000-2024 University of Southampton.
EPrints 3.4 is supplied by EPrints Services.
http://www.eprints.org/eprints-3.4/
LICENSE
This file is part of EPrints 3.4 http://www.eprints.org/.
EPrints 3.4 and this file are released under the terms of the GNU Lesser General Public License version 3 as published by the Free Software Foundation unless otherwise stated.
EPrints 3.4 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with EPrints 3.4. If not, see http://www.gnu.org/licenses/.