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.

Sqldata.php 19KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  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\api\logic;
  14. use think\Model;
  15. use think\Db;
  16. /**
  17. * 逻辑定义
  18. * Class CatsLogic
  19. * @package api\Logic
  20. */
  21. class Sqldata extends Model
  22. {
  23. public function index(){
  24. return "4444";
  25. }
  26. /*
  27. * url 进行入库操作 统计
  28. */
  29. public function unsetHandle($list=[],$group_id=0,$type='xml'){
  30. if($type == 'txt') {
  31. $temp = [];
  32. foreach ($list as $k => $value) {
  33. $data = [];
  34. $update_data = [];
  35. if (strpos($value, 'is_del') !== false) {
  36. $data['is_del'] = 1;
  37. $update_data['is_del'] = 1;
  38. } else {
  39. $data['is_del'] = 0;
  40. $update_data['is_del'] = 0;
  41. }
  42. if (strpos($value, 'is_arcrank') !== false) {
  43. $data['is_arcrank'] = 1;
  44. $update_data['is_arcrank'] = 1;
  45. } else {
  46. $data['is_arcrank'] = 0;
  47. $update_data['is_arcrank'] = 0;
  48. }
  49. if (strpos($value, 'is_status') !== false) {
  50. $data['is_status'] = 1;
  51. $update_data['is_status'] = 1;
  52. } else {
  53. $data['is_status'] = 0;
  54. $update_data['is_status'] = 0;
  55. }
  56. if (strpos($value, 'list_is_null') !== false) {
  57. $data['is_null'] = 1;
  58. $update_data['is_null'] = 1;
  59. //列表页为空 也要加入地图
  60. $new_url = explode('---', $value);
  61. $new_url = $new_url[0];
  62. $temp[] = $new_url;
  63. } else {
  64. $data['is_null'] = 0;
  65. $update_data['is_null'] = 0;
  66. }
  67. if (strpos($value, '---') !== false) {
  68. $new_url = explode('---', $value);
  69. $new_url = $new_url[0];
  70. } else {
  71. $new_url = $value;
  72. //其他url加入地图
  73. $temp[] = $value;
  74. }
  75. $one = Db::name('all_url')->where(['url' => $new_url])->find();
  76. if (empty($one)) {
  77. $data['group_id'] = $group_id;
  78. $data['url'] = $new_url;
  79. $data['update_time'] = time();
  80. $data['add_time'] = time();
  81. Db::name('all_url')->insert($data);
  82. } else {
  83. $update_data['update_time'] = time();
  84. $update_data['group_id'] = $group_id;
  85. Db::name('all_url')->where(['url' => $new_url])->update($update_data);
  86. }
  87. }
  88. return $temp;
  89. }else{
  90. return $list;
  91. }
  92. }
  93. /*
  94. * 重复生成 xml 对象数据
  95. */
  96. public function buildXml($xmlWriter,$value,$time,$mod="hourly",$level="1.0")
  97. {
  98. /*
  99. * 循环 start
  100. */
  101. // 添加你网站的URL
  102. $xmlWriter->startElement('url');
  103. $xmlWriter->writeElement('loc', $value);
  104. $xmlWriter->writeElement('lastmod', $time);
  105. $xmlWriter->writeElement('changefreq', $mod);
  106. //always hourly daily weekly monthly yearly never
  107. $xmlWriter->writeElement('priority', $level); //优先级 0.0到1.0之间
  108. $xmlWriter->startElement('mobile:mobile');
  109. $xmlWriter->writeAttribute('type', 'htmladapt');
  110. //<mobile:mobile type="pc,mobile"/>
  111. //<mobile:mobile/> :移动网页
  112. //<mobile:mobile type="mobile"/> :移动网页
  113. //<mobile:mobile type="htmladapt"/>:代码适配
  114. $xmlWriter->endElement();
  115. $xmlWriter->endElement();
  116. /*
  117. * 循环 end
  118. */
  119. return $xmlWriter;
  120. }
  121. public function gethtml(){
  122. return '
  123. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  124. <html xmlns="http://www.w3.org/1999/xhtml">
  125. <head>
  126. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  127. <meta charset="UTF-8">
  128. <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
  129. <meta name="renderer" content="webkit">
  130. <meta name="force-rendering" content="webkit">
  131. <meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1">
  132. <meta name="applicable-device" content="pc,mobile">
  133. <meta name="author" content="order by ">
  134. <title>职称E家_网站地图</title>
  135. </head>
  136. <style>
  137. * {
  138. margin: 0px;
  139. padding: 0px;
  140. }
  141. a {
  142. color: grey;
  143. text-decoration: none;
  144. }
  145. h1 a {
  146. color: Black;
  147. }
  148. h1 {
  149. font-size: 15px;
  150. display: block;
  151. max-width: 1200px;
  152. margin: 0 auto;
  153. border: 1px solid #eee;
  154. padding: 10px;
  155. color: Black;
  156. }
  157. h2 {
  158. color: Black;
  159. font-size: 16px;
  160. margin-bottom: 10px;
  161. }
  162. a:hover {
  163. color: Black;
  164. text-decoration: underline;
  165. }
  166. .content {
  167. max-width: 1200px;
  168. border: 1px solid #eee;
  169. margin: 0 auto;
  170. padding: 10px;
  171. margin-top: 10px;
  172. color: #999;
  173. overflow: hidden;
  174. }
  175. li {
  176. text-indent: 20px;
  177. list-style: disc;
  178. }
  179. .content li {
  180. width: 285px;
  181. text-indent: 5px;
  182. float: left;
  183. list-style: none;
  184. height: 30px;
  185. }
  186. .content li a {
  187. display: block;
  188. height: 25px;
  189. overflow: hidden;
  190. }
  191. </style>
  192. <body>
  193. <h1>
  194. <a href="https://www.zc10000.com/">职称E家</a>
  195. </h1>
  196. <div class="content">
  197. <h2>分类</h2>
  198. <ul>';
  199. }
  200. public function gethtmlend(){
  201. $taglist = Db::name('archives')->where(['typeid'=>371,'status'=>1,'is_del'=>0])->select();
  202. $html = '';
  203. foreach($taglist as $k=>$v){
  204. $html .= '<li><a target="_blank" href="https://www.zc10000.com/tag'.$v['number'].'">'.$v['title'].'</a></li>';
  205. }
  206. return '
  207. <div class="content">
  208. <h2>最新tags</h2>
  209. <ul>
  210. '.$html.'
  211. </ul>
  212. </div>
  213. </body>
  214. </html>';
  215. }
  216. public function add_1($type,$data){
  217. $list = [
  218. 'https://www.zc10000.com', //主页
  219. 'https://www.zc10000.com/zx', //栏目 + 分页 + 详情
  220. 'https://www.zc10000.com/zc', //栏目 + 分页 + 详情
  221. 'https://www.zc10000.com/cl', //栏目 + 分页 + 详情
  222. 'https://www.zc10000.com/cp', //栏目 + 分页 + 详情
  223. //'https://www.zc10000.com/area', //区域 + 省级主页 + 城市主页 + 结合栏目
  224. 'https://www.zc10000.com/taglist', //标签 + 结合栏目 + 结合区域
  225. ];
  226. $html_a = ['职称E家','申报资讯','评审政策','业绩材料','一键测评','标签列表'];
  227. $list = $this->unsetHandle($list,0,$type);
  228. switch ($type) {
  229. case 'xml':
  230. foreach ($list as $k=>$value){
  231. $data = $this->buildXml($data,$value,date('Y-m-d',time()));
  232. }
  233. break;
  234. case 'txt':
  235. foreach ($list as $k=>$value){
  236. $data .= $value."\r\n";
  237. }
  238. break;
  239. case 'html':
  240. foreach ($list as $k=>$value){
  241. $data .= '<li><a target="_blank" href="'.$value.'">'.$html_a[$k].'</a></li>';
  242. }
  243. $data .= "</ul></div>";
  244. break;
  245. default:
  246. // 如果没有匹配的值
  247. }
  248. return $data;
  249. }
  250. public function add_2($type,$data,$list,$groupid,$is_html,$hourly,$level,$htmldata){
  251. $list_1 = $this->unsetHandle($list,$groupid,$type);
  252. //$list = array_merge($list,$list_1);
  253. switch ($type) {
  254. case 'xml':
  255. foreach ($list_1 as $k=>$value){
  256. $data = $this->buildXml($data,$value,date('Y-m-d',time()),$hourly,$level);
  257. }
  258. break;
  259. case 'txt':
  260. foreach ($list_1 as $k=>$value){
  261. $data .= $value."\r\n";
  262. }
  263. break;
  264. case 'html':
  265. //html 需要 name
  266. //需要的时候再 独立场景处理即可
  267. if((int)$is_html === 1){
  268. if((int)$htmldata === 1){
  269. $one_data = $this->gethtml_1($data,$list);
  270. $data = $data.$one_data;
  271. }
  272. }
  273. break;
  274. default:
  275. // 如果没有匹配的值
  276. }
  277. return $data;
  278. }
  279. public function gethtml_1($data,$list){
  280. $data = '<div class="content"><h2>评审政策区域分类</h2><ul>';
  281. //dump($list_1);die;
  282. foreach ($list as $k=>$value){
  283. $value1 = explode('/',$value);
  284. $value2 = end($value1);
  285. $name = Db::name('citysite')->where('domain','=',$value2)->value('name');
  286. $data .= '<li><a target="_blank" href="'.$value.'">'.$name.'职称</a></li>';
  287. }
  288. $data .= '</ul></div>';
  289. return $data;
  290. }
  291. /*
  292. * 无区域 主页或列表页
  293. * 已手动填写 根据业务场景 固定数量
  294. * 例如 /
  295. * 栏目 /zx
  296. * 标签 /taglist
  297. * 区域 /area
  298. *
  299. * 其他 结合序列号 生成所有url 分层级 tree列表
  300. * 对于xml更新优先级 主页1.0 列表页0.9 详情页0.8
  301. *
  302. * 具体路由规则根据变量自由组合
  303. * 有些是主域名或二级域名开头
  304. * 不同规则组合结果不同
  305. */
  306. /*
  307. * 无区域 栏目列表页 分页
  308. * /zx-2
  309. * 具体路由规则根据变量自由组合
  310. */
  311. public function get_url_list($str="zx",$typeid=1231,$pasize=12)
  312. {
  313. $list = Db::name('archives')->where(['typeid'=>$typeid,'status'=>1,'is_del'=>0,'arcrank'=>0])->count();
  314. $desc = '';
  315. if((int)$list === 0){
  316. $list = 1; //假设有一条数据
  317. $desc = '---(list_is_null)';
  318. }
  319. $page = ceil($list/$pasize);
  320. $url = [];
  321. for ($i=2;$i<=$page;$i++){
  322. $url[] = 'https://www.zc10000.com/'.$str.'-'.$i.$desc;
  323. }
  324. return $url;
  325. }
  326. /*
  327. * 无区域 文档详情链接
  328. * /zx/1
  329. * 具体路由规则根据变量自由组合
  330. */
  331. public function get_url_detail($str="zclw/lunwen",$typeid=116,$ty=4)
  332. {
  333. $list_1 = Db::name('seo_number')->where(['type'=>$ty,'tid'=>$typeid,'is_del'=>0,'area_id'=>0])->select();
  334. foreach ($list_1 as $key=>$item) {
  335. //判断文档是否已删除
  336. $op = Db::name('archives')->where(['aid'=>$item['aid']])->find();
  337. $desc = '';
  338. if((int)$op['is_del'] === 1){
  339. $desc .= '---ID: '.$item['aid']."(is_del)";
  340. }
  341. if((int)$op['arcrank'] === 1){
  342. $desc .= '---ID: '.$item['aid']."(is_arcrank)";
  343. }
  344. if((int)$op['status'] === 0){
  345. $desc .= '---ID: '.$item['aid']."(is_status)";
  346. }
  347. $url[] = 'https://www.zc10000.com/'.$str.$item['number'].$desc;
  348. }
  349. return $url;
  350. }
  351. /*
  352. * 纯区域分页 (如果细分到区县 数量多就存在)
  353. * /area-2
  354. */
  355. /*
  356. * 纯具体区域主页
  357. * /guangdong
  358. */
  359. /*
  360. * 纯具体区域 列表页 分页 (显示城市) (不存在)
  361. * /guangdong-2
  362. */
  363. /*
  364. * 具体城市主页
  365. * /guangdong/guangzhou
  366. * 具体路由规则根据变量自由组合
  367. */
  368. /*
  369. * 生成栏目结合区域 列表页
  370. * /zx/guangdong
  371. * 区域设置多级就继续遍历 /zx/guangdong/guangzhou
  372. * 具体路由规则根据变量自由组合
  373. */
  374. public function get_cat_area_list($str="zhengce",$typeid=115,$pasize=10)
  375. {
  376. $area = Db::name('citysite')->where(['is_open'=>1,'status'=>1,'level'=>1])->select();
  377. $url = [];
  378. foreach ($area as $index=>$row){
  379. //城市再遍历一次
  380. //$collect = Db::name('citysite')->where(['parent_id'=>$row['id']])->select();
  381. //根据路由规则处理
  382. $url[] = 'https://www.zc10000.com/'.$str.'/'.$row['domain'];
  383. }
  384. return $url;
  385. }
  386. /*
  387. * 生成栏目区域 列表页 分页
  388. * /zx/guangdong-2
  389. * 区域设置多级就继续遍历 /zx/guangdong/guangzhou-2
  390. * 具体路由规则根据变量自由组合
  391. */
  392. public function get_cat_area_list_page($str="zhengce",$typeid=115,$pasize=10)
  393. {
  394. $area = Db::name('citysite')->where(['is_open'=>1,'status'=>1,'level'=>1])->select();
  395. $url = [];
  396. foreach ($area as $index=>$row){
  397. //$collect = Db::name('citysite')->where(['parent_id'=>$row['id']])->select();
  398. //foreach ($collect as $key=>$item){
  399. //seo_number 并没有这个字段 arcrank 假设没有 先不管了
  400. $list = Db::name('archives')->where([
  401. 'typeid'=>$typeid,'status'=>1,'is_del'=>0,'arcrank'=>0,'area_tag_id'=>$row['id']
  402. ])->count();
  403. $desc = '';
  404. if((int)$list === 0){
  405. $list = 1; //假设有一条数据
  406. $desc = '---list_is_null)';
  407. }
  408. $page = ceil($list/$pasize);
  409. for ($i=2;$i<=$page;$i++){
  410. $url[] = 'https://www.zc10000.com/'.$str.'/'.$row['domain'].'-'.$i.$desc;
  411. }
  412. //}
  413. }
  414. return $url;
  415. }
  416. /*
  417. * 纯标签列表页 分页
  418. * /taglist-2
  419. * 具体路由规则根据变量自由组合
  420. */
  421. /*
  422. * 纯具体标签列表页
  423. * /tag1200
  424. * 具体路由规则根据变量自由组合
  425. */
  426. public function get_tag_list(){
  427. $taglist = Db::name('archives')->where(['typeid'=>371,'status'=>1,'is_del'=>0])->select();
  428. $url = [];
  429. foreach ($taglist as $index=>$row){
  430. //城市再遍历一次
  431. //$collect = Db::name('citysite')->where(['parent_id'=>$row['id']])->select();
  432. //根据路由规则处理
  433. $url[] = 'https://www.zc10000.com/tag'.$row['number'];
  434. }
  435. return $url;
  436. }
  437. /*
  438. * 纯标签列表页 分页
  439. * /tag1200-2
  440. * 具体路由规则根据变量自由组合
  441. */
  442. public function get_tag_list_page($str,$pasize){
  443. $taglist = Db::name('archives')->where(['typeid'=>371,'status'=>1,'is_del'=>0])->select();
  444. $url = [];
  445. foreach ($taglist as $index=>$row){
  446. //$collect = Db::name('citysite')->where(['parent_id'=>$row['id']])->select();
  447. //foreach ($collect as $key=>$item){
  448. //seo_number 并没有这个字段 arcrank 假设没有 先不管了
  449. $list = Db::name('archives')->where([
  450. 'status'=>1,'is_del'=>0,'arcrank'=>0,'area_tag_id'=>$row['aid']
  451. ])->where('typeid','in','1231,1232,1233')->count();
  452. $desc = '';
  453. if((int)$list === 0){
  454. $list = 1; //假设有一条数据
  455. $desc = '---list_is_null)';
  456. }
  457. $page = ceil($list/$pasize);
  458. for ($i=2;$i<=$page;$i++){
  459. $url[] = 'https://www.zc10000.com/'.$str.$row['number'].'-'.$i.$desc;
  460. }
  461. //}
  462. }
  463. return $url;
  464. }
  465. /*
  466. * 生成栏目标签 列表页 (无区域)
  467. * /zx/tag1200
  468. * 具体路由规则根据变量自由组合
  469. */
  470. /*
  471. * 生成栏目标签 列表页 分页 (无区域)
  472. * /zx/tag1200-2
  473. * 具体路由规则根据变量自由组合
  474. */
  475. /*
  476. * 生成栏目区域+标签 列表页
  477. * /zx/guangdong/tag1200
  478. * 区域设置多级就继续遍历 /zx/guangdong/guangzhou/tag1200
  479. * 具体路由规则根据变量自由组合
  480. */
  481. /*
  482. * 生成栏目区域+标签 列表页 分页
  483. * /zx/guangdong/tag1200-2
  484. * 区域设置多级就继续遍历 /zx/guangdong/guangzhou/tag1200-2
  485. * 具体路由规则根据变量自由组合
  486. */
  487. /*
  488. * 带区域 栏目详情页 (详情页跟标签无关)
  489. * /zx/guangdong/3
  490. * 区域设置多级就继续遍历 /zx/guangdong/guangzhou/3
  491. * 具体路由规则根据变量自由组合
  492. */
  493. public function get_url_area_detail($str="zhengce/cms",$typeid=115,$ty=2,$area_id=0,$city_id=0)
  494. {
  495. $area = Db::name('citysite')->where(['is_open'=>1,'status'=>1,'level'=>1])->select();
  496. $url = [];
  497. foreach ($area as $index=>$row){
  498. $list_1 = Db::name('seo_number')->where([
  499. 'type'=>$ty,'tid'=>$typeid,'is_del'=>0,"area_id"=>$row['id'],"city_id"=>$city_id
  500. ])->select();
  501. foreach ($list_1 as $key=>$item) {
  502. //判断文档是否已删除
  503. $op = Db::name('archives')->where(['aid'=>$item['aid']])->find();
  504. $desc = '';
  505. if((int)$op['is_del'] === 1){
  506. $desc .= '---ID: '.$item['aid']."(is_del)";
  507. }
  508. if((int)$op['arcrank'] === 1){
  509. $desc .= '---ID: '.$item['aid']."(is_arcrank)";
  510. }
  511. if((int)$op['status'] === 0){
  512. $desc .= '---ID: '.$item['aid']."(is_status)";
  513. }
  514. $url[] = 'https://www.zc10000.com/'.$str.'/'.$row['domain'].'/'.$item['number'].$desc;
  515. }
  516. }
  517. return $url;
  518. }
  519. }