Skip to content
Snippets Groups Projects
Commit 7653f09b authored by Laurent's avatar Laurent
Browse files

dev #13442 test fix

parent 83beea60
Branches
Tags
3 merge requests!1797Master,!1740Dev#13442 oai cite de la musique,!1731Dev#13442 oai cite de la musique
......@@ -101,9 +101,6 @@ class Class_WebService_OAI_DublinCoreParser_ForRessourceNumerique extends Class_
if ($relation = $this->_record['relation'])
$resource->setExternalUri($relation[0]);
if ($poster = $this->_record['poster'])
$resource->addPoster($poster);
parent::endRecord($data);
return parent::endRecord($data);
}
}
......@@ -53,14 +53,21 @@ class Class_WebService_OAI_ErmesParser extends Class_WebService_OAI_DublinCorePa
public function endRecord($data) {
$this->_record = $this->_ermesToAlbum();
parent::endRecord($data);
if ($poster_url = $this->_firstValueFromErmes('ThumbMedium'))
$this
->getRessourceNumerique()
->addPoster('http://media.citedelamusique.fr' . $poster_url);
return parent::endRecord($data);
}
protected function _ermesToAlbum() {
$this->_ermes->updateAttributes($this->_attribs);
$poster_url = $this->_firstValueFromErmes('ThumbMedium');
return ['id_oai' => $this->_firstValueFromErmes('Identifier'),
'titre' => $this->_firstValueFromErmes('Title_exact'),
......@@ -70,8 +77,7 @@ class Class_WebService_OAI_ErmesParser extends Class_WebService_OAI_DublinCorePa
'matiere' => $this->_fromErmes('SubjectTopic_exact', []),
'relation' => $this->_fromErmes('PrimaryDoc', []),
'description' => $this->_fromErmes('FullRefToDisplay', []),
'language' => [],
'poster' => ($poster_url ? 'http://media.citedelamusique.fr' . $poster_url : '')
'language' => []
];
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment