123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <?php
- declare(strict_types=1);
- namespace catcher\library\excel;
- use catcher\CatchUpload;
- use catcher\exceptions\FailedException;
- use catcher\Utils;
- use PhpOffice\PhpSpreadsheet\Exception;
- use PhpOffice\PhpSpreadsheet\Spreadsheet;
- use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet;
- use think\file\UploadedFile;
- use think\helper\Str;
- class Excel
- {
- use MacroExcel;
- /**
- * @var ExcelContract $excel
- */
- protected $excel;
- protected $sheets;
- protected $spreadsheet = null;
- protected $extension = 'xlsx';
- /**
- * save
- *
- * @time 2020年05月25日
- * @param ExcelContract $excel
- * @param $path
- * @param string $disk
- * @return mixed
- * @throws Exception
- */
- public function save(ExcelContract $excel, $path, $disk = 'local',$filename=null)
- {
- $this->excel = $excel;
- $this->init();
- !is_dir($path) && mkdir($path, 0777, true);
- if($filename){
- $file = $path . $filename.date('YmdHis').Str::random(2) . '.' .$this->extension;
- }else{
- $file = $path . date('YmdHis').Str::random(6) . '.' .$this->extension;
- }
-
- Factory::make($this->extension)
- ->setSpreadsheet($this->spreadsheet)
- ->save($file);
- if (!file_exists($file)) {
- throw new FailedException($file . ' generate failed');
- }
- if ($disk) {
- $file = $this->upload($disk, $file);
- }
- return ['url' => $file];
- }
- /**
- * set extension
- *
- * @time 2020年09月08日
- * @param $extension
- * @return $this
- */
- public function setExtension($extension)
- {
- $this->extension = $extension;
- return $this;
- }
- /**
- * init excel
- *
- * @time 2020年05月25日
- * @throws Exception
- * @return void
- */
- protected function init()
- {
- $this->setMemoryLimit();
- // register worksheet for current excel
- $this->registerWorksheet();
- // before save excel
- $this->before();
- // set excel title
- $this->setTitle();
- // set excel headers
- $this->setExcelHeaders();
- // set cell width
- $this->setSheetWidth();
- // set worksheets
- $this->setWorksheets();
- }
- /**
- * 设置 sheets
- *
- * @time 2020年05月25日
- * @throws Exception
- * @return void
- */
- protected function setWorksheets()
- {
- $keys= $this->getKeys();
- $isArray = $this->arrayConfirm();
- $worksheet = $this->getWorksheet();
- if (empty($keys)) {
- if ($isArray) {
- foreach ($this->excel->sheets() as $sheet) {
- $worksheet->fromArray($sheet, null, $this->start . $this->row);
- $this->incRow();
- }
- } else {
- foreach ($this->excel->sheets() as $sheet) {
- $worksheet->fromArray($sheet->toArray(), null, $this->start . $this->row);
- $this->incRow();
- }
- }
- } else {
- if ($isArray) {
- foreach ($this->excel->sheets() as $sheet) {
- $worksheet->fromArray($this->getValuesByKeys($sheet, $keys), null, $this->start . $this->row);
- $this->incRow();
- }
- } else {
- foreach ($this->excel->sheets() as $sheet) {
- $worksheet->fromArray($this->getValuesByKeys($sheet->toArray(), $keys), null, $this->start . $this->row);
- $this->incRow();
- }
- }
- }
- }
- /**
- * 判断 sheet 是否是 array 类型
- *
- * @time 2020年05月25日
- * @return bool
- */
- protected function arrayConfirm()
- {
- $sheets = $this->excel->sheets();
- $array = true;
- foreach ($sheets as $sheet) {
- $array = is_array($sheet);
- break;
- }
- return $array;
- }
- /**
- * 获取 item 特定 key 的值
- *
- * @time 2020年05月25日
- * @param array $item
- * @param array $keys
- * @return array
- */
- protected function getValuesByKeys(array $item, array $keys)
- {
- $array = [];
- foreach ($keys as $key) {
- $array[] = $item[$key];
- }
- return $array;
- }
- /**
- * 设置 Excel 头部
- *
- * @time 2020年05月23日
- * @throws Exception
- */
- protected function setExcelHeaders()
- {
- $worksheet = $this->getWorksheet();
- // get columns
- $columns = $this->getSheetColumns();
- // get start row
- $startRow = $this->getStartRow();
- foreach ($this->excel->headers() as $k => $header) {
- $worksheet->getCell($columns[$k] . $startRow)->setValue($header);
- }
- $this->incRow();
- }
- /**
- * get spreadsheet
- *
- * @time 2020年05月25日
- * @return Spreadsheet
- */
- protected function getSpreadsheet()
- {
- if (!$this->spreadsheet) {
- $this->spreadsheet = new Spreadsheet();
- }
- return $this->spreadsheet;
- }
- /**
- * 获取 active sheet
- *
- * @time 2020年05月25日
- * @throws Exception
- * @return Worksheet
- */
- protected function getWorksheet()
- {
- return $this->getSpreadsheet()->getActiveSheet();
- }
- /**
- * upload
- *
- * @time 2020年05月25日
- * @param $disk
- * @param $path
- * @return string
- * @throws \Exception
- */
- protected function upload($disk, $path)
- {
- if ($disk == 'local') {
- return $this->local($path);
- }
- $upload = new CatchUpload;
- return ($disk ? $upload->setDriver($disk) : $upload)->upload($this->uploadedFile($path));
- }
- /**
- * 返回本地下载地址
- *
- * @param $path
- * @time 2020年09月08日
- * @return mixed
- */
- protected function local($path)
- {
- // return \config('filesystem.disks.local')['domain'] . '/' . str_replace('\\', '/', str_replace(Utils::publicPath(), '', $path));
- return \config('filesystem.disks.local')['domain'] . '/' . str_replace(str_replace('\\', '/', Utils::publicPath()), '', str_replace('\\', '/', $path));
- }
- /**
- * get uploaded file
- *
- * @time 2020年05月25日
- * @param $file
- * @return UploadedFile
- */
- protected function uploadedFile($file)
- {
- return new UploadedFile($file, pathinfo($file, PATHINFO_BASENAME));
- }
- }
|