心理咨询网
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

SingleController.php 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年12月15日
  7. * 单页内容控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\SingleModel;
  12. class SingleController extends Controller
  13. {
  14. private $model;
  15. private $blank;
  16. public function __construct()
  17. {
  18. $this->model = new SingleModel();
  19. }
  20. // 单页内容列表
  21. public function index()
  22. {
  23. if ((! ! $id = get('id', 'int')) && $result = $this->model->getSingle($id)) {
  24. $this->assign('more', true);
  25. $this->assign('content', $result);
  26. } else {
  27. $this->assign('list', true);
  28. if (! $mcode = get('mcode', 'var')) {
  29. error('传递的模型编码参数有误,请核对后重试!');
  30. }
  31. if (! ! ($field = get('field', 'var')) && ! ! ($keyword = get('keyword', 'vars'))) {
  32. $result = $this->model->findSingle($mcode, $field, $keyword);
  33. } else {
  34. $result = $this->model->getList($mcode);
  35. }
  36. $this->assign('baidu_zz_token', $this->config('baidu_zz_token'));
  37. $this->assign('baidu_ks_token', $this->config('baidu_ks_token'));
  38. // 模型名称
  39. $this->assign('model_name', model('admin.content.Model')->getName($mcode));
  40. // 前端地址连接符判断
  41. $url_break_char = $this->config('url_break_char') ?: '_';
  42. $this->assign('url_break_char', $url_break_char);
  43. $this->assign('contents', $result);
  44. }
  45. $this->display('content/single.html');
  46. }
  47. // 单页内容删除
  48. public function del()
  49. {
  50. if (! $id = get('id', 'int')) {
  51. error('传递的参数值错误!', - 1);
  52. }
  53. if ($this->model->delSingle($id)) {
  54. $this->log('删除单页内容' . $id . '成功!');
  55. success('删除成功!', - 1);
  56. } else {
  57. $this->log('删除单页内容' . $id . '失败!');
  58. error('删除失败!', - 1);
  59. }
  60. }
  61. // 单页内容修改
  62. public function mod()
  63. {
  64. // 前端地址连接符判断
  65. if (get('baiduzz') || get('baiduxzh')) {
  66. $url_break_char = $this->config('url_break_char') ?: '_';
  67. $url_rule_sort_suffix = $this->config('url_rule_sort_suffix') ? true : false;
  68. }
  69. // 站长普通推送
  70. if (! ! $id = get('baiduzz')) {
  71. $domain = get_http_url();
  72. if (! $token = $this->config('baidu_zz_token')) {
  73. alert_back('请先到系统配置中填写百度普通收录推送token值!');
  74. }
  75. $api = "http://data.zz.baidu.com/urls?site=$domain&token=$token";
  76. $data = $this->model->getSingle($id);
  77. $data->urlname = $data->urlname ?: 'about';
  78. if ($data->outlink) {
  79. alert_back('链接类型不允许推送!');
  80. }
  81. if ($data->filename) {
  82. $urls[] = $domain . homeurl('/home/Index/' . $data->filename, $url_rule_sort_suffix);
  83. } else {
  84. $urls[] = $domain . homeurl('/home/Index/' . $data->urlname . $url_break_char . $data->scode, $url_rule_sort_suffix);
  85. }
  86. $result = post_baidu($api, $urls);
  87. if (isset($result->error)) {
  88. $this->log('百度普通收录推送失败:' . $urls[0]);
  89. alert_back('推送发生错误:' . $result->message);
  90. } elseif (isset($result->success)) {
  91. $this->log('百度普通收录推送成功:' . $urls[0]);
  92. alert_back('成功推送' . $result->success . '条,今天剩余可推送' . $result->remain . '条数!');
  93. } else {
  94. alert_back('发生未知错误!');
  95. }
  96. }
  97. // 站长快速推送
  98. if (! ! $id = get('baiduks')) {
  99. $domain = get_http_url();
  100. if (! $token = $this->config('baidu_ks_token')) {
  101. alert_back('请先到系统配置中填写百度快速收录推送token值!');
  102. }
  103. $api = "http://data.zz.baidu.com/urls?site=$domain&token=$token&type=daily";
  104. $data = $this->model->getSingle($id);
  105. $data->urlname = $data->urlname ?: 'about';
  106. if ($data->outlink) {
  107. alert_back('链接类型不允许推送!');
  108. }
  109. if ($data->filename) {
  110. $urls[] = $domain . homeurl('/home/Index/' . $data->filename, $url_rule_sort_suffix);
  111. } else {
  112. $urls[] = $domain . homeurl('/home/Index/' . $data->urlname . $url_break_char . $data->scode, $url_rule_sort_suffix);
  113. }
  114. $result = post_baidu($api, $urls);
  115. if (isset($result->error)) {
  116. $this->log('百度快速收录推送失败:' . $urls[0]);
  117. alert_back('推送发生错误:' . $result->message);
  118. } elseif (isset($result->success_daily)) {
  119. $this->log('百度快速收录推送成功:' . $urls[0]);
  120. alert_back('成功推送' . $result->success_daily . '条,今天剩余可推送' . $result->remain_daily . '条数!');
  121. } else {
  122. alert_back('发生未知错误!');
  123. }
  124. }
  125. if (! $id = get('id', 'int')) {
  126. error('传递的参数值错误!', - 1);
  127. }
  128. // 单独修改状态
  129. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  130. if ($this->model->modSingle($id, "$field='$value',update_user='" . session('username') . "'")) {
  131. location(- 1);
  132. } else {
  133. alert_back('修改失败!');
  134. }
  135. }
  136. // 修改操作
  137. if ($_POST) {
  138. // 获取数据
  139. $title = post('title');
  140. $author = post('author');
  141. $source = post('source');
  142. $ico = post('ico');
  143. $pics = post('pics');
  144. $content = post('content');
  145. $tags = str_replace(',', ',', post('tags'));
  146. $titlecolor = post('titlecolor');
  147. $subtitle = post('subtitle');
  148. $outlink = post('outlink');
  149. $date = post('date');
  150. $enclosure = post('enclosure');
  151. $keywords = post('keywords');
  152. $description = post('description');
  153. $status = post('status', 'int');
  154. // 获取多图标题
  155. $picstitle = post('picstitle');
  156. if ($picstitle) {
  157. $picstitle = implode(',', $picstitle);
  158. }
  159. if (! $title) {
  160. alert_back('单页内容标题不能为空!');
  161. }
  162. // 自动提起前一百个字符为描述
  163. if (! $description && isset($_POST['content'])) {
  164. $description = escape_string(clear_html_blank(substr_both(strip_tags($_POST['content']), 0, 150)));
  165. }
  166. // 无缩略图时,自动提取文章第一张图为缩略图
  167. if (! $ico && preg_match('/<img\s+.*?src=\s?[\'|\"](.*?(\.gif|\.jpg|\.png|\.jpeg))[\'|\"].*?[\/]?>/i', decode_string($content), $srcs) && isset($srcs[1])) {
  168. $ico = $srcs[1];
  169. }
  170. // 缩放缩略图
  171. if ($ico) {
  172. resize_img(ROOT_PATH . $ico, '', $this->config('ico.max_width'), $this->config('ico.max_height'));
  173. }
  174. // 构建数据
  175. $data = array(
  176. 'title' => $title,
  177. 'content' => $content,
  178. 'tags' => $tags,
  179. 'author' => $author,
  180. 'source' => $source,
  181. 'ico' => $ico,
  182. 'pics' => $pics,
  183. 'picstitle' => $picstitle,
  184. 'titlecolor' => $titlecolor,
  185. 'subtitle' => $subtitle,
  186. 'outlink' => $outlink,
  187. 'date' => $date,
  188. 'enclosure' => $enclosure,
  189. 'keywords' => $keywords,
  190. 'description' => clear_html_blank($description),
  191. 'status' => $status,
  192. 'update_user' => session('username')
  193. );
  194. // 执行添加
  195. if ($this->model->modSingle($id, $data)) {
  196. // 扩展内容修改
  197. foreach ($_POST as $key => $value) {
  198. if (preg_match('/^ext_[\w\-]+$/', $key)) {
  199. $temp = post($key);
  200. if (is_array($temp)) {
  201. $data2[$key] = implode(',', $temp);
  202. } else {
  203. $data2[$key] = str_replace("\r\n", '<br>', $temp);
  204. }
  205. }
  206. }
  207. if (isset($data2)) {
  208. if ($this->model->findContentExt($id)) {
  209. $this->model->modContentExt($id, $data2);
  210. } else {
  211. $data2['contentid'] = $id;
  212. $this->model->addContentExt($data2);
  213. }
  214. }
  215. $this->log('修改单页内容' . $id . '成功!');
  216. if (! ! $backurl = get('backurl')) {
  217. success('修改成功!', base64_decode($backurl));
  218. } else {
  219. success('修改成功!', url('/admin/Single/index/mcode/1'));
  220. }
  221. } else {
  222. location(- 1);
  223. }
  224. } else {
  225. // 调取修改内容
  226. $this->assign('mod', true);
  227. if (! $result = $this->model->getSingle($id)) {
  228. error('编辑的内容已经不存在!', - 1);
  229. }
  230. $this->assign('content', $result);
  231. // 扩展字段
  232. if (! $mcode = get('mcode', 'var')) {
  233. error('传递的模型编码参数有误,请核对后重试!');
  234. }
  235. $this->assign('extfield', model('admin.content.ExtField')->getModelField($mcode));
  236. $this->display('content/single.html');
  237. }
  238. }
  239. }