Download the PHP package threebenji/wcs-sdk-php without Composer
On this page you can find all versions of the php package threebenji/wcs-sdk-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download threebenji/wcs-sdk-php
More information about threebenji/wcs-sdk-php
Files in threebenji/wcs-sdk-php
Download threebenji/wcs-sdk-php
More information about threebenji/wcs-sdk-php
Files in threebenji/wcs-sdk-php
Vendor threebenji
Package wcs-sdk-php
Short Description wcs sdk for php
License
Homepage https://wcs.chinanetcenter.com/document/Guide
Package wcs-sdk-php
Short Description wcs sdk for php
License
Homepage https://wcs.chinanetcenter.com/document/Guide
Please rate this library. Is it a good library?
Informations about the package wcs-sdk-php
wcs-php-sdk
PHP SDK基于网宿云存储API规范构建,适用于大于5.4版本的PHP。 config修改版本
- 安装
- 使用指南
- 配置信息
- 使用范例
- 文件上传
- 资源管理
- 图片处理
- 音视频操作
- 高级资源管理
安装
1.通过composer管理项目依赖
2.手动下载 PHP SDK开发包:wcs-php-sdk下载链接
然后导入vendor目录下的autoload.php
require_once __DIR__ . '/vendor/autoload.php';
使用指南
配置信息
用户接入网宿云存储时,需要使用一对有效的AK和SK进行签名认证,并填写“上传域名”和“管理域名”等信息进行文件操作。配置信息只需要在整个应用程序中初始化一次即可,具体操作如下:
- 开通网宿云存储平台账户
- 登录网宿云存储平台,在“安全管理”下的“密钥管理”查看AK和SKK,“域名查询”查看上传、管理域名。
在获取到AK和SK等信息之后,您可以按照如下方式进行密钥初始化:
/*Config.php*/
//相关url设置
$WCS_PUT_URL = 'your uploadDomain';
$WCS_GET_URL = 'your downloadDomain';
$WCS_MGR_URL = 'your mgrDomain';
//access key 和 secret key 设置
$WCS_ACCESS_KEY = 'your access key';
$WCS_SECRET_KEY = 'your secrete key';
//token的deadline,默认是1小时,也就是3600s
const WCS_TOKEN_DEADLINE = 3600;
//上传文件设置
const WCS_OVERWRITE = 0; //默认文件不覆盖
//超时时间
const WCS_TIMEOUT = 20;
//分片上传参数设置
const WCS_BLOCK_SIZE = 4 * 1024 * 1024; //默认块大小4M
const WCS_CHUNK_SIZE = 256 * 1024; //默认片大小256K
const WCS_RECORD_URL = './'; //默认当前文件目录
const WCS_COUNT_FOR_RETRY = 3; //超时重试次数
使用范例
/*example.php*/
//上传文件例子:
<?php
//引入自动加载文件和命名空间,上传类的命名空间为Wcs\Upload, Uploader类为上传类
require '../vendor/autoload.php';
use Wcs\Upload\Uploader;
use Wcs\Http\PutPolicy;
//请先填入相关参数
//关于参数的详细说明,请参见wcs文档
$userParam = '';
$userVars = '';
$mimeType = '';
$bucketName = '';
$fileKey = '';
$localFile = '';
$pp = new PutPolicy();
if ($fileKey == null || $fileKey === '') {
$pp->scope = $bucketName;
} else {
$pp->scope = $bucketName . ':' . $fileKey;
}
$pp->deadline = '1483027200000';
$token = $pp->get_token();
//实例化一个Uploader类
$client = new Uploader($token, $userParam, $userVars, $mimeType);/*传入可选参数*/
//普通上传函数
$client->upload_return($bucketName, $fileKey, $localFile, $returnBody);
文件上传
<1>若文件大小超过20M,建议使用分片上传 <2>云存储提供的上传域名为普通域名,若对上传速度较为敏感,有要求的客户建议采用网宿上传加速服务。 普通上传、回调上传、通知上传均是一次性上传,上传进度默认保存在当前路径(脚本执行的目录) >1. 以`.文件名.prs`的格式保存 >2. 以json格式保存进度信息:`{"progress":"50"}` >3. 客户可自行根据需要读取该信息 1.普通上传(POST方式) 用户在上传文件后,上传返回结果由云存储平台统一控制。 **范例:** //bucketName 空间名称 //fileKey 自定义文件名 //localFile 上传文件名 //returnBody 自定义返回内容 (可选) //userParam 自定义变量名",
"message": ""
}
#### 资源管理
提供对文件的基本操作
1. 删除文件
**范例**
require '../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new FileManager($auth);
print_r($client->delete($bucketName, $fileKey));
**命令行测试**
$ php file_delete.php [-h | --help] -b -f
2. 获取文件信息
**范例**
require '../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new FileManager($auth);
print_r($client->stat($bucketName, $fileKey));
**命令行测试**
$ php file_stat.php [-h | --help] -b -f
3. 列举资源
**范例**
require '../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new FileManager($auth);
print_r($client->bucketList($bucketName, $limit, $prefix, $mode, $marker));
**命令行测试**
$ php file_download.php [-h | --help] -b [-l ] [-p ] [-m ] [--ma ]
4. 更新镜像资源
**范例**
require '../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
//fileKeys = "||";
$client = new FileManager($auth);
print_r($client->updateMirrorSrc($bucketName, $fileKeys));
**命令行测试**
$ php file_stat.php [-h | --help] -b -f [||...]
5. 移动资源
**范例**
require '../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new FileManager($auth);
print_r($client->move($bucketSrc, $keySrc, $bucketDst, $keyDst));
**命令行测试**
$ php file_move.php [-h | --help] --bs --ks --bd --kd
6. 复制资源
**范例**
require '../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new FileManager($auth);
print_r($client->copy($bucketSrc, $keySrc, $bucketDst, $keyDst));
**命令行测试**
$ php file_copy.php [-h | --help] --bs --ks --bd --kd
7. 获取音视频元数据
**范例**
require '../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new FileManager($auth);
print_r($client->avInfo($key));
**命令行测试**
php avinfo.php [-h | --help] -k
8. 获取音视频简单元数据
**范例**
require '../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new FileManager($auth);
print_r($client->avInfo2($key));
9.设置文件保存期限
范例:
require '../../vendor/autoload.php';
use Wcs\SrcManage\FileManager;
use Wcs\MgrAuth;
use Wcs\Config;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new FileManager($auth);
print_r($client->setDeadline($bucketName, $fileKey, $deadline));
命令行测试
$ php file_setDeadLine.php [-h | --help] -b -f -d
**命令行测试**
$ php avinfo2.php [-h | --help] -k
#### 图片处理
图片处理的相关接口,主要有
1.图片缩放
2.图片水印
3.文字水印
4.高级图片处理
6.获取图片基本信息
7.获取图片EXIF信息
#### 1. 图片缩放
require '../../vendor/autoload.php';
use Wcs\ImageProcess\ImageView;
$mode = 1;
$client = new ImageView($mode);
//可选参数
//$client->quality = '';
//$client->format = '';
//$client->width = 200;
//$client->height = 200;
print_r($client->exec($bucketName, $fileName));
#### 2. 图片水印
require '../vendor/autoload.php';
use Wcs\ImageProcess\ImageWatermark;
//自定义参数
//$mode = 1;
$client = new ImageWatermark($mode);
//可选参数
//$client->width = 200;
//$client->height = 200;
//$client->image = '';
//$client->dx = '';
//$client->dy = '';
//$client->gravity = '';
//$client->dissolve = '';
print_r($client->exec($bucketName, $fileName, $localFile));
#### 3. 文字水印
require '../vendor/autoload.php';
use Wcs\ImageProcess\ImageWatermark;
//自定义参数
//$mode = 2;
//$text = 'test';
$client = new ImageWatermark($mode, $text);
// 可选参数
//$client->dissolve = '';
//$client->font = '';
//$client->fontsize = 16;
//$client->image = '';
//$client->dx = '';
//$client->dy = '';
//$client->gravity = '';
print_r($client->exec($bucketName, $fileName, $localFile));
#### 4. 高级图片处理
require '../../vendor/autoload.php';
use Wcs\ImageProcess\ImageMogr;
$client = new ImageMogr();
//可选参数,详见wcs api的文档说明
$client->thumbnail = '!10p';
print_r($client->exec($bucketName, $fileName));
#### 5. 获取图片基本信息
require '../../vendor/autoload.php';
use Wcs\ImageProcess\ImageInfo;
$client = new ImageInfo();
print_r($client->imgInfo($bucketName, $fileName));
#### 6. 获取图片EXIF信息
require '../../vendor/autoload.php';
use Wcs\ImageProcess\ImageInfo;
$client = new ImageInfo();
print_r($client->imageEXIF($bucketName, $fileName));
#### 音视频操作
##### 1. fops操作
require '../../vendor/autoload.php';
use Wcs\PersistentFops\Fops;
use Wcs\Config;
use Wcs\MgrAuth;
//$fops的格式,不同的音视频操作对应不同的fops格式,详细见wcs api 文档
$bucket = '';
$key = '';
//参数设置
$notifyURL = '';
$force = 0;
$separate = 0;
$fops = '';
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new Fops($auth, $bucket);
print_r($client->exec($fops, $key, $notifyURL, $force, $separate));
##### 2. fops查询
require '../../vendor/autoload.php';
use Wcs\PersistentFops\Fops;
print_r(Fops::status($persisetntId));
#### 高级资源管理
支持对文件进行异步资源管理操作
1.抓取资源
2.复制资源
3.移动资源
4.删除资源
5.按前缀删除资源
6.fmgr任务查询
##### 1. 抓取资源
require '../../vendor/autoload.php';
use Wcs\Fmgr\Fmgr;
use Wcs\Config;
use Wcs\MgrAuth;
use Wcs\Utils;
//可选参数
$notifyURL = '';
$force = 0;
$separate = 0;
//fops参数
$fetchURL = Utils::url_safe_base64_encode('https://www.baidu.com/img/bd_logo1.png');
$bucket = Utils::url_safe_base64_encode('');
$key = Utils::url_safe_base64_encode('');
$prefix = Utils::url_safe_base64_encode('');
$fops = 'fops=fetchURL/'.$fetchURL.'/bucket/'.$bucket.'/key/'.$key.'/prefix/'.$prefix.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new Fmgr($auth, $notifyURL, $force, $separate);
print_r($client->fetch($fops));
##### 2. 复制资源
// 请先填写相关字段,$fops字段格式详见wcs api 文档
require '../../vendor/autoload.php';
use Wcs\Fmgr\Fmgr;
use Wcs\Config;
use Wcs\MgrAuth;
use Wcs\Utils;
//可选参数
$notifyURL = '';
$force = 0;
$separate = 0;
//fops参数
$resource = Utils::url_safe_base64_encode('');
$bucket = Utils::url_safe_base64_encode('');
$key = Utils::url_safe_base64_encode('');
$prefix = Utils::url_safe_base64_encode('');
$fops = 'fops=resource/'.$resource.'/bucket/'.$bucket.'/key/'.$key.'/prefix/'.$prefix.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new Fmgr($auth, $notifyURL, $force, $separate);
print_r($client->copy($fops));
##### 3. 移动资源
// 请先填写相关字段,$fops字段格式详见wcs api 文档
require '../../vendor/autoload.php';
use Wcs\Fmgr\Fmgr;
use Wcs\Config;
use Wcs\MgrAuth;
use Wcs\Utils;
//可选参数
$notifyURL = '';
$force = 0;
$separate = 0;
//fops参数
$resource = Utils::url_safe_base64_encode('');
$bucket = Utils::url_safe_base64_encode('');
$key = Utils::url_safe_base64_encode('');
$prefix = Utils::url_safe_base64_encode('');
$fops = 'fops=resource/'.$resource.'/bucket/'.$bucket.'/key/'.$key.'/prefix/'.$prefix.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new Fmgr($auth, $notifyURL, $force, $separate);
print_r($client->move($fops));
##### 4. 删除资源
// 请先填写相关字段,$fops字段格式详见wcs api 文档
require '../../vendor/autoload.php';
use Wcs\Fmgr\Fmgr;
use Wcs\Config;
use Wcs\MgrAuth;
use Wcs\Utils;
//可选参数
$notifyURL = '';
$force = 0;
$separate = 0;
//fops参数
$bucket = Utils::url_safe_base64_encode('');
$key = Utils::url_safe_base64_encode('');
$fops = 'fops=bucket/'.$bucket.'/key/'.$key.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new Fmgr($auth, $notifyURL, $force, $separate);
print_r($client->delete($fops));
##### 5. 按前缀删除资源
// 请先填写相关字段,$fops字段格式详见wcs api 文档
require '../../vendor/autoload.php';
use Wcs\Fmgr\Fmgr;
use Wcs\Config;
use Wcs\MgrAuth;
use Wcs\Utils;
//可选参数
$notifyURL = '';
$force = 0;
$separate = 0;
//fops参数
$bucket = Utils::url_safe_base64_encode('');
$prefix = Utils::url_safe_base64_encode('');
$output = Utils::url_safe_base64_encode('');
$fops = 'fops=bucket/'.$bucket.'/prefix/'.$prefix.'¬ifyURL='.Utils::url_safe_base64_encode($notifyURL).'&force='.$force.'&separate='.$separate;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new Fmgr($auth, $notifyURL, $force, $separate);
print_r($client->deletePrefix($fops));
##### 6. fmgr任务查询
// 请先填写相关字段,$fops字段格式详见wcs api 文档
require '../../vendor/autoload.php';
use Wcs\Fmgr\Fmgr;
use Wcs\Config;
use Wcs\MgrAuth;
//可选参数
$notifyURL = '';
$force = 0;
$separate = 0;
$ak = Config::WCS_ACCESS_KEY;
$sk = Config::WCS_SECRET_KEY;
$auth = new MgrAuth($ak, $sk);
$client = new Fmgr($auth, $notifyURL, $force, $separate);
print_r($client->status(""));
[1]: https://wcsd.chinanetcenter.com/sdk/cnc-php-sdk-wcs.zip
All versions of wcs-sdk-php with dependencies
PHP Build Version
Package Version
Requires
guzzlehttp/guzzle Version
^6.2
The package threebenji/wcs-sdk-php contains the following files
Loading the files please wait ....