[更新]ComposerUpdate

This commit is contained in:
Anyon 2018-06-11 18:02:53 +08:00
parent b3ab1b468a
commit 14438f1584
8 changed files with 72 additions and 47 deletions

View File

@ -84,7 +84,7 @@ return [
// HTTPS代理标识 // HTTPS代理标识
'https_agent_name' => '', 'https_agent_name' => '',
// IP代理获取标识 // IP代理获取标识
'http_agent_ip' => 'X-REAL-IP', 'http_agent_ip' => 'HTTP_X_REAL_IP',
// URL伪静态后缀 // URL伪静态后缀
'url_html_suffix' => 'html', 'url_html_suffix' => 'html',
// 域名根如thinkphp.cn // 域名根如thinkphp.cn

View File

@ -354,6 +354,16 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
return $this; return $this;
} }
/**
* 判断force
* @access public
* @return bool
*/
public function isForce()
{
return $this->force;
}
/** /**
* 新增数据是否使用Replace * 新增数据是否使用Replace
* @access public * @access public
@ -367,7 +377,18 @@ abstract class Model implements \JsonSerializable, \ArrayAccess
} }
/** /**
* 新增数据是否使用Replace * 设置数据是否存在
* @access public
* @param bool $exists
* @return void
*/
public function exists($exists)
{
$this->exists = $exists;
}
/**
* 判断数据是否存在数据库
* @access public * @access public
* @return bool * @return bool
*/ */

View File

