-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start work on breaking up monolithic Reader and Writer classes into dedicated subclasses to make maintenance work easier
- Loading branch information
Mark Baker
authored
Jun 30, 2019
1 parent
e884271
commit 1e71154
Showing
25 changed files
with
1,596 additions
and
683 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
<?php | ||
|
||
namespace PhpOffice\PhpSpreadsheet\Reader\Ods; | ||
|
||
use PhpOffice\PhpSpreadsheet\Document\Properties as DocumentProperties; | ||
use PhpOffice\PhpSpreadsheet\Spreadsheet; | ||
|
||
class Properties | ||
{ | ||
private $spreadsheet; | ||
|
||
public function __construct(Spreadsheet $spreadsheet) | ||
{ | ||
$this->spreadsheet = $spreadsheet; | ||
} | ||
|
||
public function load(\SimpleXMLElement $xml, $namespacesMeta) | ||
{ | ||
$docProps = $this->spreadsheet->getProperties(); | ||
$officeProperty = $xml->children($namespacesMeta['office']); | ||
foreach ($officeProperty as $officePropertyData) { | ||
/** @var \SimpleXMLElement $officePropertyData */ | ||
$officePropertiesDC = []; | ||
if (isset($namespacesMeta['dc'])) { | ||
$officePropertiesDC = $officePropertyData->children($namespacesMeta['dc']); | ||
} | ||
$this->setCoreProperties($docProps, $officePropertiesDC); | ||
|
||
$officePropertyMeta = []; | ||
if (isset($namespacesMeta['dc'])) { | ||
$officePropertyMeta = $officePropertyData->children($namespacesMeta['meta']); | ||
} | ||
foreach ($officePropertyMeta as $propertyName => $propertyValue) { | ||
$this->setMetaProperties($namespacesMeta, $propertyValue, $propertyName, $docProps); | ||
} | ||
} | ||
} | ||
|
||
private function setCoreProperties(DocumentProperties $docProps, \SimpleXMLElement $officePropertyDC) | ||
{ | ||
foreach ($officePropertyDC as $propertyName => $propertyValue) { | ||
$propertyValue = (string) $propertyValue; | ||
switch ($propertyName) { | ||
case 'title': | ||
$docProps->setTitle($propertyValue); | ||
|
||
break; | ||
case 'subject': | ||
$docProps->setSubject($propertyValue); | ||
|
||
break; | ||
case 'creator': | ||
$docProps->setCreator($propertyValue); | ||
$docProps->setLastModifiedBy($propertyValue); | ||
|
||
break; | ||
case 'creation-date': | ||
$creationDate = strtotime($propertyValue); | ||
$docProps->setCreated($creationDate); | ||
$docProps->setModified($creationDate); | ||
|
||
break; | ||
case 'keyword': | ||
$docProps->setKeywords($propertyValue); | ||
|
||
break; | ||
case 'description': | ||
$docProps->setDescription($propertyValue); | ||
|
||
break; | ||
} | ||
} | ||
} | ||
|
||
private function setMetaProperties( | ||
$namespacesMeta, | ||
\SimpleXMLElement $propertyValue, | ||
$propertyName, | ||
DocumentProperties $docProps | ||
) { | ||
$propertyValueAttributes = $propertyValue->attributes($namespacesMeta['meta']); | ||
$propertyValue = (string) $propertyValue; | ||
switch ($propertyName) { | ||
case 'initial-creator': | ||
$docProps->setCreator($propertyValue); | ||
|
||
break; | ||
case 'keyword': | ||
$docProps->setKeywords($propertyValue); | ||
|
||
break; | ||
case 'creation-date': | ||
$creationDate = strtotime($propertyValue); | ||
$docProps->setCreated($creationDate); | ||
|
||
break; | ||
case 'user-defined': | ||
$this->setUserDefinedProperty($propertyValueAttributes, $propertyValue, $docProps); | ||
|
||
break; | ||
} | ||
} | ||
|
||
private function setUserDefinedProperty($propertyValueAttributes, $propertyValue, DocumentProperties $docProps) | ||
{ | ||
$propertyValueName = ''; | ||
$propertyValueType = DocumentProperties::PROPERTY_TYPE_STRING; | ||
foreach ($propertyValueAttributes as $key => $value) { | ||
if ($key == 'name') { | ||
$propertyValueName = (string) $value; | ||
} elseif ($key == 'value-type') { | ||
switch ($value) { | ||
case 'date': | ||
$propertyValue = DocumentProperties::convertProperty($propertyValue, 'date'); | ||
$propertyValueType = DocumentProperties::PROPERTY_TYPE_DATE; | ||
|
||
break; | ||
case 'boolean': | ||
$propertyValue = DocumentProperties::convertProperty($propertyValue, 'bool'); | ||
$propertyValueType = DocumentProperties::PROPERTY_TYPE_BOOLEAN; | ||
|
||
break; | ||
case 'float': | ||
$propertyValue = DocumentProperties::convertProperty($propertyValue, 'r4'); | ||
$propertyValueType = DocumentProperties::PROPERTY_TYPE_FLOAT; | ||
|
||
break; | ||
default: | ||
$propertyValueType = DocumentProperties::PROPERTY_TYPE_STRING; | ||
} | ||
} | ||
} | ||
|
||
$docProps->setCustomProperty($propertyValueName, $propertyValue, $propertyValueType); | ||
} | ||
} |
Oops, something went wrong.