Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Custom.php 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 标签索引
  18. */
  19. class Custom extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 后置操作方法
  29. * 自定义的一个函数 用于数据保存后做的相应处理操作, 使用时手动调用
  30. * @param int $aid 产品id
  31. * @param array $post post数据
  32. * @param string $opt 操作
  33. */
  34. public function afterSave($aid, $post, $opt, $table)
  35. {
  36. $post['aid'] = $aid;
  37. //获取远程图片尺寸
  38. if(!empty($post['addonFieldExt']['down_eyou_remote'])){
  39. $remoteFile = $post['addonFieldExt']['down_eyou_remote'];
  40. $headers = get_headers($remoteFile, true);
  41. $fileSize = $headers['Content-Length'];
  42. $post['addonFieldExt']['size'] = $fileSize;
  43. }
  44. //获取远程图片尺寸
  45. if(!empty($post['addonFieldExt']['down_eyou_local'])){
  46. $remoteFile = $post['addonFieldExt']['down_eyou_local'];
  47. $headers = get_headers($remoteFile, true);
  48. $fileSize = $headers['Content-Length'];
  49. $post['addonFieldExt']['size'] = $fileSize;
  50. }
  51. $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
  52. model('Field')->dealChannelPostData($post['channel'], $post, $addonFieldExt);
  53. // 处理外贸链接
  54. if (is_dir('./weapp/Waimao/')) {
  55. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  56. $waimaoLogic->update_htmlfilename($aid, $post, $opt);
  57. }
  58. // --处理TAG标签
  59. model('Taglist')->savetags($aid, $post['typeid'], $post['tags'], $post['arcrank'], $opt);
  60. if ('edit' == $opt) {
  61. // 清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表
  62. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  63. model('SqlCacheTable')->InsertSqlCacheTable(true);
  64. } else {
  65. // 处理mysql缓存表数据
  66. if (isset($post['arcrank']) && -1 == $post['arcrank'] && -1 == $post['old_arcrank'] && !empty($post['users_id'])) {
  67. // 待审核
  68. model('SqlCacheTable')->UpdateDraftSqlCacheTable($post, $opt);
  69. } else if (isset($post['arcrank'])) {
  70. // 已审核
  71. $post['old_typeid'] = intval($post['attr']['typeid']);
  72. model('SqlCacheTable')->UpdateSqlCacheTable($post, $opt, $table);
  73. }
  74. }
  75. }
  76. /**
  77. * 获取单条记录
  78. * @author wengxianhu by 2017-7-26
  79. */
  80. public function getInfo($aid, $field = null, $isshowbody = true)
  81. {
  82. $result = array();
  83. $field = !empty($field) ? $field : '*';
  84. $result = Db::name('archives')->field($field)
  85. ->where([
  86. 'aid' => $aid,
  87. 'lang' => get_admin_lang(),
  88. ])
  89. ->find();
  90. if ($isshowbody) {
  91. $tableName = Db::name('channeltype')->where('id','eq',$result['channel'])->getField('table');
  92. $result['addonFieldExt'] = Db::name($tableName.'_content')->where('aid',$aid)->find();
  93. }
  94. // 文章TAG标签
  95. if (!empty($result)) {
  96. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  97. $tags = model('Taglist')->getListByAid($aid, $typeid);
  98. $result['tags'] = $tags['tag_arr'];
  99. $result['tag_id'] = $tags['tid_arr'];
  100. }
  101. return $result;
  102. }
  103. /**
  104. * 删除的后置操作方法
  105. * 自定义的一个函数 用于数据删除后做的相应处理操作, 使用时手动调用
  106. * @param int $aid
  107. */
  108. public function afterDel($aidArr = array(), $table)
  109. {
  110. if (is_string($aidArr)) {
  111. $aidArr = explode(',', $aidArr);
  112. }
  113. // 同时删除内容
  114. Db::name($table.'_content')->where(array('aid'=>array('IN', $aidArr)))->delete();
  115. // 同时删除TAG标签
  116. model('Taglist')->delByAids($aidArr);
  117. }
  118. }