DoiController.php: also update zpdate() method for setting correct alternateIdentifier
This commit is contained in:
parent
2e1cca030b
commit
4fc8661a00
|
@ -217,6 +217,7 @@ class DoiController extends Controller
|
||||||
$cache = ($dataset->xmlCache) ? $dataset->xmlCache : new \App\Models\XmlCache();
|
$cache = ($dataset->xmlCache) ? $dataset->xmlCache : new \App\Models\XmlCache();
|
||||||
$xmlModel->setXmlCache($cache);
|
$xmlModel->setXmlCache($cache);
|
||||||
$domNode = $xmlModel->getDomDocument()->getElementsByTagName('Rdr_Dataset')->item(0);
|
$domNode = $xmlModel->getDomDocument()->getElementsByTagName('Rdr_Dataset')->item(0);
|
||||||
|
$this->addAlternateLandingPageAttribute($domNode, $dataset->publish_id);
|
||||||
$node = $this->xml->importNode($domNode, true);
|
$node = $this->xml->importNode($domNode, true);
|
||||||
$this->addSpecInformation($node, 'data-type:' . $dataset->type);
|
$this->addSpecInformation($node, 'data-type:' . $dataset->type);
|
||||||
|
|
||||||
|
@ -261,6 +262,24 @@ class DoiController extends Controller
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add the landingpage attribute to Rdr_Dataset XML output.
|
||||||
|
*
|
||||||
|
* @param \DOMNode $document Rdr_Dataset XML serialisation
|
||||||
|
* @param string $docid Id of the dataset
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
private function addAlternateLandingPageAttribute(\DOMNode $document, $dataid)
|
||||||
|
{
|
||||||
|
$base_domain = config('tethys.base_domain');
|
||||||
|
$url ='https://' . get_domain($base_domain) . "/dataset/" . $dataid;
|
||||||
|
|
||||||
|
$owner = $document->ownerDocument;
|
||||||
|
$attr = $owner->createAttribute('landingpage');
|
||||||
|
$attr->appendChild($owner->createTextNode($url));
|
||||||
|
$document->appendChild($attr);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Remove the specified resource from storage.
|
* Remove the specified resource from storage.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue
Block a user