心理咨询网
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.

SingleController.php 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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. $url = $domain . homeurl('/home/Index/' . $data->filename, $url_rule_sort_suffix);
  83. $url = str_replace(".html","",$url);
  84. $urls[] = $url;
  85. } else {
  86. $url = $domain . homeurl('/home/Index/' . $data->urlname . $url_break_char . $data->scode, $url_rule_sort_suffix);
  87. $url = str_replace(".html","",$url);
  88. $urls[] = $url;
  89. }
  90. $result = post_baidu($api, $urls);
  91. if (isset($result->error)) {
  92. $this->log('百度普通收录推送失败:' . $urls[0]);
  93. alert_back('推送发生错误:' . $result->message);
  94. } elseif (isset($result->success)) {
  95. $this->log('百度普通收录推送成功:' . $urls[0]);
  96. alert_back('成功推送' . $result->success . '条,今天剩余可推送' . $result->remain . '条数!');
  97. } else {
  98. alert_back('发生未知错误!');
  99. }
  100. }
  101. // 站长快速推送
  102. if (! ! $id = get('baiduks')) {
  103. $domain = get_http_url();
  104. if (! $token = $this->config('baidu_ks_token')) {
  105. alert_back('请先到系统配置中填写百度快速收录推送token值!');
  106. }
  107. $api = "http://data.zz.baidu.com/urls?site=$domain&token=$token&type=daily";
  108. $data = $this->model->getSingle($id);
  109. $data->urlname = $data->urlname ?: 'about';
  110. if ($data->outlink) {
  111. alert_back('链接类型不允许推送!');
  112. }
  113. if ($data->filename) {
  114. $url = $domain . homeurl('/home/Index/' . $data->filename, $url_rule_sort_suffix);
  115. $url = str_replace(".html","",$url);
  116. $urls[] = $url;
  117. } else {
  118. $url = $domain . homeurl('/home/Index/' . $data->urlname . $url_break_char . $data->scode, $url_rule_sort_suffix);
  119. $url = str_replace(".html","",$url);
  120. $urls[] = $url;
  121. }
  122. $result = post_baidu($api, $urls);
  123. if (isset($result->error)) {
  124. $this->log('百度快速收录推送失败:' . $urls[0]);
  125. alert_back('推送发生错误:' . $result->message);
  126. } elseif (isset($result->success_daily)) {
  127. $this->log('百度快速收录推送成功:' . $urls[0]);
  128. alert_back('成功推送' . $result->success_daily . '条,今天剩余可推送' . $result->remain_daily . '条数!');
  129. } else {
  130. alert_back('发生未知错误!');
  131. }
  132. }
  133. if (! $id = get('id', 'int')) {
  134. error('传递的参数值错误!', - 1);
  135. }
  136. // 单独修改状态
  137. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  138. if ($this->model->modSingle($id, "$field='$value',update_user='" . session('username') . "'")) {
  139. location(- 1);
  140. } else {
  141. alert_back('修改失败!');
  142. }
  143. }
  144. // 修改操作
  145. if ($_POST) {
  146. // 获取数据
  147. $title = post('title');
  148. $author = post('author');
  149. $source = post('source');
  150. $ico = post('ico');
  151. $pics = post('pics');
  152. $content = post('content');
  153. $tags = str_replace(',', ',', post('tags'));
  154. $titlecolor = post('titlecolor');
  155. $subtitle = post('subtitle');
  156. $outlink = post('outlink');
  157. $date = post('date');
  158. $enclosure = post('enclosure');
  159. $keywords = post('keywords');
  160. $description = post('description');
  161. $status = post('status', 'int');
  162. // 获取多图标题
  163. $picstitle = post('picstitle');
  164. if ($picstitle) {
  165. $picstitle = implode(',', $picstitle);
  166. }
  167. if (! $title) {
  168. alert_back('单页内容标题不能为空!');
  169. }
  170. // 自动提起前一百个字符为描述
  171. if (! $description && isset($_POST['content'])) {
  172. $description = escape_string(clear_html_blank(substr_both(strip_tags($_POST['content']), 0, 150)));
  173. }
  174. // 无缩略图时,自动提取文章第一张图为缩略图
  175. if (! $ico && preg_match('/<img\s+.*?src=\s?[\'|\"](.*?(\.gif|\.jpg|\.png|\.jpeg))[\'|\"].*?[\/]?>/i', decode_string($content), $srcs) && isset($srcs[1])) {
  176. $ico = $srcs[1];
  177. }
  178. // 缩放缩略图
  179. if ($ico) {
  180. resize_img(ROOT_PATH . $ico, '', $this->config('ico.max_width'), $this->config('ico.max_height'));
  181. }
  182. // 构建数据
  183. $data = array(
  184. 'title' => $title,
  185. 'content' => $content,
  186. 'tags' => $tags,
  187. 'author' => $author,
  188. 'source' => $source,
  189. 'ico' => $ico,
  190. 'pics' => $pics,
  191. 'picstitle' => $picstitle,
  192. 'titlecolor' => $titlecolor,
  193. 'subtitle' => $subtitle,
  194. 'outlink' => $outlink,
  195. 'date' => $date,
  196. 'enclosure' => $enclosure,
  197. 'keywords' => $keywords,
  198. 'description' => clear_html_blank($description),
  199. 'status' => $status,
  200. 'update_user' => session('username')
  201. );
  202. // 执行添加
  203. if ($this->model->modSingle($id, $data)) {
  204. // 扩展内容修改
  205. foreach ($_POST as $key => $value) {
  206. if (preg_match('/^ext_[\w\-]+$/', $key)) {
  207. $temp = post($key);
  208. if (is_array($temp)) {
  209. $data2[$key] = implode(',', $temp);
  210. } else {
  211. $data2[$key] = str_replace("\r\n", '<br>', $temp);
  212. }
  213. }
  214. }
  215. if (isset($data2)) {
  216. if ($this->model->findContentExt($id)) {
  217. $this->model->modContentExt($id, $data2);
  218. } else {
  219. $data2['contentid'] = $id;
  220. $this->model->addContentExt($data2);
  221. }
  222. }
  223. $this->log('修改单页内容' . $id . '成功!');
  224. if (! ! $backurl = get('backurl')) {
  225. success('修改成功!', base64_decode($backurl));
  226. } else {
  227. success('修改成功!', url('/admin/Single/index/mcode/1'));
  228. }
  229. } else {
  230. location(- 1);
  231. }
  232. } else {
  233. // 调取修改内容
  234. $this->assign('mod', true);
  235. if (! $result = $this->model->getSingle($id)) {
  236. error('编辑的内容已经不存在!', - 1);
  237. }
  238. $this->assign('content', $result);
  239. // 扩展字段
  240. if (! $mcode = get('mcode', 'var')) {
  241. error('传递的模型编码参数有误,请核对后重试!');
  242. }
  243. $this->assign('extfield', model('admin.content.ExtField')->getModelField($mcode));
  244. $this->display('content/single.html');
  245. }
  246. }
  247. }