@@ -165,7 +165,8 @@ function main() {
165
165
continue ;
166
166
}
167
167
$ dec = DecryptMaster ($ response , $ item ['Iv ' ], $ item ['Salt ' ]);
168
- file_put_contents ($ fname , prettifyJSON (json_encode (json_decode ($ dec , true ), JSON_UNESCAPED_SLASHES +JSON_UNESCAPED_UNICODE )));
168
+ fclose (fopen ($ fname , 'w ' ));
169
+ prettifyJSON (json_encode (json_decode ($ dec , true ), JSON_UNESCAPED_SLASHES +JSON_UNESCAPED_UNICODE ), new FileStream ($ fname ), false );
169
170
$ last_version [$ item ['MasterName ' ]] = $ item ['Sha1 ' ];
170
171
}
171
172
@@ -179,7 +180,8 @@ function main() {
179
180
_log ("Downloading assets manifest ver $ ver for $ platform " );
180
181
curl_setopt ($ curl , CURLOPT_URL , "https://prd-static.haifuri.app/assets/ $ platform/ $ ver/FileSystemOverrideRecords " );
181
182
$ manifest = gzdecode (DecryptSaveData (curl_exec ($ curl )));
182
- file_put_contents ("data/AssetManifest_ $ {platform}.json " , prettifyJSON (json_encode (json_decode ($ manifest ), JSON_UNESCAPED_SLASHES +JSON_UNESCAPED_UNICODE )));
183
+ fclose (fopen ("data/AssetManifest_ $ {platform}.json " , 'w ' ));
184
+ prettifyJSON (json_encode (json_decode ($ manifest ), JSON_UNESCAPED_SLASHES +JSON_UNESCAPED_UNICODE ), new FileStream ("data/AssetManifest_ $ {platform}.json " ), false );
183
185
}
184
186
}
185
187
@@ -197,9 +199,9 @@ function main() {
197
199
main ();
198
200
199
201
200
- function prettifyJSON ($ in ) {
202
+ function prettifyJSON ($ in, Stream $ out = NULL , $ returnData = true ) {
201
203
$ in = new MemoryStream ($ in );
202
- $ out = new MemoryStream ('' );
204
+ if ( $ out == NULL ) $ out = new MemoryStream ('' );
203
205
204
206
$ offset = 0 ;
205
207
$ length = $ in ->size ;
@@ -257,6 +259,7 @@ function prettifyJSON($in) {
257
259
}
258
260
$ offset ++;
259
261
}
262
+ if (!$ returnData ) return ;
260
263
$ out ->seek (0 );
261
264
$ output = $ out ->readData ($ out ->size );
262
265
unset($ out );
0 commit comments