-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Those are skipped during import and written as error to TYPO3 logs. That way entries with broken opening hours can still be imported. Resolves: #11377
- Loading branch information
1 parent
98eb5ff
commit a2fa701
Showing
8 changed files
with
255 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* Copyright (C) 2024 Daniel Siepmann <daniel.siepmann@codappix.com> | ||
* | ||
* This program is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU General Public License | ||
* as published by the Free Software Foundation; either version 2 | ||
* of the License, or (at your option) any later version. | ||
* | ||
* This program 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 General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | ||
* 02110-1301, USA. | ||
*/ | ||
|
||
namespace WerkraumMedia\ThueCat\Domain\Import\Entity; | ||
|
||
use Exception; | ||
|
||
final class InvalidDataException extends Exception | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
97 changes: 97 additions & 0 deletions
97
...nal/Fixtures/Import/Guzzle/thuecat.org/resources/attraction-with-broken-opening-hour.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
{ | ||
"@context": { | ||
"cdb": "https://thuecat.org/ontology/cdb/1.0/", | ||
"dachkg": "https://thuecat.org/ontology/dachkg/1.0/", | ||
"dbo": "http://dbpedia.org/ontology/", | ||
"dsv": "http://ontologies.sti-innsbruck.at/dsv/", | ||
"foaf": "http://xmlns.com/foaf/0.1/", | ||
"owl": "http://www.w3.org/2002/07/owl#", | ||
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", | ||
"rdfs": "http://www.w3.org/2000/01/rdf-schema#", | ||
"schema": "http://schema.org/", | ||
"sh": "http://www.w3.org/ns/shacl#", | ||
"thuecat": "https://thuecat.org/ontology/thuecat/1.0/", | ||
"ttgds": "https://thuecat.org/ontology/ttgds/1.0/", | ||
"xsd": "http://www.w3.org/2001/XMLSchema#" | ||
}, | ||
"@graph": [ | ||
{ | ||
"@id": "https://thuecat.org/resources/attraction-with-broken-opening-hour", | ||
"@type": [ | ||
"schema:Place", | ||
"schema:Thing", | ||
"schema:TouristAttraction", | ||
"ttgds:PointOfInterest" | ||
], | ||
"schema:name": { | ||
"@language": "de", | ||
"@value": "One specialOpeningHoursSpecification misses opens and closes, leading to type error" | ||
}, | ||
"schema:availableLanguage": [ | ||
{ | ||
"@type": "thuecat:Language", | ||
"@value": "thuecat:German" | ||
}, | ||
{ | ||
"@type": "thuecat:Language", | ||
"@value": "thuecat:English" | ||
} | ||
], | ||
"schema:specialOpeningHoursSpecification": [ | ||
{ | ||
"@id": "genid-1dccaefc0e06401c93068c8081b7ea8c294892-b11", | ||
"@type": [ | ||
"schema:Thing", | ||
"schema:Intangible", | ||
"schema:StructuredValue", | ||
"schema:OpeningHoursSpecification" | ||
], | ||
"schema:dayOfWeek": { | ||
"@type": "schema:DayOfWeek", | ||
"@value": "schema:Thursday" | ||
}, | ||
"schema:validThrough": { | ||
"@type": "schema:Date", | ||
"@value": "2024-09-19" | ||
}, | ||
"schema:validFrom": { | ||
"@type": "schema:Date", | ||
"@value": "2024-09-19" | ||
} | ||
}, | ||
{ | ||
"@id": "genid-1dccaefc0e06401c93068c8081b7ea8c294892-b12", | ||
"@type": [ | ||
"schema:Thing", | ||
"schema:Intangible", | ||
"schema:StructuredValue", | ||
"schema:OpeningHoursSpecification" | ||
], | ||
"schema:opens": { | ||
"@type": "schema:Time", | ||
"@value": "09:30:00" | ||
}, | ||
"schema:closes": { | ||
"@type": "schema:Time", | ||
"@value": "18:00:00" | ||
}, | ||
"schema:dayOfWeek": { | ||
"@type": "schema:DayOfWeek", | ||
"@value": "schema:Thursday" | ||
}, | ||
"schema:validThrough": { | ||
"@type": "schema:Date", | ||
"@value": "2024-09-19" | ||
}, | ||
"schema:validFrom": { | ||
"@type": "schema:Date", | ||
"@value": "2024-09-19" | ||
} | ||
} | ||
], | ||
"thuecat:contentResponsible": { | ||
"@id": "https://thuecat.org/resources/018132452787-ngbe" | ||
} | ||
} | ||
] | ||
} |
65 changes: 65 additions & 0 deletions
65
Tests/Functional/Fixtures/Import/ImportsWithBrokenOpeningHour.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use TYPO3\CMS\Core\Domain\Repository\PageRepository; | ||
|
||
return [ | ||
'pages' => [ | ||
0 => [ | ||
'uid' => '1', | ||
'pid' => '0', | ||
'tstamp' => '1613400587', | ||
'crdate' => '1613400558', | ||
'doktype' => PageRepository::DOKTYPE_DEFAULT, | ||
'title' => 'Rootpage', | ||
'is_siteroot' => '1', | ||
], | ||
1 => [ | ||
'uid' => '10', | ||
'pid' => '1', | ||
'tstamp' => '1613400587', | ||
'crdate' => '1613400558', | ||
'doktype' => PageRepository::DOKTYPE_SYSFOLDER, | ||
'title' => 'Storage folder', | ||
], | ||
], | ||
'tx_thuecat_import_configuration' => [ | ||
0 => [ | ||
'uid' => '1', | ||
'pid' => '0', | ||
'tstamp' => '1613400587', | ||
'crdate' => '1613400558', | ||
'disable' => '0', | ||
'title' => 'Tourist Attraction', | ||
'type' => 'static', | ||
'configuration' => '<?xml version="1.0" encoding="utf-8" standalone="yes" ?> | ||
<T3FlexForms> | ||
<data> | ||
<sheet index="sDEF"> | ||
<language index="lDEF"> | ||
<field index="storagePid"> | ||
<value index="vDEF">10</value> | ||
</field> | ||
<field index="urls"> | ||
<el index="el"> | ||
<field index="602a89f54d694654233086"> | ||
<value index="url"> | ||
<el> | ||
<field index="url"> | ||
<value index="vDEF">https://thuecat.org/resources/attraction-with-broken-opening-hour</value> | ||
</field> | ||
</el> | ||
</value> | ||
<value index="_TOGGLE">0</value> | ||
</field> | ||
</el> | ||
</field> | ||
</language> | ||
</sheet> | ||
</data> | ||
</T3FlexForms> | ||
', | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters