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.

Article.php 4.2KB

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