Remove noda repository MBL, add list of full names to the vocabs for

improved frontend display

Close #33
This commit is contained in:
Joshua Ramon Enslin 2024-09-25 14:33:45 +02:00
parent dc1c72aeda
commit f19973d20e
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
2 changed files with 42 additions and 8 deletions

View File

@ -21,7 +21,6 @@ final class MDNodaRepositoriesSet extends MDValueSet {
'kl-bb', 'kl-bb',
'lcsh', 'lcsh',
'loc', 'loc',
'MBL',
'NDB/ADB', 'NDB/ADB',
'ndl', 'ndl',
'ndp-ikmk-persons', 'ndp-ikmk-persons',

View File

@ -24,7 +24,6 @@ enum MDNodaRepository implements MDValueEnumInterface, JsonSerializable {
case klbb; case klbb;
case lcsh; case lcsh;
case loc; // Duplicate? case loc; // Duplicate?
case mbl;
case mindatorg; case mindatorg;
case moebeltypologie; case moebeltypologie;
case ndb_adb; case ndb_adb;
@ -77,8 +76,6 @@ enum MDNodaRepository implements MDValueEnumInterface, JsonSerializable {
'kl-bb' => self::klbb, 'kl-bb' => self::klbb,
'lcsh' => self::lcsh, 'lcsh' => self::lcsh,
'loc' => self::loc, // Duplicate? 'loc' => self::loc, // Duplicate?
'mbl' => self::mbl,
'MBL' => self::mbl,
'mindat.org' => self::mindatorg, 'mindat.org' => self::mindatorg,
'moebeltypologie' => self::moebeltypologie, 'moebeltypologie' => self::moebeltypologie,
'ndb/adb' => self::ndb_adb, 'ndb/adb' => self::ndb_adb,
@ -151,7 +148,6 @@ enum MDNodaRepository implements MDValueEnumInterface, JsonSerializable {
self::klbb => 'kl-bb', self::klbb => 'kl-bb',
self::lcsh => 'lcsh', self::lcsh => 'lcsh',
self::loc => 'loc', self::loc => 'loc',
self::mbl => 'MBL',
self::mindatorg => 'mindat.org', self::mindatorg => 'mindat.org',
self::moebeltypologie => 'moebeltypologie', self::moebeltypologie => 'moebeltypologie',
self::ndb_adb => 'NDB/ADB', self::ndb_adb => 'NDB/ADB',
@ -173,6 +169,48 @@ enum MDNodaRepository implements MDValueEnumInterface, JsonSerializable {
} }
/**
* Returns the name as stored in the DB.
*
* @return string
*/
public function toFullName():string {
return match($this) {
self::allgemein => 'General', // General link to a good source
self::aat => 'Art & Architecture Thesaurus (AAT)',
self::ackerbau => 'Ackerbau-Thesaurus',
self::bne => 'Biblioteca Nacional de España (BNE)',
self::bnf => 'Bibliothèque nationale de France (BNF)',
self::cona => 'Cultural Objects Name Authority (CONA)',
self::editionhumboldtdigital => 'Edition Humboldt Digital',
self::gnd => 'GND (Gemeinsame Normdatei)',
self::grobsystematik => 'Grobsystematik',
self::iconclass => 'Iconclass',
self::klbb => 'Berlin-Brandenburgisches Künstlerlexikon',
self::lcsh => 'Library of Congress Subject Headings (LCSH)',
self::loc => 'Library of Congress (LOC)',
self::mindatorg => 'mindat.org',
self::moebeltypologie => 'Möbeltypologie',
self::ndb_adb => 'Neue / Allgemeine Deutsche Biographie',
self::ndl => 'National Diet Library, Japan (NDL)',
self::ndp_ikmk => 'IKMK (Places)',
self::ndp_ikmk_persons => 'IKMK (Persons)',
self::nomisma => 'Nomisma',
self::npg => 'National Portrait Gallery',
self::oberbegriffsdatei => 'Oberbegriffsdatei',
self::orcid => 'ORCID (Open Researcher and Contributor ID)',
self::osm => 'OpenStreetMap',
self::pim => 'Petőfi Irodalmi Múzeum',
self::pleiades => 'Pleiades',
self::rkd => 'RKDartists ID',
self::ulan => 'Union List of Artist Names',
self::viaf => 'VIAF (Virtual International Authority File)',
self::wikidata => 'Wikidata',
};
}
/** /**
* Returns the URL prefix for the current repository. * Returns the URL prefix for the current repository.
* *
@ -194,7 +232,6 @@ enum MDNodaRepository implements MDValueEnumInterface, JsonSerializable {
self::klbb => 'https://www.kl-bb.de/artist/', self::klbb => 'https://www.kl-bb.de/artist/',
self::lcsh => 'http://id.loc.gov/authorities/names/', self::lcsh => 'http://id.loc.gov/authorities/names/',
self::loc => 'http://id.loc.gov/authorities/names/', self::loc => 'http://id.loc.gov/authorities/names/',
self::mbl => 'http://www.uni-magdeburg.de/mbl/PHP_Skripte/mbl_verwaltung/mbl_verw_anzeige_biog.php?auswahl=3&liste_biog_name=',
self::mindatorg => 'https://www.mindat.org/min-', // Has suffix self::mindatorg => 'https://www.mindat.org/min-', // Has suffix
self::moebeltypologie => 'https://term.museum-digital.de/moebel/tag/', self::moebeltypologie => 'https://term.museum-digital.de/moebel/tag/',
self::ndb_adb => 'https://www.deutsche-biographie.de/pnd', self::ndb_adb => 'https://www.deutsche-biographie.de/pnd',
@ -256,7 +293,6 @@ enum MDNodaRepository implements MDValueEnumInterface, JsonSerializable {
self::lcsh => 'https://id.loc.gov/search/?q=cs:http://id.loc.gov/authorities/subjects&q=' . urlencode($searchTerm), self::lcsh => 'https://id.loc.gov/search/?q=cs:http://id.loc.gov/authorities/subjects&q=' . urlencode($searchTerm),
self::klbb => 'https://www.kl-bb.de/gezielte-suche?page=gezielte-suche&artist_name=' . urlencode($searchTerm), self::klbb => 'https://www.kl-bb.de/gezielte-suche?page=gezielte-suche&artist_name=' . urlencode($searchTerm),
self::loc => 'http://id.loc.gov/authorities/names/' . urlencode($searchTerm), self::loc => 'http://id.loc.gov/authorities/names/' . urlencode($searchTerm),
self::mbl => 'http://www.uni-magdeburg.de/mbl/PHP_Skripte/mbl_verwaltung/mbl_verw_anzeige_biog.php?auswahl=7&suchbegriffe=' . urlencode($searchTerm) . '&methode=or&schreibung=nein',
self::mindatorg => 'https://www.mindat.org/search.php?search=' . urlencode($searchTerm) . '&q_s=1', self::mindatorg => 'https://www.mindat.org/search.php?search=' . urlencode($searchTerm) . '&q_s=1',
self::moebeltypologie => 'https://term.museum-digital.de/redir.php?search=' . urlencode($searchTerm) . '&kind=tag|moebel', self::moebeltypologie => 'https://term.museum-digital.de/redir.php?search=' . urlencode($searchTerm) . '&kind=tag|moebel',
self::ndb_adb => 'https://www.deutsche-biographie.de/search?name=' . urlencode($searchTerm), self::ndb_adb => 'https://www.deutsche-biographie.de/search?name=' . urlencode($searchTerm),
@ -631,7 +667,6 @@ enum MDNodaRepository implements MDValueEnumInterface, JsonSerializable {
self::klbb => self::validateNumericId($id, ['https://www.kl-bb.de/artist/', 'https://www.kl-bb.de/?page=actor&subPage=']), self::klbb => self::validateNumericId($id, ['https://www.kl-bb.de/artist/', 'https://www.kl-bb.de/?page=actor&subPage=']),
self::lcsh => self::validateLcshId($id), self::lcsh => self::validateLcshId($id),
self::loc => self::validateLocId($id), self::loc => self::validateLocId($id),
self::mbl => self::validateNumericId($id, ['http://www.uni-magdeburg.de/mbl/PHP_Skripte/mbl_verwaltung/mbl_verw_anzeige_biog.php?auswahl=3&liste_biog_name=', 'http://www.uni-magdeburg.de/mbl/Biografien/', '.htm']),
self::mindatorg => self::validateNumericId($id, ['https://www.mindat.org/min-', '.html']), self::mindatorg => self::validateNumericId($id, ['https://www.mindat.org/min-', '.html']),
self::moebeltypologie => self::validateNumericId($id, ['https://term.museum-digital.de/moebel/tag/']), self::moebeltypologie => self::validateNumericId($id, ['https://term.museum-digital.de/moebel/tag/']),
self::ndb_adb => self::validateGndId($id, ['https://www.deutsche-biographie.de/pnd', '.html', '#adbcontent', '#ndbcontent', '#indexcontent']), self::ndb_adb => self::validateGndId($id, ['https://www.deutsche-biographie.de/pnd', '.html', '#adbcontent', '#ndbcontent', '#indexcontent']),