Commit 97394a51 authored by jiangkebao's avatar jiangkebao
Browse files

Merge branch 'jkb' into test

# Conflicts:
#	composer.json
parents 50a06dbb aec8f3e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -24,7 +24,7 @@
    "hyperf/service-governance": "~1.1.0",
    "hyperf/service-governance": "~1.1.0",
    "fzaninotto/faker": "^1.9",
    "fzaninotto/faker": "^1.9",
    "phpoffice/phpspreadsheet": "^1.8",
    "phpoffice/phpspreadsheet": "^1.8",
    "chumper/zipper": "1.0.3"
    "dimsav/unix-zipper": "dev-master"
  },
  },
  "autoload": {
  "autoload": {
    "psr-4": {
    "psr-4": {
+16 −10
Original line number Original line Diff line number Diff line
<?php
<?php


namespace Meibuyu\Micro\Tools;
namespace Meibuyu\Micro\Tools;
use Chumper\Zipper\Zipper;
use Dimsav\UnixZipper;
use Meibuyu\Micro\Exceptions\HttpResponseException;


/**
/**
 * 打包器
 * 打包器
@@ -11,15 +12,12 @@ class Unpacker
{
{
    //文件列表 一位数组
    //文件列表 一位数组
    public $fileList;
    public $fileList;
    //保存路径
    public $path;
    //文件名
    //文件名
    public $fileName;
    public $fileName;


    public function __construct(array $fileList, $path, $fileName)
    public function __construct(array $fileList, $fileName)
    {
    {
        $this->fileList = $fileList;
        $this->fileList = $fileList;
        $this->path = $path;
        $this->fileName = $fileName;
        $this->fileName = $fileName;
    }
    }


@@ -30,10 +28,18 @@ class Unpacker
     */
     */
    public function unpack()
    public function unpack()
    {
    {
        $zipper = new Zipper();
        if (count($this->fileList) > 0) {
        $filePath = $this->path.'/'.$this->fileName.'.zip';
            $zipper = new UnixZipper();
        $zipper->make($filePath)->add($this->fileList);
            $filePath = $this->fileName.'.zip';
        $zipper->close();
            foreach ($this->fileList as $k => $v) {
                $zipper->add($v);
            }
            $zipper->setDestination($filePath);
            $zipper->compress();
            return $filePath;
            return $filePath;
        } else {
            throw new HttpResponseException('打包失败,请重试');
        }

    }
    }
}
}
 No newline at end of file