-
Notifications
You must be signed in to change notification settings - Fork 42
/
playground-zip.php
67 lines (56 loc) · 1.8 KB
/
playground-zip.php
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
<?php
namespace WordPress\Playground;
use WordPress\Zip\ZipStreamWriter;
defined('ABSPATH') || exit;
require __DIR__ . '/playground-db.php';
require_once __DIR__ . '/../vendor/WordPress/Zip/autoload.php';
/**
* Add the wp-content directory to a zip archive.
*
* @param ZipStreamWriter $zip The zip archive to add the wp-content directory to.
*/
function zip_wp_content(ZipStreamWriter $writer)
{
$root_dir = WP_CONTENT_DIR;
$directory = new \RecursiveDirectoryIterator($root_dir, \FilesystemIterator::FOLLOW_SYMLINKS);
$iterator = new \RecursiveIteratorIterator($directory);
// @TODO - Allow a whitelist of files to be included like .htaccess and .ht.sqlite
// Exclude hidden files and directories (i.e. .git, .github, .gitignore), and parent directory (i.e. ..)
$regex = new \RegexIterator($iterator, '/^(?!.*\/\..*)^.+$/i', \RecursiveRegexIterator::GET_MATCH);
foreach ($regex as $file) {
if (empty($file)) {
continue;
}
$file = $file[0];
if (is_dir($file)) {
continue;
}
$file = apply_filters('playground_exported_file', $file);
if (false === $file) {
continue;
}
$writer->writeFileFromPath(
str_replace($root_dir, 'wp-content', $file),
$file,
);
}
}
/**
* Collect the wp-content directory and database dump, add them to a zip archive and send it to the browser.
*/
function zip_collect()
{
$filename = 'playground-package-' . gmdate('Y-m-d_H-i-s') . '.zip';
header('Content-Type: application/zip');
header('Content-Disposition: attachment; filename="' . $filename . '"');
header('Pragma: public');
header('Cache-Control: public, must-revalidate');
header('Content-Transfer-Encoding: binary');
$fp = fopen('php://output', 'wb');
$writer = new \WordPress\Zip\ZipStreamWriter($fp);
zip_wp_content($writer);
zip_database($writer);
$writer->finish();
fclose($fp);
die();
}