No Description
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.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
  45. model('Field')->dealChannelPostData($post['channel'], $post, $addonFieldExt);
  46. // 处理外贸链接
  47. if (is_dir('./weapp/Waimao/')) {
  48. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  49. $waimaoLogic->update_htmlfilename($aid, $post, $opt);
  50. }
  51. // --处理TAG标签
  52. model('Taglist')->savetags($aid, $post['typeid'], $post['tags'], $post['arcrank'], $opt);
  53. if ('edit' == $opt) {
  54. // 清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表
  55. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  56. model('SqlCacheTable')->InsertSqlCacheTable(true);
  57. } else {
  58. // 处理mysql缓存表数据
  59. if (isset($post['arcrank']) && -1 == $post['arcrank'] && -1 == $post['old_arcrank'] && !empty($post['users_id'])) {
  60. // 待审核
  61. model('SqlCacheTable')->UpdateDraftSqlCacheTable($post, $opt);
  62. } else if (isset($post['arcrank'])) {
  63. // 已审核
  64. $post['old_typeid'] = intval($post['attr']['typeid']);
  65. model('SqlCacheTable')->UpdateSqlCacheTable($post, $opt, $table);
  66. }
  67. }
  68. }
  69. /**
  70. * 获取单条记录
  71. * @author wengxianhu by 2017-7-26
  72. */
  73. public function getInfo($aid, $field = null, $isshowbody = true)
  74. {
  75. $result = array();
  76. $field = !empty($field) ? $field : '*';
  77. $result = Db::name('archives')->field($field)
  78. ->where([
  79. 'aid' => $aid,
  80. 'lang' => get_admin_lang(),
  81. ])
  82. ->find();
  83. if ($isshowbody) {
  84. $tableName = Db::name('channeltype')->where('id','eq',$result['channel'])->getField('table');
  85. $result['addonFieldExt'] = Db::name($tableName.'_content')->where('aid',$aid)->find();
  86. }
  87. // 文章TAG标签
  88. if (!empty($result)) {
  89. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  90. $tags = model('Taglist')->getListByAid($aid, $typeid);
  91. $result['tags'] = $tags['tag_arr'];
  92. $result['tag_id'] = $tags['tid_arr'];
  93. }
  94. return $result;
  95. }
  96. /**
  97. * 删除的后置操作方法
  98. * 自定义的一个函数 用于数据删除后做的相应处理操作, 使用时手动调用
  99. * @param int $aid
  100. */
  101. public function afterDel($aidArr = array(), $table)
  102. {
  103. if (is_string($aidArr)) {
  104. $aidArr = explode(',', $aidArr);
  105. }
  106. // 同时删除内容
  107. Db::name($table.'_content')->where(array('aid'=>array('IN', $aidArr)))->delete();
  108. // 同时删除TAG标签
  109. model('Taglist')->delByAids($aidArr);
  110. }
  111. }