설명 없음
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.

ShopLogic.php 22KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599
  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\logic;
  14. use think\Model;
  15. use think\Db;
  16. /**
  17. * 逻辑定义
  18. * Class CatsLogic
  19. * @package admin\Logic
  20. */
  21. class ShopLogic extends Model
  22. {
  23. private $request = null;
  24. private $data_path;
  25. private $version_txt_path;
  26. private $version;
  27. private $service_url;
  28. private $upgrade_url;
  29. private $service_ey;
  30. private $planPath_pc;
  31. private $planPath_m;
  32. /**
  33. * 析构函数
  34. */
  35. function __construct() {
  36. $this->request = request();
  37. $this->service_ey = config('service_ey');
  38. $this->data_path = DATA_PATH; //
  39. $this->version_txt_path = $this->data_path.'conf'.DS.'version_themeshop.txt'; // 版本文件路径
  40. $this->version = getVersion('version_themeshop');
  41. // api_Service_checkVersion
  42. $tmp_str = 'L2luZGV4LnBocD9tPWFwaSZjPVVwZ3JhZGUmYT1jaGVja1RoZW1lVmVyc2lvbg==';
  43. $this->service_url = base64_decode($this->service_ey).base64_decode($tmp_str);
  44. $this->upgrade_url = $this->service_url . '&domain='.request()->host(true).'&v=' . $this->version.'&type=theme_shop&cms_version='.getVersion().'&ip='.serverIP();
  45. $this->planPath_pc = 'template/'.TPL_THEME.'pc/';
  46. $this->planPath_m = 'template/'.TPL_THEME.'mobile/';
  47. }
  48. // 过期订单预处理
  49. public function OverdueOrderHandle()
  50. {
  51. $ShopOrder = Db::name('shop_order')->where('order_status', 4)->column('order_id');
  52. if (!empty($ShopOrder)) {
  53. // 删除条件
  54. $where['order_id'] = ['IN', $ShopOrder];
  55. // 删除订单主表
  56. Db::name('shop_order')->where($where)->delete();
  57. // 删除订单副表
  58. Db::name('shop_order_details')->where($where)->delete();
  59. // 删除订单操作记录表
  60. Db::name('shop_order_log')->where($where)->delete();
  61. }
  62. }
  63. /**
  64. * 检测并第一次从官方同步订单中心的前台模板
  65. */
  66. public function syn_theme_shop()
  67. {
  68. error_reporting(0);//关闭所有错误报告
  69. $web_users_tpl_theme = tpCache('web.web_users_tpl_theme');
  70. empty($web_users_tpl_theme) && $web_users_tpl_theme = 'users';
  71. $shop_tpl_list = glob("./{$this->planPath_pc}{$web_users_tpl_theme}/shop_*");
  72. if (empty($shop_tpl_list)) {
  73. return $this->OneKeyUpgrade();
  74. } else {
  75. return true;
  76. }
  77. }
  78. /**
  79. * 检测目录权限
  80. */
  81. public function checkAuthority($filelist = '')
  82. {
  83. /*------------------检测目录读写权限----------------------*/
  84. $filelist = htmlspecialchars_decode($filelist);
  85. $filelist = explode('<br>', $filelist);
  86. $dirs = array();
  87. $i = -1;
  88. foreach($filelist as $filename)
  89. {
  90. if (stristr($filename, $this->planPath_pc) && !file_exists($this->planPath_pc)) {
  91. continue;
  92. } else if (stristr($filename, $this->planPath_m) && !file_exists($this->planPath_m)) {
  93. continue;
  94. }
  95. $tfilename = $filename;
  96. $curdir = $this->GetDirName($tfilename);
  97. if (empty($curdir)) {
  98. continue;
  99. }
  100. if( !isset($dirs[$curdir]) )
  101. {
  102. $dirs[$curdir] = $this->TestIsFileDir($curdir);
  103. }
  104. if($dirs[$curdir]['isdir'] == FALSE)
  105. {
  106. continue;
  107. }
  108. else {
  109. $dirs[$curdir] = $this->TestIsFileDir($curdir);
  110. }
  111. $i++;
  112. }
  113. $is_pass = true;
  114. $msg = '检测通过';
  115. if($i > -1)
  116. {
  117. $n = 0;
  118. $dirinfos = '';
  119. foreach($dirs as $curdir)
  120. {
  121. $dirinfos .= $curdir['name']."&nbsp;&nbsp;状态:";
  122. if ($curdir['writeable']) {
  123. $dirinfos .= "[√正常]";
  124. } else {
  125. $is_pass = false;
  126. $n++;
  127. $dirinfos .= "<font color='red'>[×不可写]</font>";
  128. }
  129. $dirinfos .= "<br />";
  130. }
  131. $title = "本次升级需要在下面文件夹写入更新文件,已检测站点有 <font color='red'>{$n}</font> 处没有写入权限:<br />";
  132. $title .= "<font color='red'>问题分析(如有问题,请咨询技术支持):<br />";
  133. $title .= "1、检查站点目录的用户组与所有者,禁止是 root ;<br />";
  134. $title .= "2、检查站点目录的读写权限,一般权限值是 0755 ;<br />";
  135. $title .= "</font>涉及更新目录列表如下:<br />";
  136. $msg = $title . $dirinfos;
  137. }
  138. /*------------------end----------------------*/
  139. if (true === $is_pass) {
  140. return ['code'=>1, 'msg'=>$msg];
  141. } else {
  142. return ['code'=>0, 'msg'=>$msg, 'data'=>['code'=>1]];
  143. }
  144. }
  145. /**
  146. * 检查是否有更新包
  147. * @return type 提示语
  148. */
  149. public function checkVersion() {
  150. //error_reporting(0);//关闭所有错误报告
  151. $allow_url_fopen = ini_get('allow_url_fopen');
  152. if (!$allow_url_fopen) {
  153. return ['code' => 1, 'msg' => "<font color='red'>请联系空间商(设置 php.ini 中参数 allow_url_fopen = 1)</font>"];
  154. }
  155. $url = $this->upgrade_url;
  156. $serviceVersionList = @httpRequest($url);
  157. if (false === $serviceVersionList) {
  158. $context = stream_context_set_default(array('http' => array('timeout' => 3,'method'=>'GET')));
  159. $serviceVersionList = @file_get_contents($url,false,$context);
  160. }
  161. $serviceVersionList = json_decode($serviceVersionList,true);
  162. if(!empty($serviceVersionList))
  163. {
  164. $upgradeArr = array();
  165. $introStr = '';
  166. $upgradeStr = '';
  167. foreach ($serviceVersionList as $key => $val) {
  168. $upgrade = !empty($val['upgrade']) ? $val['upgrade'] : array();
  169. $upgradeArr = array_merge($upgradeArr, $upgrade);
  170. $introStr .= '<br>'.filter_line_return($val['intro'], '<br>');
  171. }
  172. $upgradeArr = array_unique($upgradeArr);
  173. foreach ($upgradeArr as $key => $val) {
  174. if (stristr($val, $this->planPath_pc) && !file_exists($this->planPath_pc)) {
  175. unset($upgradeArr[$key]);
  176. } else if (stristr($val, $this->planPath_m) && !file_exists($this->planPath_m)) {
  177. unset($upgradeArr[$key]);
  178. }
  179. }
  180. $upgradeStr = implode('<br>', $upgradeArr); // 升级提示需要覆盖哪些文件
  181. $introArr = explode('<br>', $introStr);
  182. $introStr = '更新日志:';
  183. foreach ($introArr as $key => $val) {
  184. if (empty($val)) {
  185. continue;
  186. }
  187. $introStr .= "<br>{$key}、".$val;
  188. }
  189. $lastupgrade = $serviceVersionList[count($serviceVersionList) - 1];
  190. if (!empty($lastupgrade['upgrade_title'])) {
  191. $introStr .= '<br>'.$lastupgrade['upgrade_title'];
  192. }
  193. $lastupgrade['intro'] = htmlspecialchars_decode($introStr);
  194. $lastupgrade['upgrade'] = htmlspecialchars_decode($upgradeStr); // 升级提示需要覆盖哪些文件
  195. /*升级公告*/
  196. if (!empty($lastupgrade['notice'])) {
  197. $lastupgrade['notice'] = htmlspecialchars_decode($lastupgrade['notice']) . '<br>';
  198. }
  199. /*--end*/
  200. return ['code' => 2, 'msg' => $lastupgrade];
  201. }
  202. return ['code' => 1, 'msg' => '已是最新版'];
  203. }
  204. /**
  205. * 检查是否有更新包
  206. * @return type 提示语
  207. */
  208. public function OneKeyUpgrade() {
  209. $allow_url_fopen = ini_get('allow_url_fopen');
  210. if (!$allow_url_fopen) {
  211. return ['code' => 0, 'msg' => "请联系空间商,设置 php.ini 中参数 allow_url_fopen = 1"];
  212. }
  213. if (!extension_loaded('zip')) {
  214. return ['code' => 0, 'msg' => "请联系空间商,开启 php.ini 中的php-zip扩展"];
  215. }
  216. $serviceVersionList = @httpRequest($this->upgrade_url);
  217. if (false === $serviceVersionList) {
  218. $serviceVersionList = @file_get_contents($this->upgrade_url);
  219. }
  220. $serviceVersionList = json_decode($serviceVersionList,true);
  221. if (empty($serviceVersionList)) {
  222. if ('v1.0.1' > $this->version) {
  223. return ['code' => 0, 'msg' => "请求服务器失败,请检查是否网络故障!"];
  224. } else {
  225. return ['code' => 0, 'msg' => "没找到升级信息"];
  226. }
  227. } else if (isset($serviceVersionList['code']) && empty($serviceVersionList['code'])) {
  228. $icon = !empty($serviceVersionList['icon']) ? $serviceVersionList['icon'] : 2;
  229. return ['code' => 0, 'msg' => $serviceVersionList['msg'], 'icon'=>$icon];
  230. }
  231. clearstatcache(); // 清除文件夹权限缓存
  232. if (!is_writeable($this->version_txt_path)) {
  233. return ['code' => 0, 'msg' => '文件'.$this->version_txt_path.' 不可写,不能升级!!!'];
  234. }
  235. /*最新更新版本信息*/
  236. $lastServiceVersion = $serviceVersionList[count($serviceVersionList) - 1];
  237. /*--end*/
  238. /*批量下载更新包*/
  239. $upgradeArr = array(); // 更新的文件列表
  240. $folderName = 'shop-'.$lastServiceVersion['key_num'];
  241. foreach ($serviceVersionList as $key => $val) {
  242. // 下载更新包
  243. $result = $this->downloadFile($val['down_url'], $val['file_md5']);
  244. if (!isset($result['code']) || $result['code'] != 1) {
  245. return $result;
  246. }
  247. /*第一个循环执行的业务*/
  248. if ($key == 0) {
  249. /*解压到最后一个更新包的文件夹*/
  250. $lastDownFileName = explode('/', $lastServiceVersion['down_url']);
  251. $lastDownFileName = end($lastDownFileName);
  252. $folderName = 'shop-'.str_replace(".zip", "", $lastDownFileName); // 文件夹
  253. /*--end*/
  254. /*解压之前,删除已重复的文件夹*/
  255. delFile($this->data_path.'backup'.DS.'theme'.DS.$folderName);
  256. /*--end*/
  257. }
  258. /*--end*/
  259. $downFileName = explode('/', $val['down_url']);
  260. $downFileName = 'shop-'.end($downFileName);
  261. /*解压文件*/
  262. $zip = new \ZipArchive();//新建一个ZipArchive的对象
  263. if ($zip->open($this->data_path.'backup'.DS.'theme'.DS.$downFileName) != true) {
  264. return ['code' => 0, 'msg' => "升级包读取失败!"];
  265. }
  266. $zip->extractTo($this->data_path.'backup'.DS.'theme'.DS.$folderName.DS);//假设解压缩到在当前路径下backup文件夹内
  267. $zip->close();//关闭处理的zip文件
  268. /*--end*/
  269. if (!file_exists($this->data_path.'backup'.DS.'theme'.DS.$folderName.DS.'data'.DS.'conf'.DS.'version_themeshop.txt')) {
  270. return ['code' => 0, 'msg' => "缺少version_themeshop.txt文件,请联系客服"];
  271. }
  272. /*更新的文件列表*/
  273. $upgrade = !empty($val['upgrade']) ? $val['upgrade'] : array();
  274. $upgradeArr = array_merge($upgradeArr, $upgrade);
  275. /*--end*/
  276. }
  277. /*--end*/
  278. /*将多个更新包重新组建一个新的完全更新包*/
  279. $upgradeArr = array_unique($upgradeArr); // 移除文件列表里重复的文件
  280. $serviceVersion = $lastServiceVersion;
  281. $serviceVersion['upgrade'] = $upgradeArr;
  282. /*--end*/
  283. /*升级之前,备份涉及的源文件*/
  284. $upgrade = $serviceVersion['upgrade'];
  285. if (!empty($upgrade) && is_array($upgrade)) {
  286. foreach ($upgrade as $key => $val) {
  287. $source_file = ROOT_PATH.$val;
  288. if (file_exists($source_file)) {
  289. $destination_file = $this->data_path.'backup'.DS.'theme'.DS.$folderName.'_www'.DS.$val;
  290. tp_mkdir(dirname($destination_file));
  291. $copy_bool = @copy($source_file, $destination_file);
  292. if (false == $copy_bool) {
  293. return ['code' => 0, 'msg' => "更新前备份文件失败,请检查所有目录是否有读写权限"];
  294. }
  295. }
  296. }
  297. }
  298. /*--end*/
  299. // 递归复制文件夹
  300. $copy_data = $this->recurse_copy($this->data_path.'backup'.DS.'theme'.DS.$folderName, rtrim(ROOT_PATH, DS), $folderName);
  301. /*删除下载的升级包*/
  302. $ziplist = glob($this->data_path.'backup'.DS.'theme'.DS.'shop-*.zip');
  303. @array_map('unlink', $ziplist);
  304. /*--end*/
  305. // 推送回服务器 记录升级成功
  306. $this->UpgradeLog($serviceVersion['key_num']);
  307. return ['code' => $copy_data['code'], 'msg' => "升级模板成功{$copy_data['msg']}"];
  308. }
  309. /**
  310. * 自定义函数递归的复制带有多级子目录的目录
  311. * 递归复制文件夹
  312. *
  313. * @param string $src 原目录
  314. * @param string $dst 复制到的目录
  315. * @param string $folderName 存放升级包目录名称
  316. * @return string
  317. */
  318. //参数说明:
  319. //自定义函数递归的复制带有多级子目录的目录
  320. private function recurse_copy($src, $dst, $folderName)
  321. {
  322. static $badcp = 0; // 累计覆盖失败的文件总数
  323. static $n = 0; // 累计执行覆盖的文件总数
  324. static $total = 0; // 累计更新的文件总数
  325. $dir = opendir($src);
  326. /*pc和mobile目录存在的情况下,才拷贝会员模板到相应的pc或mobile里*/
  327. $dst_tmp = str_replace('\\', '/', $dst);
  328. $dst_tmp = rtrim($dst_tmp, '/').'/';
  329. if (stristr($dst_tmp, $this->planPath_pc) && file_exists($this->planPath_pc)) {
  330. tp_mkdir($dst);
  331. } else if (stristr($dst_tmp, $this->planPath_m) && file_exists($this->planPath_m)) {
  332. tp_mkdir($dst);
  333. }
  334. /*--end*/
  335. while (false !== $file = readdir($dir)) {
  336. if (($file != '.') && ($file != '..')) {
  337. if (is_dir($src . '/' . $file)) {
  338. $needle = '/template/'.TPL_THEME;
  339. $needle = rtrim($needle, '/');
  340. $dstfile = $dst . '/' . $file;
  341. if (!stristr($dstfile, $needle)) {
  342. $dstfile = str_replace('/template', $needle, $dstfile);
  343. }
  344. $this->recurse_copy($src . '/' . $file, $dstfile, $folderName);
  345. }
  346. else {
  347. if (file_exists($src . DIRECTORY_SEPARATOR . $file)) {
  348. /*pc和mobile目录存在的情况下,才拷贝会员模板到相应的pc或mobile里*/
  349. $rs = true;
  350. $src_tmp = str_replace('\\', '/', $src . DIRECTORY_SEPARATOR . $file);
  351. if (stristr($src_tmp, $this->planPath_pc) && !file_exists($this->planPath_pc)) {
  352. continue;
  353. } else if (stristr($src_tmp, $this->planPath_m) && !file_exists($this->planPath_m)) {
  354. continue;
  355. }
  356. /*--end*/
  357. $rs = @copy($src . DIRECTORY_SEPARATOR . $file, $dst . DIRECTORY_SEPARATOR . $file);
  358. if($rs) {
  359. $n++;
  360. @unlink($src . DIRECTORY_SEPARATOR . $file);
  361. } else {
  362. $n++;
  363. $badcp++;
  364. }
  365. } else {
  366. $n++;
  367. }
  368. $total++;
  369. }
  370. }
  371. }
  372. closedir($dir);
  373. $code = 1;
  374. $msg = '!';
  375. if($badcp > 0)
  376. {
  377. $code = 2;
  378. $msg = ",其中失败 <font color='red'>{$badcp}</font> 个文件,<br />请从升级包目录[<font color='red'>data/backup/theme/{$folderName}</font>]中的取出全部文件覆盖到根目录,完成手工升级。";
  379. }
  380. $this->copy_speed($n, $total);
  381. return ['code'=>$code, 'msg'=>$msg];
  382. }
  383. /**
  384. * 复制文件进度
  385. */
  386. private function copy_speed($n, $total)
  387. {
  388. $data = false;
  389. if ($n < $total) {
  390. $this->copy_speed($n, $total);
  391. } else {
  392. $data = true;
  393. }
  394. return $data;
  395. }
  396. /**
  397. * @param type $fileUrl 下载文件地址
  398. * @param type $md5File 文件MD5 加密值 用于对比下载是否完整
  399. * @return string 错误或成功提示
  400. */
  401. private function downloadFile($fileUrl,$md5File)
  402. {
  403. $downFileName = explode('/', $fileUrl);
  404. $downFileName = 'shop-'.end($downFileName);
  405. $saveDir = $this->data_path.'backup'.DS.'theme'.DS.$downFileName; // 保存目录
  406. tp_mkdir(dirname($saveDir));
  407. $content = @httpRequest($fileUrl);
  408. if (false === $content) {
  409. $content = @file_get_contents($fileUrl, 0, null, 0, 1);
  410. }
  411. if(!$content){
  412. return ['code' => 0, 'msg' => '官方升级包不存在']; // 文件存在直接退出
  413. }
  414. if (!stristr($fileUrl, 'https://service')) {
  415. $ch = curl_init($fileUrl);
  416. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  417. curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
  418. $file = curl_exec ($ch);
  419. curl_close ($ch);
  420. } else {
  421. $file = httpRequest($fileUrl);
  422. }
  423. if (preg_match('#__HALT_COMPILER()#i', $file)) {
  424. return ['code' => 0, 'msg' => '下载包损坏,请联系官方客服!'];
  425. }
  426. $fp = fopen($saveDir,'w');
  427. fwrite($fp, $file);
  428. fclose($fp);
  429. if(!eyPreventShell($saveDir) || !file_exists($saveDir) || $md5File != md5_file($saveDir))
  430. {
  431. return ['code' => 0, 'msg' => '下载保存升级包失败,请检查所有目录的权限以及用户组不能为root'];
  432. }
  433. return ['code' => 1, 'msg' => '下载成功'];
  434. }
  435. // 升级记录 log 日志
  436. private function UpgradeLog($to_key_num){
  437. $serial_number = DEFAULT_SERIALNUMBER;
  438. $constsant_path = APP_PATH.MODULE_NAME.'/conf/constant.php';
  439. if (file_exists($constsant_path)) {
  440. require_once($constsant_path);
  441. defined('SERIALNUMBER') && $serial_number = SERIALNUMBER;
  442. }
  443. $mysqlinfo = \think\Db::query("SELECT VERSION() as version");
  444. $mysql_version = $mysqlinfo[0]['version'];
  445. $values = array(
  446. 'type' => 'theme_shop',
  447. 'domain'=>request()->host(), //用户域名
  448. 'key_num'=>$this->version, // 用户版本号
  449. 'to_key_num'=>$to_key_num, // 用户要升级的版本号
  450. 'add_time'=>time(), // 升级时间
  451. 'serial_number'=>$serial_number,
  452. 'ip' => GetHostByName($_SERVER['SERVER_NAME']),
  453. 'phpv' => phpversion(),
  454. 'mysql_version' => $mysql_version,
  455. 'web_server' => $_SERVER['SERVER_SOFTWARE'],
  456. );
  457. // api_Service_upgradeLog
  458. $tmp_str = 'L2luZGV4LnBocD9tPWFwaSZjPVVwZ3JhZGUmYT11cGdyYWRlTG9nJg==';
  459. $url = base64_decode($this->service_ey).base64_decode($tmp_str).http_build_query($values);
  460. @httpRequest($url);
  461. }
  462. /**
  463. * 获取文件的目录路径
  464. * @param string $filename 文件路径+文件名
  465. * @return string
  466. */
  467. private function GetDirName($filename)
  468. {
  469. $dirname = preg_replace("#[\\\\\/]{1,}#", '/', $filename);
  470. $dirname = preg_replace("#([^\/]*)$#", '', $dirname);
  471. return $dirname;
  472. }
  473. /**
  474. * 测试目录路径是否有读写权限
  475. * @param string $dirname 文件目录路径
  476. * @return array
  477. */
  478. private function TestIsFileDir($dirname)
  479. {
  480. $dirs = array('name'=>'', 'isdir'=>FALSE, 'writeable'=>FALSE);
  481. $dirs['name'] = $dirname;
  482. tp_mkdir($dirname);
  483. if(is_dir($dirname))
  484. {
  485. $dirs['isdir'] = TRUE;
  486. $dirs['writeable'] = $this->TestWriteAble($dirname);
  487. }
  488. return $dirs;
  489. }
  490. /**
  491. * 测试目录路径是否有写入权限
  492. * @param string $d 目录路劲
  493. * @return boolean
  494. */
  495. private function TestWriteAble($d)
  496. {
  497. $tfile = '_eyout.txt';
  498. $fp = @fopen($d.$tfile,'w');
  499. if(!$fp) {
  500. return false;
  501. }
  502. else {
  503. fclose($fp);
  504. $rs = @unlink($d.$tfile);
  505. return true;
  506. }
  507. }
  508. /**
  509. * 列出营销功能里已使用的模块
  510. * @return [type] [description]
  511. */
  512. public function marketLogic()
  513. {
  514. // 列出已使用的功能模块
  515. $func = [];
  516. // 整点秒杀功能是否被用
  517. $sharpCount = Db::name('sharp_goods')->where(['sharp_goods_id'=>['gt',0]])->count();
  518. if (!empty($sharpCount)) {
  519. $func[] = 'sharp';
  520. }
  521. // 优惠券功能是否被用
  522. $couponCount = Db::name('shop_coupon')->where(['coupon_id'=>['gt',0]])->count();
  523. if (!empty($couponCount)) {
  524. $func[] = 'coupon';
  525. }
  526. // 返回值
  527. return $func;
  528. }
  529. /**
  530. * 列出功能地图里已使用的模块
  531. * @return [type] [description]
  532. */
  533. public function useFuncLogic()
  534. {
  535. // 列出已使用的功能模块
  536. $func = [];
  537. // 积分兑换功能是否被用 - 暂时不禁用了,先留着用
  538. $memgiftCount = Db::name('memgift')->where(['gift_id'=>['gt',0]])->count();
  539. if (true || !empty($memgiftCount)) {
  540. $func[] = 'memgift';
  541. }
  542. // 返回值
  543. return $func;
  544. }
  545. }