mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
75 lines
2.0 KiB
PHP
75 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
|
|
class taskmgr_storage_aliyunoss extends taskmgr_storage_abstract implements taskmgr_storage_interface
|
|
{
|
|
|
|
private static $_storageConn = null;
|
|
|
|
/**
|
|
* __construct
|
|
* @return mixed 返回值
|
|
*/
|
|
public function __construct()
|
|
{
|
|
self::$_storageConn = new base_storage_aliyunosssystem('export');
|
|
}
|
|
|
|
/**
|
|
* 向远程ftp上传保存生成文件
|
|
*
|
|
* @param string $source_file 源文件含路径
|
|
* @param string $task_id 目标文件名命名传入参数
|
|
* @param string $url 生成目标文件路径
|
|
* @return boolean true/false
|
|
*/
|
|
public function save($source_file, $task_id, &$url)
|
|
{
|
|
$url = self::$_storageConn->save($source_file, $remote_url, '', []);
|
|
|
|
return $url;
|
|
}
|
|
|
|
/**
|
|
* 向远程ftp下载文件到本地
|
|
*
|
|
* @param string $url 远程源文件
|
|
* @param string $local_file 本地目标文件
|
|
* @return boolean true/false
|
|
*/
|
|
public function get($url, $local_file)
|
|
{
|
|
return self::$_storageConn->getFile($url, $local_file);
|
|
}
|
|
|
|
/**
|
|
* 向远程ftp删除指定文件
|
|
*
|
|
* @param string $url 远程源文件
|
|
*/
|
|
public function delete($url)
|
|
{
|
|
return self::$_storageConn->remove($url);
|
|
}
|
|
|
|
// public function __destruct()
|
|
// {
|
|
// unset(self::$_storageConn);
|
|
// }
|
|
}
|