-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathWPS.php
More file actions
117 lines (103 loc) · 3.66 KB
/
WPS.php
File metadata and controls
117 lines (103 loc) · 3.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @see https://github.com/PHPOffice/PHPWord
*
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Writer;
use PhpOffice\PhpWord\PhpWord;
use PhpOffice\PhpWord\Writer\WPS\Media;
use PhpOffice\PhpWord\Writer\WPS\Part\AbstractPart;
/**
* WPS writer.
*/
class WPS extends AbstractWriter implements WriterInterface
{
/**
* Create new WPS writer.
*/
public function __construct(?PhpWord $phpWord = null)
{
// Assign PhpWord
$this->setPhpWord($phpWord);
// Create parts
$this->parts = [
'Content' => 'content.xml',
'Styles' => 'styles.xml',
'Meta' => 'meta.xml',
'Manifest' => 'META-INF/manifest.xml',
];
foreach (array_keys($this->parts) as $partName) {
$partClass = "PhpOffice\\PhpWord\\Writer\\WPS\\Part\\{$partName}";
if (class_exists($partClass)) {
/** @var AbstractPart $part */
$part = new $partClass();
$part->setParentWriter($this);
$this->writerParts[strtolower($partName)] = $part;
}
}
// Set package paths
$this->mediaPaths = ['image' => 'Pictures/'];
}
/**
* Save PhpWord to file.
*/
public function save(string $filename): void
{
$filename = $this->getTempFile($filename);
$zip = $this->getZipArchive($filename);
$phpWord = $this->getPhpWord();
// Clear any previous media elements
Media::clearElements();
// Collect media relations by traversing the document
foreach ($phpWord->getSections() as $section) {
Media::collectMediaRelations('section', $section);
foreach ($section->getHeaders() as $header) {
Media::collectMediaRelations('header', $header);
}
foreach ($section->getFooters() as $footer) {
Media::collectMediaRelations('footer', $footer);
}
}
// Add collected media files to the package
$sectionMedia = Media::getElements('section');
if (!empty($sectionMedia)) {
$this->addFilesToPackage($zip, $sectionMedia);
}
$headerMedia = Media::getElements('header');
if (!empty($headerMedia)) {
$this->addFilesToPackage($zip, $headerMedia);
}
$footerMedia = Media::getElements('footer');
if (!empty($footerMedia)) {
$this->addFilesToPackage($zip, $footerMedia);
}
// Make sure required directories exist
$zip->addEmptyDir('Pictures'); // Ensure Pictures directory exists for images
$zip->addEmptyDir('META-INF');
// Write parts
foreach ($this->parts as $partName => $fileName) {
if ($fileName === '') {
continue;
}
$part = $this->getWriterPart($partName);
if (!$part instanceof AbstractPart) {
continue;
}
$zip->addFromString($fileName, $part->write());
}
// Close zip archive and cleanup temp file
$zip->close();
$this->cleanupTempFile();
}
}