123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604 |
- <?php
- namespace PhpOffice\PhpSpreadsheet\Reader;
- use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
- use PhpOffice\PhpSpreadsheet\Cell\Hyperlink;
- use PhpOffice\PhpSpreadsheet\Document\Properties;
- use PhpOffice\PhpSpreadsheet\NamedRange;
- use PhpOffice\PhpSpreadsheet\Reader\Security\XmlScanner;
- use PhpOffice\PhpSpreadsheet\Reader\Xlsx\Chart;
- use PhpOffice\PhpSpreadsheet\ReferenceHelper;
- use PhpOffice\PhpSpreadsheet\RichText\RichText;
- use PhpOffice\PhpSpreadsheet\Settings;
- use PhpOffice\PhpSpreadsheet\Shared\Date;
- use PhpOffice\PhpSpreadsheet\Shared\Drawing;
- use PhpOffice\PhpSpreadsheet\Shared\File;
- use PhpOffice\PhpSpreadsheet\Shared\Font;
- use PhpOffice\PhpSpreadsheet\Shared\StringHelper;
- use PhpOffice\PhpSpreadsheet\Spreadsheet;
- use PhpOffice\PhpSpreadsheet\Style\Border;
- use PhpOffice\PhpSpreadsheet\Style\Borders;
- use PhpOffice\PhpSpreadsheet\Style\Color;
- use PhpOffice\PhpSpreadsheet\Style\Conditional;
- use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
- use PhpOffice\PhpSpreadsheet\Style\Protection;
- use PhpOffice\PhpSpreadsheet\Style\Style;
- use PhpOffice\PhpSpreadsheet\Worksheet\AutoFilter\Column;
- use PhpOffice\PhpSpreadsheet\Worksheet\HeaderFooterDrawing;
- use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
- use SimpleXMLElement;
- use XMLReader;
- use ZipArchive;
- class Xlsx extends BaseReader
- {
- /**
- * ReferenceHelper instance.
- *
- * @var ReferenceHelper
- */
- private $referenceHelper;
- /**
- * Xlsx\Theme instance.
- *
- * @var Xlsx\Theme
- */
- private static $theme = null;
- /**
- * Create a new Xlsx Reader instance.
- */
- public function __construct()
- {
- $this->readFilter = new DefaultReadFilter();
- $this->referenceHelper = ReferenceHelper::getInstance();
- $this->securityScanner = XmlScanner::getInstance($this);
- }
- /**
- * Can the current IReader read the file?
- *
- * @param string $pFilename
- *
- * @throws Exception
- *
- * @return bool
- */
- public function canRead($pFilename)
- {
- File::assertFile($pFilename);
- $xl = false;
- // Load file
- $zip = new ZipArchive();
- if ($zip->open($pFilename) === true) {
- // check if it is an OOXML archive
- $rels = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, '_rels/.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- if ($rels !== false) {
- foreach ($rels->Relationship as $rel) {
- switch ($rel['Type']) {
- case 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument':
- if (basename($rel['Target']) == 'workbook.xml') {
- $xl = true;
- }
- break;
- }
- }
- }
- $zip->close();
- }
- return $xl;
- }
- /**
- * Reads names of the worksheets from a file, without parsing the whole file to a Spreadsheet object.
- *
- * @param string $pFilename
- *
- * @throws Exception
- *
- * @return array
- */
- public function listWorksheetNames($pFilename)
- {
- File::assertFile($pFilename);
- $worksheetNames = [];
- $zip = new ZipArchive();
- $zip->open($pFilename);
- // The files we're looking at here are small enough that simpleXML is more efficient than XMLReader
- //~ http://schemas.openxmlformats.org/package/2006/relationships");
- $rels = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, '_rels/.rels'))
- );
- foreach ($rels->Relationship as $rel) {
- switch ($rel['Type']) {
- case 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument':
- //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"
- $xmlWorkbook = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "{$rel['Target']}"))
- );
- if ($xmlWorkbook->sheets) {
- foreach ($xmlWorkbook->sheets->sheet as $eleSheet) {
- // Check if sheet should be skipped
- $worksheetNames[] = (string) $eleSheet['name'];
- }
- }
- }
- }
- $zip->close();
- return $worksheetNames;
- }
- /**
- * Return worksheet info (Name, Last Column Letter, Last Column Index, Total Rows, Total Columns).
- *
- * @param string $pFilename
- *
- * @throws Exception
- *
- * @return array
- */
- public function listWorksheetInfo($pFilename)
- {
- File::assertFile($pFilename);
- $worksheetInfo = [];
- $zip = new ZipArchive();
- $zip->open($pFilename);
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $rels = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, '_rels/.rels')),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- foreach ($rels->Relationship as $rel) {
- if ($rel['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument') {
- $dir = dirname($rel['Target']);
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsWorkbook = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, "$dir/_rels/" . basename($rel['Target']) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $relsWorkbook->registerXPathNamespace('rel', 'http://schemas.openxmlformats.org/package/2006/relationships');
- $worksheets = [];
- foreach ($relsWorkbook->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet') {
- $worksheets[(string) $ele['Id']] = $ele['Target'];
- }
- }
- //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"
- $xmlWorkbook = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, "{$rel['Target']}")
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- if ($xmlWorkbook->sheets) {
- $dir = dirname($rel['Target']);
- /** @var SimpleXMLElement $eleSheet */
- foreach ($xmlWorkbook->sheets->sheet as $eleSheet) {
- $tmpInfo = [
- 'worksheetName' => (string) $eleSheet['name'],
- 'lastColumnLetter' => 'A',
- 'lastColumnIndex' => 0,
- 'totalRows' => 0,
- 'totalColumns' => 0,
- ];
- $fileWorksheet = $worksheets[(string) self::getArrayItem($eleSheet->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'), 'id')];
- $xml = new XMLReader();
- $xml->xml(
- $this->securityScanner->scanFile(
- 'zip://' . File::realpath($pFilename) . '#' . "$dir/$fileWorksheet"
- ),
- null,
- Settings::getLibXmlLoaderOptions()
- );
- $xml->setParserProperty(2, true);
- $currCells = 0;
- while ($xml->read()) {
- if ($xml->name == 'row' && $xml->nodeType == XMLReader::ELEMENT) {
- $row = $xml->getAttribute('r');
- $tmpInfo['totalRows'] = $row;
- $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells);
- $currCells = 0;
- } elseif ($xml->name == 'c' && $xml->nodeType == XMLReader::ELEMENT) {
- ++$currCells;
- }
- }
- $tmpInfo['totalColumns'] = max($tmpInfo['totalColumns'], $currCells);
- $xml->close();
- $tmpInfo['lastColumnIndex'] = $tmpInfo['totalColumns'] - 1;
- $tmpInfo['lastColumnLetter'] = Coordinate::stringFromColumnIndex($tmpInfo['lastColumnIndex'] + 1);
- $worksheetInfo[] = $tmpInfo;
- }
- }
- }
- }
- $zip->close();
- return $worksheetInfo;
- }
- private static function castToBoolean($c)
- {
- $value = isset($c->v) ? (string) $c->v : null;
- if ($value == '0') {
- return false;
- } elseif ($value == '1') {
- return true;
- }
- return (bool) $c->v;
- }
- private static function castToError($c)
- {
- return isset($c->v) ? (string) $c->v : null;
- }
- private static function castToString($c)
- {
- return isset($c->v) ? (string) $c->v : null;
- }
- private function castToFormula($c, $r, &$cellDataType, &$value, &$calculatedValue, &$sharedFormulas, $castBaseType)
- {
- $cellDataType = 'f';
- $value = "={$c->f}";
- $calculatedValue = self::$castBaseType($c);
- // Shared formula?
- if (isset($c->f['t']) && strtolower((string) $c->f['t']) == 'shared') {
- $instance = (string) $c->f['si'];
- if (!isset($sharedFormulas[(string) $c->f['si']])) {
- $sharedFormulas[$instance] = ['master' => $r, 'formula' => $value];
- } else {
- $master = Coordinate::coordinateFromString($sharedFormulas[$instance]['master']);
- $current = Coordinate::coordinateFromString($r);
- $difference = [0, 0];
- $difference[0] = Coordinate::columnIndexFromString($current[0]) - Coordinate::columnIndexFromString($master[0]);
- $difference[1] = $current[1] - $master[1];
- $value = $this->referenceHelper->updateFormulaReferences($sharedFormulas[$instance]['formula'], 'A1', $difference[0], $difference[1]);
- }
- }
- }
- /**
- * @param ZipArchive $archive
- * @param string $fileName
- *
- * @return string
- */
- private function getFromZipArchive(ZipArchive $archive, $fileName = '')
- {
- // Root-relative paths
- if (strpos($fileName, '//') !== false) {
- $fileName = substr($fileName, strpos($fileName, '//') + 1);
- }
- $fileName = File::realpath($fileName);
- // Sadly, some 3rd party xlsx generators don't use consistent case for filenaming
- // so we need to load case-insensitively from the zip file
- // Apache POI fixes
- $contents = $archive->getFromName($fileName, 0, ZipArchive::FL_NOCASE);
- if ($contents === false) {
- $contents = $archive->getFromName(substr($fileName, 1), 0, ZipArchive::FL_NOCASE);
- }
- return $contents;
- }
- /**
- * Set Worksheet column attributes by attributes array passed.
- *
- * @param Worksheet $docSheet
- * @param string $column A, B, ... DX, ...
- * @param array $columnAttributes array of attributes (indexes are attribute name, values are value)
- * 'xfIndex', 'visible', 'collapsed', 'outlineLevel', 'width', ... ?
- */
- private function setColumnAttributes(Worksheet $docSheet, $column, array $columnAttributes)
- {
- if (isset($columnAttributes['xfIndex'])) {
- $docSheet->getColumnDimension($column)->setXfIndex($columnAttributes['xfIndex']);
- }
- if (isset($columnAttributes['visible'])) {
- $docSheet->getColumnDimension($column)->setVisible($columnAttributes['visible']);
- }
- if (isset($columnAttributes['collapsed'])) {
- $docSheet->getColumnDimension($column)->setCollapsed($columnAttributes['collapsed']);
- }
- if (isset($columnAttributes['outlineLevel'])) {
- $docSheet->getColumnDimension($column)->setOutlineLevel($columnAttributes['outlineLevel']);
- }
- if (isset($columnAttributes['width'])) {
- $docSheet->getColumnDimension($column)->setWidth($columnAttributes['width']);
- }
- }
- /**
- * Set Worksheet row attributes by attributes array passed.
- *
- * @param Worksheet $docSheet
- * @param int $row 1, 2, 3, ... 99, ...
- * @param array $rowAttributes array of attributes (indexes are attribute name, values are value)
- * 'xfIndex', 'visible', 'collapsed', 'outlineLevel', 'rowHeight', ... ?
- */
- private function setRowAttributes(Worksheet $docSheet, $row, array $rowAttributes)
- {
- if (isset($rowAttributes['xfIndex'])) {
- $docSheet->getRowDimension($row)->setXfIndex($rowAttributes['xfIndex']);
- }
- if (isset($rowAttributes['visible'])) {
- $docSheet->getRowDimension($row)->setVisible($rowAttributes['visible']);
- }
- if (isset($rowAttributes['collapsed'])) {
- $docSheet->getRowDimension($row)->setCollapsed($rowAttributes['collapsed']);
- }
- if (isset($rowAttributes['outlineLevel'])) {
- $docSheet->getRowDimension($row)->setOutlineLevel($rowAttributes['outlineLevel']);
- }
- if (isset($rowAttributes['rowHeight'])) {
- $docSheet->getRowDimension($row)->setRowHeight($rowAttributes['rowHeight']);
- }
- }
- /**
- * Loads Spreadsheet from file.
- *
- * @param string $pFilename
- *
- * @throws Exception
- *
- * @return Spreadsheet
- */
- public function load($pFilename)
- {
- File::assertFile($pFilename);
- // Initialisations
- $excel = new Spreadsheet();
- $excel->removeSheetByIndex(0);
- if (!$this->readDataOnly) {
- $excel->removeCellStyleXfByIndex(0); // remove the default style
- $excel->removeCellXfByIndex(0); // remove the default style
- }
- $unparsedLoadedData = [];
- $zip = new ZipArchive();
- $zip->open($pFilename);
- // Read the theme first, because we need the colour scheme when reading the styles
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $wbRels = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, 'xl/_rels/workbook.xml.rels')),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- foreach ($wbRels->Relationship as $rel) {
- switch ($rel['Type']) {
- case 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme':
- $themeOrderArray = ['lt1', 'dk1', 'lt2', 'dk2'];
- $themeOrderAdditional = count($themeOrderArray);
- $xmlTheme = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "xl/{$rel['Target']}")),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- if (is_object($xmlTheme)) {
- $xmlThemeName = $xmlTheme->attributes();
- $xmlTheme = $xmlTheme->children('http://schemas.openxmlformats.org/drawingml/2006/main');
- $themeName = (string) $xmlThemeName['name'];
- $colourScheme = $xmlTheme->themeElements->clrScheme->attributes();
- $colourSchemeName = (string) $colourScheme['name'];
- $colourScheme = $xmlTheme->themeElements->clrScheme->children('http://schemas.openxmlformats.org/drawingml/2006/main');
- $themeColours = [];
- foreach ($colourScheme as $k => $xmlColour) {
- $themePos = array_search($k, $themeOrderArray);
- if ($themePos === false) {
- $themePos = $themeOrderAdditional++;
- }
- if (isset($xmlColour->sysClr)) {
- $xmlColourData = $xmlColour->sysClr->attributes();
- $themeColours[$themePos] = $xmlColourData['lastClr'];
- } elseif (isset($xmlColour->srgbClr)) {
- $xmlColourData = $xmlColour->srgbClr->attributes();
- $themeColours[$themePos] = $xmlColourData['val'];
- }
- }
- self::$theme = new Xlsx\Theme($themeName, $colourSchemeName, $themeColours);
- }
- break;
- }
- }
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $rels = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, '_rels/.rels')),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- foreach ($rels->Relationship as $rel) {
- switch ($rel['Type']) {
- case 'http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties':
- $xmlCore = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "{$rel['Target']}")),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- if (is_object($xmlCore)) {
- $xmlCore->registerXPathNamespace('dc', 'http://purl.org/dc/elements/1.1/');
- $xmlCore->registerXPathNamespace('dcterms', 'http://purl.org/dc/terms/');
- $xmlCore->registerXPathNamespace('cp', 'http://schemas.openxmlformats.org/package/2006/metadata/core-properties');
- $docProps = $excel->getProperties();
- $docProps->setCreator((string) self::getArrayItem($xmlCore->xpath('dc:creator')));
- $docProps->setLastModifiedBy((string) self::getArrayItem($xmlCore->xpath('cp:lastModifiedBy')));
- $docProps->setCreated(strtotime(self::getArrayItem($xmlCore->xpath('dcterms:created')))); //! respect xsi:type
- $docProps->setModified(strtotime(self::getArrayItem($xmlCore->xpath('dcterms:modified')))); //! respect xsi:type
- $docProps->setTitle((string) self::getArrayItem($xmlCore->xpath('dc:title')));
- $docProps->setDescription((string) self::getArrayItem($xmlCore->xpath('dc:description')));
- $docProps->setSubject((string) self::getArrayItem($xmlCore->xpath('dc:subject')));
- $docProps->setKeywords((string) self::getArrayItem($xmlCore->xpath('cp:keywords')));
- $docProps->setCategory((string) self::getArrayItem($xmlCore->xpath('cp:category')));
- }
- break;
- case 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties':
- $xmlCore = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "{$rel['Target']}")),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- if (is_object($xmlCore)) {
- $docProps = $excel->getProperties();
- if (isset($xmlCore->Company)) {
- $docProps->setCompany((string) $xmlCore->Company);
- }
- if (isset($xmlCore->Manager)) {
- $docProps->setManager((string) $xmlCore->Manager);
- }
- }
- break;
- case 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties':
- $xmlCore = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "{$rel['Target']}")),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- if (is_object($xmlCore)) {
- $docProps = $excel->getProperties();
- /** @var SimpleXMLElement $xmlProperty */
- foreach ($xmlCore as $xmlProperty) {
- $cellDataOfficeAttributes = $xmlProperty->attributes();
- if (isset($cellDataOfficeAttributes['name'])) {
- $propertyName = (string) $cellDataOfficeAttributes['name'];
- $cellDataOfficeChildren = $xmlProperty->children('http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes');
- $attributeType = $cellDataOfficeChildren->getName();
- $attributeValue = (string) $cellDataOfficeChildren->{$attributeType};
- $attributeValue = Properties::convertProperty($attributeValue, $attributeType);
- $attributeType = Properties::convertPropertyType($attributeType);
- $docProps->setCustomProperty($propertyName, $attributeValue, $attributeType);
- }
- }
- }
- break;
- //Ribbon
- case 'http://schemas.microsoft.com/office/2006/relationships/ui/extensibility':
- $customUI = $rel['Target'];
- if ($customUI !== null) {
- $this->readRibbon($excel, $customUI, $zip);
- }
- break;
- case 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument':
- $dir = dirname($rel['Target']);
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsWorkbook = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "$dir/_rels/" . basename($rel['Target']) . '.rels')),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $relsWorkbook->registerXPathNamespace('rel', 'http://schemas.openxmlformats.org/package/2006/relationships');
- $sharedStrings = [];
- $xpath = self::getArrayItem($relsWorkbook->xpath("rel:Relationship[@Type='http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings']"));
- //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"
- $xmlStrings = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "$dir/$xpath[Target]")),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- if (isset($xmlStrings, $xmlStrings->si)) {
- foreach ($xmlStrings->si as $val) {
- if (isset($val->t)) {
- $sharedStrings[] = StringHelper::controlCharacterOOXML2PHP((string) $val->t);
- } elseif (isset($val->r)) {
- $sharedStrings[] = $this->parseRichText($val);
- }
- }
- }
- $worksheets = [];
- $macros = $customUI = null;
- foreach ($relsWorkbook->Relationship as $ele) {
- switch ($ele['Type']) {
- case 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet':
- $worksheets[(string) $ele['Id']] = $ele['Target'];
- break;
- // a vbaProject ? (: some macros)
- case 'http://schemas.microsoft.com/office/2006/relationships/vbaProject':
- $macros = $ele['Target'];
- break;
- }
- }
- if ($macros !== null) {
- $macrosCode = $this->getFromZipArchive($zip, 'xl/vbaProject.bin'); //vbaProject.bin always in 'xl' dir and always named vbaProject.bin
- if ($macrosCode !== false) {
- $excel->setMacrosCode($macrosCode);
- $excel->setHasMacros(true);
- //short-circuit : not reading vbaProject.bin.rel to get Signature =>allways vbaProjectSignature.bin in 'xl' dir
- $Certificate = $this->getFromZipArchive($zip, 'xl/vbaProjectSignature.bin');
- if ($Certificate !== false) {
- $excel->setMacrosCertificate($Certificate);
- }
- }
- }
- $styles = [];
- $cellStyles = [];
- $xpath = self::getArrayItem($relsWorkbook->xpath("rel:Relationship[@Type='http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles']"));
- //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"
- $xmlStyles = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "$dir/$xpath[Target]")),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $numFmts = null;
- if ($xmlStyles && $xmlStyles->numFmts[0]) {
- $numFmts = $xmlStyles->numFmts[0];
- }
- if (isset($numFmts) && ($numFmts !== null)) {
- $numFmts->registerXPathNamespace('sml', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main');
- }
- if (!$this->readDataOnly && $xmlStyles) {
- foreach ($xmlStyles->cellXfs->xf as $xf) {
- $numFmt = NumberFormat::FORMAT_GENERAL;
- if ($xf['numFmtId']) {
- if (isset($numFmts)) {
- $tmpNumFmt = self::getArrayItem($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]"));
- if (isset($tmpNumFmt['formatCode'])) {
- $numFmt = (string) $tmpNumFmt['formatCode'];
- }
- }
- // We shouldn't override any of the built-in MS Excel values (values below id 164)
- // But there's a lot of naughty homebrew xlsx writers that do use "reserved" id values that aren't actually used
- // So we make allowance for them rather than lose formatting masks
- if ((int) $xf['numFmtId'] < 164 &&
- NumberFormat::builtInFormatCode((int) $xf['numFmtId']) !== '') {
- $numFmt = NumberFormat::builtInFormatCode((int) $xf['numFmtId']);
- }
- }
- $quotePrefix = false;
- if (isset($xf['quotePrefix'])) {
- $quotePrefix = (bool) $xf['quotePrefix'];
- }
- $style = (object) [
- 'numFmt' => $numFmt,
- 'font' => $xmlStyles->fonts->font[(int) ($xf['fontId'])],
- 'fill' => $xmlStyles->fills->fill[(int) ($xf['fillId'])],
- 'border' => $xmlStyles->borders->border[(int) ($xf['borderId'])],
- 'alignment' => $xf->alignment,
- 'protection' => $xf->protection,
- 'quotePrefix' => $quotePrefix,
- ];
- $styles[] = $style;
- // add style to cellXf collection
- $objStyle = new Style();
- self::readStyle($objStyle, $style);
- $excel->addCellXf($objStyle);
- }
- foreach (isset($xmlStyles->cellStyleXfs->xf) ? $xmlStyles->cellStyleXfs->xf : [] as $xf) {
- $numFmt = NumberFormat::FORMAT_GENERAL;
- if ($numFmts && $xf['numFmtId']) {
- $tmpNumFmt = self::getArrayItem($numFmts->xpath("sml:numFmt[@numFmtId=$xf[numFmtId]]"));
- if (isset($tmpNumFmt['formatCode'])) {
- $numFmt = (string) $tmpNumFmt['formatCode'];
- } elseif ((int) $xf['numFmtId'] < 165) {
- $numFmt = NumberFormat::builtInFormatCode((int) $xf['numFmtId']);
- }
- }
- $cellStyle = (object) [
- 'numFmt' => $numFmt,
- 'font' => $xmlStyles->fonts->font[(int) ($xf['fontId'])],
- 'fill' => $xmlStyles->fills->fill[(int) ($xf['fillId'])],
- 'border' => $xmlStyles->borders->border[(int) ($xf['borderId'])],
- 'alignment' => $xf->alignment,
- 'protection' => $xf->protection,
- 'quotePrefix' => $quotePrefix,
- ];
- $cellStyles[] = $cellStyle;
- // add style to cellStyleXf collection
- $objStyle = new Style();
- self::readStyle($objStyle, $cellStyle);
- $excel->addCellStyleXf($objStyle);
- }
- }
- $dxfs = [];
- if (!$this->readDataOnly && $xmlStyles) {
- // Conditional Styles
- if ($xmlStyles->dxfs) {
- foreach ($xmlStyles->dxfs->dxf as $dxf) {
- $style = new Style(false, true);
- self::readStyle($style, $dxf);
- $dxfs[] = $style;
- }
- }
- // Cell Styles
- if ($xmlStyles->cellStyles) {
- foreach ($xmlStyles->cellStyles->cellStyle as $cellStyle) {
- if ((int) ($cellStyle['builtinId']) == 0) {
- if (isset($cellStyles[(int) ($cellStyle['xfId'])])) {
- // Set default style
- $style = new Style();
- self::readStyle($style, $cellStyles[(int) ($cellStyle['xfId'])]);
- // normal style, currently not using it for anything
- }
- }
- }
- }
- }
- //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"
- $xmlWorkbook = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "{$rel['Target']}")),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- // Set base date
- if ($xmlWorkbook->workbookPr) {
- Date::setExcelCalendar(Date::CALENDAR_WINDOWS_1900);
- if (isset($xmlWorkbook->workbookPr['date1904'])) {
- if (self::boolean((string) $xmlWorkbook->workbookPr['date1904'])) {
- Date::setExcelCalendar(Date::CALENDAR_MAC_1904);
- }
- }
- }
- // Set protection
- $this->readProtection($excel, $xmlWorkbook);
- $sheetId = 0; // keep track of new sheet id in final workbook
- $oldSheetId = -1; // keep track of old sheet id in final workbook
- $countSkippedSheets = 0; // keep track of number of skipped sheets
- $mapSheetId = []; // mapping of sheet ids from old to new
- $charts = $chartDetails = [];
- if ($xmlWorkbook->sheets) {
- /** @var SimpleXMLElement $eleSheet */
- foreach ($xmlWorkbook->sheets->sheet as $eleSheet) {
- ++$oldSheetId;
- // Check if sheet should be skipped
- if (isset($this->loadSheetsOnly) && !in_array((string) $eleSheet['name'], $this->loadSheetsOnly)) {
- ++$countSkippedSheets;
- $mapSheetId[$oldSheetId] = null;
- continue;
- }
- // Map old sheet id in original workbook to new sheet id.
- // They will differ if loadSheetsOnly() is being used
- $mapSheetId[$oldSheetId] = $oldSheetId - $countSkippedSheets;
- // Load sheet
- $docSheet = $excel->createSheet();
- // Use false for $updateFormulaCellReferences to prevent adjustment of worksheet
- // references in formula cells... during the load, all formulae should be correct,
- // and we're simply bringing the worksheet name in line with the formula, not the
- // reverse
- $docSheet->setTitle((string) $eleSheet['name'], false, false);
- $fileWorksheet = $worksheets[(string) self::getArrayItem($eleSheet->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'), 'id')];
- //~ http://schemas.openxmlformats.org/spreadsheetml/2006/main"
- $xmlSheet = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, "$dir/$fileWorksheet")),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $sharedFormulas = [];
- if (isset($eleSheet['state']) && (string) $eleSheet['state'] != '') {
- $docSheet->setSheetState((string) $eleSheet['state']);
- }
- if (isset($xmlSheet->sheetViews, $xmlSheet->sheetViews->sheetView)) {
- if (isset($xmlSheet->sheetViews->sheetView['zoomScale'])) {
- $zoomScale = (int) ($xmlSheet->sheetViews->sheetView['zoomScale']);
- if ($zoomScale <= 0) {
- // setZoomScale will throw an Exception if the scale is less than or equals 0
- // that is OK when manually creating documents, but we should be able to read all documents
- $zoomScale = 100;
- }
- $docSheet->getSheetView()->setZoomScale($zoomScale);
- }
- if (isset($xmlSheet->sheetViews->sheetView['zoomScaleNormal'])) {
- $zoomScaleNormal = (int) ($xmlSheet->sheetViews->sheetView['zoomScaleNormal']);
- if ($zoomScaleNormal <= 0) {
- // setZoomScaleNormal will throw an Exception if the scale is less than or equals 0
- // that is OK when manually creating documents, but we should be able to read all documents
- $zoomScaleNormal = 100;
- }
- $docSheet->getSheetView()->setZoomScaleNormal($zoomScaleNormal);
- }
- if (isset($xmlSheet->sheetViews->sheetView['view'])) {
- $docSheet->getSheetView()->setView((string) $xmlSheet->sheetViews->sheetView['view']);
- }
- if (isset($xmlSheet->sheetViews->sheetView['showGridLines'])) {
- $docSheet->setShowGridLines(self::boolean((string) $xmlSheet->sheetViews->sheetView['showGridLines']));
- }
- if (isset($xmlSheet->sheetViews->sheetView['showRowColHeaders'])) {
- $docSheet->setShowRowColHeaders(self::boolean((string) $xmlSheet->sheetViews->sheetView['showRowColHeaders']));
- }
- if (isset($xmlSheet->sheetViews->sheetView['rightToLeft'])) {
- $docSheet->setRightToLeft(self::boolean((string) $xmlSheet->sheetViews->sheetView['rightToLeft']));
- }
- if (isset($xmlSheet->sheetViews->sheetView->pane)) {
- $xSplit = 0;
- $ySplit = 0;
- $topLeftCell = null;
- if (isset($xmlSheet->sheetViews->sheetView->pane['xSplit'])) {
- $xSplit = (int) ($xmlSheet->sheetViews->sheetView->pane['xSplit']);
- }
- if (isset($xmlSheet->sheetViews->sheetView->pane['ySplit'])) {
- $ySplit = (int) ($xmlSheet->sheetViews->sheetView->pane['ySplit']);
- }
- if (isset($xmlSheet->sheetViews->sheetView->pane['topLeftCell'])) {
- $topLeftCell = (string) $xmlSheet->sheetViews->sheetView->pane['topLeftCell'];
- }
- $docSheet->freezePane(Coordinate::stringFromColumnIndex($xSplit + 1) . ($ySplit + 1), $topLeftCell);
- }
- if (isset($xmlSheet->sheetViews->sheetView->selection)) {
- if (isset($xmlSheet->sheetViews->sheetView->selection['sqref'])) {
- $sqref = (string) $xmlSheet->sheetViews->sheetView->selection['sqref'];
- $sqref = explode(' ', $sqref);
- $sqref = $sqref[0];
- $docSheet->setSelectedCells($sqref);
- }
- }
- }
- if (isset($xmlSheet->sheetPr, $xmlSheet->sheetPr->tabColor)) {
- if (isset($xmlSheet->sheetPr->tabColor['rgb'])) {
- $docSheet->getTabColor()->setARGB((string) $xmlSheet->sheetPr->tabColor['rgb']);
- }
- }
- if (isset($xmlSheet->sheetPr, $xmlSheet->sheetPr['codeName'])) {
- $docSheet->setCodeName((string) $xmlSheet->sheetPr['codeName'], false);
- }
- if (isset($xmlSheet->sheetPr, $xmlSheet->sheetPr->outlinePr)) {
- if (isset($xmlSheet->sheetPr->outlinePr['summaryRight']) &&
- !self::boolean((string) $xmlSheet->sheetPr->outlinePr['summaryRight'])) {
- $docSheet->setShowSummaryRight(false);
- } else {
- $docSheet->setShowSummaryRight(true);
- }
- if (isset($xmlSheet->sheetPr->outlinePr['summaryBelow']) &&
- !self::boolean((string) $xmlSheet->sheetPr->outlinePr['summaryBelow'])) {
- $docSheet->setShowSummaryBelow(false);
- } else {
- $docSheet->setShowSummaryBelow(true);
- }
- }
- if (isset($xmlSheet->sheetPr, $xmlSheet->sheetPr->pageSetUpPr)) {
- if (isset($xmlSheet->sheetPr->pageSetUpPr['fitToPage']) &&
- !self::boolean((string) $xmlSheet->sheetPr->pageSetUpPr['fitToPage'])) {
- $docSheet->getPageSetup()->setFitToPage(false);
- } else {
- $docSheet->getPageSetup()->setFitToPage(true);
- }
- }
- if (isset($xmlSheet->sheetFormatPr)) {
- if (isset($xmlSheet->sheetFormatPr['customHeight']) &&
- self::boolean((string) $xmlSheet->sheetFormatPr['customHeight']) &&
- isset($xmlSheet->sheetFormatPr['defaultRowHeight'])) {
- $docSheet->getDefaultRowDimension()->setRowHeight((float) $xmlSheet->sheetFormatPr['defaultRowHeight']);
- }
- if (isset($xmlSheet->sheetFormatPr['defaultColWidth'])) {
- $docSheet->getDefaultColumnDimension()->setWidth((float) $xmlSheet->sheetFormatPr['defaultColWidth']);
- }
- if (isset($xmlSheet->sheetFormatPr['zeroHeight']) &&
- ((string) $xmlSheet->sheetFormatPr['zeroHeight'] == '1')) {
- $docSheet->getDefaultRowDimension()->setZeroHeight(true);
- }
- }
- if (isset($xmlSheet->printOptions) && !$this->readDataOnly) {
- if (self::boolean((string) $xmlSheet->printOptions['gridLinesSet'])) {
- $docSheet->setShowGridlines(true);
- }
- if (self::boolean((string) $xmlSheet->printOptions['gridLines'])) {
- $docSheet->setPrintGridlines(true);
- }
- if (self::boolean((string) $xmlSheet->printOptions['horizontalCentered'])) {
- $docSheet->getPageSetup()->setHorizontalCentered(true);
- }
- if (self::boolean((string) $xmlSheet->printOptions['verticalCentered'])) {
- $docSheet->getPageSetup()->setVerticalCentered(true);
- }
- }
- $this->readColumnsAndRowsAttributes($xmlSheet, $docSheet);
- if ($xmlSheet && $xmlSheet->sheetData && $xmlSheet->sheetData->row) {
- $cIndex = 1; // Cell Start from 1
- foreach ($xmlSheet->sheetData->row as $row) {
- $rowIndex = 1;
- foreach ($row->c as $c) {
- $r = (string) $c['r'];
- if ($r == '') {
- $r = Coordinate::stringFromColumnIndex($rowIndex) . $cIndex;
- }
- $cellDataType = (string) $c['t'];
- $value = null;
- $calculatedValue = null;
- // Read cell?
- if ($this->getReadFilter() !== null) {
- $coordinates = Coordinate::coordinateFromString($r);
- if (!$this->getReadFilter()->readCell($coordinates[0], (int) $coordinates[1], $docSheet->getTitle())) {
- $rowIndex += 1;
- continue;
- }
- }
- // Read cell!
- switch ($cellDataType) {
- case 's':
- if ((string) $c->v != '') {
- $value = $sharedStrings[(int) ($c->v)];
- if ($value instanceof RichText) {
- $value = clone $value;
- }
- } else {
- $value = '';
- }
- break;
- case 'b':
- if (!isset($c->f)) {
- $value = self::castToBoolean($c);
- } else {
- // Formula
- $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToBoolean');
- if (isset($c->f['t'])) {
- $att = $c->f;
- $docSheet->getCell($r)->setFormulaAttributes($att);
- }
- }
- break;
- case 'inlineStr':
- if (isset($c->f)) {
- $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError');
- } else {
- $value = $this->parseRichText($c->is);
- }
- break;
- case 'e':
- if (!isset($c->f)) {
- $value = self::castToError($c);
- } else {
- // Formula
- $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToError');
- }
- break;
- default:
- if (!isset($c->f)) {
- $value = self::castToString($c);
- } else {
- // Formula
- $this->castToFormula($c, $r, $cellDataType, $value, $calculatedValue, $sharedFormulas, 'castToString');
- }
- break;
- }
- // Check for numeric values
- if (is_numeric($value) && $cellDataType != 's') {
- if ($value == (int) $value) {
- $value = (int) $value;
- } elseif ($value == (float) $value) {
- $value = (float) $value;
- } elseif ($value == (float) $value) {
- $value = (float) $value;
- }
- }
- // Rich text?
- if ($value instanceof RichText && $this->readDataOnly) {
- $value = $value->getPlainText();
- }
- $cell = $docSheet->getCell($r);
- // Assign value
- if ($cellDataType != '') {
- $cell->setValueExplicit($value, $cellDataType);
- } else {
- $cell->setValue($value);
- }
- if ($calculatedValue !== null) {
- $cell->setCalculatedValue($calculatedValue);
- }
- // Style information?
- if ($c['s'] && !$this->readDataOnly) {
- // no style index means 0, it seems
- $cell->setXfIndex(isset($styles[(int) ($c['s'])]) ?
- (int) ($c['s']) : 0);
- }
- $rowIndex += 1;
- }
- $cIndex += 1;
- }
- }
- $conditionals = [];
- if (!$this->readDataOnly && $xmlSheet && $xmlSheet->conditionalFormatting) {
- foreach ($xmlSheet->conditionalFormatting as $conditional) {
- foreach ($conditional->cfRule as $cfRule) {
- if (((string) $cfRule['type'] == Conditional::CONDITION_NONE || (string) $cfRule['type'] == Conditional::CONDITION_CELLIS || (string) $cfRule['type'] == Conditional::CONDITION_CONTAINSTEXT || (string) $cfRule['type'] == Conditional::CONDITION_EXPRESSION) && isset($dxfs[(int) ($cfRule['dxfId'])])) {
- $conditionals[(string) $conditional['sqref']][(int) ($cfRule['priority'])] = $cfRule;
- }
- }
- }
- foreach ($conditionals as $ref => $cfRules) {
- ksort($cfRules);
- $conditionalStyles = [];
- foreach ($cfRules as $cfRule) {
- $objConditional = new Conditional();
- $objConditional->setConditionType((string) $cfRule['type']);
- $objConditional->setOperatorType((string) $cfRule['operator']);
- if ((string) $cfRule['text'] != '') {
- $objConditional->setText((string) $cfRule['text']);
- }
- if (isset($cfRule['stopIfTrue']) && (int) $cfRule['stopIfTrue'] === 1) {
- $objConditional->setStopIfTrue(true);
- }
- if (count($cfRule->formula) > 1) {
- foreach ($cfRule->formula as $formula) {
- $objConditional->addCondition((string) $formula);
- }
- } else {
- $objConditional->addCondition((string) $cfRule->formula);
- }
- $objConditional->setStyle(clone $dxfs[(int) ($cfRule['dxfId'])]);
- $conditionalStyles[] = $objConditional;
- }
- // Extract all cell references in $ref
- $cellBlocks = explode(' ', str_replace('$', '', strtoupper($ref)));
- foreach ($cellBlocks as $cellBlock) {
- $docSheet->getStyle($cellBlock)->setConditionalStyles($conditionalStyles);
- }
- }
- }
- $aKeys = ['sheet', 'objects', 'scenarios', 'formatCells', 'formatColumns', 'formatRows', 'insertColumns', 'insertRows', 'insertHyperlinks', 'deleteColumns', 'deleteRows', 'selectLockedCells', 'sort', 'autoFilter', 'pivotTables', 'selectUnlockedCells'];
- if (!$this->readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) {
- foreach ($aKeys as $key) {
- $method = 'set' . ucfirst($key);
- $docSheet->getProtection()->$method(self::boolean((string) $xmlSheet->sheetProtection[$key]));
- }
- }
- if (!$this->readDataOnly && $xmlSheet && $xmlSheet->sheetProtection) {
- $docSheet->getProtection()->setPassword((string) $xmlSheet->sheetProtection['password'], true);
- if ($xmlSheet->protectedRanges->protectedRange) {
- foreach ($xmlSheet->protectedRanges->protectedRange as $protectedRange) {
- $docSheet->protectCells((string) $protectedRange['sqref'], (string) $protectedRange['password'], true);
- }
- }
- }
- if ($xmlSheet && $xmlSheet->autoFilter && !$this->readDataOnly) {
- $autoFilterRange = (string) $xmlSheet->autoFilter['ref'];
- if (strpos($autoFilterRange, ':') !== false) {
- $autoFilter = $docSheet->getAutoFilter();
- $autoFilter->setRange($autoFilterRange);
- foreach ($xmlSheet->autoFilter->filterColumn as $filterColumn) {
- $column = $autoFilter->getColumnByOffset((int) $filterColumn['colId']);
- // Check for standard filters
- if ($filterColumn->filters) {
- $column->setFilterType(Column::AUTOFILTER_FILTERTYPE_FILTER);
- $filters = $filterColumn->filters;
- if ((isset($filters['blank'])) && ($filters['blank'] == 1)) {
- // Operator is undefined, but always treated as EQUAL
- $column->createRule()->setRule(null, '')->setRuleType(Column\Rule::AUTOFILTER_RULETYPE_FILTER);
- }
- // Standard filters are always an OR join, so no join rule needs to be set
- // Entries can be either filter elements
- foreach ($filters->filter as $filterRule) {
- // Operator is undefined, but always treated as EQUAL
- $column->createRule()->setRule(null, (string) $filterRule['val'])->setRuleType(Column\Rule::AUTOFILTER_RULETYPE_FILTER);
- }
- // Or Date Group elements
- foreach ($filters->dateGroupItem as $dateGroupItem) {
- // Operator is undefined, but always treated as EQUAL
- $column->createRule()->setRule(
- null,
- [
- 'year' => (string) $dateGroupItem['year'],
- 'month' => (string) $dateGroupItem['month'],
- 'day' => (string) $dateGroupItem['day'],
- 'hour' => (string) $dateGroupItem['hour'],
- 'minute' => (string) $dateGroupItem['minute'],
- 'second' => (string) $dateGroupItem['second'],
- ],
- (string) $dateGroupItem['dateTimeGrouping']
- )
- ->setRuleType(Column\Rule::AUTOFILTER_RULETYPE_DATEGROUP);
- }
- }
- // Check for custom filters
- if ($filterColumn->customFilters) {
- $column->setFilterType(Column::AUTOFILTER_FILTERTYPE_CUSTOMFILTER);
- $customFilters = $filterColumn->customFilters;
- // Custom filters can an AND or an OR join;
- // and there should only ever be one or two entries
- if ((isset($customFilters['and'])) && ($customFilters['and'] == 1)) {
- $column->setJoin(Column::AUTOFILTER_COLUMN_JOIN_AND);
- }
- foreach ($customFilters->customFilter as $filterRule) {
- $column->createRule()->setRule(
- (string) $filterRule['operator'],
- (string) $filterRule['val']
- )
- ->setRuleType(Column\Rule::AUTOFILTER_RULETYPE_CUSTOMFILTER);
- }
- }
- // Check for dynamic filters
- if ($filterColumn->dynamicFilter) {
- $column->setFilterType(Column::AUTOFILTER_FILTERTYPE_DYNAMICFILTER);
- // We should only ever have one dynamic filter
- foreach ($filterColumn->dynamicFilter as $filterRule) {
- // Operator is undefined, but always treated as EQUAL
- $column->createRule()->setRule(
- null,
- (string) $filterRule['val'],
- (string) $filterRule['type']
- )
- ->setRuleType(Column\Rule::AUTOFILTER_RULETYPE_DYNAMICFILTER);
- if (isset($filterRule['val'])) {
- $column->setAttribute('val', (string) $filterRule['val']);
- }
- if (isset($filterRule['maxVal'])) {
- $column->setAttribute('maxVal', (string) $filterRule['maxVal']);
- }
- }
- }
- // Check for dynamic filters
- if ($filterColumn->top10) {
- $column->setFilterType(Column::AUTOFILTER_FILTERTYPE_TOPTENFILTER);
- // We should only ever have one top10 filter
- foreach ($filterColumn->top10 as $filterRule) {
- $column->createRule()->setRule(
- (((isset($filterRule['percent'])) && ($filterRule['percent'] == 1))
- ? Column\Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_PERCENT
- : Column\Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BY_VALUE
- ),
- (string) $filterRule['val'],
- (((isset($filterRule['top'])) && ($filterRule['top'] == 1))
- ? Column\Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_TOP
- : Column\Rule::AUTOFILTER_COLUMN_RULE_TOPTEN_BOTTOM
- )
- )
- ->setRuleType(Column\Rule::AUTOFILTER_RULETYPE_TOPTENFILTER);
- }
- }
- }
- }
- }
- if ($xmlSheet && $xmlSheet->mergeCells && $xmlSheet->mergeCells->mergeCell && !$this->readDataOnly) {
- foreach ($xmlSheet->mergeCells->mergeCell as $mergeCell) {
- $mergeRef = (string) $mergeCell['ref'];
- if (strpos($mergeRef, ':') !== false) {
- $docSheet->mergeCells((string) $mergeCell['ref']);
- }
- }
- }
- if ($xmlSheet && $xmlSheet->pageMargins && !$this->readDataOnly) {
- $docPageMargins = $docSheet->getPageMargins();
- $docPageMargins->setLeft((float) ($xmlSheet->pageMargins['left']));
- $docPageMargins->setRight((float) ($xmlSheet->pageMargins['right']));
- $docPageMargins->setTop((float) ($xmlSheet->pageMargins['top']));
- $docPageMargins->setBottom((float) ($xmlSheet->pageMargins['bottom']));
- $docPageMargins->setHeader((float) ($xmlSheet->pageMargins['header']));
- $docPageMargins->setFooter((float) ($xmlSheet->pageMargins['footer']));
- }
- if ($xmlSheet && $xmlSheet->pageSetup && !$this->readDataOnly) {
- $docPageSetup = $docSheet->getPageSetup();
- if (isset($xmlSheet->pageSetup['orientation'])) {
- $docPageSetup->setOrientation((string) $xmlSheet->pageSetup['orientation']);
- }
- if (isset($xmlSheet->pageSetup['paperSize'])) {
- $docPageSetup->setPaperSize((int) ($xmlSheet->pageSetup['paperSize']));
- }
- if (isset($xmlSheet->pageSetup['scale'])) {
- $docPageSetup->setScale((int) ($xmlSheet->pageSetup['scale']), false);
- }
- if (isset($xmlSheet->pageSetup['fitToHeight']) && (int) ($xmlSheet->pageSetup['fitToHeight']) >= 0) {
- $docPageSetup->setFitToHeight((int) ($xmlSheet->pageSetup['fitToHeight']), false);
- }
- if (isset($xmlSheet->pageSetup['fitToWidth']) && (int) ($xmlSheet->pageSetup['fitToWidth']) >= 0) {
- $docPageSetup->setFitToWidth((int) ($xmlSheet->pageSetup['fitToWidth']), false);
- }
- if (isset($xmlSheet->pageSetup['firstPageNumber'], $xmlSheet->pageSetup['useFirstPageNumber']) &&
- self::boolean((string) $xmlSheet->pageSetup['useFirstPageNumber'])) {
- $docPageSetup->setFirstPageNumber((int) ($xmlSheet->pageSetup['firstPageNumber']));
- }
- $relAttributes = $xmlSheet->pageSetup->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships');
- if (isset($relAttributes['id'])) {
- $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['pageSetupRelId'] = (string) $relAttributes['id'];
- }
- }
- if ($xmlSheet && $xmlSheet->headerFooter && !$this->readDataOnly) {
- $docHeaderFooter = $docSheet->getHeaderFooter();
- if (isset($xmlSheet->headerFooter['differentOddEven']) &&
- self::boolean((string) $xmlSheet->headerFooter['differentOddEven'])) {
- $docHeaderFooter->setDifferentOddEven(true);
- } else {
- $docHeaderFooter->setDifferentOddEven(false);
- }
- if (isset($xmlSheet->headerFooter['differentFirst']) &&
- self::boolean((string) $xmlSheet->headerFooter['differentFirst'])) {
- $docHeaderFooter->setDifferentFirst(true);
- } else {
- $docHeaderFooter->setDifferentFirst(false);
- }
- if (isset($xmlSheet->headerFooter['scaleWithDoc']) &&
- !self::boolean((string) $xmlSheet->headerFooter['scaleWithDoc'])) {
- $docHeaderFooter->setScaleWithDocument(false);
- } else {
- $docHeaderFooter->setScaleWithDocument(true);
- }
- if (isset($xmlSheet->headerFooter['alignWithMargins']) &&
- !self::boolean((string) $xmlSheet->headerFooter['alignWithMargins'])) {
- $docHeaderFooter->setAlignWithMargins(false);
- } else {
- $docHeaderFooter->setAlignWithMargins(true);
- }
- $docHeaderFooter->setOddHeader((string) $xmlSheet->headerFooter->oddHeader);
- $docHeaderFooter->setOddFooter((string) $xmlSheet->headerFooter->oddFooter);
- $docHeaderFooter->setEvenHeader((string) $xmlSheet->headerFooter->evenHeader);
- $docHeaderFooter->setEvenFooter((string) $xmlSheet->headerFooter->evenFooter);
- $docHeaderFooter->setFirstHeader((string) $xmlSheet->headerFooter->firstHeader);
- $docHeaderFooter->setFirstFooter((string) $xmlSheet->headerFooter->firstFooter);
- }
- if ($xmlSheet && $xmlSheet->rowBreaks && $xmlSheet->rowBreaks->brk && !$this->readDataOnly) {
- foreach ($xmlSheet->rowBreaks->brk as $brk) {
- if ($brk['man']) {
- $docSheet->setBreak("A$brk[id]", Worksheet::BREAK_ROW);
- }
- }
- }
- if ($xmlSheet && $xmlSheet->colBreaks && $xmlSheet->colBreaks->brk && !$this->readDataOnly) {
- foreach ($xmlSheet->colBreaks->brk as $brk) {
- if ($brk['man']) {
- $docSheet->setBreak(Coordinate::stringFromColumnIndex((string) $brk['id'] + 1) . '1', Worksheet::BREAK_COLUMN);
- }
- }
- }
- if ($xmlSheet && $xmlSheet->dataValidations && !$this->readDataOnly) {
- foreach ($xmlSheet->dataValidations->dataValidation as $dataValidation) {
- // Uppercase coordinate
- $range = strtoupper($dataValidation['sqref']);
- $rangeSet = explode(' ', $range);
- foreach ($rangeSet as $range) {
- $stRange = $docSheet->shrinkRangeToFit($range);
- // Extract all cell references in $range
- foreach (Coordinate::extractAllCellReferencesInRange($stRange) as $reference) {
- // Create validation
- $docValidation = $docSheet->getCell($reference)->getDataValidation();
- $docValidation->setType((string) $dataValidation['type']);
- $docValidation->setErrorStyle((string) $dataValidation['errorStyle']);
- $docValidation->setOperator((string) $dataValidation['operator']);
- $docValidation->setAllowBlank($dataValidation['allowBlank'] != 0);
- $docValidation->setShowDropDown($dataValidation['showDropDown'] == 0);
- $docValidation->setShowInputMessage($dataValidation['showInputMessage'] != 0);
- $docValidation->setShowErrorMessage($dataValidation['showErrorMessage'] != 0);
- $docValidation->setErrorTitle((string) $dataValidation['errorTitle']);
- $docValidation->setError((string) $dataValidation['error']);
- $docValidation->setPromptTitle((string) $dataValidation['promptTitle']);
- $docValidation->setPrompt((string) $dataValidation['prompt']);
- $docValidation->setFormula1((string) $dataValidation->formula1);
- $docValidation->setFormula2((string) $dataValidation->formula2);
- }
- }
- }
- }
- // unparsed sheet AlternateContent
- if ($xmlSheet && !$this->readDataOnly) {
- $mc = $xmlSheet->children('http://schemas.openxmlformats.org/markup-compatibility/2006');
- if ($mc->AlternateContent) {
- foreach ($mc->AlternateContent as $alternateContent) {
- $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['AlternateContents'][] = $alternateContent->asXML();
- }
- }
- }
- // Add hyperlinks
- $hyperlinks = [];
- if (!$this->readDataOnly) {
- // Locate hyperlink relations
- if ($zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) {
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsWorksheet = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- foreach ($relsWorksheet->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink') {
- $hyperlinks[(string) $ele['Id']] = (string) $ele['Target'];
- }
- }
- }
- // Loop through hyperlinks
- if ($xmlSheet && $xmlSheet->hyperlinks) {
- /** @var SimpleXMLElement $hyperlink */
- foreach ($xmlSheet->hyperlinks->hyperlink as $hyperlink) {
- // Link url
- $linkRel = $hyperlink->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships');
- foreach (Coordinate::extractAllCellReferencesInRange($hyperlink['ref']) as $cellReference) {
- $cell = $docSheet->getCell($cellReference);
- if (isset($linkRel['id'])) {
- $hyperlinkUrl = $hyperlinks[(string) $linkRel['id']];
- if (isset($hyperlink['location'])) {
- $hyperlinkUrl .= '#' . (string) $hyperlink['location'];
- }
- $cell->getHyperlink()->setUrl($hyperlinkUrl);
- } elseif (isset($hyperlink['location'])) {
- $cell->getHyperlink()->setUrl('sheet://' . (string) $hyperlink['location']);
- }
- // Tooltip
- if (isset($hyperlink['tooltip'])) {
- $cell->getHyperlink()->setTooltip((string) $hyperlink['tooltip']);
- }
- }
- }
- }
- }
- // Add comments
- $comments = [];
- $vmlComments = [];
- if (!$this->readDataOnly) {
- // Locate comment relations
- if ($zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) {
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsWorksheet = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- foreach ($relsWorksheet->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments') {
- $comments[(string) $ele['Id']] = (string) $ele['Target'];
- }
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing') {
- $vmlComments[(string) $ele['Id']] = (string) $ele['Target'];
- }
- }
- }
- // Loop through comments
- foreach ($comments as $relName => $relPath) {
- // Load comments file
- $relPath = File::realpath(dirname("$dir/$fileWorksheet") . '/' . $relPath);
- $commentsFile = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, $relPath)),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- // Utility variables
- $authors = [];
- // Loop through authors
- foreach ($commentsFile->authors->author as $author) {
- $authors[] = (string) $author;
- }
- // Loop through contents
- foreach ($commentsFile->commentList->comment as $comment) {
- if (!empty($comment['authorId'])) {
- $docSheet->getComment((string) $comment['ref'])->setAuthor($authors[(string) $comment['authorId']]);
- }
- $docSheet->getComment((string) $comment['ref'])->setText($this->parseRichText($comment->text));
- }
- }
- // later we will remove from it real vmlComments
- $unparsedVmlDrawings = $vmlComments;
- // Loop through VML comments
- foreach ($vmlComments as $relName => $relPath) {
- // Load VML comments file
- $relPath = File::realpath(dirname("$dir/$fileWorksheet") . '/' . $relPath);
- $vmlCommentsFile = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, $relPath)),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $vmlCommentsFile->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml');
- $shapes = $vmlCommentsFile->xpath('//v:shape');
- foreach ($shapes as $shape) {
- $shape->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml');
- if (isset($shape['style'])) {
- $style = (string) $shape['style'];
- $fillColor = strtoupper(substr((string) $shape['fillcolor'], 1));
- $column = null;
- $row = null;
- $clientData = $shape->xpath('.//x:ClientData');
- if (is_array($clientData) && !empty($clientData)) {
- $clientData = $clientData[0];
- if (isset($clientData['ObjectType']) && (string) $clientData['ObjectType'] == 'Note') {
- $temp = $clientData->xpath('.//x:Row');
- if (is_array($temp)) {
- $row = $temp[0];
- }
- $temp = $clientData->xpath('.//x:Column');
- if (is_array($temp)) {
- $column = $temp[0];
- }
- }
- }
- if (($column !== null) && ($row !== null)) {
- // Set comment properties
- $comment = $docSheet->getCommentByColumnAndRow($column + 1, $row + 1);
- $comment->getFillColor()->setRGB($fillColor);
- // Parse style
- $styleArray = explode(';', str_replace(' ', '', $style));
- foreach ($styleArray as $stylePair) {
- $stylePair = explode(':', $stylePair);
- if ($stylePair[0] == 'margin-left') {
- $comment->setMarginLeft($stylePair[1]);
- }
- if ($stylePair[0] == 'margin-top') {
- $comment->setMarginTop($stylePair[1]);
- }
- if ($stylePair[0] == 'width') {
- $comment->setWidth($stylePair[1]);
- }
- if ($stylePair[0] == 'height') {
- $comment->setHeight($stylePair[1]);
- }
- if ($stylePair[0] == 'visibility') {
- $comment->setVisible($stylePair[1] == 'visible');
- }
- }
- unset($unparsedVmlDrawings[$relName]);
- }
- }
- }
- }
- // unparsed vmlDrawing
- if ($unparsedVmlDrawings) {
- foreach ($unparsedVmlDrawings as $rId => $relPath) {
- $rId = substr($rId, 3); // rIdXXX
- $unparsedVmlDrawing = &$unparsedLoadedData['sheets'][$docSheet->getCodeName()]['vmlDrawings'];
- $unparsedVmlDrawing[$rId] = [];
- $unparsedVmlDrawing[$rId]['filePath'] = self::dirAdd("$dir/$fileWorksheet", $relPath);
- $unparsedVmlDrawing[$rId]['relFilePath'] = $relPath;
- $unparsedVmlDrawing[$rId]['content'] = $this->securityScanner->scan($this->getFromZipArchive($zip, $unparsedVmlDrawing[$rId]['filePath']));
- unset($unparsedVmlDrawing);
- }
- }
- // Header/footer images
- if ($xmlSheet && $xmlSheet->legacyDrawingHF && !$this->readDataOnly) {
- if ($zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) {
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsWorksheet = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $vmlRelationship = '';
- foreach ($relsWorksheet->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing') {
- $vmlRelationship = self::dirAdd("$dir/$fileWorksheet", $ele['Target']);
- }
- }
- if ($vmlRelationship != '') {
- // Fetch linked images
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsVML = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, dirname($vmlRelationship) . '/_rels/' . basename($vmlRelationship) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $drawings = [];
- foreach ($relsVML->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image') {
- $drawings[(string) $ele['Id']] = self::dirAdd($vmlRelationship, $ele['Target']);
- }
- }
- // Fetch VML document
- $vmlDrawing = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, $vmlRelationship)),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $vmlDrawing->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml');
- $hfImages = [];
- $shapes = $vmlDrawing->xpath('//v:shape');
- foreach ($shapes as $idx => $shape) {
- $shape->registerXPathNamespace('v', 'urn:schemas-microsoft-com:vml');
- $imageData = $shape->xpath('//v:imagedata');
- if (!$imageData) {
- continue;
- }
- $imageData = $imageData[$idx];
- $imageData = $imageData->attributes('urn:schemas-microsoft-com:office:office');
- $style = self::toCSSArray((string) $shape['style']);
- $hfImages[(string) $shape['id']] = new HeaderFooterDrawing();
- if (isset($imageData['title'])) {
- $hfImages[(string) $shape['id']]->setName((string) $imageData['title']);
- }
- $hfImages[(string) $shape['id']]->setPath('zip://' . File::realpath($pFilename) . '#' . $drawings[(string) $imageData['relid']], false);
- $hfImages[(string) $shape['id']]->setResizeProportional(false);
- $hfImages[(string) $shape['id']]->setWidth($style['width']);
- $hfImages[(string) $shape['id']]->setHeight($style['height']);
- if (isset($style['margin-left'])) {
- $hfImages[(string) $shape['id']]->setOffsetX($style['margin-left']);
- }
- $hfImages[(string) $shape['id']]->setOffsetY($style['margin-top']);
- $hfImages[(string) $shape['id']]->setResizeProportional(true);
- }
- $docSheet->getHeaderFooter()->setImages($hfImages);
- }
- }
- }
- }
- // TODO: Autoshapes from twoCellAnchors!
- if ($zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) {
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsWorksheet = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $drawings = [];
- foreach ($relsWorksheet->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing') {
- $drawings[(string) $ele['Id']] = self::dirAdd("$dir/$fileWorksheet", $ele['Target']);
- }
- }
- if ($xmlSheet->drawing && !$this->readDataOnly) {
- foreach ($xmlSheet->drawing as $drawing) {
- $fileDrawing = $drawings[(string) self::getArrayItem($drawing->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'), 'id')];
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsDrawing = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, dirname($fileDrawing) . '/_rels/' . basename($fileDrawing) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $images = [];
- $hyperlinks = [];
- if ($relsDrawing && $relsDrawing->Relationship) {
- foreach ($relsDrawing->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink') {
- $hyperlinks[(string) $ele['Id']] = (string) $ele['Target'];
- }
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image') {
- $images[(string) $ele['Id']] = self::dirAdd($fileDrawing, $ele['Target']);
- } elseif ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/chart') {
- if ($this->includeCharts) {
- $charts[self::dirAdd($fileDrawing, $ele['Target'])] = [
- 'id' => (string) $ele['Id'],
- 'sheet' => $docSheet->getTitle(),
- ];
- }
- }
- }
- }
- $xmlDrawing = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, $fileDrawing)),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- )->children('http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing');
- if ($xmlDrawing->oneCellAnchor) {
- foreach ($xmlDrawing->oneCellAnchor as $oneCellAnchor) {
- if ($oneCellAnchor->pic->blipFill) {
- /** @var SimpleXMLElement $blip */
- $blip = $oneCellAnchor->pic->blipFill->children('http://schemas.openxmlformats.org/drawingml/2006/main')->blip;
- /** @var SimpleXMLElement $xfrm */
- $xfrm = $oneCellAnchor->pic->spPr->children('http://schemas.openxmlformats.org/drawingml/2006/main')->xfrm;
- /** @var SimpleXMLElement $outerShdw */
- $outerShdw = $oneCellAnchor->pic->spPr->children('http://schemas.openxmlformats.org/drawingml/2006/main')->effectLst->outerShdw;
- /** @var \SimpleXMLElement $hlinkClick */
- $hlinkClick = $oneCellAnchor->pic->nvPicPr->cNvPr->children('http://schemas.openxmlformats.org/drawingml/2006/main')->hlinkClick;
- $objDrawing = new \PhpOffice\PhpSpreadsheet\Worksheet\Drawing();
- $objDrawing->setName((string) self::getArrayItem($oneCellAnchor->pic->nvPicPr->cNvPr->attributes(), 'name'));
- $objDrawing->setDescription((string) self::getArrayItem($oneCellAnchor->pic->nvPicPr->cNvPr->attributes(), 'descr'));
- $objDrawing->setPath(
- 'zip://' . File::realpath($pFilename) . '#' .
- $images[(string) self::getArrayItem(
- $blip->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'),
- 'embed'
- )],
- false
- );
- $objDrawing->setCoordinates(Coordinate::stringFromColumnIndex(((string) $oneCellAnchor->from->col) + 1) . ($oneCellAnchor->from->row + 1));
- $objDrawing->setOffsetX(Drawing::EMUToPixels($oneCellAnchor->from->colOff));
- $objDrawing->setOffsetY(Drawing::EMUToPixels($oneCellAnchor->from->rowOff));
- $objDrawing->setResizeProportional(false);
- $objDrawing->setWidth(Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), 'cx')));
- $objDrawing->setHeight(Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), 'cy')));
- if ($xfrm) {
- $objDrawing->setRotation(Drawing::angleToDegrees(self::getArrayItem($xfrm->attributes(), 'rot')));
- }
- if ($outerShdw) {
- $shadow = $objDrawing->getShadow();
- $shadow->setVisible(true);
- $shadow->setBlurRadius(Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), 'blurRad')));
- $shadow->setDistance(Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), 'dist')));
- $shadow->setDirection(Drawing::angleToDegrees(self::getArrayItem($outerShdw->attributes(), 'dir')));
- $shadow->setAlignment((string) self::getArrayItem($outerShdw->attributes(), 'algn'));
- $shadow->getColor()->setRGB(self::getArrayItem($outerShdw->srgbClr->attributes(), 'val'));
- $shadow->setAlpha(self::getArrayItem($outerShdw->srgbClr->alpha->attributes(), 'val') / 1000);
- }
- $this->readHyperLinkDrawing($objDrawing, $oneCellAnchor, $hyperlinks);
- $objDrawing->setWorksheet($docSheet);
- } else {
- // ? Can charts be positioned with a oneCellAnchor ?
- $coordinates = Coordinate::stringFromColumnIndex(((string) $oneCellAnchor->from->col) + 1) . ($oneCellAnchor->from->row + 1);
- $offsetX = Drawing::EMUToPixels($oneCellAnchor->from->colOff);
- $offsetY = Drawing::EMUToPixels($oneCellAnchor->from->rowOff);
- $width = Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), 'cx'));
- $height = Drawing::EMUToPixels(self::getArrayItem($oneCellAnchor->ext->attributes(), 'cy'));
- }
- }
- }
- if ($xmlDrawing->twoCellAnchor) {
- foreach ($xmlDrawing->twoCellAnchor as $twoCellAnchor) {
- if ($twoCellAnchor->pic->blipFill) {
- $blip = $twoCellAnchor->pic->blipFill->children('http://schemas.openxmlformats.org/drawingml/2006/main')->blip;
- $xfrm = $twoCellAnchor->pic->spPr->children('http://schemas.openxmlformats.org/drawingml/2006/main')->xfrm;
- $outerShdw = $twoCellAnchor->pic->spPr->children('http://schemas.openxmlformats.org/drawingml/2006/main')->effectLst->outerShdw;
- $hlinkClick = $twoCellAnchor->pic->nvPicPr->cNvPr->children('http://schemas.openxmlformats.org/drawingml/2006/main')->hlinkClick;
- $objDrawing = new \PhpOffice\PhpSpreadsheet\Worksheet\Drawing();
- $objDrawing->setName((string) self::getArrayItem($twoCellAnchor->pic->nvPicPr->cNvPr->attributes(), 'name'));
- $objDrawing->setDescription((string) self::getArrayItem($twoCellAnchor->pic->nvPicPr->cNvPr->attributes(), 'descr'));
- $objDrawing->setPath(
- 'zip://' . File::realpath($pFilename) . '#' .
- $images[(string) self::getArrayItem(
- $blip->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships'),
- 'embed'
- )],
- false
- );
- $objDrawing->setCoordinates(Coordinate::stringFromColumnIndex(((string) $twoCellAnchor->from->col) + 1) . ($twoCellAnchor->from->row + 1));
- $objDrawing->setOffsetX(Drawing::EMUToPixels($twoCellAnchor->from->colOff));
- $objDrawing->setOffsetY(Drawing::EMUToPixels($twoCellAnchor->from->rowOff));
- $objDrawing->setResizeProportional(false);
- if ($xfrm) {
- $objDrawing->setWidth(Drawing::EMUToPixels(self::getArrayItem($xfrm->ext->attributes(), 'cx')));
- $objDrawing->setHeight(Drawing::EMUToPixels(self::getArrayItem($xfrm->ext->attributes(), 'cy')));
- $objDrawing->setRotation(Drawing::angleToDegrees(self::getArrayItem($xfrm->attributes(), 'rot')));
- }
- if ($outerShdw) {
- $shadow = $objDrawing->getShadow();
- $shadow->setVisible(true);
- $shadow->setBlurRadius(Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), 'blurRad')));
- $shadow->setDistance(Drawing::EMUTopixels(self::getArrayItem($outerShdw->attributes(), 'dist')));
- $shadow->setDirection(Drawing::angleToDegrees(self::getArrayItem($outerShdw->attributes(), 'dir')));
- $shadow->setAlignment((string) self::getArrayItem($outerShdw->attributes(), 'algn'));
- $shadow->getColor()->setRGB(self::getArrayItem($outerShdw->srgbClr->attributes(), 'val'));
- $shadow->setAlpha(self::getArrayItem($outerShdw->srgbClr->alpha->attributes(), 'val') / 1000);
- }
- $this->readHyperLinkDrawing($objDrawing, $twoCellAnchor, $hyperlinks);
- $objDrawing->setWorksheet($docSheet);
- } elseif (($this->includeCharts) && ($twoCellAnchor->graphicFrame)) {
- $fromCoordinate = Coordinate::stringFromColumnIndex(((string) $twoCellAnchor->from->col) + 1) . ($twoCellAnchor->from->row + 1);
- $fromOffsetX = Drawing::EMUToPixels($twoCellAnchor->from->colOff);
- $fromOffsetY = Drawing::EMUToPixels($twoCellAnchor->from->rowOff);
- $toCoordinate = Coordinate::stringFromColumnIndex(((string) $twoCellAnchor->to->col) + 1) . ($twoCellAnchor->to->row + 1);
- $toOffsetX = Drawing::EMUToPixels($twoCellAnchor->to->colOff);
- $toOffsetY = Drawing::EMUToPixels($twoCellAnchor->to->rowOff);
- $graphic = $twoCellAnchor->graphicFrame->children('http://schemas.openxmlformats.org/drawingml/2006/main')->graphic;
- /** @var SimpleXMLElement $chartRef */
- $chartRef = $graphic->graphicData->children('http://schemas.openxmlformats.org/drawingml/2006/chart')->chart;
- $thisChart = (string) $chartRef->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships');
- $chartDetails[$docSheet->getTitle() . '!' . $thisChart] = [
- 'fromCoordinate' => $fromCoordinate,
- 'fromOffsetX' => $fromOffsetX,
- 'fromOffsetY' => $fromOffsetY,
- 'toCoordinate' => $toCoordinate,
- 'toOffsetX' => $toOffsetX,
- 'toOffsetY' => $toOffsetY,
- 'worksheetTitle' => $docSheet->getTitle(),
- ];
- }
- }
- }
- }
- // store original rId of drawing files
- $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['drawingOriginalIds'] = [];
- foreach ($relsWorksheet->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/drawing') {
- $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['drawingOriginalIds'][(string) $ele['Target']] = (string) $ele['Id'];
- }
- }
- // unparsed drawing AlternateContent
- $xmlAltDrawing = simplexml_load_string(
- $this->securityScanner->scan($this->getFromZipArchive($zip, $fileDrawing)),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- )->children('http://schemas.openxmlformats.org/markup-compatibility/2006');
- if ($xmlAltDrawing->AlternateContent) {
- foreach ($xmlAltDrawing->AlternateContent as $alternateContent) {
- $unparsedLoadedData['sheets'][$docSheet->getCodeName()]['drawingAlternateContents'][] = $alternateContent->asXML();
- }
- }
- }
- }
- $this->readFormControlProperties($excel, $zip, $dir, $fileWorksheet, $docSheet, $unparsedLoadedData);
- $this->readPrinterSettings($excel, $zip, $dir, $fileWorksheet, $docSheet, $unparsedLoadedData);
- // Loop through definedNames
- if ($xmlWorkbook->definedNames) {
- foreach ($xmlWorkbook->definedNames->definedName as $definedName) {
- // Extract range
- $extractedRange = (string) $definedName;
- if (($spos = strpos($extractedRange, '!')) !== false) {
- $extractedRange = substr($extractedRange, 0, $spos) . str_replace('$', '', substr($extractedRange, $spos));
- } else {
- $extractedRange = str_replace('$', '', $extractedRange);
- }
- // Valid range?
- if (stripos((string) $definedName, '#REF!') !== false || $extractedRange == '') {
- continue;
- }
- // Some definedNames are only applicable if we are on the same sheet...
- if ((string) $definedName['localSheetId'] != '' && (string) $definedName['localSheetId'] == $oldSheetId) {
- // Switch on type
- switch ((string) $definedName['name']) {
- case '_xlnm._FilterDatabase':
- if ((string) $definedName['hidden'] !== '1') {
- $extractedRange = explode(',', $extractedRange);
- foreach ($extractedRange as $range) {
- $autoFilterRange = $range;
- if (strpos($autoFilterRange, ':') !== false) {
- $docSheet->getAutoFilter()->setRange($autoFilterRange);
- }
- }
- }
- break;
- case '_xlnm.Print_Titles':
- // Split $extractedRange
- $extractedRange = explode(',', $extractedRange);
- // Set print titles
- foreach ($extractedRange as $range) {
- $matches = [];
- $range = str_replace('$', '', $range);
- // check for repeating columns, e g. 'A:A' or 'A:D'
- if (preg_match('/!?([A-Z]+)\:([A-Z]+)$/', $range, $matches)) {
- $docSheet->getPageSetup()->setColumnsToRepeatAtLeft([$matches[1], $matches[2]]);
- } elseif (preg_match('/!?(\d+)\:(\d+)$/', $range, $matches)) {
- // check for repeating rows, e.g. '1:1' or '1:5'
- $docSheet->getPageSetup()->setRowsToRepeatAtTop([$matches[1], $matches[2]]);
- }
- }
- break;
- case '_xlnm.Print_Area':
- $rangeSets = preg_split("/('?(?:.*?)'?(?:![A-Z0-9]+:[A-Z0-9]+)),?/", $extractedRange, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);
- $newRangeSets = [];
- foreach ($rangeSets as $rangeSet) {
- list($sheetName, $rangeSet) = Worksheet::extractSheetTitle($rangeSet, true);
- if (strpos($rangeSet, ':') === false) {
- $rangeSet = $rangeSet . ':' . $rangeSet;
- }
- $newRangeSets[] = str_replace('$', '', $rangeSet);
- }
- $docSheet->getPageSetup()->setPrintArea(implode(',', $newRangeSets));
- break;
- default:
- break;
- }
- }
- }
- }
- // Next sheet id
- ++$sheetId;
- }
- // Loop through definedNames
- if ($xmlWorkbook->definedNames) {
- foreach ($xmlWorkbook->definedNames->definedName as $definedName) {
- // Extract range
- $extractedRange = (string) $definedName;
- if (($spos = strpos($extractedRange, '!')) !== false) {
- $extractedRange = substr($extractedRange, 0, $spos) . str_replace('$', '', substr($extractedRange, $spos));
- } else {
- $extractedRange = str_replace('$', '', $extractedRange);
- }
- // Valid range?
- if (stripos((string) $definedName, '#REF!') !== false || $extractedRange == '') {
- continue;
- }
- // Some definedNames are only applicable if we are on the same sheet...
- if ((string) $definedName['localSheetId'] != '') {
- // Local defined name
- // Switch on type
- switch ((string) $definedName['name']) {
- case '_xlnm._FilterDatabase':
- case '_xlnm.Print_Titles':
- case '_xlnm.Print_Area':
- break;
- default:
- if ($mapSheetId[(int) $definedName['localSheetId']] !== null) {
- if (strpos((string) $definedName, '!') !== false) {
- $range = Worksheet::extractSheetTitle((string) $definedName, true);
- $range[0] = str_replace("''", "'", $range[0]);
- $range[0] = str_replace("'", '', $range[0]);
- if ($worksheet = $docSheet->getParent()->getSheetByName($range[0])) {
- $extractedRange = str_replace('$', '', $range[1]);
- $scope = $docSheet->getParent()->getSheet($mapSheetId[(int) $definedName['localSheetId']]);
- $excel->addNamedRange(new NamedRange((string) $definedName['name'], $worksheet, $extractedRange, true, $scope));
- }
- }
- }
- break;
- }
- } elseif (!isset($definedName['localSheetId'])) {
- // "Global" definedNames
- $locatedSheet = null;
- $extractedSheetName = '';
- if (strpos((string) $definedName, '!') !== false) {
- // Extract sheet name
- $extractedSheetName = Worksheet::extractSheetTitle((string) $definedName, true);
- $extractedSheetName = $extractedSheetName[0];
- // Locate sheet
- $locatedSheet = $excel->getSheetByName($extractedSheetName);
- // Modify range
- list($worksheetName, $extractedRange) = Worksheet::extractSheetTitle($extractedRange, true);
- }
- if ($locatedSheet !== null) {
- $excel->addNamedRange(new NamedRange((string) $definedName['name'], $locatedSheet, $extractedRange, false));
- }
- }
- }
- }
- }
- if ((!$this->readDataOnly) || (!empty($this->loadSheetsOnly))) {
- $workbookView = $xmlWorkbook->bookViews->workbookView;
- // active sheet index
- $activeTab = (int) ($workbookView['activeTab']); // refers to old sheet index
- // keep active sheet index if sheet is still loaded, else first sheet is set as the active
- if (isset($mapSheetId[$activeTab]) && $mapSheetId[$activeTab] !== null) {
- $excel->setActiveSheetIndex($mapSheetId[$activeTab]);
- } else {
- if ($excel->getSheetCount() == 0) {
- $excel->createSheet();
- }
- $excel->setActiveSheetIndex(0);
- }
- if (isset($workbookView['showHorizontalScroll'])) {
- $showHorizontalScroll = (string) $workbookView['showHorizontalScroll'];
- $excel->setShowHorizontalScroll($this->castXsdBooleanToBool($showHorizontalScroll));
- }
- if (isset($workbookView['showVerticalScroll'])) {
- $showVerticalScroll = (string) $workbookView['showVerticalScroll'];
- $excel->setShowVerticalScroll($this->castXsdBooleanToBool($showVerticalScroll));
- }
- if (isset($workbookView['showSheetTabs'])) {
- $showSheetTabs = (string) $workbookView['showSheetTabs'];
- $excel->setShowSheetTabs($this->castXsdBooleanToBool($showSheetTabs));
- }
- if (isset($workbookView['minimized'])) {
- $minimized = (string) $workbookView['minimized'];
- $excel->setMinimized($this->castXsdBooleanToBool($minimized));
- }
- if (isset($workbookView['autoFilterDateGrouping'])) {
- $autoFilterDateGrouping = (string) $workbookView['autoFilterDateGrouping'];
- $excel->setAutoFilterDateGrouping($this->castXsdBooleanToBool($autoFilterDateGrouping));
- }
- if (isset($workbookView['firstSheet'])) {
- $firstSheet = (string) $workbookView['firstSheet'];
- $excel->setFirstSheetIndex((int) $firstSheet);
- }
- if (isset($workbookView['visibility'])) {
- $visibility = (string) $workbookView['visibility'];
- $excel->setVisibility($visibility);
- }
- if (isset($workbookView['tabRatio'])) {
- $tabRatio = (string) $workbookView['tabRatio'];
- $excel->setTabRatio((int) $tabRatio);
- }
- }
- break;
- }
- }
- if (!$this->readDataOnly) {
- $contentTypes = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, '[Content_Types].xml')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- // Default content types
- foreach ($contentTypes->Default as $contentType) {
- switch ($contentType['ContentType']) {
- case 'application/vnd.openxmlformats-officedocument.spreadsheetml.printerSettings':
- $unparsedLoadedData['default_content_types'][(string) $contentType['Extension']] = (string) $contentType['ContentType'];
- break;
- }
- }
- // Override content types
- foreach ($contentTypes->Override as $contentType) {
- switch ($contentType['ContentType']) {
- case 'application/vnd.openxmlformats-officedocument.drawingml.chart+xml':
- if ($this->includeCharts) {
- $chartEntryRef = ltrim($contentType['PartName'], '/');
- $chartElements = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, $chartEntryRef)
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $objChart = Chart::readChart($chartElements, basename($chartEntryRef, '.xml'));
- if (isset($charts[$chartEntryRef])) {
- $chartPositionRef = $charts[$chartEntryRef]['sheet'] . '!' . $charts[$chartEntryRef]['id'];
- if (isset($chartDetails[$chartPositionRef])) {
- $excel->getSheetByName($charts[$chartEntryRef]['sheet'])->addChart($objChart);
- $objChart->setWorksheet($excel->getSheetByName($charts[$chartEntryRef]['sheet']));
- $objChart->setTopLeftPosition($chartDetails[$chartPositionRef]['fromCoordinate'], $chartDetails[$chartPositionRef]['fromOffsetX'], $chartDetails[$chartPositionRef]['fromOffsetY']);
- $objChart->setBottomRightPosition($chartDetails[$chartPositionRef]['toCoordinate'], $chartDetails[$chartPositionRef]['toOffsetX'], $chartDetails[$chartPositionRef]['toOffsetY']);
- }
- }
- }
- break;
- // unparsed
- case 'application/vnd.ms-excel.controlproperties+xml':
- $unparsedLoadedData['override_content_types'][(string) $contentType['PartName']] = (string) $contentType['ContentType'];
- break;
- }
- }
- }
- $excel->setUnparsedLoadedData($unparsedLoadedData);
- $zip->close();
- return $excel;
- }
- private static function readColor($color, $background = false)
- {
- if (isset($color['rgb'])) {
- return (string) $color['rgb'];
- } elseif (isset($color['indexed'])) {
- return Color::indexedColor($color['indexed'] - 7, $background)->getARGB();
- } elseif (isset($color['theme'])) {
- if (self::$theme !== null) {
- $returnColour = self::$theme->getColourByIndex((int) $color['theme']);
- if (isset($color['tint'])) {
- $tintAdjust = (float) $color['tint'];
- $returnColour = Color::changeBrightness($returnColour, $tintAdjust);
- }
- return 'FF' . $returnColour;
- }
- }
- if ($background) {
- return 'FFFFFFFF';
- }
- return 'FF000000';
- }
- /**
- * @param Style $docStyle
- * @param SimpleXMLElement|\stdClass $style
- */
- private static function readStyle(Style $docStyle, $style)
- {
- $docStyle->getNumberFormat()->setFormatCode($style->numFmt);
- // font
- if (isset($style->font)) {
- $docStyle->getFont()->setName((string) $style->font->name['val']);
- $docStyle->getFont()->setSize((string) $style->font->sz['val']);
- if (isset($style->font->b)) {
- $docStyle->getFont()->setBold(!isset($style->font->b['val']) || self::boolean((string) $style->font->b['val']));
- }
- if (isset($style->font->i)) {
- $docStyle->getFont()->setItalic(!isset($style->font->i['val']) || self::boolean((string) $style->font->i['val']));
- }
- if (isset($style->font->strike)) {
- $docStyle->getFont()->setStrikethrough(!isset($style->font->strike['val']) || self::boolean((string) $style->font->strike['val']));
- }
- $docStyle->getFont()->getColor()->setARGB(self::readColor($style->font->color));
- if (isset($style->font->u) && !isset($style->font->u['val'])) {
- $docStyle->getFont()->setUnderline(\PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_SINGLE);
- } elseif (isset($style->font->u, $style->font->u['val'])) {
- $docStyle->getFont()->setUnderline((string) $style->font->u['val']);
- }
- if (isset($style->font->vertAlign, $style->font->vertAlign['val'])) {
- $vertAlign = strtolower((string) $style->font->vertAlign['val']);
- if ($vertAlign == 'superscript') {
- $docStyle->getFont()->setSuperscript(true);
- }
- if ($vertAlign == 'subscript') {
- $docStyle->getFont()->setSubscript(true);
- }
- }
- }
- // fill
- if (isset($style->fill)) {
- if ($style->fill->gradientFill) {
- /** @var SimpleXMLElement $gradientFill */
- $gradientFill = $style->fill->gradientFill[0];
- if (!empty($gradientFill['type'])) {
- $docStyle->getFill()->setFillType((string) $gradientFill['type']);
- }
- $docStyle->getFill()->setRotation((float) ($gradientFill['degree']));
- $gradientFill->registerXPathNamespace('sml', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main');
- $docStyle->getFill()->getStartColor()->setARGB(self::readColor(self::getArrayItem($gradientFill->xpath('sml:stop[@position=0]'))->color));
- $docStyle->getFill()->getEndColor()->setARGB(self::readColor(self::getArrayItem($gradientFill->xpath('sml:stop[@position=1]'))->color));
- } elseif ($style->fill->patternFill) {
- $patternType = (string) $style->fill->patternFill['patternType'] != '' ? (string) $style->fill->patternFill['patternType'] : 'solid';
- $docStyle->getFill()->setFillType($patternType);
- if ($style->fill->patternFill->fgColor) {
- $docStyle->getFill()->getStartColor()->setARGB(self::readColor($style->fill->patternFill->fgColor, true));
- } else {
- $docStyle->getFill()->getStartColor()->setARGB('FF000000');
- }
- if ($style->fill->patternFill->bgColor) {
- $docStyle->getFill()->getEndColor()->setARGB(self::readColor($style->fill->patternFill->bgColor, true));
- }
- }
- }
- // border
- if (isset($style->border)) {
- $diagonalUp = self::boolean((string) $style->border['diagonalUp']);
- $diagonalDown = self::boolean((string) $style->border['diagonalDown']);
- if (!$diagonalUp && !$diagonalDown) {
- $docStyle->getBorders()->setDiagonalDirection(Borders::DIAGONAL_NONE);
- } elseif ($diagonalUp && !$diagonalDown) {
- $docStyle->getBorders()->setDiagonalDirection(Borders::DIAGONAL_UP);
- } elseif (!$diagonalUp && $diagonalDown) {
- $docStyle->getBorders()->setDiagonalDirection(Borders::DIAGONAL_DOWN);
- } else {
- $docStyle->getBorders()->setDiagonalDirection(Borders::DIAGONAL_BOTH);
- }
- self::readBorder($docStyle->getBorders()->getLeft(), $style->border->left);
- self::readBorder($docStyle->getBorders()->getRight(), $style->border->right);
- self::readBorder($docStyle->getBorders()->getTop(), $style->border->top);
- self::readBorder($docStyle->getBorders()->getBottom(), $style->border->bottom);
- self::readBorder($docStyle->getBorders()->getDiagonal(), $style->border->diagonal);
- }
- // alignment
- if (isset($style->alignment)) {
- $docStyle->getAlignment()->setHorizontal((string) $style->alignment['horizontal']);
- $docStyle->getAlignment()->setVertical((string) $style->alignment['vertical']);
- $textRotation = 0;
- if ((int) $style->alignment['textRotation'] <= 90) {
- $textRotation = (int) $style->alignment['textRotation'];
- } elseif ((int) $style->alignment['textRotation'] > 90) {
- $textRotation = 90 - (int) $style->alignment['textRotation'];
- }
- $docStyle->getAlignment()->setTextRotation((int) $textRotation);
- $docStyle->getAlignment()->setWrapText(self::boolean((string) $style->alignment['wrapText']));
- $docStyle->getAlignment()->setShrinkToFit(self::boolean((string) $style->alignment['shrinkToFit']));
- $docStyle->getAlignment()->setIndent((int) ((string) $style->alignment['indent']) > 0 ? (int) ((string) $style->alignment['indent']) : 0);
- $docStyle->getAlignment()->setReadOrder((int) ((string) $style->alignment['readingOrder']) > 0 ? (int) ((string) $style->alignment['readingOrder']) : 0);
- }
- // protection
- if (isset($style->protection)) {
- if (isset($style->protection['locked'])) {
- if (self::boolean((string) $style->protection['locked'])) {
- $docStyle->getProtection()->setLocked(Protection::PROTECTION_PROTECTED);
- } else {
- $docStyle->getProtection()->setLocked(Protection::PROTECTION_UNPROTECTED);
- }
- }
- if (isset($style->protection['hidden'])) {
- if (self::boolean((string) $style->protection['hidden'])) {
- $docStyle->getProtection()->setHidden(Protection::PROTECTION_PROTECTED);
- } else {
- $docStyle->getProtection()->setHidden(Protection::PROTECTION_UNPROTECTED);
- }
- }
- }
- // top-level style settings
- if (isset($style->quotePrefix)) {
- $docStyle->setQuotePrefix($style->quotePrefix);
- }
- }
- /**
- * @param Border $docBorder
- * @param SimpleXMLElement $eleBorder
- */
- private static function readBorder(Border $docBorder, $eleBorder)
- {
- if (isset($eleBorder['style'])) {
- $docBorder->setBorderStyle((string) $eleBorder['style']);
- }
- if (isset($eleBorder->color)) {
- $docBorder->getColor()->setARGB(self::readColor($eleBorder->color));
- }
- }
- /**
- * @param SimpleXMLElement | null $is
- *
- * @return RichText
- */
- private function parseRichText($is)
- {
- $value = new RichText();
- if (isset($is->t)) {
- $value->createText(StringHelper::controlCharacterOOXML2PHP((string) $is->t));
- } else {
- if (is_object($is->r)) {
- foreach ($is->r as $run) {
- if (!isset($run->rPr)) {
- $value->createText(StringHelper::controlCharacterOOXML2PHP((string) $run->t));
- } else {
- $objText = $value->createTextRun(StringHelper::controlCharacterOOXML2PHP((string) $run->t));
- if (isset($run->rPr->rFont['val'])) {
- $objText->getFont()->setName((string) $run->rPr->rFont['val']);
- }
- if (isset($run->rPr->sz['val'])) {
- $objText->getFont()->setSize((float) $run->rPr->sz['val']);
- }
- if (isset($run->rPr->color)) {
- $objText->getFont()->setColor(new Color(self::readColor($run->rPr->color)));
- }
- if ((isset($run->rPr->b['val']) && self::boolean((string) $run->rPr->b['val'])) ||
- (isset($run->rPr->b) && !isset($run->rPr->b['val']))) {
- $objText->getFont()->setBold(true);
- }
- if ((isset($run->rPr->i['val']) && self::boolean((string) $run->rPr->i['val'])) ||
- (isset($run->rPr->i) && !isset($run->rPr->i['val']))) {
- $objText->getFont()->setItalic(true);
- }
- if (isset($run->rPr->vertAlign, $run->rPr->vertAlign['val'])) {
- $vertAlign = strtolower((string) $run->rPr->vertAlign['val']);
- if ($vertAlign == 'superscript') {
- $objText->getFont()->setSuperscript(true);
- }
- if ($vertAlign == 'subscript') {
- $objText->getFont()->setSubscript(true);
- }
- }
- if (isset($run->rPr->u) && !isset($run->rPr->u['val'])) {
- $objText->getFont()->setUnderline(\PhpOffice\PhpSpreadsheet\Style\Font::UNDERLINE_SINGLE);
- } elseif (isset($run->rPr->u, $run->rPr->u['val'])) {
- $objText->getFont()->setUnderline((string) $run->rPr->u['val']);
- }
- if ((isset($run->rPr->strike['val']) && self::boolean((string) $run->rPr->strike['val'])) ||
- (isset($run->rPr->strike) && !isset($run->rPr->strike['val']))) {
- $objText->getFont()->setStrikethrough(true);
- }
- }
- }
- }
- }
- return $value;
- }
- /**
- * @param Spreadsheet $excel
- * @param mixed $customUITarget
- * @param mixed $zip
- */
- private function readRibbon(Spreadsheet $excel, $customUITarget, $zip)
- {
- $baseDir = dirname($customUITarget);
- $nameCustomUI = basename($customUITarget);
- // get the xml file (ribbon)
- $localRibbon = $this->getFromZipArchive($zip, $customUITarget);
- $customUIImagesNames = [];
- $customUIImagesBinaries = [];
- // something like customUI/_rels/customUI.xml.rels
- $pathRels = $baseDir . '/_rels/' . $nameCustomUI . '.rels';
- $dataRels = $this->getFromZipArchive($zip, $pathRels);
- if ($dataRels) {
- // exists and not empty if the ribbon have some pictures (other than internal MSO)
- $UIRels = simplexml_load_string(
- $this->securityScanner->scan($dataRels),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- if (false !== $UIRels) {
- // we need to save id and target to avoid parsing customUI.xml and "guess" if it's a pseudo callback who load the image
- foreach ($UIRels->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/image') {
- // an image ?
- $customUIImagesNames[(string) $ele['Id']] = (string) $ele['Target'];
- $customUIImagesBinaries[(string) $ele['Target']] = $this->getFromZipArchive($zip, $baseDir . '/' . (string) $ele['Target']);
- }
- }
- }
- }
- if ($localRibbon) {
- $excel->setRibbonXMLData($customUITarget, $localRibbon);
- if (count($customUIImagesNames) > 0 && count($customUIImagesBinaries) > 0) {
- $excel->setRibbonBinObjects($customUIImagesNames, $customUIImagesBinaries);
- } else {
- $excel->setRibbonBinObjects(null, null);
- }
- } else {
- $excel->setRibbonXMLData(null, null);
- $excel->setRibbonBinObjects(null, null);
- }
- }
- private static function getArrayItem($array, $key = 0)
- {
- return isset($array[$key]) ? $array[$key] : null;
- }
- private static function dirAdd($base, $add)
- {
- return preg_replace('~[^/]+/\.\./~', '', dirname($base) . "/$add");
- }
- private static function toCSSArray($style)
- {
- $style = trim(str_replace(["\r", "\n"], '', $style), ';');
- $temp = explode(';', $style);
- $style = [];
- foreach ($temp as $item) {
- $item = explode(':', $item);
- if (strpos($item[1], 'px') !== false) {
- $item[1] = str_replace('px', '', $item[1]);
- }
- if (strpos($item[1], 'pt') !== false) {
- $item[1] = str_replace('pt', '', $item[1]);
- $item[1] = Font::fontSizeToPixels($item[1]);
- }
- if (strpos($item[1], 'in') !== false) {
- $item[1] = str_replace('in', '', $item[1]);
- $item[1] = Font::inchSizeToPixels($item[1]);
- }
- if (strpos($item[1], 'cm') !== false) {
- $item[1] = str_replace('cm', '', $item[1]);
- $item[1] = Font::centimeterSizeToPixels($item[1]);
- }
- $style[$item[0]] = $item[1];
- }
- return $style;
- }
- private static function boolean($value)
- {
- if (is_object($value)) {
- $value = (string) $value;
- }
- if (is_numeric($value)) {
- return (bool) $value;
- }
- return $value === 'true' || $value === 'TRUE';
- }
- /**
- * @param \PhpOffice\PhpSpreadsheet\Worksheet\Drawing $objDrawing
- * @param \SimpleXMLElement $cellAnchor
- * @param array $hyperlinks
- */
- private function readHyperLinkDrawing($objDrawing, $cellAnchor, $hyperlinks)
- {
- $hlinkClick = $cellAnchor->pic->nvPicPr->cNvPr->children('http://schemas.openxmlformats.org/drawingml/2006/main')->hlinkClick;
- if ($hlinkClick->count() === 0) {
- return;
- }
- $hlinkId = (string) $hlinkClick->attributes('http://schemas.openxmlformats.org/officeDocument/2006/relationships')['id'];
- $hyperlink = new Hyperlink(
- $hyperlinks[$hlinkId],
- (string) self::getArrayItem($cellAnchor->pic->nvPicPr->cNvPr->attributes(), 'name')
- );
- $objDrawing->setHyperlink($hyperlink);
- }
- private function readProtection(Spreadsheet $excel, SimpleXMLElement $xmlWorkbook)
- {
- if (!$xmlWorkbook->workbookProtection) {
- return;
- }
- if ($xmlWorkbook->workbookProtection['lockRevision']) {
- $excel->getSecurity()->setLockRevision((bool) $xmlWorkbook->workbookProtection['lockRevision']);
- }
- if ($xmlWorkbook->workbookProtection['lockStructure']) {
- $excel->getSecurity()->setLockStructure((bool) $xmlWorkbook->workbookProtection['lockStructure']);
- }
- if ($xmlWorkbook->workbookProtection['lockWindows']) {
- $excel->getSecurity()->setLockWindows((bool) $xmlWorkbook->workbookProtection['lockWindows']);
- }
- if ($xmlWorkbook->workbookProtection['revisionsPassword']) {
- $excel->getSecurity()->setRevisionsPassword((string) $xmlWorkbook->workbookProtection['revisionsPassword'], true);
- }
- if ($xmlWorkbook->workbookProtection['workbookPassword']) {
- $excel->getSecurity()->setWorkbookPassword((string) $xmlWorkbook->workbookProtection['workbookPassword'], true);
- }
- }
- private function readFormControlProperties(Spreadsheet $excel, ZipArchive $zip, $dir, $fileWorksheet, $docSheet, array &$unparsedLoadedData)
- {
- if (!$zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) {
- return;
- }
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsWorksheet = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $ctrlProps = [];
- foreach ($relsWorksheet->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/ctrlProp') {
- $ctrlProps[(string) $ele['Id']] = $ele;
- }
- }
- $unparsedCtrlProps = &$unparsedLoadedData['sheets'][$docSheet->getCodeName()]['ctrlProps'];
- foreach ($ctrlProps as $rId => $ctrlProp) {
- $rId = substr($rId, 3); // rIdXXX
- $unparsedCtrlProps[$rId] = [];
- $unparsedCtrlProps[$rId]['filePath'] = self::dirAdd("$dir/$fileWorksheet", $ctrlProp['Target']);
- $unparsedCtrlProps[$rId]['relFilePath'] = (string) $ctrlProp['Target'];
- $unparsedCtrlProps[$rId]['content'] = $this->securityScanner->scan($this->getFromZipArchive($zip, $unparsedCtrlProps[$rId]['filePath']));
- }
- unset($unparsedCtrlProps);
- }
- private function readPrinterSettings(Spreadsheet $excel, ZipArchive $zip, $dir, $fileWorksheet, $docSheet, array &$unparsedLoadedData)
- {
- if (!$zip->locateName(dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')) {
- return;
- }
- //~ http://schemas.openxmlformats.org/package/2006/relationships"
- $relsWorksheet = simplexml_load_string(
- $this->securityScanner->scan(
- $this->getFromZipArchive($zip, dirname("$dir/$fileWorksheet") . '/_rels/' . basename($fileWorksheet) . '.rels')
- ),
- 'SimpleXMLElement',
- Settings::getLibXmlLoaderOptions()
- );
- $sheetPrinterSettings = [];
- foreach ($relsWorksheet->Relationship as $ele) {
- if ($ele['Type'] == 'http://schemas.openxmlformats.org/officeDocument/2006/relationships/printerSettings') {
- $sheetPrinterSettings[(string) $ele['Id']] = $ele;
- }
- }
- $unparsedPrinterSettings = &$unparsedLoadedData['sheets'][$docSheet->getCodeName()]['printerSettings'];
- foreach ($sheetPrinterSettings as $rId => $printerSettings) {
- $rId = substr($rId, 3); // rIdXXX
- $unparsedPrinterSettings[$rId] = [];
- $unparsedPrinterSettings[$rId]['filePath'] = self::dirAdd("$dir/$fileWorksheet", $printerSettings['Target']);
- $unparsedPrinterSettings[$rId]['relFilePath'] = (string) $printerSettings['Target'];
- $unparsedPrinterSettings[$rId]['content'] = $this->securityScanner->scan($this->getFromZipArchive($zip, $unparsedPrinterSettings[$rId]['filePath']));
- }
- unset($unparsedPrinterSettings);
- }
- /**
- * Convert an 'xsd:boolean' XML value to a PHP boolean value.
- * A valid 'xsd:boolean' XML value can be one of the following
- * four values: 'true', 'false', '1', '0'. It is case sensitive.
- *
- * Note that just doing '(bool) $xsdBoolean' is not safe,
- * since '(bool) "false"' returns true.
- *
- * @see https://www.w3.org/TR/xmlschema11-2/#boolean
- *
- * @param string $xsdBoolean An XML string value of type 'xsd:boolean'
- *
- * @return bool Boolean value
- */
- private function castXsdBooleanToBool($xsdBoolean)
- {
- if ($xsdBoolean === 'false') {
- return false;
- }
- return (bool) $xsdBoolean;
- }
- /**
- * Read columns and rows attributes from XML and set them on the worksheet.
- *
- * @param SimpleXMLElement $xmlSheet
- * @param Worksheet $docSheet
- */
- private function readColumnsAndRowsAttributes(SimpleXMLElement $xmlSheet, Worksheet $docSheet)
- {
- $columnsAttributes = [];
- $rowsAttributes = [];
- if (isset($xmlSheet->cols) && !$this->readDataOnly) {
- foreach ($xmlSheet->cols->col as $col) {
- for ($i = (int) ($col['min']); $i <= (int) ($col['max']); ++$i) {
- if ($col['style'] && !$this->readDataOnly) {
- $columnsAttributes[Coordinate::stringFromColumnIndex($i)]['xfIndex'] = (int) $col['style'];
- }
- if (self::boolean($col['hidden'])) {
- $columnsAttributes[Coordinate::stringFromColumnIndex($i)]['visible'] = false;
- }
- if (self::boolean($col['collapsed'])) {
- $columnsAttributes[Coordinate::stringFromColumnIndex($i)]['collapsed'] = true;
- }
- if ($col['outlineLevel'] > 0) {
- $columnsAttributes[Coordinate::stringFromColumnIndex($i)]['outlineLevel'] = (int) $col['outlineLevel'];
- }
- $columnsAttributes[Coordinate::stringFromColumnIndex($i)]['width'] = (float) $col['width'];
- if ((int) ($col['max']) == 16384) {
- break;
- }
- }
- }
- }
- if ($xmlSheet && $xmlSheet->sheetData && $xmlSheet->sheetData->row) {
- foreach ($xmlSheet->sheetData->row as $row) {
- if ($row['ht'] && !$this->readDataOnly) {
- $rowsAttributes[(int) $row['r']]['rowHeight'] = (float) $row['ht'];
- }
- if (self::boolean($row['hidden']) && !$this->readDataOnly) {
- $rowsAttributes[(int) $row['r']]['visible'] = false;
- }
- if (self::boolean($row['collapsed'])) {
- $rowsAttributes[(int) $row['r']]['collapsed'] = true;
- }
- if ($row['outlineLevel'] > 0) {
- $rowsAttributes[(int) $row['r']]['outlineLevel'] = (int) $row['outlineLevel'];
- }
- if ($row['s'] && !$this->readDataOnly) {
- $rowsAttributes[(int) $row['r']]['xfIndex'] = (int) $row['s'];
- }
- }
- }
- $readFilter = (\get_class($this->getReadFilter()) !== DefaultReadFilter::class ? $this->getReadFilter() : null);
- // set columns/rows attributes
- $columnsAttributesSet = [];
- $rowsAttributesSet = [];
- foreach ($columnsAttributes as $coordColumn => $columnAttributes) {
- if ($readFilter !== null) {
- foreach ($rowsAttributes as $coordRow => $rowAttributes) {
- if (!$readFilter->readCell($coordColumn, $coordRow, $docSheet->getTitle())) {
- continue 2;
- }
- }
- }
- if (!isset($columnsAttributesSet[$coordColumn])) {
- $this->setColumnAttributes($docSheet, $coordColumn, $columnAttributes);
- $columnsAttributesSet[$coordColumn] = true;
- }
- }
- foreach ($rowsAttributes as $coordRow => $rowAttributes) {
- if ($readFilter !== null) {
- foreach ($columnsAttributes as $coordColumn => $columnAttributes) {
- if (!$readFilter->readCell($coordColumn, $coordRow, $docSheet->getTitle())) {
- continue 2;
- }
- }
- }
- if (!isset($rowsAttributesSet[$coordRow])) {
- $this->setRowAttributes($docSheet, $coordRow, $rowAttributes);
- $rowsAttributesSet[$coordRow] = true;
- }
- }
- }
- }
|