Model.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 山西牛酷信息科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com.cn
  8. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
  9. * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
  10. * =========================================================
  11. */
  12. namespace app\model;
  13. use think\facade\Db;
  14. use think\Validate;
  15. /**
  16. * 模型基类
  17. */
  18. class Model
  19. {
  20. // 查询对象
  21. private static $query_obj = null;
  22. //验证规则
  23. protected $rule = [];
  24. //验证信息
  25. protected $message = [];
  26. //验证场景
  27. protected $scene = [];
  28. //错误信息
  29. protected $error;
  30. public function __construct($table = '') {
  31. if ($table) {
  32. $this->table = $table;
  33. }
  34. }
  35. /**
  36. * 获取列表数据
  37. * @param array $condition
  38. * @param string $field
  39. * @param string $order
  40. * @param number $page
  41. * @param array $join
  42. * @param string $group
  43. * @param string $limit
  44. * @param string $data
  45. * @return mixed
  46. */
  47. final public function getList($condition = [], $field = true, $order = '', $alias = 'a', $join = [], $group = '', $limit = null)
  48. {
  49. self::$query_obj = Db::name($this->table)->where($condition)->order($order);
  50. if(!empty($join)){
  51. self::$query_obj->alias($alias);
  52. self::$query_obj = $this->parseJoin(self::$query_obj, $join);
  53. }
  54. if(!empty($group)){
  55. self::$query_obj = self::$query_obj->group($group);
  56. }
  57. if(!empty($limit)){
  58. self::$query_obj = self::$query_obj->limit($limit);
  59. }
  60. $result = self::$query_obj->field($field)->select()->toArray();
  61. self::$query_obj->removeOption();
  62. return $result;
  63. }
  64. final public function all(){
  65. return Db::name($this->table)->select()->toArray();
  66. }
  67. /**
  68. * 获取分页列表数据
  69. * @param unknown $where
  70. * @param string $field
  71. * @param string $order
  72. * @param number $page
  73. * @param string $list_rows
  74. * @param string $alias
  75. * @param unknown $join
  76. * @param string $group
  77. * @param string $limit
  78. */
  79. final public function pageList($condition = [], $field = true, $order = '', $page = 1, $list_rows = PAGE_LIST_ROWS, $alias = 'a', $join = [], $group = null, $limit = null){
  80. self::$query_obj = Db::name($this->table)->alias($alias)->where($condition)->order($order);
  81. $count_obj = Db::name($this->table)->alias($alias)->where($condition)->order($order);
  82. if(!empty($join)){
  83. $db_obj = self::$query_obj;
  84. self::$query_obj = $this->parseJoin($db_obj, $join);
  85. $count_obj = $this->parseJoin($count_obj, $join);
  86. }
  87. if(!empty($group)){
  88. self::$query_obj = self::$query_obj->group($group);
  89. $count_obj = $count_obj->group($group);
  90. }
  91. if(!empty($limit)){
  92. self::$query_obj = self::$query_obj->limit($limit);
  93. }
  94. $count = $count_obj->count();
  95. if($list_rows == 0){
  96. //查询全部
  97. $result_data = self::$query_obj->field($field)->limit($count)->page($page)->select()->toArray();
  98. $result['page_count'] = 1;
  99. }else{
  100. $result_data = self::$query_obj->field($field)->limit($list_rows)->page($page)->select()->toArray();
  101. $result['page_count'] = ceil($count/$list_rows);
  102. }
  103. $result['count'] = $count;
  104. $result['list'] = $result_data;
  105. self::$query_obj->removeOption();
  106. return $result;
  107. }
  108. /**
  109. * 获取分页列表数据
  110. * @param unknown $where
  111. * @param string $field
  112. * @param string $order
  113. * @param number $page
  114. * @param string $list_rows
  115. * @param string $alias
  116. * @param unknown $join
  117. * @param string $group
  118. * @param string $limit
  119. */
  120. final public function rawPageList($condition = [], $field = true, $order = '', $page = 1, $list_rows = PAGE_LIST_ROWS, $alias = 'a', $join = [], $group = null, $limit = null){
  121. if (is_array($order)) {
  122. self::$query_obj = Db::name($this->table)->alias($alias)->where($condition)->order($order);
  123. $count_obj = Db::name($this->table)->alias($alias)->where($condition)->order($order);
  124. } else {
  125. self::$query_obj = Db::name($this->table)->alias($alias)->where($condition)->orderRaw($order);
  126. $count_obj = Db::name($this->table)->alias($alias)->where($condition)->orderRaw($order);
  127. }
  128. if(!empty($join)){
  129. $db_obj = self::$query_obj;
  130. self::$query_obj = $this->parseJoin($db_obj, $join);
  131. $count_obj = $this->parseJoin($count_obj, $join);
  132. }
  133. if(!empty($group)){
  134. self::$query_obj = self::$query_obj->group($group);
  135. $count_obj = $count_obj->group($group);
  136. }
  137. if(!empty($limit)){
  138. self::$query_obj = self::$query_obj->limit($limit);
  139. }
  140. $count = $count_obj->count();
  141. if($list_rows == 0){
  142. //查询全部
  143. $result_data = self::$query_obj->field($field)->limit($count)->page($page)->select()->toArray();
  144. $result['page_count'] = 1;
  145. }else{
  146. $result_data = self::$query_obj->field($field)->limit($list_rows)->page($page)->select()->toArray();
  147. $result['page_count'] = ceil($count/$list_rows);
  148. }
  149. $result['count'] = $count;
  150. $result['list'] = $result_data;
  151. self::$query_obj->removeOption();
  152. return $result;
  153. }
  154. /**
  155. * 获取单条数据
  156. * @param array $where
  157. * @param string $field
  158. * @param string $join
  159. * @param string $data
  160. * @return mixed
  161. */
  162. final public function getInfo($where = [], $field = true, $alias = 'a', $join = null, $data = null)
  163. {
  164. if(empty($join)){
  165. $result = Db::name($this->table)->where($where)->field($field)->find($data);
  166. }else{
  167. $db_obj = Db::name($this->table)->alias($alias);
  168. $db_obj = $this->parseJoin($db_obj, $join);
  169. $result = $db_obj->where($where)->field($field)->find($data);
  170. }
  171. return $result;
  172. }
  173. /**
  174. * join分析
  175. * @access protected
  176. * @param array $join
  177. * @param array $options 查询条件
  178. * @return string
  179. */
  180. protected function parseJoin($db_obj, $join)
  181. {
  182. foreach ($join as $item) {
  183. list($table, $on, $type) = $item;
  184. $type = strtolower($type);
  185. switch ($type)
  186. {
  187. case "left":
  188. $db_obj = $db_obj->leftJoin($table, $on);
  189. break;
  190. case "inner":
  191. $db_obj = $db_obj->join($table, $on);
  192. break;
  193. case "right":
  194. $db_obj = $db_obj->rightjoin($table, $on);
  195. break;
  196. case "full":
  197. $db_obj = $db_obj->fulljoin($table, $on);
  198. break;
  199. default:
  200. break;
  201. }
  202. }
  203. return $db_obj;
  204. }
  205. /**
  206. * /**
  207. * 获取某个列的数组
  208. * @param array $where 条件
  209. * @param string $field 字段名 多个字段用逗号分隔
  210. * @param string $key 索引
  211. * @return array
  212. */
  213. final public function getColumn($where = [], $field = '', $key = '')
  214. {
  215. return Db::name($this->table)->where($where)->column($field, $key);
  216. }
  217. /**
  218. * 得到某个字段的值
  219. * @access public
  220. * @param array $where 条件
  221. * @param string $field 字段名
  222. * @param mixed $default 默认值
  223. * @param bool $force 强制转为数字类型
  224. * @return mixed
  225. */
  226. final public function getValue($where = [], $field = '', $default = null, $force = false)
  227. {
  228. return Db::name($this->table)->where($where)->value($field, $default, $force)->toArray();
  229. }
  230. /**
  231. * 新增数据
  232. * @param array $data 数据
  233. * @param boolean $is_return_pk 返回自增主键
  234. */
  235. final public function add($data = [], $is_return_pk = true)
  236. {
  237. // Db::name($this->table)->insert($data, true, $is_return_pk);
  238. // echo Db::name($this->table)->getLastSql();die;
  239. return Db::name($this->table)->insert($data, true, $is_return_pk);
  240. }
  241. /**
  242. * 新增多条数据
  243. * @param array $data 数据
  244. * @param int $limit 限制插入行数
  245. */
  246. final public function addList($data = [], $limit = null)
  247. {
  248. return Db::name($this->table)->insertAll($data, false, $limit);
  249. }
  250. /**
  251. * 更新数据
  252. * @param array $where 条件
  253. * @param array $data 数据
  254. */
  255. final public function update($data = [], $where = [])
  256. {
  257. return Db::name($this->table)->where($where)->update($data);
  258. }
  259. /**
  260. * 设置某个字段值
  261. * @param array $where 条件
  262. * @param string $field 字段
  263. * @param string $value 值
  264. */
  265. final public function setFieldValue($where = [], $field = '', $value = '')
  266. {
  267. return $this->update([$field => $value], $where);
  268. }
  269. /**
  270. * 设置数据列表
  271. * @param array $data_list 数据
  272. * @param boolean $replace 是否自动识别更新和写入
  273. */
  274. final public function setList($data_list = [], $replace = false)
  275. {
  276. return Db::name($this->table)->saveAll($data_list, $replace);
  277. }
  278. /**
  279. * 删除数据
  280. * @param array $where 条件
  281. */
  282. final public function delete($where = [])
  283. {
  284. return Db::name($this->table)->where($where)->delete();
  285. }
  286. /**
  287. * 统计数据
  288. * @param array $where 条件
  289. * @param string $type 查询类型 count:统计数量|max:获取最大值|min:获取最小值|avg:获取平均值|sum:获取总和
  290. */
  291. final public function stat($where = [], $type = 'count', $field = 'id')
  292. {
  293. return Db::name($this->table)->where($where)->$type($field);
  294. }
  295. /**
  296. * SQL查询
  297. */
  298. final public function query($sql = '')
  299. {
  300. return Db::query($sql);
  301. }
  302. /**
  303. * 返回总数
  304. * @param unknown $where
  305. */
  306. final public function getCount($where = [], $field = '*')
  307. {
  308. return Db::name($this->table)->where($where)->count($field);
  309. }
  310. /**
  311. * 返回总数
  312. * @param unknown $where
  313. */
  314. final public function getSum($where = [], $field = '')
  315. {
  316. return Db::name($this->table)->where($where)->sum($field);
  317. }
  318. /**
  319. * SQL执行
  320. */
  321. final public function execute($sql = '')
  322. {
  323. return Db::execute($sql);
  324. }
  325. /**
  326. * 查询第一条数据
  327. * @param array $condition
  328. */
  329. final function getFirstData($condition, $field='*',$order="" )
  330. {
  331. $data = Db::name($this->table)->where($condition)->order($order)->field($field)->find();
  332. return $data;
  333. }
  334. /**
  335. * 验证
  336. * @param array $data
  337. * @param string $scene_name
  338. * @return array[$code, $error]
  339. */
  340. public function fieldValidate($data, $scene_name = ''){
  341. $validate = new Validate($this->rule, $this->message);
  342. if(empty($scene_name)){
  343. $validate_result = $validate->batch(false)->check($data);
  344. }else{
  345. $validate->scene($this->scene);
  346. $validate_result = $validate->scene($scene_name)->batch(false)->check($data);
  347. }
  348. return $validate_result ? [true, ''] : [false, $validate->getError()];
  349. }
  350. /**
  351. * 事物开启
  352. */
  353. final public function startTrans(){
  354. return Db::startTrans();
  355. }
  356. /**
  357. * 事物提交
  358. */
  359. final public function commit(){
  360. return Db::commit();
  361. }
  362. /**
  363. * 事物回滚
  364. */
  365. final public function rollback(){
  366. return Db::rollback();
  367. }
  368. /**
  369. * 获取错误信息
  370. */
  371. final public function getError(){
  372. return $this->error;
  373. }
  374. /**
  375. * 自增数据
  376. * @param array $where
  377. * @param string $field
  378. * @param int $num
  379. */
  380. final public function setInc($where = [], $field, $num = 1)
  381. {
  382. return Db::name($this->table)->where($where)->inc($field, $num)->update();
  383. }
  384. /**
  385. * 自减数据
  386. * @param array $where
  387. * @param string $field
  388. * @param int $num
  389. */
  390. final public function setDec($where = [], $field, $num = 1)
  391. {
  392. return Db::name($this->table)->where($where)->dec($field, $num)->update();
  393. }
  394. /**
  395. * 获取最大值
  396. * @param array $where
  397. * @param $field
  398. * @return mixed
  399. */
  400. final public function getMax($where = [], $field){
  401. return Db::name($this->table)->where($where)->max($field);
  402. }
  403. }