Model.php 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think;
  12. use InvalidArgumentException;
  13. use think\db\Query;
  14. /**
  15. * Class Model
  16. * @package think
  17. * @mixin Query
  18. * @method Query where(mixed $field, string $op = null, mixed $condition = null) static 查询条件
  19. * @method Query whereRaw(string $where, array $bind = []) static 表达式查询
  20. * @method Query whereExp(string $field, string $condition, array $bind = []) static 字段表达式查询
  21. * @method Query when(mixed $condition, mixed $query, mixed $otherwise = null) static 条件查询
  22. * @method Query join(mixed $join, mixed $condition = null, string $type = 'INNER') static JOIN查询
  23. * @method Query view(mixed $join, mixed $field = null, mixed $on = null, string $type = 'INNER') static 视图查询
  24. * @method Query with(mixed $with) static 关联预载入
  25. * @method Query count(string $field) static Count统计查询
  26. * @method Query min(string $field) static Min统计查询
  27. * @method Query max(string $field) static Max统计查询
  28. * @method Query sum(string $field) static SUM统计查询
  29. * @method Query avg(string $field) static Avg统计查询
  30. * @method Query field(mixed $field, boolean $except = false) static 指定查询字段
  31. * @method Query fieldRaw(string $field, array $bind = []) static 指定查询字段
  32. * @method Query union(mixed $union, boolean $all = false) static UNION查询
  33. * @method Query limit(mixed $offset, integer $length = null) static 查询LIMIT
  34. * @method Query order(mixed $field, string $order = null) static 查询ORDER
  35. * @method Query orderRaw(string $field, array $bind = []) static 查询ORDER
  36. * @method Query cache(mixed $key = null , integer $expire = null) static 设置查询缓存
  37. * @method mixed value(string $field) static 获取某个字段的值
  38. * @method array column(string $field, string $key = '') static 获取某个列的值
  39. * @method mixed find(mixed $data = null) static 查询单个记录
  40. * @method mixed select(mixed $data = null) static 查询多个记录
  41. * @method mixed get(mixed $data = null,mixed $with =[],bool $cache= false) static 查询单个记录 支持关联预载入
  42. * @method mixed getOrFail(mixed $data = null,mixed $with =[],bool $cache= false) static 查询单个记录 不存在则抛出异常
  43. * @method mixed findOrEmpty(mixed $data = null,mixed $with =[],bool $cache= false) static 查询单个记录 不存在则返回空模型
  44. * @method mixed all(mixed $data = null,mixed $with =[],bool $cache= false) static 查询多个记录 支持关联预载入
  45. * @method \think\Model withAttr(array $name,\Closure $closure) 动态定义获取器
  46. */
  47. abstract class Model implements \JsonSerializable, \ArrayAccess
  48. {
  49. use model\concern\Attribute;
  50. use model\concern\RelationShip;
  51. use model\concern\ModelEvent;
  52. use model\concern\TimeStamp;
  53. use model\concern\Conversion;
  54. /**
  55. * 是否存在数据
  56. * @var bool
  57. */
  58. private $exists = false;
  59. /**
  60. * 是否Replace
  61. * @var bool
  62. */
  63. private $replace = false;
  64. /**
  65. * 是否强制更新所有数据
  66. * @var bool
  67. */
  68. private $force = false;
  69. /**
  70. * 更新条件
  71. * @var array
  72. */
  73. private $updateWhere;
  74. /**
  75. * 数据库配置信息
  76. * @var array|string
  77. */
  78. protected $connection = [];
  79. /**
  80. * 数据库查询对象类名
  81. * @var string
  82. */
  83. protected $query;
  84. /**
  85. * 模型名称
  86. * @var string
  87. */
  88. protected $name;
  89. /**
  90. * 数据表名称
  91. * @var string
  92. */
  93. protected $table;
  94. /**
  95. * 写入自动完成定义
  96. * @var array
  97. */
  98. protected $auto = [];
  99. /**
  100. * 新增自动完成定义
  101. * @var array
  102. */
  103. protected $insert = [];
  104. /**
  105. * 更新自动完成定义
  106. * @var array
  107. */
  108. protected $update = [];
  109. /**
  110. * 初始化过的模型.
  111. * @var array
  112. */
  113. protected static $initialized = [];
  114. /**
  115. * 是否从主库读取(主从分布式有效)
  116. * @var array
  117. */
  118. protected static $readMaster;
  119. /**
  120. * 查询对象实例
  121. * @var Query
  122. */
  123. protected $queryInstance;
  124. /**
  125. * 错误信息
  126. * @var mixed
  127. */
  128. protected $error;
  129. /**
  130. * 软删除字段默认值
  131. * @var mixed
  132. */
  133. protected $defaultSoftDelete;
  134. /**
  135. * 全局查询范围
  136. * @var array
  137. */
  138. protected $globalScope = [];
  139. /**
  140. * 架构函数
  141. * @access public
  142. * @param array|object $data 数据
  143. */
  144. public function __construct($data = [])
  145. {
  146. if (is_object($data)) {
  147. $this->data = get_object_vars($data);
  148. } else {
  149. $this->data = $data;
  150. }
  151. if ($this->disuse) {
  152. // 废弃字段
  153. foreach ((array) $this->disuse as $key) {
  154. if (array_key_exists($key, $this->data)) {
  155. unset($this->data[$key]);
  156. }
  157. }
  158. }
  159. // 记录原始数据
  160. $this->origin = $this->data;
  161. $config = Db::getConfig();
  162. if (empty($this->name)) {
  163. // 当前模型名
  164. $name = str_replace('\\', '/', static::class);
  165. $this->name = basename($name);
  166. if (Container::get('config')->get('class_suffix')) {
  167. $suffix = basename(dirname($name));
  168. $this->name = substr($this->name, 0, -strlen($suffix));
  169. }
  170. }
  171. if (is_null($this->autoWriteTimestamp)) {
  172. // 自动写入时间戳
  173. $this->autoWriteTimestamp = $config['auto_timestamp'];
  174. }
  175. if (is_null($this->dateFormat)) {
  176. // 设置时间戳格式
  177. $this->dateFormat = $config['datetime_format'];
  178. }
  179. if (is_null($this->resultSetType)) {
  180. $this->resultSetType = $config['resultset_type'];
  181. }
  182. if (!empty($this->connection) && is_array($this->connection)) {
  183. // 设置模型的数据库连接
  184. $this->connection = array_merge($config, $this->connection);
  185. }
  186. if ($this->observerClass) {
  187. // 注册模型观察者
  188. static::observe($this->observerClass);
  189. }
  190. // 执行初始化操作
  191. $this->initialize();
  192. }
  193. /**
  194. * 获取当前模型名称
  195. * @access public
  196. * @return string
  197. */
  198. public function getName()
  199. {
  200. return $this->name;
  201. }
  202. /**
  203. * 是否从主库读取数据(主从分布有效)
  204. * @access public
  205. * @param bool $all 是否所有模型有效
  206. * @return $this
  207. */
  208. public function readMaster($all = false)
  209. {
  210. $model = $all ? '*' : static::class;
  211. static::$readMaster[$model] = true;
  212. return $this;
  213. }
  214. /**
  215. * 创建新的模型实例
  216. * @access public
  217. * @param array|object $data 数据
  218. * @param bool $isUpdate 是否为更新
  219. * @param mixed $where 更新条件
  220. * @return Model
  221. */
  222. public function newInstance($data = [], $isUpdate = false, $where = null)
  223. {
  224. return (new static($data))->isUpdate($isUpdate, $where);
  225. }
  226. /**
  227. * 创建模型的查询对象
  228. * @access protected
  229. * @return Query
  230. */
  231. protected function buildQuery()
  232. {
  233. // 设置当前模型 确保查询返回模型对象
  234. $query = Db::connect($this->connection, false, $this->query);
  235. $query->model($this)
  236. ->name($this->name)
  237. ->json($this->json, $this->jsonAssoc)
  238. ->setJsonFieldType($this->jsonType);
  239. if (isset(static::$readMaster['*']) || isset(static::$readMaster[static::class])) {
  240. $query->master(true);
  241. }
  242. // 设置当前数据表和模型名
  243. if (!empty($this->table)) {
  244. $query->table($this->table);
  245. }
  246. if (!empty($this->pk)) {
  247. $query->pk($this->pk);
  248. }
  249. return $query;
  250. }
  251. /**
  252. * 获取当前模型的数据库查询对象
  253. * @access public
  254. * @param Query $query 查询对象实例
  255. * @return $this
  256. */
  257. public function setQuery($query)
  258. {
  259. $this->queryInstance = $query;
  260. return $this;
  261. }
  262. /**
  263. * 获取当前模型的数据库查询对象
  264. * @access public
  265. * @param bool|array $useBaseQuery 是否调用全局查询范围(或者指定查询范围名称)
  266. * @return Query
  267. */
  268. public function db($useBaseQuery = true)
  269. {
  270. if ($this->queryInstance) {
  271. return $this->queryInstance;
  272. }
  273. $query = $this->buildQuery();
  274. // 软删除
  275. if (property_exists($this, 'withTrashed') && !$this->withTrashed) {
  276. $this->withNoTrashed($query);
  277. }
  278. // 全局作用域
  279. if (true === $useBaseQuery && method_exists($this, 'base')) {
  280. call_user_func_array([$this, 'base'], [ & $query]);
  281. }
  282. $globalScope = is_array($useBaseQuery) && $useBaseQuery ? $useBaseQuery : $this->globalScope;
  283. if ($globalScope && false !== $useBaseQuery) {
  284. $query->scope($globalScope);
  285. }
  286. // 返回当前模型的数据库查询对象
  287. return $query;
  288. }
  289. /**
  290. * 初始化模型
  291. * @access protected
  292. * @return void
  293. */
  294. protected function initialize()
  295. {
  296. if (!isset(static::$initialized[static::class])) {
  297. static::$initialized[static::class] = true;
  298. static::init();
  299. }
  300. }
  301. /**
  302. * 初始化处理
  303. * @access protected
  304. * @return void
  305. */
  306. protected static function init()
  307. {}
  308. /**
  309. * 数据自动完成
  310. * @access protected
  311. * @param array $auto 要自动更新的字段列表
  312. * @return void
  313. */
  314. protected function autoCompleteData($auto = [])
  315. {
  316. foreach ($auto as $field => $value) {
  317. if (is_integer($field)) {
  318. $field = $value;
  319. $value = null;
  320. }
  321. if (!isset($this->data[$field])) {
  322. $default = null;
  323. } else {
  324. $default = $this->data[$field];
  325. }
  326. $this->setAttr($field, !is_null($value) ? $value : $default);
  327. }
  328. }
  329. /**
  330. * 更新是否强制写入数据 而不做比较
  331. * @access public
  332. * @param bool $force
  333. * @return $this
  334. */
  335. public function force($force = true)
  336. {
  337. $this->force = $force;
  338. return $this;
  339. }
  340. /**
  341. * 判断force
  342. * @access public
  343. * @return bool
  344. */
  345. public function isForce()
  346. {
  347. return $this->force;
  348. }
  349. /**
  350. * 新增数据是否使用Replace
  351. * @access public
  352. * @param bool $replace
  353. * @return $this
  354. */
  355. public function replace($replace = true)
  356. {
  357. $this->replace = $replace;
  358. return $this;
  359. }
  360. /**
  361. * 设置数据是否存在
  362. * @access public
  363. * @param bool $exists
  364. * @return $this
  365. */
  366. public function exists($exists)
  367. {
  368. $this->exists = $exists;
  369. return $this;
  370. }
  371. /**
  372. * 判断数据是否存在数据库
  373. * @access public
  374. * @return bool
  375. */
  376. public function isExists()
  377. {
  378. return $this->exists;
  379. }
  380. /**
  381. * 判断模型是否为空
  382. * @access public
  383. * @return bool
  384. */
  385. public function isEmpty()
  386. {
  387. return empty($this->data);
  388. }
  389. /**
  390. * 保存当前数据对象
  391. * @access public
  392. * @param array $data 数据
  393. * @param array $where 更新条件
  394. * @param string $sequence 自增序列名
  395. * @return bool
  396. */
  397. public function save($data = [], $where = [], $sequence = null)
  398. {
  399. if (is_string($data)) {
  400. $sequence = $data;
  401. $data = [];
  402. }
  403. if (!$this->checkBeforeSave($data, $where)) {
  404. return false;
  405. }
  406. $result = $this->exists ? $this->updateData($where) : $this->insertData($sequence);
  407. if (false === $result) {
  408. return false;
  409. }
  410. // 写入回调
  411. $this->trigger('after_write');
  412. // 重新记录原始数据
  413. $this->origin = $this->data;
  414. $this->set = [];
  415. return true;
  416. }
  417. /**
  418. * 写入之前检查数据
  419. * @access protected
  420. * @param array $data 数据
  421. * @param array $where 保存条件
  422. * @return bool
  423. */
  424. protected function checkBeforeSave($data, $where)
  425. {
  426. if (!empty($data)) {
  427. // 数据对象赋值
  428. foreach ($data as $key => $value) {
  429. $this->setAttr($key, $value, $data);
  430. }
  431. if (!empty($where)) {
  432. $this->exists = true;
  433. $this->updateWhere = $where;
  434. }
  435. }
  436. // 数据自动完成
  437. $this->autoCompleteData($this->auto);
  438. // 事件回调
  439. if (false === $this->trigger('before_write')) {
  440. return false;
  441. }
  442. return true;
  443. }
  444. /**
  445. * 检查数据是否允许写入
  446. * @access protected
  447. * @param array $append 自动完成的字段列表
  448. * @return array
  449. */
  450. protected function checkAllowFields(array $append = [])
  451. {
  452. // 检测字段
  453. if (empty($this->field) || true === $this->field) {
  454. $query = $this->db(false);
  455. $table = $this->table ?: $query->getTable();
  456. $this->field = $query->getConnection()->getTableFields($table);
  457. $field = $this->field;
  458. } else {
  459. $field = array_merge($this->field, $append);
  460. if ($this->autoWriteTimestamp) {
  461. array_push($field, $this->createTime, $this->updateTime);
  462. }
  463. }
  464. if ($this->disuse) {
  465. // 废弃字段
  466. $field = array_diff($field, (array) $this->disuse);
  467. }
  468. return $field;
  469. }
  470. /**
  471. * 更新写入数据
  472. * @access protected
  473. * @param mixed $where 更新条件
  474. * @return bool
  475. */
  476. protected function updateData($where)
  477. {
  478. // 自动更新
  479. $this->autoCompleteData($this->update);
  480. // 事件回调
  481. if (false === $this->trigger('before_update')) {
  482. return false;
  483. }
  484. // 获取有更新的数据
  485. $data = $this->getChangedData();
  486. if (empty($data)) {
  487. // 关联更新
  488. if (!empty($this->relationWrite)) {
  489. $this->autoRelationUpdate();
  490. }
  491. return true;
  492. } elseif ($this->autoWriteTimestamp && $this->updateTime && !isset($data[$this->updateTime])) {
  493. // 自动写入更新时间
  494. $data[$this->updateTime] = $this->autoWriteTimestamp($this->updateTime);
  495. $this->data[$this->updateTime] = $data[$this->updateTime];
  496. }
  497. if (empty($where) && !empty($this->updateWhere)) {
  498. $where = $this->updateWhere;
  499. }
  500. // 检查允许字段
  501. $allowFields = $this->checkAllowFields(array_merge($this->auto, $this->update));
  502. // 保留主键数据
  503. foreach ($this->data as $key => $val) {
  504. if ($this->isPk($key)) {
  505. $data[$key] = $val;
  506. }
  507. }
  508. $pk = $this->getPk();
  509. $array = [];
  510. foreach ((array) $pk as $key) {
  511. if (isset($data[$key])) {
  512. $array[] = [$key, '=', $data[$key]];
  513. unset($data[$key]);
  514. }
  515. }
  516. if (!empty($array)) {
  517. $where = $array;
  518. }
  519. foreach ((array) $this->relationWrite as $name => $val) {
  520. if (is_array($val)) {
  521. foreach ($val as $key) {
  522. if (isset($data[$key])) {
  523. unset($data[$key]);
  524. }
  525. }
  526. }
  527. }
  528. // 模型更新
  529. $db = $this->db(false);
  530. $db->startTrans();
  531. try {
  532. $db->where($where)
  533. ->strict(false)
  534. ->field($allowFields)
  535. ->update($data);
  536. // 关联更新
  537. if (!empty($this->relationWrite)) {
  538. $this->autoRelationUpdate();
  539. }
  540. $db->commit();
  541. // 更新回调
  542. $this->trigger('after_update');
  543. return true;
  544. } catch (\Exception $e) {
  545. $db->rollback();
  546. throw $e;
  547. }
  548. }
  549. /**
  550. * 新增写入数据
  551. * @access protected
  552. * @param string $sequence 自增序列名
  553. * @return bool
  554. */
  555. protected function insertData($sequence)
  556. {
  557. // 自动写入
  558. $this->autoCompleteData($this->insert);
  559. // 时间戳自动写入
  560. $this->checkTimeStampWrite();
  561. if (false === $this->trigger('before_insert')) {
  562. return false;
  563. }
  564. // 检查允许字段
  565. $allowFields = $this->checkAllowFields(array_merge($this->auto, $this->insert));
  566. $db = $this->db(false);
  567. $db->startTrans();
  568. try {
  569. $result = $db->strict(false)
  570. ->field($allowFields)
  571. ->insert($this->data, $this->replace, false, $sequence);
  572. // 获取自动增长主键
  573. if ($result && $insertId = $db->getLastInsID($sequence)) {
  574. $pk = $this->getPk();
  575. foreach ((array) $pk as $key) {
  576. if (!isset($this->data[$key]) || '' == $this->data[$key]) {
  577. $this->data[$key] = $insertId;
  578. }
  579. }
  580. }
  581. // 关联写入
  582. if (!empty($this->relationWrite)) {
  583. $this->autoRelationInsert();
  584. }
  585. $db->commit();
  586. // 标记为更新
  587. $this->exists = true;
  588. // 新增回调
  589. $this->trigger('after_insert');
  590. return true;
  591. } catch (\Exception $e) {
  592. $db->rollback();
  593. throw $e;
  594. }
  595. }
  596. /**
  597. * 字段值(延迟)增长
  598. * @access public
  599. * @param string $field 字段名
  600. * @param integer $step 增长值
  601. * @param integer $lazyTime 延时时间(s)
  602. * @return bool
  603. * @throws Exception
  604. */
  605. public function setInc($field, $step = 1, $lazyTime = 0)
  606. {
  607. // 读取更新条件
  608. $where = $this->getWhere();
  609. // 事件回调
  610. if (false === $this->trigger('before_update')) {
  611. return false;
  612. }
  613. $result = $this->db(false)
  614. ->where($where)
  615. ->setInc($field, $step, $lazyTime);
  616. if (true !== $result) {
  617. $this->data[$field] += $step;
  618. }
  619. // 更新回调
  620. $this->trigger('after_update');
  621. return true;
  622. }
  623. /**
  624. * 字段值(延迟)减少
  625. * @access public
  626. * @param string $field 字段名
  627. * @param integer $step 减少值
  628. * @param integer $lazyTime 延时时间(s)
  629. * @return bool
  630. * @throws Exception
  631. */
  632. public function setDec($field, $step = 1, $lazyTime = 0)
  633. {
  634. // 读取更新条件
  635. $where = $this->getWhere();
  636. // 事件回调
  637. if (false === $this->trigger('before_update')) {
  638. return false;
  639. }
  640. $result = $this->db(false)
  641. ->where($where)
  642. ->setDec($field, $step, $lazyTime);
  643. if (true !== $result) {
  644. $this->data[$field] -= $step;
  645. }
  646. // 更新回调
  647. $this->trigger('after_update');
  648. return true;
  649. }
  650. /**
  651. * 获取当前的更新条件
  652. * @access protected
  653. * @return mixed
  654. */
  655. protected function getWhere()
  656. {
  657. // 删除条件
  658. $pk = $this->getPk();
  659. if (is_string($pk) && isset($this->data[$pk])) {
  660. $where[] = [$pk, '=', $this->data[$pk]];
  661. } elseif (!empty($this->updateWhere)) {
  662. $where = $this->updateWhere;
  663. } else {
  664. $where = null;
  665. }
  666. return $where;
  667. }
  668. /**
  669. * 保存多个数据到当前数据对象
  670. * @access public
  671. * @param array $dataSet 数据
  672. * @param boolean $replace 是否自动识别更新和写入
  673. * @return Collection
  674. * @throws \Exception
  675. */
  676. public function saveAll($dataSet, $replace = true)
  677. {
  678. $db = $this->db(false);
  679. $db->startTrans();
  680. try {
  681. $pk = $this->getPk();
  682. if (is_string($pk) && $replace) {
  683. $auto = true;
  684. }
  685. $result = [];
  686. foreach ($dataSet as $key => $data) {
  687. if ($this->exists || (!empty($auto) && isset($data[$pk]))) {
  688. $result[$key] = self::update($data, [], $this->field);
  689. } else {
  690. $result[$key] = self::create($data, $this->field, $this->replace);
  691. }
  692. }
  693. $db->commit();
  694. return $this->toCollection($result);
  695. } catch (\Exception $e) {
  696. $db->rollback();
  697. throw $e;
  698. }
  699. }
  700. /**
  701. * 是否为更新数据
  702. * @access public
  703. * @param mixed $update
  704. * @param mixed $where
  705. * @return $this
  706. */
  707. public function isUpdate($update = true, $where = null)
  708. {
  709. if (is_bool($update)) {
  710. $this->exists = $update;
  711. if (!empty($where)) {
  712. $this->updateWhere = $where;
  713. }
  714. } else {
  715. $this->exists = true;
  716. $this->updateWhere = $update;
  717. }
  718. return $this;
  719. }
  720. /**
  721. * 删除当前的记录
  722. * @access public
  723. * @return bool
  724. */
  725. public function delete()
  726. {
  727. if (!$this->exists || false === $this->trigger('before_delete')) {
  728. return false;
  729. }
  730. // 读取更新条件
  731. $where = $this->getWhere();
  732. $db = $this->db(false);
  733. $db->startTrans();
  734. try {
  735. // 删除当前模型数据
  736. $db->where($where)->delete();
  737. // 关联删除
  738. if (!empty($this->relationWrite)) {
  739. $this->autoRelationDelete();
  740. }
  741. $db->commit();
  742. $this->trigger('after_delete');
  743. $this->exists = false;
  744. return true;
  745. } catch (\Exception $e) {
  746. $db->rollback();
  747. throw $e;
  748. }
  749. }
  750. /**
  751. * 设置自动完成的字段( 规则通过修改器定义)
  752. * @access public
  753. * @param array $fields 需要自动完成的字段
  754. * @return $this
  755. */
  756. public function auto($fields)
  757. {
  758. $this->auto = $fields;
  759. return $this;
  760. }
  761. /**
  762. * 写入数据
  763. * @access public
  764. * @param array $data 数据数组
  765. * @param array|true $field 允许字段
  766. * @param bool $replace 使用Replace
  767. * @return static
  768. */
  769. public static function create($data = [], $field = null, $replace = false)
  770. {
  771. $model = new static();
  772. if (!empty($field)) {
  773. $model->allowField($field);
  774. }
  775. $model->isUpdate(false)->replace($replace)->save($data, []);
  776. return $model;
  777. }
  778. /**
  779. * 更新数据
  780. * @access public
  781. * @param array $data 数据数组
  782. * @param array $where 更新条件
  783. * @param array|true $field 允许字段
  784. * @return static
  785. */
  786. public static function update($data = [], $where = [], $field = null)
  787. {
  788. $model = new static();
  789. if (!empty($field)) {
  790. $model->allowField($field);
  791. }
  792. $model->isUpdate(true)->save($data, $where);
  793. return $model;
  794. }
  795. /**
  796. * 删除记录
  797. * @access public
  798. * @param mixed $data 主键列表 支持闭包查询条件
  799. * @return bool
  800. */
  801. public static function destroy($data)
  802. {
  803. if (empty($data) && 0 !== $data) {
  804. return false;
  805. }
  806. $model = new static();
  807. $query = $model->db();
  808. if (is_array($data) && key($data) !== 0) {
  809. $query->where($data);
  810. $data = null;
  811. } elseif ($data instanceof \Closure) {
  812. $data($query);
  813. $data = null;
  814. }
  815. $resultSet = $query->select($data);
  816. if ($resultSet) {
  817. foreach ($resultSet as $data) {
  818. $data->delete();
  819. }
  820. }
  821. return true;
  822. }
  823. /**
  824. * 获取错误信息
  825. * @access public
  826. * @return mixed
  827. */
  828. public function getError()
  829. {
  830. return $this->error;
  831. }
  832. /**
  833. * 解序列化后处理
  834. */
  835. public function __wakeup()
  836. {
  837. $this->initialize();
  838. }
  839. public function __debugInfo()
  840. {
  841. return [
  842. 'data' => $this->data,
  843. 'relation' => $this->relation,
  844. ];
  845. }
  846. /**
  847. * 修改器 设置数据对象的值
  848. * @access public
  849. * @param string $name 名称
  850. * @param mixed $value 值
  851. * @return void
  852. */
  853. public function __set($name, $value)
  854. {
  855. $this->setAttr($name, $value);
  856. }
  857. /**
  858. * 获取器 获取数据对象的值
  859. * @access public
  860. * @param string $name 名称
  861. * @return mixed
  862. */
  863. public function __get($name)
  864. {
  865. return $this->getAttr($name);
  866. }
  867. /**
  868. * 检测数据对象的值
  869. * @access public
  870. * @param string $name 名称
  871. * @return boolean
  872. */
  873. public function __isset($name)
  874. {
  875. try {
  876. return !is_null($this->getAttr($name));
  877. } catch (InvalidArgumentException $e) {
  878. return false;
  879. }
  880. }
  881. /**
  882. * 销毁数据对象的值
  883. * @access public
  884. * @param string $name 名称
  885. * @return void
  886. */
  887. public function __unset($name)
  888. {
  889. unset($this->data[$name], $this->relation[$name]);
  890. }
  891. // ArrayAccess
  892. public function offsetSet($name, $value)
  893. {
  894. $this->setAttr($name, $value);
  895. }
  896. public function offsetExists($name)
  897. {
  898. return $this->__isset($name);
  899. }
  900. public function offsetUnset($name)
  901. {
  902. $this->__unset($name);
  903. }
  904. public function offsetGet($name)
  905. {
  906. return $this->getAttr($name);
  907. }
  908. /**
  909. * 设置是否使用全局查询范围
  910. * @access public
  911. * @param bool|array $use 是否启用全局查询范围(或者用数组指定查询范围名称)
  912. * @return Query
  913. */
  914. public static function useGlobalScope($use)
  915. {
  916. $model = new static();
  917. return $model->db($use);
  918. }
  919. public function __call($method, $args)
  920. {
  921. if ('withattr' == strtolower($method)) {
  922. return call_user_func_array([$this, 'withAttribute'], $args);
  923. }
  924. return call_user_func_array([$this->db(), $method], $args);
  925. }
  926. public static function __callStatic($method, $args)
  927. {
  928. $model = new static();
  929. return call_user_func_array([$model->db(), $method], $args);
  930. }
  931. }