@ -35,7 +35,7 @@ class Request
// HTTPS代理标识 // HTTPS代理标识
'https_agent_name' => '', 'https_agent_name' => '',
// IP代理获取标识 // IP代理获取标识
'http_agent_ip' => 'X-REAL-IP', 'http_agent_ip' => 'HTTP_X_REAL_IP',
// URL伪静态后缀 // URL伪静态后缀
'url_html_suffix' => 'html', 'url_html_suffix' => 'html',
]; ];
@ -593,7 +593,6 @@ class Request
*/ */
public function setRoot($url = null) public function setRoot($url = null)
{ {
$this->root = $url; $this->root = $url;
return $this; return $this;
} }
@ -902,7 +901,8 @@ class Request
} }
// 当前请求参数和URL地址中的参数合并 // 当前请求参数和URL地址中的参数合并
$this->param = array_merge($this->param, $this->get(false), $vars, $this->route(false)); $this->param = array_merge($this->param, $this->get(false), $vars, $this->route(false));
$this->mergeParam = true; $this->mergeParam = true;
} }
@ -969,12 +969,7 @@ class Request
public function post($name = '', $default = null, $filter = '') public function post($name = '', $default = null, $filter = '')
{ {
if (empty($this->post)) { if (empty($this->post)) {
$content = $this->input; $this->post = !empty($_POST) ? $_POST : $this->getJsonInputData($this->input);
if (empty($_POST) && false !== strpos($this->contentType(), 'application/json')) {
$this->post = (array) json_decode($content, true);
} else {
$this->post = $_POST;
}
} }
return $this->input($this->post, $name, $default, $filter); return $this->input($this->post, $name, $default, $filter);
@ -991,17 +986,27 @@ class Request
public function put($name = '', $default = null, $filter = '') public function put($name = '', $default = null, $filter = '')
{ {
if (is_null($this->put)) { if (is_null($this->put)) {
$content = $this->input; $data = $this->getJsonInputData($this->input);
if (false !== strpos($this->contentType(), 'application/json')) {
$this->put = (array) json_decode($content, true); if (!empty($data)) {
$this->put = $data;
} else { } else {
parse_str($content, $this->put); parse_str($this->input, $this->put);
} }
} }
return $this->input($this->put, $name, $default, $filter); return $this->input($this->put, $name, $default, $filter);
} }
protected function getJsonInputData($content)
{
if (false !== strpos($this->contentType(), 'application/json')) {
return (array) json_decode($content, true);
}
return [];
}
/** /**
* 获取DELETE参数 * 获取DELETE参数
* @access public * @access public

View File

@ -71,18 +71,17 @@ trait SoftDelete
/** /**
* 删除当前的记录 * 删除当前的记录
* @access public * @access public
* @param bool $force 是否强制删除
* @return bool * @return bool
*/ */
public function delete($force = false) public function delete()
{ {
if (!$this->exists || false === $this->trigger('before_delete', $this)) { if (!$this->isExists() || false === $this->trigger('before_delete', $this)) {
return false; return false;
} }
$name = $this->getDeleteTimeField(); $name = $this->getDeleteTimeField();
if ($name && !$force) { if ($name && !$this->isForce()) {
// 软删除 // 软删除
$this->data($name, $this->autoWriteTimestamp($name)); $this->data($name, $this->autoWriteTimestamp($name));
@ -104,7 +103,7 @@ trait SoftDelete
$this->trigger('after_delete', $this); $this->trigger('after_delete', $this);
$this->exists = false; $this->exists(false);
return true; return true;
} }
@ -135,7 +134,7 @@ trait SoftDelete
if ($resultSet) { if ($resultSet) {
foreach ($resultSet as $data) { foreach ($resultSet as $data) {
$data->delete($force); $data->force($force)->delete();
} }
} }
@ -146,35 +145,35 @@ trait SoftDelete
* 恢复被软删除的记录 * 恢复被软删除的记录
* @access public * @access public
* @param array $where 更新条件 * @param array $where 更新条件
* @return integer * @return bool
*/ */
public function restore($where = []) public function restore($where = [])
{ {
$name = $this->getDeleteTimeField(); $name = $this->getDeleteTimeField();
if (empty($where)) {
$pk = $this->getPk();
$where[] = [$pk, '=', $this->getData($pk)];
}
if ($name) { if ($name) {
if (false === $this->trigger('before_restore')) { if (false === $this->trigger('before_restore')) {
return false; return false;
} }
if (empty($where)) {
$pk = $this->getPk();
$where[] = [$pk, '=', $this->getData($pk)];
}
// 恢复删除 // 恢复删除
$result = $this->db(false) $this->db(false)
->where($where) ->where($where)
->useSoftDelete($name, $this->getWithTrashedExp()) ->useSoftDelete($name, $this->getWithTrashedExp())
->update([$name => $this->defaultSoftDelete]); ->update([$name => $this->defaultSoftDelete]);
$this->trigger('after_restore'); $this->trigger('after_restore');
return $result; return true;
} }
return 0; return false;
} }
/** /**

2
vendor/autoload.php vendored
View File

@ -4,4 +4,4 @@
require_once __DIR__ . '/composer/autoload_real.php'; require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInit85ad62973eba00accc9df3b4f34e6aa5::getLoader(); return ComposerAutoloaderInitff9f8e2c96d1ee582215ba137a47c4cb::getLoader();

View File

@ -2,7 +2,7 @@
// autoload_real.php @generated by Composer // autoload_real.php @generated by Composer
class ComposerAutoloaderInit85ad62973eba00accc9df3b4f34e6aa5 class ComposerAutoloaderInitff9f8e2c96d1ee582215ba137a47c4cb
{ {
private static $loader; private static $loader;
@ -19,15 +19,15 @@ class ComposerAutoloaderInit85ad62973eba00accc9df3b4f34e6aa5
return self::$loader; return self::$loader;
} }
spl_autoload_register(array('ComposerAutoloaderInit85ad62973eba00accc9df3b4f34e6aa5', 'loadClassLoader'), true, true); spl_autoload_register(array('ComposerAutoloaderInitff9f8e2c96d1ee582215ba137a47c4cb', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(); self::$loader = $loader = new \Composer\Autoload\ClassLoader();
spl_autoload_unregister(array('ComposerAutoloaderInit85ad62973eba00accc9df3b4f34e6aa5', 'loadClassLoader')); spl_autoload_unregister(array('ComposerAutoloaderInitff9f8e2c96d1ee582215ba137a47c4cb', '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\ComposerStaticInit85ad62973eba00accc9df3b4f34e6aa5::getInitializer($loader)); call_user_func(\Composer\Autoload\ComposerStaticInitff9f8e2c96d1ee582215ba137a47c4cb::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 ComposerAutoloaderInit85ad62973eba00accc9df3b4f34e6aa5
$loader->register(true); $loader->register(true);
if ($useStaticLoader) { if ($useStaticLoader) {
$includeFiles = Composer\Autoload\ComposerStaticInit85ad62973eba00accc9df3b4f34e6aa5::$files; $includeFiles = Composer\Autoload\ComposerStaticInitff9f8e2c96d1ee582215ba137a47c4cb::$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) {
composerRequire85ad62973eba00accc9df3b4f34e6aa5($fileIdentifier, $file); composerRequireff9f8e2c96d1ee582215ba137a47c4cb($fileIdentifier, $file);
} }
return $loader; return $loader;
} }
} }
function composerRequire85ad62973eba00accc9df3b4f34e6aa5($fileIdentifier, $file) function composerRequireff9f8e2c96d1ee582215ba137a47c4cb($fileIdentifier, $file)
{ {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
require $file; require $file;

View File

@ -4,7 +4,7 @@
namespace Composer\Autoload; namespace Composer\Autoload;
class ComposerStaticInit85ad62973eba00accc9df3b4f34e6aa5 class ComposerStaticInitff9f8e2c96d1ee582215ba137a47c4cb
{ {
public static $files = array ( public static $files = array (
'1cfd2761b63b0a29ed23657ea394cb2d' => __DIR__ . '/..' . '/topthink/think-captcha/src/helper.php', '1cfd2761b63b0a29ed23657ea394cb2d' => __DIR__ . '/..' . '/topthink/think-captcha/src/helper.php',
@ -303,9 +303,9 @@ class ComposerStaticInit85ad62973eba00accc9df3b4f34e6aa5
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 = ComposerStaticInit85ad62973eba00accc9df3b4f34e6aa5::$prefixLengthsPsr4; $loader->prefixLengthsPsr4 = ComposerStaticInitff9f8e2c96d1ee582215ba137a47c4cb::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInit85ad62973eba00accc9df3b4f34e6aa5::$prefixDirsPsr4; $loader->prefixDirsPsr4 = ComposerStaticInitff9f8e2c96d1ee582215ba137a47c4cb::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInit85ad62973eba00accc9df3b4f34e6aa5::$classMap; $loader->classMap = ComposerStaticInitff9f8e2c96d1ee582215ba137a47c4cb::$classMap;
}, null, ClassLoader::class); }, null, ClassLoader::class);
} }

View File

@ -196,12 +196,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/top-think/framework.git", "url": "https://github.com/top-think/framework.git",
"reference": "94c66cfb5b8a570a7624e06c2f98fb087c222ad5" "reference": "e0a8bdc52957a8f9774353fbfa0b9fd6ee206188"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://files.phpcomposer.com/files/top-think/framework/94c66cfb5b8a570a7624e06c2f98fb087c222ad5.zip", "url": "https://files.phpcomposer.com/files/top-think/framework/e0a8bdc52957a8f9774353fbfa0b9fd6ee206188.zip",
"reference": "94c66cfb5b8a570a7624e06c2f98fb087c222ad5", "reference": "e0a8bdc52957a8f9774353fbfa0b9fd6ee206188",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -217,7 +217,7 @@
"sebastian/phpcpd": "2.*", "sebastian/phpcpd": "2.*",
"squizlabs/php_codesniffer": "2.*" "squizlabs/php_codesniffer": "2.*"
}, },
"time": "2018-06-07T07:34:34+00:00", "time": "2018-06-08T04:10:59+00:00",
"type": "think-framework", "type": "think-framework",
"installation-source": "dist", "installation-source": "dist",
"notification-url": "https://packagist.org/downloads/", "notification-url": "https://packagist.org/downloads/",