Geen omschrijving
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.

Uiset.php 30KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003
  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\controller;
  14. use think\Controller;
  15. use think\Db;
  16. // use think\Session;
  17. class Uiset extends Controller
  18. {
  19. public $uipath = '';
  20. public $theme_style = '';
  21. public $theme_style_path = '';
  22. public $v = '';
  23. private $urltypeid = 0;
  24. private $urlaid = 0;
  25. private $idcode = '';
  26. /**
  27. * 析构函数
  28. */
  29. function __construct()
  30. {
  31. header("Cache-control: private"); // history.back返回后输入框值丢失问题
  32. parent::__construct();
  33. $this->theme_style = THEME_STYLE;
  34. $this->theme_style_path = THEME_STYLE_PATH;
  35. $this->uipath = RUNTIME_PATH.'ui/'.$this->theme_style_path.'/';
  36. if (!file_exists(ROOT_PATH.'template/'.TPL_THEME.'pc/uiset.txt') && !file_exists(ROOT_PATH.'template/'.TPL_THEME.'mobile/uiset.txt')) {
  37. to_index();
  38. }
  39. }
  40. /*
  41. * 初始化操作
  42. */
  43. public function _initialize()
  44. {
  45. //过滤不需要登陆的行为
  46. $ctl_act = CONTROLLER_NAME.'@'.ACTION_NAME;
  47. $ctl_all = CONTROLLER_NAME.'@*';
  48. $filter_login_action = config('filter_login_action');
  49. if (in_array($ctl_act, $filter_login_action) || in_array($ctl_all, $filter_login_action)) {
  50. //return;
  51. }else{
  52. if(!session('?admin_id')){
  53. $this->error('请先登录后台!');
  54. exit;
  55. }
  56. }
  57. /*电脑版与手机版的切换*/
  58. $this->v = input('param.v/s', '');
  59. $this->v = trim($this->v, '/');
  60. $this->assign('v', $this->v);
  61. /*--end*/
  62. $this->idcode = input('param.idcode/s');
  63. $this->urltypeid = input('param.urltypeid/d');
  64. $this->urlaid = input('param.urlaid/d');
  65. if (!empty($this->urlaid)) {
  66. $this->idcode = md5("{$this->v}_view_{$this->urlaid}");
  67. } else if (!empty($this->urltypeid)) {
  68. $this->idcode = md5("{$this->v}_lists_{$this->urltypeid}");
  69. }
  70. }
  71. public function submit()
  72. {
  73. if (is_adminlogin()) {
  74. $post = input('post.');
  75. $type = $post['type'];
  76. $id = $post['id'];
  77. $page = $post['page'];
  78. $content = isset($post['content']) ? $post['content'] : '';
  79. // 同步外观调试的变量值到config,前提是变量名在config是存在
  80. $this->synConfigVars($id, $content, $type);
  81. switch ($type) {
  82. case 'text':
  83. $this->textHandle($id, $page, $post);
  84. break;
  85. case 'html':
  86. $this->htmlHandle($id, $page, $post);
  87. break;
  88. case 'type':
  89. $this->typeHandle($id, $page, $post);
  90. break;
  91. case 'arclist':
  92. $this->arclistHandle($id, $page, $post);
  93. break;
  94. case 'channel':
  95. $this->channelHandle($id, $page, $post);
  96. break;
  97. case 'upload':
  98. $this->uploadHandle($id, $page, $post);
  99. break;
  100. case 'map':
  101. $this->mapHandle($id, $page, $post);
  102. break;
  103. case 'code':
  104. $this->codeHandle($id, $page, $post);
  105. break;
  106. case 'background':
  107. $this->backgroundHandle($id, $page, $post);
  108. break;
  109. default:
  110. $this->error('不存在的可编辑区域');
  111. exit;
  112. break;
  113. }
  114. }
  115. $this->error('请先登录后台!');
  116. exit;
  117. }
  118. /**
  119. * 同步外观调试的变量值到config,前提是变量名在config是存在
  120. */
  121. private function synConfigVars($name, $value = '', $type = '')
  122. {
  123. if (in_array($type, array('text', 'html')) && !in_array($name, ['image_type','file_type','media_type'])) {
  124. $count = M('config')->where([
  125. 'name' => $name,
  126. 'lang' => $this->home_lang,
  127. ])->count('id');
  128. if ($count > 0) {
  129. if ($name == binaryJoinChar(config('binary.0'), 13)) {
  130. $value = preg_replace('#<a([^>]*)>(\s*)'.binaryJoinChar(config('binary.1'), 18).'<(\s*)\/a>#i', '', htmlspecialchars_decode($value));
  131. $value = htmlspecialchars($value);
  132. }
  133. $nameArr = explode('_', $name);
  134. M('config')->where([
  135. 'name' => $name,
  136. 'lang' => $this->home_lang,
  137. ])->cache(true,EYOUCMS_CACHE_TIME,'config')->update(array('value'=>$value));
  138. /*多语言*/
  139. if (is_language()) {
  140. $langRow = Db::name('language')->order('id asc')
  141. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  142. ->select();
  143. foreach ($langRow as $key => $val) {
  144. tpCache($nameArr[0], [$name=>$value], $val['mark']);
  145. }
  146. } else { // 单语言
  147. tpCache($nameArr[0], [$name=>$value]);
  148. }
  149. /*--end*/
  150. $this->success('操作成功');
  151. exit;
  152. }
  153. }
  154. }
  155. /**
  156. * 纯文本编辑
  157. */
  158. public function text($id, $page)
  159. {
  160. $type = 'text';
  161. $id = input('param.id/s');
  162. $page = input('param.page/s');
  163. $lang = input('param.lang/s', get_main_lang());
  164. $inckey = "{$lang}_{$type}_{$id}";
  165. $info = array();
  166. $filename = $this->uipath."{$page}.inc.php";
  167. $inc = ui_read_bidden_inc($filename);
  168. if ($inc && !empty($inc[$inckey])) {
  169. $data = json_decode($inc[$inckey], true);
  170. $info = $data['info'];
  171. $type = $data['type'];
  172. }
  173. $assign = array(
  174. 'id' => $id,
  175. 'type' => $type,
  176. 'page' => $page,
  177. 'info' => $info,
  178. 'lang' => $lang,
  179. 'idcode' => $this->idcode,
  180. );
  181. $this->assign('field', $assign);
  182. $iframe = input('param.iframe/d');
  183. if ($iframe == 1) {
  184. $viewfile = 'text_m';
  185. } else {
  186. $viewfile = 'text';
  187. }
  188. return $this->fetch($viewfile);
  189. }
  190. /**
  191. * 纯文本编辑处理
  192. */
  193. private function textHandle($id, $page, $post = array())
  194. {
  195. $type = 'text';
  196. $lang = $post['lang'];
  197. $content = !empty($post['content']) ? $post['content'] : '';
  198. $arr = array(
  199. "{$lang}_{$type}_{$id}" => json_encode(array(
  200. 'id' => $id,
  201. 'type' => $type,
  202. 'page' => $page,
  203. 'lang' => $lang,
  204. 'idcode' => $this->idcode,
  205. 'info' => array(
  206. 'value' => $content,
  207. ),
  208. )),
  209. );
  210. $filename = $this->uipath."{$page}.inc.php";
  211. if (ui_write_bidden_inc($arr, $filename, true)) {
  212. $this->success('操作成功');
  213. exit;
  214. } else {
  215. $this->error('写入失败');
  216. exit;
  217. }
  218. }
  219. /**
  220. * 带html的富文本处理
  221. */
  222. public function html($id, $page)
  223. {
  224. $type = 'html';
  225. $id = input('param.id/s');
  226. $page = input('param.page/s');
  227. $lang = input('param.lang/s', get_main_lang());
  228. $inckey = "{$lang}_{$type}_{$id}";
  229. $info = array();
  230. $filename = $this->uipath."{$page}.inc.php";
  231. $inc = ui_read_bidden_inc($filename);
  232. if ($inc && !empty($inc[$inckey])) {
  233. $data = json_decode($inc[$inckey], true);
  234. $info = $data['info'];
  235. $type = $data['type'];
  236. }
  237. $assign = array(
  238. 'id' => $id,
  239. 'type' => $type,
  240. 'page' => $page,
  241. 'info' => $info,
  242. 'lang' => $lang,
  243. 'idcode' => $this->idcode,
  244. );
  245. $this->assign('field', $assign);
  246. $iframe = input('param.iframe/d');
  247. if ($iframe == 1) {
  248. $viewfile = 'html_m';
  249. } else {
  250. $viewfile = 'html';
  251. }
  252. return $this->fetch($viewfile);
  253. }
  254. /**
  255. * 富文本编辑器处理
  256. */
  257. private function htmlHandle($id, $page, $post = array())
  258. {
  259. $type = 'html';
  260. $lang = $post['lang'];
  261. $content = !empty($post['content']) ? $post['content'] : '';
  262. $arr = array(
  263. "{$lang}_{$type}_{$id}" => json_encode(array(
  264. 'id' => $id,
  265. 'type' => $type,
  266. 'page' => $page,
  267. 'lang' => $lang,
  268. 'idcode' => $this->idcode,
  269. 'info' => array(
  270. 'value' => $content,
  271. ),
  272. )),
  273. );
  274. $filename = $this->uipath."{$page}.inc.php";
  275. if (ui_write_bidden_inc($arr, $filename, true)) {
  276. $this->success('操作成功');
  277. exit;
  278. } else {
  279. $this->error('写入失败');
  280. exit;
  281. }
  282. }
  283. /**
  284. * 栏目编辑
  285. */
  286. public function type($id, $page)
  287. {
  288. $type = 'type';
  289. $id = input('param.id/s');
  290. $page = input('param.page/s');
  291. $lang = input('param.lang/s', get_main_lang());
  292. $inckey = "{$lang}_{$type}_{$id}";
  293. $typeid = 0;
  294. $info = array();
  295. $filename = $this->uipath."{$page}.inc.php";
  296. $inc = ui_read_bidden_inc($filename);
  297. if ($inc && !empty($inc[$inckey])) {
  298. $data = json_decode($inc[$inckey], true);
  299. $typeid = $data['typeid'];
  300. $type = $data['type'];
  301. $info = $data['info'];
  302. }
  303. /*所有栏目列表*/
  304. $map = array(
  305. 'is_del' => 0, // 回收站功能
  306. 'status' => 1,
  307. );
  308. $arctype_html = model('Arctype')->getList(0, $typeid, true, $map);
  309. $this->assign('arctype_html', $arctype_html);
  310. /*--end*/
  311. $assign = array(
  312. 'id' => $id,
  313. 'type' => $type,
  314. 'page' => $page,
  315. 'typeid' => $typeid,
  316. 'info' => $info,
  317. 'lang' => $lang,
  318. 'idcode' => $this->idcode,
  319. );
  320. $this->assign('field', $assign);
  321. $iframe = input('param.iframe/d');
  322. if ($iframe == 1) {
  323. $viewfile = 'type_m';
  324. } else {
  325. $viewfile = 'type';
  326. }
  327. return $this->fetch($viewfile);
  328. }
  329. /**
  330. * 栏目编辑处理
  331. */
  332. private function typeHandle($id, $page, $post = array())
  333. {
  334. $type = 'type';
  335. $lang = $post['lang'];
  336. $arr = array(
  337. "{$lang}_{$type}_{$id}" => json_encode(array(
  338. 'id' => $id,
  339. 'type' => $type,
  340. 'page' => $page,
  341. 'typeid' => $post['typeid'],
  342. 'info' => $post,
  343. 'lang' => $lang,
  344. 'idcode' => $this->idcode,
  345. )),
  346. );
  347. $filename = $this->uipath."{$page}.inc.php";
  348. if (ui_write_bidden_inc($arr, $filename, true)) {
  349. $this->success('操作成功');
  350. exit;
  351. } else {
  352. $this->error('写入失败');
  353. exit;
  354. }
  355. }
  356. /**
  357. * 栏目文章编辑
  358. */
  359. public function arclist($id, $page)
  360. {
  361. $type = 'arclist';
  362. $id = input('param.id/s');
  363. $page = input('param.page/s');
  364. $lang = input('param.lang/s', get_main_lang());
  365. $inckey = "{$lang}_{$type}_{$id}";
  366. $typeid = 0;
  367. $info = array();
  368. $filename = $this->uipath."{$page}.inc.php";
  369. $inc = ui_read_bidden_inc($filename);
  370. if ($inc && !empty($inc[$inckey])) {
  371. $data = json_decode($inc[$inckey], true);
  372. $typeid = $data['typeid'];
  373. $type = $data['type'];
  374. $info = $data['info'];
  375. }
  376. /*允许发布文档列表的栏目*/
  377. $selected = $typeid;
  378. $arctype_html = allow_release_arctype($selected);
  379. $this->assign('arctype_html', $arctype_html);
  380. /*--end*/
  381. /*不允许发布文档的模型ID,用于JS判断*/
  382. $allow_release_channel = config('global.allow_release_channel');
  383. $js_allow_channel_arr = '[';
  384. foreach ($allow_release_channel as $key => $val) {
  385. if ($key > 0) {
  386. $js_allow_channel_arr .= ',';
  387. }
  388. $js_allow_channel_arr .= $val;
  389. }
  390. $js_allow_channel_arr = $js_allow_channel_arr.']';
  391. $this->assign('js_allow_channel_arr', $js_allow_channel_arr);
  392. /*--end*/
  393. $assign = array(
  394. 'id' => $id,
  395. 'type' => $type,
  396. 'page' => $page,
  397. 'typeid' => $typeid,
  398. 'info' => $info,
  399. 'lang' => $lang,
  400. 'idcode' => $this->idcode,
  401. );
  402. $this->assign('field', $assign);
  403. $iframe = input('param.iframe/d');
  404. if ($iframe == 1) {
  405. $viewfile = 'arclist_m';
  406. } else {
  407. $viewfile = 'arclist';
  408. }
  409. return $this->fetch($viewfile);
  410. }
  411. /**
  412. * 栏目文章编辑处理
  413. */
  414. private function arclistHandle($id, $page, $post = array())
  415. {
  416. $type = 'arclist';
  417. $lang = $post['lang'];
  418. $arr = array(
  419. "{$lang}_{$type}_{$id}" => json_encode(array(
  420. 'id' => $id,
  421. 'type' => $type,
  422. 'page' => $page,
  423. 'typeid' => $post['typeid'],
  424. 'info' => $post,
  425. 'lang' => $lang,
  426. 'idcode' => $this->idcode,
  427. )),
  428. );
  429. $filename = $this->uipath."{$page}.inc.php";
  430. if (ui_write_bidden_inc($arr, $filename, true)) {
  431. $this->success('操作成功');
  432. exit;
  433. } else {
  434. $this->error('写入失败');
  435. exit;
  436. }
  437. }
  438. /**
  439. * 栏目列表编辑
  440. */
  441. public function channel($id, $page)
  442. {
  443. $type = 'channel';
  444. $id = input('param.id/s');
  445. $page = input('param.page/s');
  446. $lang = input('param.lang/s', get_main_lang());
  447. $inckey = "{$lang}_{$type}_{$id}";
  448. $typeid = 0;
  449. $info = array();
  450. // $type = input('param.type/s');
  451. $filename = $this->uipath."{$page}.inc.php";
  452. $inc = ui_read_bidden_inc($filename);
  453. if ($inc && !empty($inc[$inckey])) {
  454. $data = json_decode($inc[$inckey], true);
  455. $typeid = $data['typeid'];
  456. $type = $data['type'];
  457. $info = $data['info'];
  458. }
  459. /*所有栏目列表*/
  460. $map = array(
  461. 'is_del' => 0, // 回收站功能
  462. 'status' => 1,
  463. );
  464. $arctype_html = model('Arctype')->getList(0, $typeid, true, $map);
  465. $this->assign('arctype_html', $arctype_html);
  466. /*--end*/
  467. $assign = array(
  468. 'id' => $id,
  469. 'type' => $type,
  470. 'page' => $page,
  471. 'typeid' => $typeid,
  472. 'info' => $info,
  473. 'lang' => $lang,
  474. 'idcode' => $this->idcode,
  475. );
  476. $this->assign('field', $assign);
  477. $iframe = input('param.iframe/d');
  478. if ($iframe == 1) {
  479. $viewfile = 'channel_m';
  480. } else {
  481. $viewfile = 'channel';
  482. }
  483. return $this->fetch($viewfile);
  484. }
  485. /**
  486. * 栏目列表编辑处理
  487. */
  488. private function channelHandle($id, $page, $post = array())
  489. {
  490. $type = 'channel';
  491. $lang = $post['lang'];
  492. $arr = array(
  493. "{$lang}_{$type}_{$id}" => json_encode(array(
  494. 'id' => $id,
  495. 'type' => $type,
  496. 'page' => $page,
  497. 'typeid' => $post['typeid'],
  498. 'info' => $post,
  499. 'lang' => $lang,
  500. 'idcode' => $this->idcode,
  501. )),
  502. );
  503. $filename = $this->uipath."{$page}.inc.php";
  504. if (ui_write_bidden_inc($arr, $filename, true)) {
  505. $this->success('操作成功');
  506. exit;
  507. } else {
  508. $this->error('写入失败');
  509. exit;
  510. }
  511. }
  512. /**
  513. * 图片编辑
  514. */
  515. public function upload($id, $page)
  516. {
  517. $type = 'upload';
  518. $param = input('param.');
  519. $id = $param['id'];
  520. $page = $param['page'];
  521. $lang = input('param.lang/s', get_main_lang());
  522. $inckey = "{$lang}_{$type}_{$id}";
  523. $typeid = 0;
  524. $info = array();
  525. // $type = input('param.type/s');
  526. $filename = $this->uipath."{$page}.inc.php";
  527. $inc = ui_read_bidden_inc($filename);
  528. if ($inc && !empty($inc[$inckey])) {
  529. $data = json_decode($inc[$inckey], true);
  530. $type = $data['type'];
  531. $info = $data['info'];
  532. }
  533. if (!empty($info['value']) && is_http_url($info['value'])) {
  534. $is_remote = 1;
  535. } else {
  536. $is_remote = 0;
  537. }
  538. $assign = array(
  539. 'id' => $id,
  540. 'type' => $type,
  541. 'page' => $page,
  542. 'info' => $info,
  543. 'lang' => $lang,
  544. 'is_remote' => $is_remote,
  545. 'idcode' => $this->idcode,
  546. );
  547. $this->assign('field', $assign);
  548. $iframe = input('param.iframe/d');
  549. if ($iframe == 1) {
  550. $viewfile = 'upload_m';
  551. } else {
  552. $viewfile = 'upload';
  553. }
  554. return $this->fetch($viewfile);
  555. }
  556. /**
  557. * 图片编辑处理
  558. */
  559. private function uploadHandle($id, $page, $post = array())
  560. {
  561. $type = 'upload';
  562. $lang = $post['lang'];
  563. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  564. $litpic = '';
  565. if ($is_remote == 1) {
  566. $litpic = $post['litpic_remote'];
  567. } else {
  568. $uplaod_data = func_common('litpic_local');
  569. if ($uplaod_data['errcode'] > 0) {
  570. $this->error($uplaod_data['errmsg']);
  571. }
  572. $litpic = handle_subdir_pic($uplaod_data['img_url']);
  573. }
  574. $oldhtml = urldecode($post['oldhtml']);
  575. $html = img_replace_url($oldhtml, $litpic);
  576. $arr = array(
  577. "{$lang}_{$type}_{$id}" => json_encode(array(
  578. 'id' => $id,
  579. 'type' => $type,
  580. 'page' => $page,
  581. 'lang' => $lang,
  582. 'idcode' => $this->idcode,
  583. 'info' => array(
  584. 'value' => htmlspecialchars($html),
  585. ),
  586. )),
  587. );
  588. $filename = $this->uipath."{$page}.inc.php";
  589. if (ui_write_bidden_inc($arr, $filename, true)) {
  590. $data = [
  591. 'imgsrc' => $litpic,
  592. 'html' => urlencode($html),
  593. ];
  594. $this->success('操作成功', null, $data);
  595. exit;
  596. } else {
  597. $this->error('写入失败');
  598. exit;
  599. }
  600. }
  601. /**
  602. * 背景图片编辑
  603. */
  604. public function background($id, $page)
  605. {
  606. $type = 'background';
  607. $param = input('param.');
  608. $id = $param['id'];
  609. $page = $param['page'];
  610. $lang = input('param.lang/s', get_main_lang());
  611. $inckey = "{$lang}_{$type}_{$id}";
  612. $typeid = 0;
  613. $info = array();
  614. // $type = input('param.type/s');
  615. $filename = $this->uipath."{$page}.inc.php";
  616. $inc = ui_read_bidden_inc($filename);
  617. if ($inc && !empty($inc[$inckey])) {
  618. $data = json_decode($inc[$inckey], true);
  619. $type = $data['type'];
  620. $info = $data['info'];
  621. }
  622. if (!empty($info['value']) && is_http_url($info['value'])) {
  623. $is_remote = 1;
  624. } else {
  625. $is_remote = 0;
  626. }
  627. $assign = array(
  628. 'id' => $id,
  629. 'type' => $type,
  630. 'page' => $page,
  631. 'info' => $info,
  632. 'lang' => $lang,
  633. 'is_remote' => $is_remote,
  634. 'idcode' => $this->idcode,
  635. );
  636. $this->assign('field', $assign);
  637. $iframe = input('param.iframe/d');
  638. if ($iframe == 1) {
  639. $viewfile = 'background_m';
  640. } else {
  641. $viewfile = 'background';
  642. }
  643. return $this->fetch($viewfile);
  644. }
  645. /**
  646. * 背景图片编辑处理
  647. */
  648. private function backgroundHandle($id, $page, $post = array())
  649. {
  650. $type = 'background';
  651. $lang = $post['lang'];
  652. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  653. $litpic = '';
  654. if ($is_remote == 1) {
  655. $litpic = $post['litpic_remote'];
  656. } else {
  657. $uplaod_data = func_common('litpic_local');
  658. if ($uplaod_data['errcode'] > 0) {
  659. $this->error($uplaod_data['errmsg']);
  660. }
  661. $litpic = handle_subdir_pic($uplaod_data['img_url']);
  662. }
  663. $arr = array(
  664. "{$lang}_{$type}_{$id}" => json_encode(array(
  665. 'id' => $id,
  666. 'type' => $type,
  667. 'page' => $page,
  668. 'lang' => $lang,
  669. 'idcode' => $this->idcode,
  670. 'info' => array(
  671. 'value' => $litpic,
  672. ),
  673. )),
  674. );
  675. $filename = $this->uipath."{$page}.inc.php";
  676. if (ui_write_bidden_inc($arr, $filename, true)) {
  677. $data = [
  678. 'imgsrc' => $litpic,
  679. ];
  680. $this->success('操作成功', null, $data);
  681. exit;
  682. } else {
  683. $this->error('写入失败');
  684. exit;
  685. }
  686. }
  687. /**
  688. * 百度地图
  689. */
  690. public function map($id, $page)
  691. {
  692. $type = 'map';
  693. $id = input('param.id/s');
  694. $page = input('param.page/s');
  695. $lang = input('param.lang/s', get_main_lang());
  696. $inckey = "{$lang}_{$type}_{$id}";
  697. $keyword = input('param.keyword/s');
  698. $info = array();
  699. $filename = $this->uipath."{$page}.inc.php";
  700. $inc = ui_read_bidden_inc($filename);
  701. if ($inc && !empty($inc[$inckey])) {
  702. $data = json_decode($inc[$inckey], true);
  703. $info = $data['info'];
  704. $type = $data['type'];
  705. }
  706. $lng = 110.34678620675;
  707. $lat = 20.001944329655;
  708. $coordinate = !empty($info['value']) ? trim($info['value']) : '';
  709. if($coordinate && strpos($coordinate,',') !== false)
  710. {
  711. $map = explode(',',$coordinate);
  712. $lng = $map[0];
  713. $lat = isset($map[1]) ? $map[1] : 0;
  714. }
  715. $zoom = !empty($info['zoom']) ? intval($info['zoom']) : 13;
  716. $mapConf = [
  717. 'lng' => $lng,
  718. 'lat' => $lat,
  719. 'zoom' => $zoom,
  720. 'ak' => base64_decode(config('global.baidu_map_ak')),
  721. 'keyword' => $keyword,
  722. ];
  723. $assign = array(
  724. 'id' => $id,
  725. 'type' => $type,
  726. 'page' => $page,
  727. 'info' => $info,
  728. 'lang' => $lang,
  729. 'mapConf' => $mapConf,
  730. 'idcode' => $this->idcode,
  731. );
  732. $this->assign('field', $assign);
  733. $iframe = input('param.iframe/d');
  734. if ($iframe == 1) {
  735. $viewfile = 'map_m';
  736. } else {
  737. $viewfile = 'map';
  738. }
  739. return $this->fetch($viewfile);
  740. }
  741. /**
  742. * 百度地图搜索
  743. */
  744. public function mapGetLocationByAddress()
  745. {
  746. $address = input('param.address/s');
  747. $ak = base64_decode(config('global.baidu_map_ak'));
  748. $url = $this->request->scheme()."://api.map.baidu.com/geocoder/v2/?address={$address}&city=&output=json&ak={$ak}";
  749. $result = httpRequest($url);
  750. $result = json_decode($result, true);
  751. if (!empty($result) && $result['status'] == 0) {
  752. $data['lng'] = $result['result']['location']['lng']; // 经度
  753. $data['lat'] = $result['result']['location']['lat']; // 纬度
  754. $data['map'] = $data['lng'].','.$data['lat'];
  755. $this->success('请求成功', null, $data);
  756. }
  757. $this->error('请求失败');
  758. }
  759. /**
  760. * 百度地图处理
  761. */
  762. private function mapHandle($id, $page, $post = array())
  763. {
  764. $type = 'map';
  765. $lang = $post['lang'];
  766. $zoom = !empty($post['zoom']) ? intval($post['zoom']) : 13;
  767. $location = !empty($post['location']) ? trim($post['location']) : '';
  768. if (empty($location)) {
  769. $this->error('请选定具体位置!');
  770. }
  771. $arr = array(
  772. "{$lang}_{$type}_{$id}" => json_encode(array(
  773. 'id' => $id,
  774. 'type' => $type,
  775. 'page' => $page,
  776. 'lang' => $lang,
  777. 'idcode' => $this->idcode,
  778. 'info' => array(
  779. 'zoom' => $zoom,
  780. 'value' => $location,
  781. ),
  782. )),
  783. );
  784. $filename = $this->uipath."{$page}.inc.php";
  785. if (ui_write_bidden_inc($arr, $filename, true)) {
  786. $this->success('操作成功');
  787. exit;
  788. } else {
  789. $this->error('写入失败');
  790. exit;
  791. }
  792. }
  793. /**
  794. * 源代码编辑处理
  795. */
  796. public function code($id, $page)
  797. {
  798. $type = 'code';
  799. $id = input('param.id/s');
  800. $page = input('param.page/s');
  801. $lang = input('param.lang/s', get_main_lang());
  802. $inckey = "{$lang}_{$type}_{$id}";
  803. $info = array();
  804. $filename = $this->uipath."{$page}.inc.php";
  805. $inc = ui_read_bidden_inc($filename);
  806. if ($inc && !empty($inc[$inckey])) {
  807. $data = json_decode($inc[$inckey], true);
  808. $info = $data['info'];
  809. $type = $data['type'];
  810. }
  811. $assign = array(
  812. 'id' => $id,
  813. 'type' => $type,
  814. 'page' => $page,
  815. 'info' => $info,
  816. 'lang' => $lang,
  817. 'idcode' => $this->idcode,
  818. );
  819. $this->assign('field', $assign);
  820. $iframe = input('param.iframe/d');
  821. if ($iframe == 1) {
  822. $viewfile = 'code_m';
  823. } else {
  824. $viewfile = 'code';
  825. }
  826. return $this->fetch($viewfile);
  827. }
  828. /**
  829. * 源代码编辑处理
  830. */
  831. private function codeHandle($id, $page, $post = array())
  832. {
  833. $type = 'code';
  834. $lang = $post['lang'];
  835. $content = !empty($post['content']) ? $post['content'] : '';
  836. $content = trim($content);
  837. $arr = array(
  838. "{$lang}_{$type}_{$id}" => json_encode(array(
  839. 'id' => $id,
  840. 'type' => $type,
  841. 'page' => $page,
  842. 'lang' => $lang,
  843. 'idcode' => $this->idcode,
  844. 'info' => array(
  845. 'value' => $content,
  846. ),
  847. )),
  848. );
  849. $filename = $this->uipath."{$page}.inc.php";
  850. if (ui_write_bidden_inc($arr, $filename, true)) {
  851. $this->success('操作成功');
  852. exit;
  853. } else {
  854. $this->error('写入失败');
  855. exit;
  856. }
  857. }
  858. /**
  859. * 清除页面数据
  860. */
  861. public function clear_data()
  862. {
  863. $type = input('param.type/s');
  864. if (IS_POST && !empty($type) && !empty($this->v)) {
  865. $where = [
  866. 'idcode' => $this->idcode,
  867. 'lang' => $this->home_lang,
  868. ];
  869. if ($type != 'all') {
  870. $where['type'] = $type;
  871. }
  872. $result = Db::name('ui_config')->where($where)->select();
  873. $r = Db::name('ui_config')->where($where)->delete();
  874. if ($r !== false) {
  875. \think\Cache::clear('ui_config');
  876. foreach ($result as $key => $val) {
  877. $filename = RUNTIME_PATH.'ui/'.TPL_THEME.$this->v."/{$val['page']}.inc.php";
  878. @unlink($filename);
  879. }
  880. $this->success('操作成功');
  881. }
  882. }
  883. $this->error('操作失败');
  884. }
  885. public function mobileTpl()
  886. {
  887. $assign_data = [];
  888. $gourl = input('param.gourl/s');
  889. $assign_data['murl'] = base64_decode($gourl).'&iframe=1';
  890. $webConfig = tpCache('web');
  891. $web_adminbasefile = !empty($webConfig['web_adminbasefile']) ? $webConfig['web_adminbasefile'] : $this->root_dir.'/login.php'; // 后台入口文件路径
  892. $assign_data['web_adminbasefile'] = $web_adminbasefile;
  893. $tid = input('param.tid/d');
  894. $assign_data['tid'] = $tid;
  895. $aid = input('param.aid/d');
  896. $assign_data['aid'] = $aid;
  897. $assign_data['lang'] = $this->home_lang;
  898. $iframe = input('param.iframe/d');
  899. $assign_data['iframe'] = $iframe;
  900. $this->assign($assign_data);
  901. return $this->fetch();
  902. }
  903. }