@@ -664,14 +664,14 @@ discard block |
||
664 | 664 | if ($fileContent !== false) { |
665 | 665 | $textFormat = $this->getTextFormat($fileContent); |
666 | 666 | } else { |
667 | - $this->logger->warning('Couldn\'t load full text file for structure node @ID "' . $id . '"'); |
|
667 | + $this->logger->warning('Couldn\'t load full text file for structure node @ID "'.$id.'"'); |
|
668 | 668 | return $fullText; |
669 | 669 | } |
670 | 670 | break; |
671 | 671 | } |
672 | 672 | } |
673 | 673 | } else { |
674 | - $this->logger->warning('Invalid structure node @ID "' . $id . '"'); |
|
674 | + $this->logger->warning('Invalid structure node @ID "'.$id.'"'); |
|
675 | 675 | return $fullText; |
676 | 676 | } |
677 | 677 | // Is this text format supported? |
@@ -683,7 +683,7 @@ discard block |
||
683 | 683 | } |
684 | 684 | $fullText = $textMiniOcr; |
685 | 685 | } else { |
686 | - $this->logger->warning('Unsupported text format "' . $textFormat . '" in physical node with @ID "' . $id . '"'); |
|
686 | + $this->logger->warning('Unsupported text format "'.$textFormat.'" in physical node with @ID "'.$id.'"'); |
|
687 | 687 | } |
688 | 688 | return $fullText; |
689 | 689 | } |
@@ -712,10 +712,10 @@ discard block |
||
712 | 712 | $textMiniOcr = $obj->getTextAsMiniOcr($ocrTextXml); |
713 | 713 | $this->rawTextArray[$id] = $textMiniOcr; |
714 | 714 | } else { |
715 | - $this->logger->warning('Invalid class/method "' . $class . '->getRawText()" for text format "' . $textFormat . '"'); |
|
715 | + $this->logger->warning('Invalid class/method "'.$class.'->getRawText()" for text format "'.$textFormat.'"'); |
|
716 | 716 | } |
717 | 717 | } else { |
718 | - $this->logger->warning('Class "' . $class . ' does not exists for "' . $textFormat . ' text format"'); |
|
718 | + $this->logger->warning('Class "'.$class.' does not exists for "'.$textFormat.' text format"'); |
|
719 | 719 | } |
720 | 720 | return $textMiniOcr; |
721 | 721 | } |
@@ -790,10 +790,10 @@ discard block |
||
790 | 790 | $title = self::getTitle($partof, true); |
791 | 791 | } |
792 | 792 | } else { |
793 | - Helper::log('No document with UID ' . $uid . ' found or document not accessible', LOG_SEVERITY_WARNING); |
|
793 | + Helper::log('No document with UID '.$uid.' found or document not accessible', LOG_SEVERITY_WARNING); |
|
794 | 794 | } |
795 | 795 | } else { |
796 | - Helper::log('Invalid UID ' . $uid . ' for document', LOG_SEVERITY_ERROR); |
|
796 | + Helper::log('Invalid UID '.$uid.' for document', LOG_SEVERITY_ERROR); |
|
797 | 797 | } |
798 | 798 | return $title; |
799 | 799 | } |
@@ -883,7 +883,7 @@ discard block |
||
883 | 883 | // the actual loading is format specific |
884 | 884 | return $this->loadLocation($location); |
885 | 885 | } else { |
886 | - $this->logger->error('Invalid file location "' . $location . '" for document loading'); |
|
886 | + $this->logger->error('Invalid file location "'.$location.'" for document loading'); |
|
887 | 887 | } |
888 | 888 | return false; |
889 | 889 | } |
@@ -1035,7 +1035,7 @@ discard block |
||
1035 | 1035 | // Set metadata definitions' PID. |
1036 | 1036 | $cPid = ($this->cPid ? $this->cPid : $this->pid); |
1037 | 1037 | if (!$cPid) { |
1038 | - $this->logger->error('Invalid PID ' . $cPid . ' for metadata definitions'); |
|
1038 | + $this->logger->error('Invalid PID '.$cPid.' for metadata definitions'); |
|
1039 | 1039 | return []; |
1040 | 1040 | } |
1041 | 1041 | if ( |
@@ -1212,12 +1212,12 @@ discard block |
||
1212 | 1212 | */ |
1213 | 1213 | public function __get(string $var) |
1214 | 1214 | { |
1215 | - $method = 'magicGet' . ucfirst($var); |
|
1215 | + $method = 'magicGet'.ucfirst($var); |
|
1216 | 1216 | if ( |
1217 | 1217 | !property_exists($this, $var) |
1218 | 1218 | || !method_exists($this, $method) |
1219 | 1219 | ) { |
1220 | - $this->logger->warning('There is no getter function for property "' . $var . '"'); |
|
1220 | + $this->logger->warning('There is no getter function for property "'.$var.'"'); |
|
1221 | 1221 | return null; |
1222 | 1222 | } else { |
1223 | 1223 | return $this->$method(); |
@@ -1250,12 +1250,12 @@ discard block |
||
1250 | 1250 | */ |
1251 | 1251 | public function __set(string $var, $value): void |
1252 | 1252 | { |
1253 | - $method = '_set' . ucfirst($var); |
|
1253 | + $method = '_set'.ucfirst($var); |
|
1254 | 1254 | if ( |
1255 | 1255 | !property_exists($this, $var) |
1256 | 1256 | || !method_exists($this, $method) |
1257 | 1257 | ) { |
1258 | - $this->logger->warning('There is no setter function for property "' . $var . '"'); |
|
1258 | + $this->logger->warning('There is no setter function for property "'.$var.'"'); |
|
1259 | 1259 | } else { |
1260 | 1260 | $this->$method($value); |
1261 | 1261 | } |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | * |
335 | 335 | * @return void |
336 | 336 | */ |
337 | - private function addCollections(Document &$document, array $collections): void |
|
337 | + private function addCollections(Document & $document, array $collections): void |
|
338 | 338 | { |
339 | 339 | foreach ($collections as $collection) { |
340 | 340 | $documentCollection = $this->collectionRepository->findOneByIndexName($collection); |
@@ -376,11 +376,11 @@ discard block |
||
376 | 376 | |
377 | 377 | for ($i = 0; $i < $count; $i++) { |
378 | 378 | // Build the next part to add |
379 | - $nextPart = ($i === 0 ? '' : $delimiter) . $metadataAuthor[$i]; |
|
379 | + $nextPart = ($i === 0 ? '' : $delimiter).$metadataAuthor[$i]; |
|
380 | 380 | // Check if adding this part and ellipsis in future would exceed the character limit |
381 | - if (strlen($authors . $nextPart . $delimiter . $ellipsis) > 255) { |
|
381 | + if (strlen($authors.$nextPart.$delimiter.$ellipsis) > 255) { |
|
382 | 382 | // Add ellipsis and stop adding more authors |
383 | - $authors .= $delimiter . $ellipsis; |
|
383 | + $authors .= $delimiter.$ellipsis; |
|
384 | 384 | break; |
385 | 385 | } |
386 | 386 | // Add the part to the main string |
@@ -384,7 +384,7 @@ discard block |
||
384 | 384 | |
385 | 385 | $excludeOtherWhere = ''; |
386 | 386 | if ($settings['excludeOther']) { |
387 | - $excludeOtherWhere = 'tx_dlf_documents.pid=' . intval($settings['storagePid']); |
|
387 | + $excludeOtherWhere = 'tx_dlf_documents.pid='.intval($settings['storagePid']); |
|
388 | 388 | } |
389 | 389 | // Check if there are any metadata to suggest. |
390 | 390 | return $queryBuilder |
@@ -438,12 +438,12 @@ discard block |
||
438 | 438 | $connection = GeneralUtility::makeInstance(ConnectionPool::class) |
439 | 439 | ->getConnectionForTable('tx_dlf_documents'); |
440 | 440 | |
441 | - $sql = 'SELECT `tx_dlf_documents`.*, GROUP_CONCAT(DISTINCT `tx_dlf_collections`.`oai_name` ORDER BY `tx_dlf_collections`.`oai_name` SEPARATOR " ") AS `collections` ' . |
|
442 | - 'FROM `tx_dlf_documents` ' . |
|
443 | - 'INNER JOIN `tx_dlf_relations` ON `tx_dlf_relations`.`uid_local` = `tx_dlf_documents`.`uid` ' . |
|
444 | - 'INNER JOIN `tx_dlf_collections` ON `tx_dlf_collections`.`uid` = `tx_dlf_relations`.`uid_foreign` ' . |
|
445 | - 'WHERE `tx_dlf_documents`.`record_id` = ? ' . |
|
446 | - 'AND `tx_dlf_relations`.`ident`="docs_colls" ' . |
|
441 | + $sql = 'SELECT `tx_dlf_documents`.*, GROUP_CONCAT(DISTINCT `tx_dlf_collections`.`oai_name` ORDER BY `tx_dlf_collections`.`oai_name` SEPARATOR " ") AS `collections` '. |
|
442 | + 'FROM `tx_dlf_documents` '. |
|
443 | + 'INNER JOIN `tx_dlf_relations` ON `tx_dlf_relations`.`uid_local` = `tx_dlf_documents`.`uid` '. |
|
444 | + 'INNER JOIN `tx_dlf_collections` ON `tx_dlf_collections`.`uid` = `tx_dlf_relations`.`uid_foreign` '. |
|
445 | + 'WHERE `tx_dlf_documents`.`record_id` = ? '. |
|
446 | + 'AND `tx_dlf_relations`.`ident`="docs_colls" '. |
|
447 | 447 | $where; |
448 | 448 | |
449 | 449 | $values = [ |
@@ -474,13 +474,13 @@ discard block |
||
474 | 474 | $connection = GeneralUtility::makeInstance(ConnectionPool::class) |
475 | 475 | ->getConnectionForTable('tx_dlf_documents'); |
476 | 476 | |
477 | - $sql = 'SELECT `tx_dlf_documents`.*, GROUP_CONCAT(DISTINCT `tx_dlf_collections`.`oai_name` ORDER BY `tx_dlf_collections`.`oai_name` SEPARATOR " ") AS `collections` ' . |
|
478 | - 'FROM `tx_dlf_documents` ' . |
|
479 | - 'INNER JOIN `tx_dlf_relations` ON `tx_dlf_relations`.`uid_local` = `tx_dlf_documents`.`uid` ' . |
|
480 | - 'INNER JOIN `tx_dlf_collections` ON `tx_dlf_collections`.`uid` = `tx_dlf_relations`.`uid_foreign` ' . |
|
481 | - 'WHERE `tx_dlf_documents`.`uid` IN ( ? ) ' . |
|
482 | - 'AND `tx_dlf_relations`.`ident`="docs_colls" ' . |
|
483 | - 'AND ' . Helper::whereExpression('tx_dlf_collections') . ' ' . |
|
477 | + $sql = 'SELECT `tx_dlf_documents`.*, GROUP_CONCAT(DISTINCT `tx_dlf_collections`.`oai_name` ORDER BY `tx_dlf_collections`.`oai_name` SEPARATOR " ") AS `collections` '. |
|
478 | + 'FROM `tx_dlf_documents` '. |
|
479 | + 'INNER JOIN `tx_dlf_relations` ON `tx_dlf_relations`.`uid_local` = `tx_dlf_documents`.`uid` '. |
|
480 | + 'INNER JOIN `tx_dlf_collections` ON `tx_dlf_collections`.`uid` = `tx_dlf_relations`.`uid_foreign` '. |
|
481 | + 'WHERE `tx_dlf_documents`.`uid` IN ( ? ) '. |
|
482 | + 'AND `tx_dlf_relations`.`ident`="docs_colls" '. |
|
483 | + 'AND '.Helper::whereExpression('tx_dlf_collections').' '. |
|
484 | 484 | 'GROUP BY `tx_dlf_documents`.`uid` '; |
485 | 485 | |
486 | 486 | $values = [ |
@@ -55,7 +55,7 @@ |
||
55 | 55 | $output = []; |
56 | 56 | $solrCore = (string) $parameters['solrcore']; |
57 | 57 | $uHash = (string) $parameters['uHash']; |
58 | - if (hash_equals(GeneralUtility::hmac((string) (new Typo3Version()) . Environment::getExtensionsPath(), 'SearchSuggest'), $uHash) === false) { |
|
58 | + if (hash_equals(GeneralUtility::hmac((string) (new Typo3Version()).Environment::getExtensionsPath(), 'SearchSuggest'), $uHash) === false) { |
|
59 | 59 | throw new \InvalidArgumentException('No valid parameter passed!', 1580585079); |
60 | 60 | } |
61 | 61 | // Perform Solr query. |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | |
72 | 72 | $encrypted = (string) $parameters['encrypted']; |
73 | 73 | if (empty($encrypted)) { |
74 | - throw new \InvalidArgumentException('No valid parameter passed: ' . $parameters['middleware'] . ' ' . $parameters['encrypted'] . '!', 1580585079); |
|
74 | + throw new \InvalidArgumentException('No valid parameter passed: '.$parameters['middleware'].' '.$parameters['encrypted'].'!', 1580585079); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | $output = [ |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | */ |
175 | 175 | private function getQuery(array $parameters): string |
176 | 176 | { |
177 | - return $this->fields['fulltext'] . ':(' . Solr::escapeQuery((string) $parameters['q']) . ') AND ' . $this->fields['uid'] . ':' . $this->getUid($parameters['uid']); |
|
177 | + return $this->fields['fulltext'].':('.Solr::escapeQuery((string) $parameters['q']).') AND '.$this->fields['uid'].':'.$this->getUid($parameters['uid']); |
|
178 | 178 | } |
179 | 179 | |
180 | 180 | /** |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function extractAuthorsIfNoAutRoleTermAssigned(): void |
62 | 62 | { |
63 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsAuthorNoAutRoleTerm.xml'); |
|
63 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsAuthorNoAutRoleTerm.xml'); |
|
64 | 64 | $mods = new Mods(); |
65 | 65 | |
66 | 66 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function extractAuthorsWithAutRoleTermAssigned(): void |
82 | 82 | { |
83 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsAuthorWithAutRoleTerm.xml'); |
|
83 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsAuthorWithAutRoleTerm.xml'); |
|
84 | 84 | $mods = new Mods(); |
85 | 85 | |
86 | 86 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function extractPlaces(): void |
104 | 104 | { |
105 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml'); |
|
105 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsOriginInfo.xml'); |
|
106 | 106 | $mods = new Mods(); |
107 | 107 | |
108 | 108 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | */ |
132 | 132 | public function extractYears(): void |
133 | 133 | { |
134 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfo.xml'); |
|
134 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsOriginInfo.xml'); |
|
135 | 135 | $mods = new Mods(); |
136 | 136 | |
137 | 137 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | */ |
161 | 161 | public function extractPlacesWithElectronicEdInside(): void |
162 | 162 | { |
163 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
|
163 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
|
164 | 164 | $mods = new Mods(); |
165 | 165 | |
166 | 166 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public function extractYearsWithElectronicEdInside(): void |
191 | 191 | { |
192 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
|
192 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/modsOriginInfoWithEditionElectronicEd.xml'); |
|
193 | 193 | $mods = new Mods(); |
194 | 194 | |
195 | 195 | $mods->extractMetadata($xml, $this->metadata, false); |
@@ -36,7 +36,7 @@ |
||
36 | 36 | */ |
37 | 37 | public function canExtractDuration(): void |
38 | 38 | { |
39 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/audioVideo.xml'); |
|
39 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/audioVideo.xml'); |
|
40 | 40 | $audioVideoMD = new AudioVideoMD(); |
41 | 41 | |
42 | 42 | $videoXml = $xml->xpath('//mets:xmlData')[0]; |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function getRawData(): void |
25 | 25 | { |
26 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/alto.xml'); |
|
26 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/alto.xml'); |
|
27 | 27 | $alto = new Alto(); |
28 | 28 | |
29 | 29 | $rawText = $alto->getRawText($xml); |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public function getTextAsMiniOcr(): void |
39 | 39 | { |
40 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/alto.xml'); |
|
40 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/alto.xml'); |
|
41 | 41 | $alto = new Alto(); |
42 | 42 | |
43 | 43 | $rawText = $alto->getTextAsMiniOcr($xml); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | public function getTextAsMiniOcrNoTextBlock(): void |
77 | 77 | { |
78 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoTextBlock.xml'); |
|
78 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/altoNoTextBlock.xml'); |
|
79 | 79 | $alto = new Alto(); |
80 | 80 | |
81 | 81 | $rawText = $alto->getTextAsMiniOcr($xml); |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | */ |
90 | 90 | public function getTextAsMiniOcrNoTextline(): void |
91 | 91 | { |
92 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoTextLine.xml'); |
|
92 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/altoNoTextLine.xml'); |
|
93 | 93 | $alto = new Alto(); |
94 | 94 | |
95 | 95 | $rawText = $alto->getTextAsMiniOcr($xml); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | public function getTextAsMiniOcrNoString(): void |
105 | 105 | { |
106 | - $xml = simplexml_load_file(__DIR__ . '/../../Fixtures/Format/altoNoString.xml'); |
|
106 | + $xml = simplexml_load_file(__DIR__.'/../../Fixtures/Format/altoNoString.xml'); |
|
107 | 107 | $alto = new Alto(); |
108 | 108 | |
109 | 109 | $rawText = $alto->getTextAsMiniOcr($xml); |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | { |
37 | 37 | parent::tearDown(); |
38 | 38 | |
39 | - unlink(__DIR__ . '/../../Fixtures/Repository/tokenTemp.csv'); |
|
39 | + unlink(__DIR__.'/../../Fixtures/Repository/tokenTemp.csv'); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -45,8 +45,8 @@ discard block |
||
45 | 45 | */ |
46 | 46 | public function deleteExpiredTokens(): void |
47 | 47 | { |
48 | - $inputCsvFile = __DIR__ . '/../../Fixtures/Repository/token.csv'; |
|
49 | - $outputCsvFile = __DIR__ . '/../../Fixtures/Repository/tokenTemp.csv'; |
|
48 | + $inputCsvFile = __DIR__.'/../../Fixtures/Repository/token.csv'; |
|
49 | + $outputCsvFile = __DIR__.'/../../Fixtures/Repository/tokenTemp.csv'; |
|
50 | 50 | |
51 | 51 | $inputCsvData = file_get_contents($inputCsvFile); |
52 | 52 | $csvData = str_getcsv($inputCsvData, "\n"); |