KodExplorer/plugins/zipView/app.php

39 lines
1.1 KiB
PHP
Raw Normal View History

2017-08-23 19:40:27 +00:00
<?php
class zipViewPlugin extends PluginBase{
function __construct(){
parent::__construct();
}
public function regiest(){
$this->hookRegiest(array(
'user.commonJs.insert' => 'zipViewPlugin.echoJs',
));
}
public function unzipList(){
$path = $this->filePath($this->in['path']);
if(isset($this->in['index'])){
$download = isset($this->in['download'])?true:false;
KodArchive::filePreview($path,$this->in['index'],$download,$this->in['name']);
}else{
2017-09-11 15:46:06 +00:00
$cacheFile = TEMP_PATH.'zipView/'.hash_path($path).'.log';
2017-08-26 09:16:57 +00:00
if(file_exists($cacheFile)){
$data = json_decode(file_get_contents($cacheFile),true);
show_json($data);
}
mk_dir(get_path_father($cacheFile));
2017-08-23 19:40:27 +00:00
$result = KodArchive::listContent($path);
2017-09-11 15:46:06 +00:00
$data = json_encode($result['data']);
if($result['code'] && $data){
file_put_contents($cacheFile,$data);
show_json($result['data'],$result['code']);
}else{
show_json($result['data'],false);
2017-08-26 09:16:57 +00:00
}
2017-08-23 19:40:27 +00:00
}
}
public function echoJs($st,$act){
if($this->isFileExtence($st,$act)){
$this->echoFile('static/main.js');
}
}
}