-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathunpack-wxapkg.php
167 lines (128 loc) · 3.64 KB
/
unpack-wxapkg.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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?php
function unpack_wxapkg($file, $targetDir)
{
if (!is_dir($targetDir)){
mkdir($targetDir);
}
echo "Reading file.\n";
$file = file_get_contents($file);
$ptr = 18;
$headerStruct = new StructDef([
'mask1' => 'ushort',
'info1' => 'ulong',
'indexInfoLength' => 'ulong',
'bodyInfoLength' => 'ushort',
'mask2' => 'ushort',
'fileCount' => 'ulong',
]);
echo "Parsing file header...\n";
$header = $headerStruct->unpack($file);
// print_r(['header' => $header]);
$unpackULong = function () use (&$file, &$ptr) {
$ret = unpack_ulong(substr($file, $ptr, 4));
$ptr += 4;
return $ret;
};
$unpackUShort = function () use (&$file, &$ptr) {
$ret = unpack_ushort(substr($file, $ptr, 2));
$ptr += 2;
return $ret;
};
$unpackStr = function ($len) use (&$file, &$ptr) {
$ret = substr($file, $ptr, $len);
$ptr += $len;
return $ret;
};
$fileCount = $header['fileCount'];
echo "Got $fileCount files.\n";
$unpackedFiles = [];
for ($i = 0; $i < $fileCount; $i++) {
$nameLength = $unpackULong();
$f = [
'nameLength' => $nameLength,
'name' => $unpackStr($nameLength),
'offset' => $unpackULong(),
'size' => $unpackULong(),
];
echo "Unpacking file {$f['name']} ({$f['size']}bytes)...\n";
$f['content'] = substr($file, $f['offset'], $f['size']);
$unpackedFiles[] = $f;
$destFile = $targetDir . $f['name'];
$destDir = dirname($destFile);
if (!is_dir($destDir)){
mkdir($destDir, 0777, true);
}
file_put_contents($targetDir . $f['name'], $f['content']);
}
// print_r(['unpackedFiles' => $unpackedFiles]);
echo "All done.\n";
}
function unpack_ulong($str)
{
$x = unpack('N', $str);
return $x[1];
}
function unpack_ushort($str)
{
$x = unpack('n', $str);
return $x[1];
}
class StructDef
{
protected $def;
protected $unpackFormat;
public function __construct($def)
{
$this->def = $def;
$this->unpackFormat = self::convertStructDefToUnpackFormat($def);
}
public function unpack($data)
{
return unpack($this->unpackFormat, $data);
}
protected static function convertStructDefToUnpackFormat($def)
{
$defTypeToUnpackType = [
'byte' => 'C',
'uchar' => 'C',
'u8' => 'C',
'ushort' => 'n',
'u16' => 'n',
'ulong' => 'N',
'u32' => 'N',
];
$ret = [];
foreach ($def as $key => $type) {
$ret[] = $defTypeToUnpackType[$type] . $key;
}
return implode('/', $ret);
}
}
$packageFile = $argv[1];
//支持目录下文件批量解压
if (is_dir($packageFile)){
$handle = opendir($packageFile);
if($handle){
while(($fl = readdir($handle)) !== false){
$temp = $packageFile.DIRECTORY_SEPARATOR.$fl;
//如果不加 $fl!='.' && $fl != '..' 则会造成把$dir的父级目录也读取出来
if(is_file($temp)){
if($fl!='.' && $fl != '..'){
$targetDir = $temp . '.unpacked';
unpack_wxapkg($temp, $targetDir);
}
}
}
}
}else if (is_file($packageFile)){
$targetDir = $packageFile . '.unpacked';
unpack_wxapkg($packageFile, $targetDir);
}else{
echo <<<HELP
Usage:
[php] {$argv[0]} <xxx.wxapkg>
- Unpack the `xxx.wxapkg` to `xxx.wxapkg.unpacked` directory.
HELP;
exit(1);
}
exit(0);