-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathzip.php
More file actions
143 lines (122 loc) · 4.99 KB
/
Copy pathzip.php
File metadata and controls
143 lines (122 loc) · 4.99 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?php
/**
* This does the following:
*
* - Create a new ZIP file on disk for the requested theme options.
* - Remove any old ZIP file.
* - Tell the client the public URL to this ZIP file.
*
* By default, zip files are stored in the "zips/" subdirectory of
* the document root (this directory). You can override it using the
* THEMEROLLER_ZIPDIR environment variable, in which case you must
* take care to serve that publicly from /zips on the same domain.
*/
require_once('version.php');
date_default_timezone_set('America/Los_Angeles');
if (is_string(@$_POST['ver']) && isset($ALL_JQUERY_VERSIONS[$_POST['ver']])) {
$JQM_VERSION = $_POST['ver'];
$JQUERY_VERSION = $ALL_JQUERY_VERSIONS[ $JQM_VERSION ];
}
$theme_name = strtr($_POST['theme_name'] ?? '', [
'/' => '',
'\\' => '',
]);
if (!$theme_name) {
http_response_code(400);
print "Missing parameter: theme_name\n";
exit;
}
$uncompressed = $_POST['file'] ?? '';
if (!$uncompressed) {
http_response_code(400);
print "Missing parameter: file\n";
exit;
}
//minifying CSS file
$comment_pos = strpos($uncompressed, "\n/* Swatches");
$comment = substr($uncompressed, 0, $comment_pos);
$css = substr($uncompressed, $comment_pos, strlen($uncompressed) - $comment_pos);
$compressed = preg_replace_callback('/(\/\*.*?\*\/|\n|\t)/sim',
function($matches) {
return "";
}, $css);
// remove all around in ",", ":" and "{"
$compressed = preg_replace_callback('/\s?(,|{|:){1}\s?/sim',
function($matches) {
return $matches[1];
}, $compressed);
$compressed = $comment . $compressed;
$zirDir = getenv('THEMEROLLER_ZIPDIR') ?: ( __DIR__ . '/zips' );
$zip = new ZipArchive();
if (!is_dir($zirDir)) {
mkdir($zirDir);
}
$dir = scandir($zirDir);
$today = date('His', strtotime('now'));
// Loop to detect if any other zip files are being created at this very second,
// Also delete any zip files that are older than 15 seconds
$last_file_num = 0;
foreach($dir as $file) {
if($file != '.' && $file != '..' && $file != '.DS_Store') {
$file_name = explode('.', $file);
if(isset($file_name[0])) {
$date = explode('-', $file_name[0]);
$file_num = $date[4];
$time = $date[3];
if(is_numeric($file_num) && $file_num > $last_file_num && $date == $today) {
$last_file_num = $file_num;
}
if(strtotime('now - 15 seconds') >= strtotime($time) || strtotime('now + 15 seconds') <= strtotime($time)) {
unlink($zirDir . '/' . $file);
}
}
}
}
$filename = "jquery-mobile-theme-" . $today . "-" . $last_file_num . ".zip";
$filepath = "$zirDir/$filename";
$url = "./zips/$filename";
if ($zip->open($filepath, ZIPARCHIVE::CREATE)!==TRUE) {
exit("cannot open <$filepath>\n");
}
//add files to zip and echo it back to page
if(preg_match("/1.4/", $JQM_VERSION)) {
$JQM_ICONS_TAG = "<link rel=\"stylesheet\" href=\"themes/jquery.mobile.icons.min.css\" />";
$zip->addFromString("themes/jquery.mobile.icons.min.css", file_get_contents("jqm/" . $JQM_VERSION . "/jquery.mobile.icons.min.css"));
$zip->addFromString("themes/images/ajax-loader.gif", file_get_contents("jqm/" . $JQM_VERSION . "/images/ajax-loader.gif"));
foreach(glob("jqm/" . $JQM_VERSION . "/images/icons-png/*") as $file) {
$name = str_replace("jqm/" . $JQM_VERSION . "/images/icons-png/", "", $file);
$zip->addFile($file, "themes/images/icons-png/" . $name);
}
} else {
$JQM_ICONS_TAG = "";
$zip->addFromString("themes/images/icons-18-white.png", file_get_contents("http://code.jquery.com/mobile/" . $JQM_VERSION . "/images/icons-18-white.png"));
$zip->addFromString("themes/images/icons-18-black.png", file_get_contents("http://code.jquery.com/mobile/" . $JQM_VERSION . "/images/icons-18-black.png"));
$zip->addFromString("themes/images/icons-36-white.png", file_get_contents("http://code.jquery.com/mobile/" . $JQM_VERSION . "/images/icons-36-white.png"));
$zip->addFromString("themes/images/icons-36-black.png", file_get_contents("http://code.jquery.com/mobile/" . $JQM_VERSION . "/images/icons-36-black.png"));
preg_match("/url\(images\/ajax-load[^\)]*\)/", $uncompressed, $match);
if(!isset($match[0])) {
$match = "ajax-loader.gif";
} else {
$match = $match[0];
$match = preg_replace("/url\(/", "", $match);
$match = preg_replace("/\)/", "", $match);
}
$zip->addFromString("themes/" . $match, file_get_contents("http://code.jquery.com/mobile/" . $JQM_VERSION . "/" . $match));
}
$zip->addFromString("themes/" . $theme_name . ".css", $uncompressed);
$zip->addFromString("themes/" . $theme_name . ".min.css", $compressed);
if ( $JQM_ICONS_TAG == "" ) {
$JQM_ICONS_LINK = "";
$JQM_ICONS_LINK_DOC = "";
} else {
$JQM_ICONS_LINK = "\n " . $JQM_ICONS_TAG;
$JQM_ICONS_LINK_DOC = "\n<strong>" .
preg_replace(
array( '/["]/', "/[<]/", "/[>]/" ),
array( """, "<", ">" ),
$JQM_ICONS_TAG ) .
"</strong>";
}
$zip->addFromString("index.html", include('inc/index.html.inc'));
$zip->close();
echo $url;