ConfigModel.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use think\Db;
  5. class ConfigModel extends Model
  6. {
  7. protected $name = 'config';
  8. // 开启自动写入时间戳
  9. protected $autoWriteTimestamp = true;
  10. /**
  11. * 根据条件获取配置列表信息
  12. */
  13. public function getAllConfig($map, $nowpage, $limits,$od)
  14. {
  15. $data = $this->where($map)->page($nowpage, $limits)->order($od)->select();
  16. for($i=0;$i<count($data);$i++){
  17. $data[$i]['type'] = get_config_type( $data[$i]['type']);
  18. $data[$i]['group'] = get_config_group( $data[$i]['group']);
  19. }
  20. return $data;
  21. }
  22. /**
  23. * 根据条件获取所有配置信息数量
  24. * @param $map
  25. */
  26. public function getAllCount($map)
  27. {
  28. return $this->where($map)->count();
  29. }
  30. /**
  31. * 验证配置标识的唯一性
  32. */
  33. public function checkConfig($name,$uid){
  34. if($uid != ''){
  35. $uname = $this->where('id',$uid)->value('name');
  36. if($uname == $name){
  37. return ['code' => 200, 'msg' => 'true'];
  38. }
  39. }
  40. $result = $this->where('name',$name)->find();
  41. if($result){
  42. return ['code' => 100, 'msg' => 'false'];
  43. }else{
  44. return ['code' => 200, 'msg' => 'true'];
  45. }
  46. }
  47. /**
  48. * [insertConfig 添加配置信息]
  49. * @param $param
  50. */
  51. public function insertConfig($param)
  52. {
  53. Db::startTrans();// 启动事务
  54. try{
  55. $this->allowField(true)->save($param);
  56. Db::commit();// 提交事务
  57. writelog('配置【'.$param['name'].'】添加成功',200);
  58. return ['code' => 200, 'data' => '', 'msg' => '添加成功'];
  59. }catch( \Exception $e){
  60. Db::rollback();// 回滚事务
  61. writelog('配置【'.$param['name'].'】添加失败',100);
  62. return ['code' => 100, 'data' => '', 'msg' => '添加失败'];
  63. }
  64. }
  65. /**
  66. * 编辑信息
  67. * @param $param
  68. */
  69. public function editConfig($param)
  70. {
  71. Db::startTrans();// 启动事务
  72. try{
  73. $this->allowField(true)->save($param, ['id' => $param['id']]);
  74. Db::commit();// 提交事务
  75. writelog('配置【'.$param['name'].'】编辑成功',200);
  76. return ['code' => 200, 'data' => '', 'msg' => '编辑成功'];
  77. }catch( \Exception $e){
  78. Db::rollback();// 回滚事务
  79. writelog('配置【'.$param['name'].'】编辑失败',100);
  80. return ['code' => 100, 'data' => '', 'msg' => '编辑失败'];
  81. }
  82. }
  83. /**
  84. * 根据id获取配置信息
  85. * @param $id
  86. */
  87. public function getOneConfig($id)
  88. {
  89. return $this->where('id', $id)->find();
  90. }
  91. /**
  92. * 删除配置
  93. * @param $id
  94. */
  95. public function delConfig($id)
  96. {
  97. $name = $this->where('id',$id)->value('name');
  98. Db::startTrans();// 启动事务
  99. try{
  100. $this->where('id', $id)->delete();
  101. Db::commit();// 提交事务
  102. writelog('配置【'.$name.'】删除成功',200);
  103. return ['code' => 200, 'data' => '', 'msg' => '删除成功'];
  104. }catch( \Exception $e){
  105. Db::rollback();// 回滚事务
  106. writelog('配置【'.$name.'】删除失败',100);
  107. return ['code' => 100, 'data' => '', 'msg' => '删除失败'];
  108. }
  109. }
  110. /**
  111. * batchDelConfig 批量删除配置
  112. * @param $param
  113. * @return array
  114. */
  115. public function batchDelConfig($param){
  116. Db::startTrans();// 启动事务
  117. try{
  118. ConfigModel::destroy($param);
  119. Db::commit();// 提交事务
  120. writelog('配置批量删除成功',200);
  121. return ['code' => 200, 'data' => '', 'msg' => '批量删除成功'];
  122. }catch( \Exception $e){
  123. Db::rollback();// 回滚事务
  124. writelog('配置批量删除失败',100);
  125. return ['code' => 100, 'data' => '', 'msg' => '批量删除失败'];
  126. }
  127. }
  128. /**
  129. * [configState 配置状态]
  130. * @param $param
  131. * @return array
  132. */
  133. public function configState($id,$num){
  134. $name = $this->where('id',$id)->value('name');
  135. if($num == 2){
  136. $msg = '禁用';
  137. }else{
  138. $msg = '启用';
  139. }
  140. Db::startTrans();// 启动事务
  141. try{
  142. $this->where('id',$id)->setField(['status'=>$num]);
  143. Db::commit();// 提交事务
  144. writelog('配置【'.$name.'】'.$msg.'成功',200);
  145. // return ['code' => 200, 'data' => '', 'msg' => '已'.$msg];
  146. }catch( \Exception $e){
  147. Db::rollback();// 回滚事务
  148. writelog('配置【'.$name.'】'.$msg.'失败',100);
  149. return ['code' => 100, 'data' => '', 'msg' => $msg.'失败'];
  150. }
  151. }
  152. /**
  153. * configSave 保存配置
  154. * @param $config
  155. * @return array
  156. */
  157. public function configSave($config){
  158. Db::startTrans();// 启动事务
  159. try{
  160. if($config && is_array($config)){
  161. foreach ($config as $name => $value) {
  162. if($name == "list_rows"){
  163. if($value<=0){
  164. $value = 1;
  165. }
  166. }
  167. $map = array('name' => $name);
  168. $this->where($map)->setField('value', $value);
  169. }
  170. }
  171. Db::commit();// 提交事务
  172. writelog('配置保存成功',200);
  173. return ['code' => 200, 'data' => '', 'msg' => '保存成功'];
  174. }catch( \Exception $e){
  175. Db::rollback();// 回滚事务
  176. writelog('配置保存失败',100);
  177. return ['code' => 100, 'data' => '', 'msg' => '保存失败'];
  178. }
  179. }
  180. /**
  181. * 批量禁用配置
  182. * @param $param
  183. * @return array
  184. */
  185. public function forbiddenConfig($param){
  186. Db::startTrans();// 启动事务
  187. try{
  188. if($param){
  189. $this->saveAll($param);
  190. }else{
  191. $this->where('1=1')->update(['status'=>2]);
  192. }
  193. Db::commit();// 提交事务
  194. writelog('批量禁用配置成功',200);
  195. return ['code' => 200, 'data' => '', 'msg' => '批量禁用成功'];
  196. }catch( \Exception $e){
  197. Db::rollback ();//回滚事务
  198. writelog('批量禁用配置失败',100);
  199. return ['code' => 100, 'data' => '', 'msg' => '批量禁用失败'];
  200. }
  201. }
  202. /**
  203. * 批量启用配置
  204. * @param $param
  205. * @return array
  206. */
  207. public function usingConfig($param){
  208. Db::startTrans();// 启动事务
  209. try{
  210. if($param){
  211. $this->saveAll($param);
  212. }else{
  213. $this->where('1=1')->update(['status'=>1]);
  214. }
  215. Db::commit();// 提交事务
  216. writelog('批量启用配置成功',200);
  217. return ['code' => 200, 'data' => '', 'msg' => '批量启用成功'];
  218. }catch( \Exception $e){
  219. Db::rollback ();//回滚事务
  220. writelog('批量启用配置失败',100);
  221. return ['code' => 100, 'data' => '', 'msg' => '批量启用失败'];
  222. }
  223. }
  224. }