You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/app/common/library/storage/engine/Local.php

75 lines
2.2 KiB

<?php
// +----------------------------------------------------------------------
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
// +----------------------------------------------------------------------
// | Author: 萤火科技 <admin@yiovo.com>
// +----------------------------------------------------------------------
declare (strict_types=1);
namespace app\common\library\storage\engine;
use think\facade\Filesystem;
use app\common\library\storage\FileValidate;
/**
* 本地文件驱动
* Class Local
* @package app\common\library\storage\drivers
*/
class Local extends Basics
{
/**
* 上传图片文件
* @return bool
*/
public function upload(): bool
{
// 验证文件类型
if (!$this->validate()) {
return false;
}
try {
$filePath = $this->getSaveFileInfo()['file_path'];
// 上传到本地服务器
$sts = Filesystem::disk($this->disk)->putFileAs(
$this->getFileHashRoute($filePath),
$this->file,
$this->getFileHashName($filePath)
);
return (bool)$sts;
} catch (\Exception $e) {
$this->error = $e->getMessage();
return false;
}
}
/**
* 验证上传的文件
* @return bool
*/
private function validate(): bool
{
$FileValidate = new FileValidate;
if (!$FileValidate->check([$this->validateRuleScene => $this->file])) {
$this->error = $FileValidate->getError();
return false;
}
return true;
}
/**
* 删除文件
* @param string $filePath
* @return bool
*/
public function delete(string $filePath): bool
{
// 文件所在目录
$realPath = realpath(web_path() . "uploads/{$filePath}");
return $realPath === false || unlink($realPath);
}
}