mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
commit
451cd04a49
@ -1,7 +1,7 @@
|
|||||||
ThinkAdmin for PHP
|
ThinkAdmin for PHP
|
||||||
--
|
--
|
||||||
* ThinkAdmin 是一个基于 Thinkphp 5.0.x 开发的后台管理系统,集成后台系统常用功能。
|
* ThinkAdmin 是一个基于 Thinkphp 5.0.x 开发的后台管理系统,集成后台系统常用功能。
|
||||||
* 项目安装请参考 ThinkPHP 官方文档及下面的服务环境说明,数据库 sql 文件存放于项目根目录下。
|
* 项目安装及二次开发请参考 ThinkPHP 官方文档及下面的服务环境说明,数据库 sql 文件存放于项目根目录下。
|
||||||
> 注意:项目测试请另行搭建环境并创建数据库(数据库配置 application/database.php), 切勿直接使用测试环境数据!
|
> 注意:项目测试请另行搭建环境并创建数据库(数据库配置 application/database.php), 切勿直接使用测试环境数据!
|
||||||
|
|
||||||
|
|
||||||
@ -18,6 +18,7 @@ Repositorie
|
|||||||
>* GitHub 托管地址:https://github.com/zoujingli/ThinkAdmin
|
>* GitHub 托管地址:https://github.com/zoujingli/ThinkAdmin
|
||||||
>* OSChina 托管地址:http://git.oschina.net/zoujingli/Think.Admin
|
>* OSChina 托管地址:http://git.oschina.net/zoujingli/Think.Admin
|
||||||
|
|
||||||
|
|
||||||
Module
|
Module
|
||||||
--
|
--
|
||||||
* 简易`RBAC`权限管理(用户、权限、节点、菜单控制)
|
* 简易`RBAC`权限管理(用户、权限、节点、菜单控制)
|
||||||
|
@ -49,6 +49,8 @@ class DataService
|
|||||||
* @param string $sequence
|
* @param string $sequence
|
||||||
* @param string $type
|
* @param string $type
|
||||||
* @return bool
|
* @return bool
|
||||||
|
* @throws \think\Exception
|
||||||
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
public static function deleteSequence($sequence, $type = 'SYSTEM')
|
public static function deleteSequence($sequence, $type = 'SYSTEM')
|
||||||
{
|
{
|
||||||
@ -87,15 +89,17 @@ class DataService
|
|||||||
* @param string $key 条件主键限制
|
* @param string $key 条件主键限制
|
||||||
* @param array $where 其它的where条件
|
* @param array $where 其它的where条件
|
||||||
* @return bool
|
* @return bool
|
||||||
|
* @throws \think\Exception
|
||||||
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
public static function save($dbQuery, $data, $key = 'id', $where = [])
|
public static function save($dbQuery, $data, $key = 'id', $where = [])
|
||||||
{
|
{
|
||||||
$db = is_string($dbQuery) ? Db::name($dbQuery) : $dbQuery;
|
$db = is_string($dbQuery) ? Db::name($dbQuery) : $dbQuery;
|
||||||
$where[$key] = isset($data[$key]) ? $data[$key] : '';
|
$where[$key] = isset($data[$key]) ? $data[$key] : '';
|
||||||
if ($db->where($where)->count() > 0) {
|
if ($db->where($where)->count() > 0) {
|
||||||
return $db->where($where)->update($data) !== false;
|
return $db->strict(false)->where($where)->update($data) !== false;
|
||||||
}
|
}
|
||||||
return $db->insert($data) !== false;
|
return $db->strict(false)->insert($data) !== false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -103,6 +107,8 @@ class DataService
|
|||||||
* @param \think\db\Query|string $dbQuery 数据查询对象
|
* @param \think\db\Query|string $dbQuery 数据查询对象
|
||||||
* @param array $where 额外查询条件
|
* @param array $where 额外查询条件
|
||||||
* @return bool|null
|
* @return bool|null
|
||||||
|
* @throws \think\Exception
|
||||||
|
* @throws \think\exception\PDOException
|
||||||
*/
|
*/
|
||||||
public static function update(&$dbQuery, $where = [])
|
public static function update(&$dbQuery, $where = [])
|
||||||
{
|
{
|
||||||
|
2
vendor/autoload.php
vendored
2
vendor/autoload.php
vendored
@ -4,4 +4,4 @@
|
|||||||
|
|
||||||
require_once __DIR__ . '/composer/autoload_real.php';
|
require_once __DIR__ . '/composer/autoload_real.php';
|
||||||
|
|
||||||
return ComposerAutoloaderInit468e08d63393129419db8541182b61a2::getLoader();
|
return ComposerAutoloaderInit4bc699ddf295b08fae1ab3711fa28eb4::getLoader();
|
||||||
|
14
vendor/composer/autoload_real.php
vendored
14
vendor/composer/autoload_real.php
vendored
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
// autoload_real.php @generated by Composer
|
// autoload_real.php @generated by Composer
|
||||||
|
|
||||||
class ComposerAutoloaderInit468e08d63393129419db8541182b61a2
|
class ComposerAutoloaderInit4bc699ddf295b08fae1ab3711fa28eb4
|
||||||
{
|
{
|
||||||
private static $loader;
|
private static $loader;
|
||||||
|
|
||||||
@ -19,15 +19,15 @@ class ComposerAutoloaderInit468e08d63393129419db8541182b61a2
|
|||||||
return self::$loader;
|
return self::$loader;
|
||||||
}
|
}
|
||||||
|
|
||||||
spl_autoload_register(array('ComposerAutoloaderInit468e08d63393129419db8541182b61a2', 'loadClassLoader'), true, true);
|
spl_autoload_register(array('ComposerAutoloaderInit4bc699ddf295b08fae1ab3711fa28eb4', 'loadClassLoader'), true, true);
|
||||||
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
||||||
spl_autoload_unregister(array('ComposerAutoloaderInit468e08d63393129419db8541182b61a2', 'loadClassLoader'));
|
spl_autoload_unregister(array('ComposerAutoloaderInit4bc699ddf295b08fae1ab3711fa28eb4', 'loadClassLoader'));
|
||||||
|
|
||||||
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
||||||
if ($useStaticLoader) {
|
if ($useStaticLoader) {
|
||||||
require_once __DIR__ . '/autoload_static.php';
|
require_once __DIR__ . '/autoload_static.php';
|
||||||
|
|
||||||
call_user_func(\Composer\Autoload\ComposerStaticInit468e08d63393129419db8541182b61a2::getInitializer($loader));
|
call_user_func(\Composer\Autoload\ComposerStaticInit4bc699ddf295b08fae1ab3711fa28eb4::getInitializer($loader));
|
||||||
} else {
|
} else {
|
||||||
$map = require __DIR__ . '/autoload_namespaces.php';
|
$map = require __DIR__ . '/autoload_namespaces.php';
|
||||||
foreach ($map as $namespace => $path) {
|
foreach ($map as $namespace => $path) {
|
||||||
@ -48,19 +48,19 @@ class ComposerAutoloaderInit468e08d63393129419db8541182b61a2
|
|||||||
$loader->register(true);
|
$loader->register(true);
|
||||||
|
|
||||||
if ($useStaticLoader) {
|
if ($useStaticLoader) {
|
||||||
$includeFiles = Composer\Autoload\ComposerStaticInit468e08d63393129419db8541182b61a2::$files;
|
$includeFiles = Composer\Autoload\ComposerStaticInit4bc699ddf295b08fae1ab3711fa28eb4::$files;
|
||||||
} else {
|
} else {
|
||||||
$includeFiles = require __DIR__ . '/autoload_files.php';
|
$includeFiles = require __DIR__ . '/autoload_files.php';
|
||||||
}
|
}
|
||||||
foreach ($includeFiles as $fileIdentifier => $file) {
|
foreach ($includeFiles as $fileIdentifier => $file) {
|
||||||
composerRequire468e08d63393129419db8541182b61a2($fileIdentifier, $file);
|
composerRequire4bc699ddf295b08fae1ab3711fa28eb4($fileIdentifier, $file);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $loader;
|
return $loader;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function composerRequire468e08d63393129419db8541182b61a2($fileIdentifier, $file)
|
function composerRequire4bc699ddf295b08fae1ab3711fa28eb4($fileIdentifier, $file)
|
||||||
{
|
{
|
||||||
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
||||||
require $file;
|
require $file;
|
||||||
|
8
vendor/composer/autoload_static.php
vendored
8
vendor/composer/autoload_static.php
vendored
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
namespace Composer\Autoload;
|
namespace Composer\Autoload;
|
||||||
|
|
||||||
class ComposerStaticInit468e08d63393129419db8541182b61a2
|
class ComposerStaticInit4bc699ddf295b08fae1ab3711fa28eb4
|
||||||
{
|
{
|
||||||
public static $files = array (
|
public static $files = array (
|
||||||
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
|
'9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php',
|
||||||
@ -391,9 +391,9 @@ class ComposerStaticInit468e08d63393129419db8541182b61a2
|
|||||||
public static function getInitializer(ClassLoader $loader)
|
public static function getInitializer(ClassLoader $loader)
|
||||||
{
|
{
|
||||||
return \Closure::bind(function () use ($loader) {
|
return \Closure::bind(function () use ($loader) {
|
||||||
$loader->prefixLengthsPsr4 = ComposerStaticInit468e08d63393129419db8541182b61a2::$prefixLengthsPsr4;
|
$loader->prefixLengthsPsr4 = ComposerStaticInit4bc699ddf295b08fae1ab3711fa28eb4::$prefixLengthsPsr4;
|
||||||
$loader->prefixDirsPsr4 = ComposerStaticInit468e08d63393129419db8541182b61a2::$prefixDirsPsr4;
|
$loader->prefixDirsPsr4 = ComposerStaticInit4bc699ddf295b08fae1ab3711fa28eb4::$prefixDirsPsr4;
|
||||||
$loader->classMap = ComposerStaticInit468e08d63393129419db8541182b61a2::$classMap;
|
$loader->classMap = ComposerStaticInit4bc699ddf295b08fae1ab3711fa28eb4::$classMap;
|
||||||
|
|
||||||
}, null, ClassLoader::class);
|
}, null, ClassLoader::class);
|
||||||
}
|
}
|
||||||
|
24
vendor/composer/installed.json
vendored
24
vendor/composer/installed.json
vendored
@ -49,18 +49,18 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/zoujingli/wechat-php-sdk.git",
|
"url": "https://github.com/zoujingli/wechat-php-sdk.git",
|
||||||
"reference": "4e8563507213f030cb6612fafceb96380ce7cfb7"
|
"reference": "7869490b99e648d40a5a5169cc0469dccb8e8b0a"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://files.phpcomposer.com/files/zoujingli/wechat-php-sdk/4e8563507213f030cb6612fafceb96380ce7cfb7.zip",
|
"url": "https://files.phpcomposer.com/files/zoujingli/wechat-php-sdk/7869490b99e648d40a5a5169cc0469dccb8e8b0a.zip",
|
||||||
"reference": "4e8563507213f030cb6612fafceb96380ce7cfb7",
|
"reference": "7869490b99e648d40a5a5169cc0469dccb8e8b0a",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=5.3.3"
|
"php": ">=5.3.3"
|
||||||
},
|
},
|
||||||
"time": "2018-02-05T02:44:49+00:00",
|
"time": "2018-02-28T13:30:53+00:00",
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"installation-source": "dist",
|
"installation-source": "dist",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -80,17 +80,17 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "qiniu/php-sdk",
|
"name": "qiniu/php-sdk",
|
||||||
"version": "v7.2.2",
|
"version": "v7.2.3",
|
||||||
"version_normalized": "7.2.2.0",
|
"version_normalized": "7.2.3.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/qiniu/php-sdk.git",
|
"url": "https://github.com/qiniu/php-sdk.git",
|
||||||
"reference": "79290fd9cb5d72cc2feef779008b3aaeeac49eb9"
|
"reference": "67852ba9cdd7f48e0e080961abebafee134fb329"
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "zip",
|
"type": "zip",
|
||||||
"url": "https://files.phpcomposer.com/files/qiniu/php-sdk/79290fd9cb5d72cc2feef779008b3aaeeac49eb9.zip",
|
"url": "https://files.phpcomposer.com/files/qiniu/php-sdk/67852ba9cdd7f48e0e080961abebafee134fb329.zip",
|
||||||
"reference": "79290fd9cb5d72cc2feef779008b3aaeeac49eb9",
|
"reference": "67852ba9cdd7f48e0e080961abebafee134fb329",
|
||||||
"shasum": ""
|
"shasum": ""
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
@ -100,7 +100,7 @@
|
|||||||
"phpunit/phpunit": "~4.0",
|
"phpunit/phpunit": "~4.0",
|
||||||
"squizlabs/php_codesniffer": "~2.3"
|
"squizlabs/php_codesniffer": "~2.3"
|
||||||
},
|
},
|
||||||
"time": "2017-11-07T06:12:11+00:00",
|
"time": "2018-02-20T13:59:54+00:00",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"installation-source": "dist",
|
"installation-source": "dist",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
@ -381,8 +381,8 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "symfony/options-resolver",
|
"name": "symfony/options-resolver",
|
||||||
"version": "v3.4.4",
|
"version": "v3.4.5",
|
||||||
"version_normalized": "3.4.4.0",
|
"version_normalized": "3.4.5.0",
|
||||||
"source": {
|
"source": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/symfony/options-resolver.git",
|
"url": "https://github.com/symfony/options-resolver.git",
|
||||||
|
9
vendor/qiniu/php-sdk/CHANGELOG.md
vendored
9
vendor/qiniu/php-sdk/CHANGELOG.md
vendored
@ -1,6 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 7.2.2 (2017-11-06
|
## 7.2.3 (2018-01-20)
|
||||||
|
### 增加
|
||||||
|
* 新加坡机房
|
||||||
|
### 修正
|
||||||
|
* 获取域名的入口域名
|
||||||
|
* http回复头部兼容大小写
|
||||||
|
|
||||||
|
## 7.2.2 (2017-11-06)
|
||||||
### 增加
|
### 增加
|
||||||
* Qiniu算法的鉴权方法
|
* Qiniu算法的鉴权方法
|
||||||
|
|
||||||
|
@ -12,7 +12,6 @@ $auth = new Auth($accessKey, $secretKey);
|
|||||||
|
|
||||||
// 在七牛保存的文件名
|
// 在七牛保存的文件名
|
||||||
$key = 'php-logo.png';
|
$key = 'php-logo.png';
|
||||||
$token = $auth->uploadToken($bucket);
|
|
||||||
$uploadMgr = new UploadManager();
|
$uploadMgr = new UploadManager();
|
||||||
|
|
||||||
$pfop = "imageMogr2/rotate/90|saveas/" . \Qiniu\base64_urlSafeEncode($bucket . ":php-logo-rotate.png");
|
$pfop = "imageMogr2/rotate/90|saveas/" . \Qiniu\base64_urlSafeEncode($bucket . ":php-logo-rotate.png");
|
||||||
|
4
vendor/qiniu/php-sdk/src/Qiniu/Config.php
vendored
4
vendor/qiniu/php-sdk/src/Qiniu/Config.php
vendored
@ -3,14 +3,14 @@ namespace Qiniu;
|
|||||||
|
|
||||||
final class Config
|
final class Config
|
||||||
{
|
{
|
||||||
const SDK_VER = '7.2.2';
|
const SDK_VER = '7.2.3';
|
||||||
|
|
||||||
const BLOCK_SIZE = 4194304; //4*1024*1024 分块上传块大小,该参数为接口规格,不能修改
|
const BLOCK_SIZE = 4194304; //4*1024*1024 分块上传块大小,该参数为接口规格,不能修改
|
||||||
|
|
||||||
const RSF_HOST = 'rsf.qiniu.com';
|
const RSF_HOST = 'rsf.qiniu.com';
|
||||||
const API_HOST = 'api.qiniu.com';
|
const API_HOST = 'api.qiniu.com';
|
||||||
const RS_HOST = 'rs.qiniu.com'; //RS Host
|
const RS_HOST = 'rs.qiniu.com'; //RS Host
|
||||||
const UC_HOST = 'https://uc.qbox.me'; //UC Host
|
const UC_HOST = 'https://api.qiniu.com'; //UC Host
|
||||||
|
|
||||||
// Zone 空间对应的机房
|
// Zone 空间对应的机房
|
||||||
public $zone;
|
public $zone;
|
||||||
|
@ -83,7 +83,7 @@ final class Client
|
|||||||
CURLOPT_HEADER => true,
|
CURLOPT_HEADER => true,
|
||||||
CURLOPT_NOBODY => false,
|
CURLOPT_NOBODY => false,
|
||||||
CURLOPT_CUSTOMREQUEST => $request->method,
|
CURLOPT_CUSTOMREQUEST => $request->method,
|
||||||
CURLOPT_URL => $request->url
|
CURLOPT_URL => $request->url,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Handle open_basedir & safe mode
|
// Handle open_basedir & safe mode
|
||||||
@ -129,6 +129,7 @@ final class Client
|
|||||||
$headerLine = trim($line);
|
$headerLine = trim($line);
|
||||||
$kv = explode(':', $headerLine);
|
$kv = explode(':', $headerLine);
|
||||||
if (count($kv) > 1) {
|
if (count($kv) > 1) {
|
||||||
|
$kv[0] = ucwords($kv[0], '-');
|
||||||
$headers[$kv[0]] = trim($kv[1]);
|
$headers[$kv[0]] = trim($kv[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -130,7 +130,7 @@ final class Response
|
|||||||
|
|
||||||
private static function bodyJson($body)
|
private static function bodyJson($body)
|
||||||
{
|
{
|
||||||
return \Qiniu\json_decode((string)$body, true, 512);
|
return \Qiniu\json_decode((string) $body, true, 512);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function xVia()
|
public function xVia()
|
||||||
|
@ -30,14 +30,14 @@ final class FormUploader
|
|||||||
$data,
|
$data,
|
||||||
$config,
|
$config,
|
||||||
$params,
|
$params,
|
||||||
$mime
|
$mime,
|
||||||
|
$fname
|
||||||
) {
|
) {
|
||||||
|
|
||||||
$fields = array('token' => $upToken);
|
$fields = array('token' => $upToken);
|
||||||
if ($key === null) {
|
if ($key === null) {
|
||||||
$fname = 'filename';
|
$fname='nullkey';
|
||||||
} else {
|
} else {
|
||||||
$fname = $key;
|
|
||||||
$fields['key'] = $key;
|
$fields['key'] = $key;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@ final class ResumeUploader
|
|||||||
/**
|
/**
|
||||||
* 上传操作
|
* 上传操作
|
||||||
*/
|
*/
|
||||||
public function upload()
|
public function upload($fname)
|
||||||
{
|
{
|
||||||
$uploaded = 0;
|
$uploaded = 0;
|
||||||
while ($uploaded < $this->size) {
|
while ($uploaded < $this->size) {
|
||||||
@ -106,7 +106,7 @@ final class ResumeUploader
|
|||||||
array_push($this->contexts, $ret['ctx']);
|
array_push($this->contexts, $ret['ctx']);
|
||||||
$uploaded += $blockSize;
|
$uploaded += $blockSize;
|
||||||
}
|
}
|
||||||
return $this->makeFile();
|
return $this->makeFile($fname);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -118,13 +118,14 @@ final class ResumeUploader
|
|||||||
return $this->post($url, $block);
|
return $this->post($url, $block);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function fileUrl()
|
private function fileUrl($fname)
|
||||||
{
|
{
|
||||||
$url = $this->host . '/mkfile/' . $this->size;
|
$url = $this->host . '/mkfile/' . $this->size;
|
||||||
$url .= '/mimeType/' . \Qiniu\base64_urlSafeEncode($this->mime);
|
$url .= '/mimeType/' . \Qiniu\base64_urlSafeEncode($this->mime);
|
||||||
if ($this->key != null) {
|
if ($this->key != null) {
|
||||||
$url .= '/key/' . \Qiniu\base64_urlSafeEncode($this->key);
|
$url .= '/key/' . \Qiniu\base64_urlSafeEncode($this->key);
|
||||||
}
|
}
|
||||||
|
$url .= '/fname/' . \Qiniu\base64_urlSafeEncode($fname);
|
||||||
if (!empty($this->params)) {
|
if (!empty($this->params)) {
|
||||||
foreach ($this->params as $key => $value) {
|
foreach ($this->params as $key => $value) {
|
||||||
$val = \Qiniu\base64_urlSafeEncode($value);
|
$val = \Qiniu\base64_urlSafeEncode($value);
|
||||||
@ -137,9 +138,9 @@ final class ResumeUploader
|
|||||||
/**
|
/**
|
||||||
* 创建文件
|
* 创建文件
|
||||||
*/
|
*/
|
||||||
private function makeFile()
|
private function makeFile($fname)
|
||||||
{
|
{
|
||||||
$url = $this->fileUrl();
|
$url = $this->fileUrl($fname);
|
||||||
$body = implode(',', $this->contexts);
|
$body = implode(',', $this->contexts);
|
||||||
$response = $this->post($url, $body);
|
$response = $this->post($url, $body);
|
||||||
if ($response->needRetry()) {
|
if ($response->needRetry()) {
|
||||||
|
@ -46,8 +46,9 @@ final class UploadManager
|
|||||||
$data,
|
$data,
|
||||||
$params = null,
|
$params = null,
|
||||||
$mime = 'application/octet-stream',
|
$mime = 'application/octet-stream',
|
||||||
$checkCrc = false
|
$fname = null
|
||||||
) {
|
) {
|
||||||
|
|
||||||
$params = self::trimParams($params);
|
$params = self::trimParams($params);
|
||||||
return FormUploader::put(
|
return FormUploader::put(
|
||||||
$upToken,
|
$upToken,
|
||||||
@ -56,7 +57,7 @@ final class UploadManager
|
|||||||
$this->config,
|
$this->config,
|
||||||
$params,
|
$params,
|
||||||
$mime,
|
$mime,
|
||||||
$checkCrc
|
$fname
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -86,6 +87,7 @@ final class UploadManager
|
|||||||
$mime = 'application/octet-stream',
|
$mime = 'application/octet-stream',
|
||||||
$checkCrc = false
|
$checkCrc = false
|
||||||
) {
|
) {
|
||||||
|
|
||||||
$file = fopen($filePath, 'rb');
|
$file = fopen($filePath, 'rb');
|
||||||
if ($file === false) {
|
if ($file === false) {
|
||||||
throw new \Exception("file can not open", 1);
|
throw new \Exception("file can not open", 1);
|
||||||
@ -106,7 +108,8 @@ final class UploadManager
|
|||||||
$this->config,
|
$this->config,
|
||||||
$params,
|
$params,
|
||||||
$mime,
|
$mime,
|
||||||
$checkCrc
|
$checkCrc,
|
||||||
|
basename($filePath)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -119,7 +122,7 @@ final class UploadManager
|
|||||||
$mime,
|
$mime,
|
||||||
$this->config
|
$this->config
|
||||||
);
|
);
|
||||||
$ret = $up->upload();
|
$ret = $up->upload(basename($filePath));
|
||||||
fclose($file);
|
fclose($file);
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
28
vendor/qiniu/php-sdk/src/Qiniu/Zone.php
vendored
28
vendor/qiniu/php-sdk/src/Qiniu/Zone.php
vendored
@ -42,8 +42,8 @@ final class Zone
|
|||||||
public static function zone0()
|
public static function zone0()
|
||||||
{
|
{
|
||||||
$Zone_z0 = new Zone(
|
$Zone_z0 = new Zone(
|
||||||
array("up.qiniup.com", 'up-nb.qiniup.com', 'up-xs.qiniup.com'),
|
array("up.qiniup.com", 'up-jjh.qiniup.com', 'up-xs.qiniup.com'),
|
||||||
array('upload.qiniup.com', 'upload-nb.qiniup.com', 'upload-xs.qiniup.com'),
|
array('upload.qiniup.com', 'upload-jjh.qiniup.com', 'upload-xs.qiniup.com'),
|
||||||
'rs.qiniu.com',
|
'rs.qiniu.com',
|
||||||
'rsf.qiniu.com',
|
'rsf.qiniu.com',
|
||||||
'api.qiniu.com',
|
'api.qiniu.com',
|
||||||
@ -71,8 +71,8 @@ final class Zone
|
|||||||
public static function zone2()
|
public static function zone2()
|
||||||
{
|
{
|
||||||
$Zone_z2 = new Zone(
|
$Zone_z2 = new Zone(
|
||||||
array('up-z2.qiniup.com', 'up-gz.qiniup.com', 'up-fs.qiniup.com'),
|
array('up-z2.qiniup.com', 'up-dg.qiniup.com', 'up-fs.qiniup.com'),
|
||||||
array('upload-z2.qiniup.com', 'upload-gz.qiniup.com', 'upload-fs.qiniup.com'),
|
array('upload-z2.qiniup.com', 'upload-dg.qiniup.com', 'upload-fs.qiniup.com'),
|
||||||
"rs-z2.qiniu.com",
|
"rs-z2.qiniu.com",
|
||||||
"rsf-z2.qiniu.com",
|
"rsf-z2.qiniu.com",
|
||||||
"api-z2.qiniu.com",
|
"api-z2.qiniu.com",
|
||||||
@ -96,6 +96,21 @@ final class Zone
|
|||||||
return $Zone_na0;
|
return $Zone_na0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//新加坡机房
|
||||||
|
public static function zoneAs0()
|
||||||
|
{
|
||||||
|
//新加坡机房
|
||||||
|
$Zone_as0 = new Zone(
|
||||||
|
array('up-as0.qiniup.com'),
|
||||||
|
array('upload-as0.qiniup.com'),
|
||||||
|
"rs-as0.qiniu.com",
|
||||||
|
"rsf-as0.qiniu.com",
|
||||||
|
"api-as0.qiniu.com",
|
||||||
|
"iovip-as0.qbox.me"
|
||||||
|
);
|
||||||
|
return $Zone_as0;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* GET /v2/query?ak=<ak>&&bucket=<bucket>
|
* GET /v2/query?ak=<ak>&&bucket=<bucket>
|
||||||
**/
|
**/
|
||||||
@ -108,6 +123,7 @@ final class Zone
|
|||||||
return array(null, new Error($url, $ret));
|
return array(null, new Error($url, $ret));
|
||||||
}
|
}
|
||||||
$r = ($ret->body === null) ? array() : $ret->json();
|
$r = ($ret->body === null) ? array() : $ret->json();
|
||||||
|
//print_r($ret);
|
||||||
//parse zone;
|
//parse zone;
|
||||||
|
|
||||||
$iovipHost = $r['io']['src']['main'][0];
|
$iovipHost = $r['io']['src']['main'][0];
|
||||||
@ -140,6 +156,10 @@ final class Zone
|
|||||||
$zone->rsHost = "rs-na0.qiniu.com";
|
$zone->rsHost = "rs-na0.qiniu.com";
|
||||||
$zone->rsfHost = "rsf-na0.qiniu.com";
|
$zone->rsfHost = "rsf-na0.qiniu.com";
|
||||||
$zone->apiHost = "api-na0.qiniu.com";
|
$zone->apiHost = "api-na0.qiniu.com";
|
||||||
|
} elseif (strstr($zone->iovipHost, "as0") !== false) {
|
||||||
|
$zone->rsHost = "rs-as0.qiniu.com";
|
||||||
|
$zone->rsfHost = "rsf-as0.qiniu.com";
|
||||||
|
$zone->apiHost = "api-as0.qiniu.com";
|
||||||
} else {
|
} else {
|
||||||
$zone->rsHost = "rs.qiniu.com";
|
$zone->rsHost = "rs.qiniu.com";
|
||||||
$zone->rsfHost = "rsf.qiniu.com";
|
$zone->rsfHost = "rsf.qiniu.com";
|
||||||
|
@ -24,7 +24,7 @@ class FormUpTest extends \PHPUnit_Framework_TestCase
|
|||||||
public function testData()
|
public function testData()
|
||||||
{
|
{
|
||||||
$token = $this->auth->uploadToken($this->bucketName);
|
$token = $this->auth->uploadToken($this->bucketName);
|
||||||
list($ret, $error) = FormUploader::put($token, 'formput', 'hello world', $this->cfg, null, 'text/plain', true);
|
list($ret, $error) = FormUploader::put($token, 'formput', 'hello world', $this->cfg, null, 'text/plain', null);
|
||||||
$this->assertNull($error);
|
$this->assertNull($error);
|
||||||
$this->assertNotNull($ret['hash']);
|
$this->assertNotNull($ret['hash']);
|
||||||
}
|
}
|
||||||
@ -33,7 +33,7 @@ class FormUpTest extends \PHPUnit_Framework_TestCase
|
|||||||
{
|
{
|
||||||
$upManager = new UploadManager();
|
$upManager = new UploadManager();
|
||||||
$token = $this->auth->uploadToken($this->bucketName);
|
$token = $this->auth->uploadToken($this->bucketName);
|
||||||
list($ret, $error) = $upManager->put($token, 'formput', 'hello world', null, 'text/plain', true);
|
list($ret, $error) = $upManager->put($token, 'formput', 'hello world', null, 'text/plain', null);
|
||||||
$this->assertNull($error);
|
$this->assertNull($error);
|
||||||
$this->assertNotNull($ret['hash']);
|
$this->assertNotNull($ret['hash']);
|
||||||
}
|
}
|
||||||
@ -42,7 +42,7 @@ class FormUpTest extends \PHPUnit_Framework_TestCase
|
|||||||
{
|
{
|
||||||
$key = 'formPutFile';
|
$key = 'formPutFile';
|
||||||
$token = $this->auth->uploadToken($this->bucketName, $key);
|
$token = $this->auth->uploadToken($this->bucketName, $key);
|
||||||
list($ret, $error) = FormUploader::putFile($token, $key, __file__, $this->cfg, null, 'text/plain', true);
|
list($ret, $error) = FormUploader::putFile($token, $key, __file__, $this->cfg, null, 'text/plain', null);
|
||||||
$this->assertNull($error);
|
$this->assertNull($error);
|
||||||
$this->assertNotNull($ret['hash']);
|
$this->assertNotNull($ret['hash']);
|
||||||
}
|
}
|
||||||
@ -52,7 +52,7 @@ class FormUpTest extends \PHPUnit_Framework_TestCase
|
|||||||
$key = 'formPutFile';
|
$key = 'formPutFile';
|
||||||
$token = $this->auth->uploadToken($this->bucketName, $key);
|
$token = $this->auth->uploadToken($this->bucketName, $key);
|
||||||
$upManager = new UploadManager();
|
$upManager = new UploadManager();
|
||||||
list($ret, $error) = $upManager->putFile($token, $key, __file__, null, 'text/plain', true);
|
list($ret, $error) = $upManager->putFile($token, $key, __file__, null, 'text/plain', null);
|
||||||
$this->assertNull($error);
|
$this->assertNull($error);
|
||||||
$this->assertNotNull($ret['hash']);
|
$this->assertNotNull($ret['hash']);
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,6 @@ class ZoneTest extends \PHPUnit_Framework_TestCase
|
|||||||
public function testUpHosts()
|
public function testUpHosts()
|
||||||
{
|
{
|
||||||
$zone = Zone::queryZone($this->ak, $this->bucketName);
|
$zone = Zone::queryZone($this->ak, $this->bucketName);
|
||||||
print_r($zone);
|
|
||||||
$this->assertContains('upload.qiniup.com', $zone->cdnUpHosts);
|
$this->assertContains('upload.qiniup.com', $zone->cdnUpHosts);
|
||||||
|
|
||||||
$zone = Zone::queryZone($this->ak, $this->bucketNameBC);
|
$zone = Zone::queryZone($this->ak, $this->bucketNameBC);
|
||||||
|
5
vendor/zoujingli/wechat-php-sdk/README.md
vendored
5
vendor/zoujingli/wechat-php-sdk/README.md
vendored
@ -13,6 +13,8 @@
|
|||||||
|
|
||||||
此`SDK`已历经数个线上项目验证与考验,可靠性与稳定性极高,欢迎`fork`或`star`此项目。
|
此`SDK`已历经数个线上项目验证与考验,可靠性与稳定性极高,欢迎`fork`或`star`此项目。
|
||||||
|
|
||||||
|
# 新微信开发工具推荐
|
||||||
|
WeChatDeveloper:https://github.com/zoujingli/WeChatDeveloper
|
||||||
|
|
||||||
**微信SDK开发帮助及交流**
|
**微信SDK开发帮助及交流**
|
||||||
--
|
--
|
||||||
@ -20,7 +22,7 @@
|
|||||||
|
|
||||||
* **文档链接地址**:http://www.kancloud.cn/zoujingli/wechat-php-sdk
|
* **文档链接地址**:http://www.kancloud.cn/zoujingli/wechat-php-sdk
|
||||||
|
|
||||||
* **ThinkAdmin**:https://github.com/zoujingli/ThinkAdmin
|
* **Think.Admin**:https://github.com/zoujingli/Think.Admin
|
||||||
|
|
||||||
* **开发交流QQ群:513350915(新)**
|
* **开发交流QQ群:513350915(新)**
|
||||||
|
|
||||||
@ -85,4 +87,3 @@
|
|||||||
--
|
--
|
||||||
* 此SDK基于`MIT`协议发布,任何人可以用在任何地方,不受约束
|
* 此SDK基于`MIT`协议发布,任何人可以用在任何地方,不受约束
|
||||||
* 此SDK部分代码来自互联网,若有异议,可以联系作者进行删除
|
* 此SDK部分代码来自互联网,若有异议,可以联系作者进行删除
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user