作者 zhl

Merge remote-tracking branch 'origin/master' into zhl

@@ -33,7 +33,7 @@ class UpgradeProjectCount extends Command @@ -33,7 +33,7 @@ class UpgradeProjectCount extends Command
33 protected $description = '升级项目统计'; 33 protected $description = '升级项目统计';
34 34
35 public function handle(){ 35 public function handle(){
36 - $project_id = 555; 36 + $project_id = 439;
37 ProjectServer::useProject($project_id); 37 ProjectServer::useProject($project_id);
38 $this->count($project_id); 38 $this->count($project_id);
39 DB::disconnect('custom_mysql'); 39 DB::disconnect('custom_mysql');
@@ -43,10 +43,12 @@ class DomainInfo extends Command @@ -43,10 +43,12 @@ class DomainInfo extends Command
43 foreach ($list as $v){ 43 foreach ($list as $v){
44 if(empty($v['private_key']) || empty($v['private_cert'])){ 44 if(empty($v['private_key']) || empty($v['private_cert'])){
45 //域名结束时间<2天时,重新生成 45 //域名结束时间<2天时,重新生成
46 - if(!empty($v['certificate_end_time']) && ($v['certificate_end_time'] > date('Y-m-d H:i:s',time() + 24*3600))){ 46 + if(!empty($v['certificate_end_time'])){
  47 + if(($v['certificate_end_time'] > date('Y-m-d H:i:s',time() + 24*3600)) || ($v['certificate_end_time'] < date('Y-m-d H:i:s',time()))){
47 $this->updatePrivate($v); 48 $this->updatePrivate($v);
48 } 49 }
49 } 50 }
  51 + }
50 $ssl = $this->updateDomainSsl($v['domain']); 52 $ssl = $this->updateDomainSsl($v['domain']);
51 $time = $this->updateDomain($v['domain']); 53 $time = $this->updateDomain($v['domain']);
52 if(!empty($time['start']) && !!empty($time['end'])){ 54 if(!empty($time['start']) && !!empty($time['end'])){
@@ -77,7 +79,6 @@ class DomainInfo extends Command @@ -77,7 +79,6 @@ class DomainInfo extends Command
77 public function updatePrivate($param) 79 public function updatePrivate($param)
78 { 80 {
79 $url = 'https://' . $param['domain']. '/api/applySsl/'; 81 $url = 'https://' . $param['domain']. '/api/applySsl/';
80 - $extend_config = json_decode($param['extend_config'], true);  
81 $top_domain = $this->getTopDomain($param['domain']); 82 $top_domain = $this->getTopDomain($param['domain']);
82 if ((empty($extend_config) || empty($extend_config[0]['origin'])) && $param['id'] != 3) { 83 if ((empty($extend_config) || empty($extend_config[0]['origin'])) && $param['id'] != 3) {
83 $extend_config = [ 84 $extend_config = [
@@ -89,13 +90,14 @@ class DomainInfo extends Command @@ -89,13 +90,14 @@ class DomainInfo extends Command
89 'type' => 1, 90 'type' => 1,
90 'route' => 1, 91 'route' => 1,
91 "domain" =>$param['domain'], 92 "domain" =>$param['domain'],
92 - "rewrite"=> $extend_config, 93 + "rewrite"=> $extend_config ?? [],
93 'other_domain' => [$top_domain, '*.' . $top_domain], 94 'other_domain' => [$top_domain, '*.' . $top_domain],
94 'private_key' => '', 95 'private_key' => '',
95 'cert' => '' 96 'cert' => ''
96 ]; 97 ];
97 $result = $this->curlRequest($url, $param); 98 $result = $this->curlRequest($url, $param);
98 - Log::info('domain id: ' . $param['id'] . ', domain: ' . $param['domain'] . ', result: ' . var_export($result, true)); 99 + @file_put_contents(storage_path('logs/lyh_error.log'), var_export($result, true) . PHP_EOL, FILE_APPEND);
  100 + @file_put_contents(storage_path('logs/lyh_error.log'), var_export($param['domain'], true) . PHP_EOL, FILE_APPEND);
99 } 101 }
100 102
101 public static function getTopDomain ($url) { 103 public static function getTopDomain ($url) {
@@ -35,8 +35,8 @@ class UpgradeProjectCount extends Command @@ -35,8 +35,8 @@ class UpgradeProjectCount extends Command
35 protected $description = '升级项目统计'; 35 protected $description = '升级项目统计';
36 36
37 public function handle(){ 37 public function handle(){
38 - $project_id = 555;  
39 - $url = 'www.sincoherenaesthetics.com'; 38 + $project_id = 439;
  39 + $url = 'www.cnzyl.com';
40 ProjectServer::useProject($project_id); 40 ProjectServer::useProject($project_id);
41 $this->count($project_id,$url); 41 $this->count($project_id,$url);
42 42
@@ -67,6 +67,14 @@ class UpgradeProjectCount extends Command @@ -67,6 +67,14 @@ class UpgradeProjectCount extends Command
67 $arr['month_total'] = 0; 67 $arr['month_total'] = 0;
68 if(isset($res['data']['count'])){ 68 if(isset($res['data']['count'])){
69 $arr['month_total'] = $res['data']['count']; 69 $arr['month_total'] = $res['data']['count'];
  70 + //获取上一个的count
  71 + $previousMonth = date('Y-m', strtotime($v['month'] . ' -1 month'));
  72 + $previousInfo = $monthCountModel->read(['month'=>$previousMonth,'project_id'=>$project_id]);
  73 + if($previousInfo === false){
  74 + $arr['total'] = $arr['month_total'];
  75 + }else{
  76 + $arr['total'] = $res['data']['count'] + ($previousInfo['total'] ?? 0);
  77 + }
70 } 78 }
71 if(isset($res['data']['data'])){ 79 if(isset($res['data']['data'])){
72 $arr['country'] = json_encode($res['data']['data']); 80 $arr['country'] = json_encode($res['data']['data']);
1 -<?php  
2 -  
3 -namespace App\Console\Commands\Update;  
4 -  
5 -use App\Models\Collect\CollectSource;  
6 -use App\Models\Collect\CollectTask;  
7 -use App\Models\Com\UpdateLog;  
8 -use App\Models\Com\UpdateOldInfo;  
9 -use App\Models\RouteMap\RouteMap;  
10 -use App\Services\CosService;  
11 -use App\Services\ProjectServer;  
12 -use Illuminate\Console\Command;  
13 -use Illuminate\Support\Facades\DB;  
14 -use Illuminate\Support\Facades\Redis;  
15 -  
16 -/**  
17 - * 4.0,5.0升级到6.0,主站自定义页面采集  
18 - * Class ProjectImport  
19 - * @package App\Console\Commands  
20 - * @author Akun  
21 - * @date 2023/12/13 14:44  
22 - */  
23 -class HtmlCustomCollect extends Command  
24 -{  
25 - /**  
26 - * The name and signature of the console command.  
27 - *  
28 - * @var string  
29 - */  
30 - protected $signature = 'project_html_custom_collect';  
31 -  
32 - /**  
33 - * The console command description.  
34 - *  
35 - * @var string  
36 - */  
37 - protected $description = '执行项目自定义html页面采集';  
38 -  
39 -  
40 - public function handle()  
41 - {  
42 - ini_set('memory_limit', '512M');  
43 -  
44 -// $project_id = 437;  
45 -// $project_site = 'v6-1500k.globalso.site';  
46 -// $pages = [  
47 -// 'https://www.tourletent.com/project/b300-glamping-tent-in-china/',  
48 -// 'https://www.tourletent.com/project/lotus-bell-tent-in-australia/',  
49 -// 'https://www.tourletent.com/project/luxury-resort-in-china/',  
50 -// 'https://www.tourletent.com/project/canvas-safari-tent-inthailand/',  
51 -// 'https://www.tourletent.com/project/safari-tent-for-m8-in-mexcio/',  
52 -// 'https://www.tourletent.com/project/9m-pvc-dome-tent-in-canada/',  
53 -// 'https://www.tourletent.com/project/c900-hotel-tent-in-korea/',  
54 -// 'https://www.tourletent.com/project/safari-tent-in-guizhou/',  
55 -// 'https://www.tourletent.com/project/dome-tent-in-austin/',  
56 -// 'https://www.tourletent.com/project/safari-tent-in-italy/',  
57 -// 'https://www.tourletent.com/project/glass-igloo-in-china/',  
58 -// 'https://www.tourletent.com/project/tree-house-in-sichuan/'  
59 -// ];  
60 -  
61 -// $project_id = 517;  
62 -// $project_site = 'v6-1gee9.globalso.site';  
63 -// $pages = [  
64 -// 'https://www.beifa.group/help/send-results/',  
65 -// 'https://www.beifa.group/help/terms-of-use/',  
66 -// 'https://www.beifa.group/help/position-3/',  
67 -// 'https://www.beifa.group/help/position-2/',  
68 -// 'https://www.beifa.group/help/position-1/',  
69 -// 'https://www.beifa.group/help/social-media/',  
70 -// 'https://www.beifa.group/help/globle-exibition-2/',  
71 -// 'https://www.beifa.group/help/job/',  
72 -// 'https://www.beifa.group/help/vr/',  
73 -// 'https://www.beifa.group/help/on-live-video/',  
74 -// 'https://www.beifa.group/help/honor/',  
75 -// 'https://www.beifa.group/help/certification/',  
76 -// 'https://www.beifa.group/help/quanity-control/',  
77 -// 'https://www.beifa.group/help/testing-center/',  
78 -// 'https://www.beifa.group/help/rd/',  
79 -// 'https://www.beifa.group/help/design-trend/',  
80 -// 'https://www.beifa.group/help/partner/',  
81 -// 'https://www.beifa.group/help/social-responsibility/',  
82 -// 'https://www.beifa.group/help/contact/',  
83 -// ];  
84 -  
85 - $project_id = 546;  
86 - $project_site = 'v6-kx260.globalso.site';  
87 - $pages = [  
88 - 'https://www.grechofiberglass.com/success_stories/',  
89 - 'https://www.grechofiberglass.com/success_stories/achieving-transformative-improvements-for-polyurethane-exterior-insulation-panels-in-france/',  
90 - 'https://www.grechofiberglass.com/success_stories/grechos-fiberglass-rebar-revolutionizing-canadian-construction-projects-with-unparalleled-quality/',  
91 - 'https://www.grechofiberglass.com/success_stories/customer-from-the-uk-purchases-fiberglass-coated-mats-for-plasterboards-from-grecho/',  
92 - 'https://www.grechofiberglass.com/success_stories/supplying-carbon-fiber-to-australian-surfboard-manufacturer/',  
93 - 'https://www.grechofiberglass.com/success_stories/300g-chopped-strand-mat-for-composite-slates-shipped-to-malaysia/',  
94 - 'https://www.grechofiberglass.com/success_stories/fiberglass-roving-for-pipewater-tank-shipped-to-russia/',  
95 - 'https://www.grechofiberglass.com/success_stories/fiberglass-fleece-for-acoustic-ceiling-shipped-to-russia/',  
96 - 'https://www.grechofiberglass.com/success_stories/600g-fiberglass-aluminum-foil-cloth-shipped-to-australia-for-pipe-heat-shielding/',  
97 - 'https://www.grechofiberglass.com/success_stories/shipping-our-first-truck-of-fiberglass-tissue-in-2022/',  
98 - ];  
99 -  
100 -// $project_id = 586;  
101 -// $project_site = 'v6-m605x.globalso.site';  
102 -// $pages = [  
103 -// 'https://www.citymax-group.com/case/',  
104 -// 'https://www.citymax-group.com/case_catalog/crop-classification/',  
105 -// 'https://www.citymax-group.com/case_catalog/field-crops/',  
106 -// 'https://www.citymax-group.com/case_catalog/fruits/',  
107 -// 'https://www.citymax-group.com/case_catalog/vegetables/',  
108 -// 'https://www.citymax-group.com/case/report-on-use-of-citymax-products-on-grapes-2/',  
109 -// 'https://www.citymax-group.com/case/report-on-use-of-citymax-products-on-cucumber/',  
110 -// 'https://www.citymax-group.com/case/field-experiment-crop-lettuce/',  
111 -// ];  
112 -  
113 -// $project_id = 626;  
114 -// $project_site = 'v6-m342g.globalso.site';  
115 -// $pages = [  
116 -// 'https://www.lecusostreetlight.com/project_catalog/project/',  
117 -// 'https://www.lecusostreetlight.com/project_catalog/project/page/2/',  
118 -// 'https://www.lecusostreetlight.com/project/560pcs-250w-smart-led-street-light-in-manila-city-philippines/',  
119 -// 'https://www.lecusostreetlight.com/project/3200pcs-8m-150w-solar-street-light-in-cebu-philippines/',  
120 -// 'https://lecusostreetlight.com/project/170pcs-100w-split-lithium-battery-solar-street-light-in-tanzania/',  
121 -// 'https://www.lecusostreetlight.com/project/250pcs-40w-sl-series-solar-street-light-in-kuwait/',  
122 -// 'https://www.lecusostreetlight.com/project/272pcs-8m-80w-solar-street-light-in-tanzania/',  
123 -// 'https://www.lecusostreetlight.com/project/185pcs-10m-120w-highway-solar-street-light-in-jordan/',  
124 -// 'https://www.lecusostreetlight.com/project/270pcs-9m-patterned-decorative-light-pole-with-150w-led-cobra-light-in-cambodia/',  
125 -// 'https://www.lecusostreetlight.com/project/48pcs-5m-24w-decorative-aluminium-pole-in-dubai-uae/',  
126 -// 'https://www.lecusostreetlight.com/project/105pcs-9m-100w-led-street-light-in-sri-lanka/',  
127 -// 'https://www.lecusostreetlight.com/project/45pcs-6m-hot-dip-galvanized-double-arm-street-light-pole-in-dubai-uae/',  
128 -// 'https://www.lecusostreetlight.com/project/356pcs-8m-100w-solar-street-light-in-ethiopia/',  
129 -// 'https://www.lecusostreetlight.com/project/52pcs-6m-30w-solar-led-street-light-with-gel-battery-in-poland/',  
130 -// 'https://www.lecusostreetlight.com/project/225pcs-6m-80w-solar-street-light-in-vietnam/',  
131 -// 'https://www.lecusostreetlight.com/project/450pcs-7m-60w-double-arm-solar-light-in-nigeria/',  
132 -// 'https://www.lecusostreetlight.com/project/100pcs-6m-50w-led-street-light-in-maldives/',  
133 -// 'https://www.lecusostreetlight.com/project/202pcs-6m-40w-3000k-solar-street-light-in-manila-philippines/',  
134 -// 'https://www.lecusostreetlight.com/project/245pcs-120w-smart-led-street-light-in-bangkok-thailand/',  
135 -// 'https://www.lecusostreetlight.com/project/170pcs-7m-50w-all-in-one-solar-light-in-davao-philippines/',  
136 -// 'https://www.lecusostreetlight.com/project/80pcs-9m-150w-led-street-light-in-iraq/',  
137 -// 'https://www.lecusostreetlight.com/project/252pcs-6m-40w-separate-solar-street-light-with-lithium-battery-in-thailand/',  
138 -// 'https://www.lecusostreetlight.com/project/198pcs-8m-80w-zc-series-all-in-two-solar-light-in-philippines/',  
139 -// 'https://www.lecusostreetlight.com/project/5m-30w-morden-led-garden-light-in-russian/',  
140 -// 'https://www.lecusostreetlight.com/project/135pcs-all-in-one-solar-street-light-in-uae-dubai-park/'  
141 -// ];  
142 -  
143 -// $project_id = 633;  
144 -// $project_site = 'v6-ke5nz.globalso.site';  
145 -// $pages = [  
146 -// 'https://www.mach-sales.com/case_catalog/cases/',  
147 -// 'https://www.mach-sales.com/case_catalog/cases/page/2/',  
148 -// 'https://www.mach-sales.com/case_catalog/cases/page/3/',  
149 -// 'https://www.mach-sales.com/case/growing-with-customers-from-small-motors-to-big-drivers/',  
150 -// 'https://www.mach-sales.com/case/growing-together-with-customers-the-journey-of-intelligent-manufacturing-in-a-modernized-factory/',  
151 -// 'https://www.mach-sales.com/case/%e3%80%90growing-together-with-customers%e3%80%91-the-evolutionary-journey-of-a-baking-brand/',  
152 -// 'https://www.mach-sales.com/case/sumecs-footprints-in-belt-and-road-singapore/',  
153 -// 'https://www.mach-sales.com/case/sumecs-footprints-in-belt-and-road-southeast-asia/',  
154 -// 'https://www.mach-sales.com/case/naming-and-delivery-of-a-new-ship-1/',  
155 -// 'https://www.mach-sales.com/case/a-newly-signed-contract-cable-manufacturing-equipment/',  
156 -// 'https://www.mach-sales.com/case/its-amazing-that-the-glass-can-also-save-energy/',  
157 -// 'https://www.mach-sales.com/case/%e3%80%90grow-with-customers%e3%80%91better-service-for-papermaking-equipment-procurement/',  
158 -// 'https://www.mach-sales.com/case/expansion-of-blower-equipment-contributes-to-environmental-protection/',  
159 -// 'https://www.mach-sales.com/case/new-ship-type-new-contract/',  
160 -// 'https://www.mach-sales.com/case/new-arrival-introducing-the-latest-ship-model/',  
161 -// 'https://www.mach-sales.com/case/another-contract-signed-in-the-philippines/',  
162 -// 'https://www.mach-sales.com/case/the-road-to-going-global-is-supported-by-sumec-services/',  
163 -// 'https://www.mach-sales.com/case/sumec-textile-launches-sun-protection-series-in-collaboration-with-skechers-kids/',  
164 -// 'https://www.mach-sales.com/case/footwear-manufacturing-equipment-new-contract/',  
165 -// 'https://www.mach-sales.com/case/sumec-energy-company-has-successfully-signed-a-photovoltaic-component-supply-agreement-with-wattkraft-a-german-engineering-system-integrator/',  
166 -// 'https://www.mach-sales.com/case/sumec-technology-company-successfully-signed-a-contract-for-the-equipment-related-to-the-high-strength-particleboard-project/',  
167 -// 'https://www.mach-sales.com/case/%e3%80%90growing-together-with-our-customers%e3%80%91together-on-the-road-to-transformation/',  
168 -// 'https://www.mach-sales.com/case/new-signing/',  
169 -// 'https://www.mach-sales.com/case/complete-the-last-mile-equipment-procurement-from-around-the-world/',  
170 -// 'https://www.mach-sales.com/case/science-and-technology-to-rejuvenate-agriculture-this-plant-factory-is-not-simple/',  
171 -// 'https://www.mach-sales.com/case/new-cooperation-high-end-equipment-going-global/',  
172 -// 'https://www.mach-sales.com/case/a-new-cooperation-with-an-annual-output-of-40000-tons/',  
173 -// 'https://www.mach-sales.com/case/a-new-contract-cooperation-upgrades/',  
174 -// 'https://www.mach-sales.com/case/annual-output-of-50000-tons-this-bopp-film-production-line-was-officially-put-into-operation/',  
175 -// 'https://www.mach-sales.com/case/this-is-sumec-speed/',  
176 -// 'https://www.mach-sales.com/case/the-first-order-of-a-new-semiconductor-brand-equipment-direct-sales-bear-fruit-again/',  
177 -// 'https://www.mach-sales.com/case/sumec-touch-world-celebrates-its-5th-anniversary-with-well-known-suppliers/',  
178 -// 'https://www.mach-sales.com/case/from-traditional-agency-to-digital-service/',  
179 -// 'https://www.mach-sales.com/case/cooperation-win-win-and-starting-anew-sumec-creates-a-new-sample-of-strong-enterprise-cooperation/'  
180 -// ];  
181 -  
182 - foreach ($pages as $page) {  
183 - $this->start_collect(urldecode($page), $project_id, $project_site);  
184 - }  
185 - }  
186 -  
187 - protected function start_collect($page, $project_id, $project_site)  
188 - {  
189 - $page_arr = parse_url($page);  
190 - $domain = $page_arr['host'];  
191 - $path = $page_arr['path'];  
192 -  
193 - //设置数据库  
194 - $project = ProjectServer::useProject($project_id);  
195 - if ($project) {  
196 - echo 'date:' . date('Y-m-d H:i:s') . ', project_id: ' . $project_id . ', page: ' . $page . ', collect start' . PHP_EOL;  
197 -  
198 - //获取站点原始域名信息  
199 - $old_info = UpdateOldInfo::getOldDomain($project_id, $domain);  
200 -  
201 - //采集html页面,下载资源到本地并替换  
202 - try {  
203 - $html = curl_c($page, false);  
204 - if ($html == '0') {  
205 - echo 'date:' . date('Y-m-d H:i:s') . ', project_id: ' . $project_id . ', page: ' . $page . ', error: no html' . PHP_EOL;  
206 - sleep(2);  
207 - return true;  
208 - }  
209 -  
210 - //如果有base64图片,先替换掉,再进行资源匹配  
211 - $new_html = $html;  
212 - preg_match_all("/data:([^;]*);base64,(.*)?\"/", $new_html, $result_img);  
213 - $img_base64 = $result_img[2] ?? [];  
214 - foreach ($img_base64 as $v64) {  
215 - $new_html = str_replace($v64, '', $new_html);  
216 - }  
217 -  
218 - //匹配资源链接  
219 - $source_list = $this->html_preg($new_html, $project_id, $domain, $old_info['web_url_domain'], $old_info['home_url']);  
220 -  
221 - //下载资源  
222 - if ($source_list) {  
223 - $html = $this->upload_source($html, $source_list, $project_id, $domain, $old_info['web_url_domain'], $old_info['home_url']);  
224 - }  
225 -  
226 - //替换域名  
227 - $html = str_replace($old_info['web_url_domain'], $project_site, $html);  
228 - $html = str_replace($old_info['home_url'], $project_site, $html);  
229 -  
230 - //暂时隐藏小语种  
231 -// $html = str_replace('<div class="change-language ensemble">', '<div class="change-language ensemble" style="display: none">', $html);  
232 -// $html = str_replace('<div class="language_more">', '<div class="language_more" style="display: none">', $html);  
233 -  
234 - //处理搜索  
235 - preg_match_all('/<form\s+[^>]*?action\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $html, $result_search);  
236 - $search = $result_search[2] ?? [];  
237 - foreach ($search as $vc) {  
238 - if((strpos($vc,'search.php') !== false) || (strpos($vc,'index.php') !== false)){  
239 - $html = str_replace($vc,'/search/',$html);  
240 - }  
241 - }  
242 -  
243 - //增加统计代码  
244 - $html = str_replace('</body>', '<script src="https://ecdn6.globalso.com/public/customerVisit.min.js\"></script></body>', $html);  
245 -  
246 - //html写入文件  
247 - $file_path = '/www/wwwroot/globalso-v6-c-glo/public/' . $project_site . $path;  
248 - if (!file_exists($file_path)) {  
249 - mkdir($file_path, 0777, true);  
250 - }  
251 -  
252 - file_put_contents($file_path . 'index.html', $html);  
253 - chmod($file_path . 'index.html', 0777);  
254 -  
255 - } catch (\Exception $e) {  
256 - echo 'date:' . date('Y-m-d H:i:s') . ', project_id: ' . $project_id . ', page: ' . $page . ', error: ' . $e->getMessage() . PHP_EOL;  
257 - sleep(2);  
258 - return true;  
259 - }  
260 -  
261 -  
262 - echo 'date:' . date('Y-m-d H:i:s') . ', project_id: ' . $project_id . ', page: ' . $page . ', collect end' . PHP_EOL;  
263 - } else {  
264 - echo 'date:' . date('Y-m-d H:i:s') . ', project_id: ' . $project_id . ', page: ' . $page . ', no project' . PHP_EOL;  
265 - }  
266 - //关闭数据库  
267 - DB::disconnect('custom_mysql');  
268 -  
269 - sleep(2);  
270 - return true;  
271 - }  
272 -  
273 - //正则匹配html资源  
274 - protected function html_preg($html, $project_id, $domain, $web_url_domain, $home_url)  
275 - {  
276 - $source = [];  
277 -  
278 - if (!$html) {  
279 - return $source;  
280 - }  
281 -  
282 - //image  
283 - preg_match_all('/<img\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $html, $result_img);  
284 - $img = $result_img[2] ?? [];  
285 - foreach ($img as $vi) {  
286 - $check_vi = $this->url_check($vi, $project_id, $domain, $web_url_domain, $home_url);  
287 - $check_vi && $source[] = $check_vi;  
288 - }  
289 -  
290 - //js  
291 - preg_match_all('/<script\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $html, $result_js);  
292 - $js = $result_js[2] ?? [];  
293 - foreach ($js as $vj) {  
294 - $check_vj = $this->url_check($vj, $project_id, $domain, $web_url_domain, $home_url);  
295 - $check_vj && $source[] = $check_vj;  
296 - }  
297 -  
298 - //video  
299 - preg_match_all('/<source\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $html, $result_video);  
300 - $video = $result_video[2] ?? [];  
301 - foreach ($video as $vv) {  
302 - $check_vv = $this->url_check($vv, $project_id, $domain, $web_url_domain, $home_url);  
303 - $check_vv && $source[] = $check_vv;  
304 - }  
305 -  
306 - //css  
307 - preg_match_all('/<link\s+[^>]*?href\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $html, $result_css);  
308 - $css = $result_css[2] ?? [];  
309 - foreach ($css as $vc) {  
310 - $check_vc = $this->url_check($vc, $project_id, $domain, $web_url_domain, $home_url);  
311 - $check_vc && $source[] = $check_vc;  
312 - }  
313 -  
314 - //css background  
315 - preg_match_all("/url\(['\"]?(\s*[^>]+?)['\"]?\)/i", $html, $result_css_b);  
316 - $css_b = $result_css_b[1] ?? [];  
317 - foreach ($css_b as $vc_b) {  
318 - $check_vc_b = $this->url_check($vc_b, $project_id, $domain, $web_url_domain, $home_url);  
319 - $check_vc_b && $source[] = $check_vc_b;  
320 - }  
321 -  
322 - //a标签下载资源  
323 - preg_match_all('/<a\s+[^>]*?href\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $html, $result_a);  
324 - $down = $result_a[2] ?? [];  
325 - foreach ($down as $vd) {  
326 - $check_vd = $this->url_check($vd, $project_id, $domain, $web_url_domain, $home_url);  
327 - $check_vd && $source[] = $check_vd;  
328 - }  
329 -  
330 - return $source;  
331 - }  
332 -  
333 - //判断资源是否需要下载  
334 - protected function url_check($url, $project_id, $domain, $web_url_domain, $home_url)  
335 - {  
336 - if ($url) {  
337 - $url = str_replace('&quot;', '', $url);  
338 - $arr = parse_url($url);  
339 - $scheme = $arr['scheme'] ?? '';  
340 - $host = $arr['host'] ?? '';  
341 - $path = $arr['path'] ?? '';  
342 - $query = $arr['query'] ?? '';  
343 -  
344 - $path_arr = explode('.', $path);  
345 - if (  
346 - (empty($scheme) || $scheme == 'https' || $scheme == 'http')  
347 - && (empty($host) || (strpos($web_url_domain, $host) !== false) || (strpos($home_url, $host) !== false))  
348 - && $path  
349 - && (substr($path, 0, 1) == '/')  
350 - && (strpos($path, '.') !== false)  
351 - && (!in_array(end($path_arr), ['html', 'php', 'com', 'xml']))  
352 - ) {  
353 - $source = CollectSource::where('project_id', $project_id)->where('origin', $url)->first();  
354 - if (!$source) {  
355 - return [  
356 - 'download' => true,  
357 - 'url' => $url,  
358 - 'url_complete' => ($scheme ?: 'https') . '://' . ($host ?: $domain) . $path . ($query ? '?' . $query : '')  
359 - ];  
360 - } else {  
361 - return [  
362 - 'download' => false,  
363 - 'url' => $url,  
364 - 'url_complete' => $source['target']  
365 - ];  
366 - }  
367 - } else {  
368 - return false;  
369 - }  
370 - } else {  
371 - return false;  
372 - }  
373 - }  
374 -  
375 - //下载并替换资源  
376 - protected function upload_source($html, $source, $project_id, $domain, $web_url_domain, $home_url)  
377 - {  
378 - foreach ($source as $vs) {  
379 -  
380 - if ($vs['download']) {  
381 - $new_source = CosService::uploadRemote($project_id, 'source', $vs['url_complete']);  
382 - if ($new_source) {  
383 - CollectSource::insert([  
384 - 'project_id' => $project_id,  
385 - 'origin' => $vs['url'],  
386 - 'target' => $new_source,  
387 - 'created_at' => date('Y-m-d H:i:s'),  
388 - 'updated_at' => date('Y-m-d H:i:s'),  
389 - ]);  
390 - $html = str_replace($vs['url'], getImageUrl($new_source), $html);  
391 -  
392 - if (substr($new_source, -3, 3) == 'css' || substr($new_source, -2, 2) == 'js') {  
393 -  
394 - $source_html = curl_c(getImageUrl($new_source), false);  
395 -  
396 - if (substr($new_source, -3, 3) == 'css') {  
397 - preg_match_all("/url\(['\"]?(\s*[^>]+?)['\"]?\)/i", $source_html, $result_source);  
398 - } else {  
399 - preg_match_all("/[large|thumb]+URL:['\"]+(\s*[^>]+?)['\"]+,/i", $source_html, $result_source);  
400 - }  
401 -  
402 - $js_css_source = $result_source[1] ?? [];  
403 - if ($js_css_source) {  
404 - foreach ($js_css_source as $vjs) {  
405 - $vjs_down = str_replace('&quot;', '', $vjs);  
406 - if (strpos($vjs_down, 'data:') !== false) {  
407 - //过滤二进制文件  
408 - continue;  
409 - }  
410 - if (strlen($vjs_down) > 255) {  
411 - //过滤太长文件  
412 - continue;  
413 - }  
414 -  
415 - $vjs_down_arr = parse_url($vjs_down);  
416 - $vjs_down_host = $vjs_down_arr['host'] ?? '';  
417 -  
418 - $cos = config('filesystems.disks.cos');  
419 - $cosCdn = $cos['cdn'];  
420 -  
421 - if ($vjs_down_host && $vjs_down_host == $cosCdn) {  
422 - //过滤已经下载的  
423 - continue;  
424 - }  
425 -  
426 - if (empty($vjs_down_host) && substr($vjs_down, 0, 1) != '/') {  
427 - //相对路径  
428 - $url_arr = explode('/', $vs['url']);  
429 - $url_arr[count($url_arr) - 1] = $vjs_down;  
430 - $vjs_down = implode('/', $url_arr);  
431 - }  
432 -  
433 - $vjs_result = $this->url_check($vjs_down, $project_id, $domain, $web_url_domain, $home_url);  
434 - if (!$vjs_result) {  
435 - continue;  
436 - }  
437 -  
438 - if ($vjs_result['download']) {  
439 - $new_vjs = CosService::uploadRemote($project_id, 'source', $vjs_result['url_complete']);  
440 - if ($new_vjs) {  
441 - CollectSource::insert([  
442 - 'project_id' => $project_id,  
443 - 'origin' => $vjs_result['url'],  
444 - 'target' => $new_vjs,  
445 - 'created_at' => date('Y-m-d H:i:s'),  
446 - 'updated_at' => date('Y-m-d H:i:s'),  
447 - ]);  
448 - $source_html = str_replace($vjs, getImageUrl($new_vjs), $source_html);  
449 - }  
450 - } else {  
451 - $source_html = str_replace($vjs, getImageUrl($vjs_result['url_complete']), $source_html);  
452 - }  
453 - }  
454 -  
455 - CosService::uploadRemote($project_id, 'source', $new_source, $new_source, $source_html);  
456 - }  
457 - }  
458 - }  
459 - } else {  
460 - $html = str_replace($vs['url'], getImageUrl($vs['url_complete']), $html);  
461 - }  
462 - }  
463 -  
464 - return $html;  
465 - }  
466 -}  
@@ -236,6 +236,8 @@ class ProjectUpdate extends Command @@ -236,6 +236,8 @@ class ProjectUpdate extends Command
236 if ($custom_types) { 236 if ($custom_types) {
237 $custom_model = new CustomModule(); 237 $custom_model = new CustomModule();
238 foreach ($custom_types as $v_custom) { 238 foreach ($custom_types as $v_custom) {
  239 + $log = UpdateLog::where('project_id', $project_id)->where('api_type', $v_custom)->first();
  240 + if (empty($log)) {
239 try { 241 try {
240 $custom_info = $custom_model->read(['route' => $v_custom]); 242 $custom_info = $custom_model->read(['route' => $v_custom]);
241 if (!$custom_info) { 243 if (!$custom_info) {
@@ -252,6 +254,7 @@ class ProjectUpdate extends Command @@ -252,6 +254,7 @@ class ProjectUpdate extends Command
252 } 254 }
253 } 255 }
254 } 256 }
  257 + }
255 } else { 258 } else {
256 return true; 259 return true;
257 } 260 }
@@ -10,11 +10,14 @@ @@ -10,11 +10,14 @@
10 namespace App\Console\Commands; 10 namespace App\Console\Commands;
11 11
12 use App\Helper\Arr; 12 use App\Helper\Arr;
  13 +use App\Models\CustomModule\CustomModuleCategory;
  14 +use App\Models\CustomModule\CustomModuleContent;
13 use App\Models\Product\CategoryRelated; 15 use App\Models\Product\CategoryRelated;
14 use App\Models\Product\Keyword; 16 use App\Models\Product\Keyword;
15 use App\Models\Product\Product; 17 use App\Models\Product\Product;
16 use App\Models\Project\Project; 18 use App\Models\Project\Project;
17 use App\Models\RouteMap\RouteMap; 19 use App\Models\RouteMap\RouteMap;
  20 +use App\Models\Template\BTemplate;
18 use App\Services\ProjectServer; 21 use App\Services\ProjectServer;
19 use Illuminate\Console\Command; 22 use Illuminate\Console\Command;
20 use Illuminate\Support\Facades\DB; 23 use Illuminate\Support\Facades\DB;
@@ -51,20 +54,37 @@ class UpdateRoute extends Command @@ -51,20 +54,37 @@ class UpdateRoute extends Command
51 */ 54 */
52 public function handle(){ 55 public function handle(){
53 $projectModel = new Project(); 56 $projectModel = new Project();
54 - $list = $projectModel->list(['id'=>209]); 57 + $list = $projectModel->list(['id'=>99]);
55 foreach ($list as $v){ 58 foreach ($list as $v){
56 echo date('Y-m-d H:i:s') . 'project_id:'.$v['id'] . PHP_EOL; 59 echo date('Y-m-d H:i:s') . 'project_id:'.$v['id'] . PHP_EOL;
57 ProjectServer::useProject($v['id']); 60 ProjectServer::useProject($v['id']);
58 // $this->getProduct(); 61 // $this->getProduct();
59 - $this->setProductKeyword(); 62 +// $this->setProductKeyword();
60 // $this->getRouteMap(); 63 // $this->getRouteMap();
61 // $this->getProductCategory(); 64 // $this->getProductCategory();
62 // $this->delRouteMap(); 65 // $this->delRouteMap();
  66 + $this->setCustomRoute($v['id']);
63 DB::disconnect('custom_mysql'); 67 DB::disconnect('custom_mysql');
64 } 68 }
65 echo date('Y-m-d H:i:s') . 'end' . PHP_EOL; 69 echo date('Y-m-d H:i:s') . 'end' . PHP_EOL;
66 } 70 }
67 71
  72 + public function setCustomRoute($project_id){
  73 +// $customModel = new CustomModuleContent();
  74 +// $list = $customModel->list();
  75 +// foreach ($list as $v){
  76 +// $route = RouteMap::setRoute($v['name'], RouteMap::SOURCE_MODULE, $v['id'], $project_id);
  77 +// $customModel->edit(['route'=>$route],['id'=>$v['id']]);
  78 +// }
  79 + $cateModel = new CustomModuleCategory();
  80 + $lists = $cateModel->list();
  81 + foreach ($lists as $v1){
  82 + $route = RouteMap::setRoute($v1['name'], RouteMap::SOURCE_MODULE_CATE, $v1['id'], $project_id);
  83 + $cateModel->edit(['route'=>$route],['id'=>$v1['id']]);
  84 +
  85 + }
  86 + }
  87 +
68 /** 88 /**
69 * @remark :写入 89 * @remark :写入
70 * @name :getProductKeyword 90 * @name :getProductKeyword
@@ -17,6 +17,7 @@ use Illuminate\Console\Command; @@ -17,6 +17,7 @@ use Illuminate\Console\Command;
17 use Illuminate\Support\Facades\Cache; 17 use Illuminate\Support\Facades\Cache;
18 use Illuminate\Support\Facades\DB; 18 use Illuminate\Support\Facades\DB;
19 use Illuminate\Support\Facades\Redis; 19 use Illuminate\Support\Facades\Redis;
  20 +use Illuminate\Support\Str;
20 21
21 /** 22 /**
22 * 初始化项目 23 * 初始化项目
@@ -380,7 +381,14 @@ class UpdateSeoTdk extends Command @@ -380,7 +381,14 @@ class UpdateSeoTdk extends Command
380 { 381 {
381 $text = Gpt::instance()->openai_chat_qqs($prompt); 382 $text = Gpt::instance()->openai_chat_qqs($prompt);
382 $text = Common::deal_keywords($text); 383 $text = Common::deal_keywords($text);
383 - return Common::deal_str($text); 384 + $text = Common::deal_str($text);
  385 +
  386 + //包含这写字 重新生成
  387 + if(Str::contains(Str::lower($text), ['[your brand]', '[brand name]'])){
  388 + return $this->ai_send($prompt);
  389 + }
  390 +
  391 + return $text;
384 } 392 }
385 393
386 /** 394 /**
@@ -285,8 +285,9 @@ class WebTraffic extends Command @@ -285,8 +285,9 @@ class WebTraffic extends Command
285 ->where('project_id', $project_id)->where('status', Category::STATUS_ACTIVE)->pluck('route','id')->toArray(); 285 ->where('project_id', $project_id)->where('status', Category::STATUS_ACTIVE)->pluck('route','id')->toArray();
286 286
287 //已发布单页面 287 //已发布单页面
288 - $data['urls_page'] = DB::connection('custom_mysql')->table('gl_web_custom_template')  
289 - ->where('project_id', $project_id)->where('status', BCustomTemplate::STATUS_ACTIVE)->pluck('url', 'id')->toArray(); 288 + $data['urls_page'] = [];
  289 +// $data['urls_page'] = DB::connection('custom_mysql')->table('gl_web_custom_template')
  290 +// ->where('project_id', $project_id)->where('url', '<>', '404')->where('status', BCustomTemplate::STATUS_ACTIVE)->pluck('url', 'id')->toArray();
290 291
291 //已发布产品详情页 292 //已发布产品详情页
292 $data['urls_details'] = DB::connection('custom_mysql')->table('gl_product') 293 $data['urls_details'] = DB::connection('custom_mysql')->table('gl_product')
@@ -16,7 +16,7 @@ class Kernel extends ConsoleKernel @@ -16,7 +16,7 @@ class Kernel extends ConsoleKernel
16 protected function schedule(Schedule $schedule) 16 protected function schedule(Schedule $schedule)
17 { 17 {
18 // $schedule->command('inspire')->hourly(); 18 // $schedule->command('inspire')->hourly();
19 - $schedule->command('remain_day')->dailyAt('03:00')->withoutOverlapping(1); // 项目剩余服务时长 19 + $schedule->command('remain_day')->dailyAt('08:00')->withoutOverlapping(1); // 项目剩余服务时长
20 $schedule->command('rank_data_task')->everyMinute()->withoutOverlapping(1); // 排名数据更新任务 20 $schedule->command('rank_data_task')->everyMinute()->withoutOverlapping(1); // 排名数据更新任务
21 $schedule->command('rank_data')->dailyAt('07:00')->withoutOverlapping(1); // 排名数据,每天凌晨执行一次 21 $schedule->command('rank_data')->dailyAt('07:00')->withoutOverlapping(1); // 排名数据,每天凌晨执行一次
22 $schedule->command('rank_data_speed')->dailyAt('01:00')->withoutOverlapping(1); // 排名数据-测速数据,每周一凌晨执行一次 22 $schedule->command('rank_data_speed')->dailyAt('01:00')->withoutOverlapping(1); // 排名数据-测速数据,每周一凌晨执行一次
@@ -65,6 +65,7 @@ class OnlineController extends BaseController @@ -65,6 +65,7 @@ class OnlineController extends BaseController
65 'gl_project.channel AS channel', 65 'gl_project.channel AS channel',
66 'gl_project.type AS type', 66 'gl_project.type AS type',
67 'gl_project.created_at AS created_at', 67 'gl_project.created_at AS created_at',
  68 + 'gl_project.is_upgrade AS is_upgrade',
68 'gl_project_online_check.id AS online_check_id', 69 'gl_project_online_check.id AS online_check_id',
69 'gl_project_online_check.question AS question', 70 'gl_project_online_check.question AS question',
70 'gl_project_online_check.optimist_status AS optimist_status', 71 'gl_project_online_check.optimist_status AS optimist_status',
@@ -145,6 +146,9 @@ class OnlineController extends BaseController @@ -145,6 +146,9 @@ class OnlineController extends BaseController
145 if(isset($this->map['all_status'])){ 146 if(isset($this->map['all_status'])){
146 $query->where('gl_project_online_check.qa_status',$this->map['all_status']); 147 $query->where('gl_project_online_check.qa_status',$this->map['all_status']);
147 } 148 }
  149 + if(isset($this->map['is_upgrade'])){
  150 + $query->where('gl_project.is_upgrade',$this->map['is_upgrade']);
  151 + }
148 if(isset($this->map['optimist_status'])){ 152 if(isset($this->map['optimist_status'])){
149 $query->where('gl_project_online_check.optimist_status',$this->map['optimist_status']); 153 $query->where('gl_project_online_check.optimist_status',$this->map['optimist_status']);
150 } 154 }
@@ -133,6 +133,7 @@ class OptimizeController extends BaseController @@ -133,6 +133,7 @@ class OptimizeController extends BaseController
133 'gl_project.robots AS robots', 133 'gl_project.robots AS robots',
134 'gl_project.is_translate AS is_translate', 134 'gl_project.is_translate AS is_translate',
135 'gl_project.is_translate_tag AS is_translate_tag', 135 'gl_project.is_translate_tag AS is_translate_tag',
  136 + 'gl_project.is_upgrade AS is_upgrade',
136 'gl_project_online_check.id AS online_check_id', 137 'gl_project_online_check.id AS online_check_id',
137 'gl_project_online_check.question AS question', 138 'gl_project_online_check.question AS question',
138 'gl_project_online_check.go_question AS go_question', 139 'gl_project_online_check.go_question AS go_question',
@@ -191,6 +192,9 @@ class OptimizeController extends BaseController @@ -191,6 +192,9 @@ class OptimizeController extends BaseController
191 if(isset($this->map['optimize_manager_mid']) && !empty($this->map['optimize_manager_mid'])){ 192 if(isset($this->map['optimize_manager_mid']) && !empty($this->map['optimize_manager_mid'])){
192 $query = $query->where('gl_project_deploy_optimize.manager_mid','like','%'.$this->map['optimize_manager_mid'].'%'); 193 $query = $query->where('gl_project_deploy_optimize.manager_mid','like','%'.$this->map['optimize_manager_mid'].'%');
193 } 194 }
  195 + if(isset($this->map['is_upgrade']) && !empty($this->map['is_upgrade'])){
  196 + $query = $query->where('gl_project.is_upgrade',$this->map['is_upgrade']);
  197 + }
194 if(isset($this->map['optimize_tech_mid']) && !empty($this->map['optimize_tech_mid'])){ 198 if(isset($this->map['optimize_tech_mid']) && !empty($this->map['optimize_tech_mid'])){
195 $query = $query->where('gl_project_deploy_optimize.tech_mid','like','%'.$this->map['optimize_tech_mid'].'%'); 199 $query = $query->where('gl_project_deploy_optimize.tech_mid','like','%'.$this->map['optimize_tech_mid'].'%');
196 } 200 }
@@ -178,6 +178,7 @@ class ProjectController extends BaseController @@ -178,6 +178,7 @@ class ProjectController extends BaseController
178 'gl_project_deploy_optimize.domain AS domain', 178 'gl_project_deploy_optimize.domain AS domain',
179 'gl_project_deploy_optimize.quality_mid AS quality_mid', 179 'gl_project_deploy_optimize.quality_mid AS quality_mid',
180 'gl_project_deploy_optimize.design_mid AS design_mid', 180 'gl_project_deploy_optimize.design_mid AS design_mid',
  181 + 'gl_project_deploy_optimize.api_no AS api_no',
181 ]; 182 ];
182 return $select; 183 return $select;
183 } 184 }
@@ -240,7 +240,7 @@ class ProductController extends BaseController @@ -240,7 +240,7 @@ class ProductController extends BaseController
240 } 240 }
241 $v['status_text'] = Product::statusMap()[$v['status']] ?? ''; 241 $v['status_text'] = Product::statusMap()[$v['status']] ?? '';
242 //获取当前用户选择的模版 242 //获取当前用户选择的模版
243 - $v['video'] = json_decode($v['video']); 243 + $v['video'] = json_decode($v['video'] ?? '');
244 $template_id = $this->getTemplateId(BTemplate::SOURCE_PRODUCT,BTemplate::IS_DETAIL); 244 $template_id = $this->getTemplateId(BTemplate::SOURCE_PRODUCT,BTemplate::IS_DETAIL);
245 $v['is_renovation'] = $this->getIsRenovation(BTemplate::SOURCE_PRODUCT,BTemplate::IS_DETAIL,$template_id,$v['id']); 245 $v['is_renovation'] = $this->getIsRenovation(BTemplate::SOURCE_PRODUCT,BTemplate::IS_DETAIL,$template_id,$v['id']);
246 $v['url'] = $this->user['domain'].$v['route']; 246 $v['url'] = $this->user['domain'].$v['route'];
@@ -421,4 +421,16 @@ class ProductController extends BaseController @@ -421,4 +421,16 @@ class ProductController extends BaseController
421 $logic->setSort(); 421 $logic->setSort();
422 $this->response('success'); 422 $this->response('success');
423 } 423 }
  424 +
  425 + /**
  426 + * @remark :批量更新排序
  427 + * @name :allSort
  428 + * @author :lyh
  429 + * @method :post
  430 + * @time :2024/1/10 15:34
  431 + */
  432 + public function allSort(ProductLogic $logic){
  433 + $logic->setAllSort();
  434 + $this->response('success');
  435 + }
424 } 436 }
@@ -66,43 +66,118 @@ class BTemplateLogic extends BaseLogic @@ -66,43 +66,118 @@ class BTemplateLogic extends BaseLogic
66 public function getTemplateHtml(){ 66 public function getTemplateHtml(){
67 $is_custom = $this->param['is_custom'] ?? 0;//是否为扩展模块 67 $is_custom = $this->param['is_custom'] ?? 0;//是否为扩展模块
68 $is_list = $this->param['is_list'] ?? 0;//是否为列表页 68 $is_list = $this->param['is_list'] ?? 0;//是否为列表页
69 - $template_id = $this->getSettingTemplate($this->param['source'],$is_list);//设置的模版id  
70 - $templateInfo = $this->model->read([  
71 - 'template_id'=>$template_id, 'source'=>$this->param['source'],  
72 - 'project_id'=>$this->user['project_id'], 'source_id'=>$this->param['source_id'],  
73 - 'is_custom'=>$is_custom, 'is_list'=>$is_list  
74 - ]); 69 + $template_id = $this->getSettingTemplate($this->param['source'],$is_list,$is_custom);//设置的模版id
  70 + $templateInfo = $this->webTemplateInfo($this->param['source'],$this->param['source_id'],$template_id,$is_custom,$is_list);
75 if($templateInfo === false){ 71 if($templateInfo === false){
76 if($this->user['is_customized'] == BTemplate::IS_VISUALIZATION){//处理定制页面初始数据 72 if($this->user['is_customized'] == BTemplate::IS_VISUALIZATION){//处理定制页面初始数据
77 - $html = $this->isCustomizedPage($this->param['source'],$is_list);//获取定制页面的html  
78 - if(!empty($html)){  
79 - return $this->success(['html'=>$html,'template_id'=>$template_id]); 73 + $html = $this->customizedReturnHtml($this->param['source'],$template_id,$is_custom,$is_list);
  74 + if($html !== false){
  75 + return $this->success($html);
80 } 76 }
81 } 77 }
  78 + //非定制初始中间部分
82 $mainInfo = $this->getMAinHtml($this->param['source'],$is_custom,$is_list);//获取中间部分代码 79 $mainInfo = $this->getMAinHtml($this->param['source'],$is_custom,$is_list);//获取中间部分代码
83 }else{ 80 }else{
84 if($templateInfo['type'] == BTemplate::ALL_HTML){//返回整个html代码 81 if($templateInfo['type'] == BTemplate::ALL_HTML){//返回整个html代码
85 - $type = $this->getCustomizedType($this->param['source'],$is_list);  
86 - $commonInfo = $this->getCustomizedCommonHtml($type);//获取定制头部  
87 - $html = $this->handleAllHtml($commonInfo,$templateInfo['html']);  
88 - return $this->success(['html'=>$html,'template_id'=>$template_id,'id'=>$templateInfo['id'],'updated_at'=>$templateInfo['updated_at']]); 82 + return $this->getCustomizeAllHtml($templateInfo,$template_id,$is_custom,$is_list);
89 } 83 }
90 $mainInfo = ['main_html'=>$templateInfo['main_html'], 'main_css'=>$templateInfo['main_css']]; 84 $mainInfo = ['main_html'=>$templateInfo['main_html'], 'main_css'=>$templateInfo['main_css']];
91 } 85 }
92 - $commonInfo = $this->getCommonHtml($this->param['source'],$is_list,$template_id,$is_custom);//获取定制头部  
93 - $html = $commonInfo['head_css'].$mainInfo['main_css'].$commonInfo['footer_css'].$commonInfo['other'].  
94 - $commonInfo['head_html'].$mainInfo['main_html'].$commonInfo['footer_html']; 86 + $commonInfo = $this->getCommonHtml($this->param['source'],$is_list,$template_id,$is_custom);//获取非定制头部
  87 + $html = $commonInfo['head_css'].$mainInfo['main_css'].$commonInfo['footer_css'].$commonInfo['other']. $commonInfo['head_html'].$mainInfo['main_html'].$commonInfo['footer_html'];
95 $html = $this->getHeadFooter($html); 88 $html = $this->getHeadFooter($html);
96 $result = ['html'=>$html,'template_id'=>$template_id]; 89 $result = ['html'=>$html,'template_id'=>$template_id];
97 - if($templateInfo !== false)  
98 - {  
99 - $result['id'] = $templateInfo['id'];  
100 - $result['updated_at'] = $templateInfo['updated_at'];  
101 - } 90 + if($templateInfo !== false) {$result['id'] = $templateInfo['id'];$result['updated_at'] = $templateInfo['updated_at'];}
102 return $this->success($result); 91 return $this->success($result);
103 } 92 }
104 93
105 /** 94 /**
  95 + * @remark :获取整个html代码
  96 + * @name :getCustomizeAllHtml
  97 + * @author :lyh
  98 + * @method :post
  99 + * @time :2024/1/10 14:15
  100 + */
  101 + public function getCustomizeAllHtml($templateInfo,$template_id,$is_custom,$is_list){
  102 + if($is_custom == BTemplate::IS_CUSTOM){
  103 + $commonInfo = $this->getCustomizedCommonHtml($this->param['source'],$is_custom,$is_list);//获取定制头部
  104 + $html = $this->handleAllHtml($commonInfo,$templateInfo['html']);
  105 + }else{
  106 + $type = $this->getCustomizedType($this->param['source'],$is_list);
  107 + $commonInfo = $this->getCustomizedCommonHtml($type,$is_custom,$is_list);//获取定制头部
  108 + $html = $this->handleAllHtml($commonInfo,$templateInfo['html']);
  109 + }
  110 + return $this->success(['html'=>$html,'template_id'=>$template_id,'id'=>$templateInfo['id'],'updated_at'=>$templateInfo['updated_at']]);
  111 + }
  112 +
  113 + /**
  114 + * @remark :获取装修详情
  115 + * @name :webTemplateInfo
  116 + * @author :lyh
  117 + * @method :post
  118 + * @time :2024/1/10 13:43
  119 + */
  120 + public function webTemplateInfo($source,$source_id,$template_id,$is_custom,$is_list){
  121 + $templateInfo = $this->model->read([
  122 + 'template_id'=>$template_id, 'source'=>$source,
  123 + 'project_id'=>$this->user['project_id'], 'source_id'=>$source_id,
  124 + 'is_custom'=>$is_custom, 'is_list'=>$is_list
  125 + ]);
  126 + return $this->success($templateInfo);
  127 + }
  128 +
  129 + /**
  130 + * @remark :定制页面获取html
  131 + * @name :customizedReturnHtml
  132 + * @author :lyh
  133 + * @method :post
  134 + * @time :2024/1/10 13:46
  135 + */
  136 + public function customizedReturnHtml($source,$template_id,$is_custom,$is_list){
  137 + //TODO::扩展模块定制单独处理
  138 + if($is_custom == BTemplate::IS_CUSTOM){
  139 + $customModuleModel = new CustomModule();
  140 + $info = $customModuleModel->read(['id'=>$source]);
  141 + if($info === false){
  142 + $this->fail('当前扩展模块不存在或已被删除');
  143 + }
  144 + //扩展模块定制
  145 + if($info['list_customized'] == BTemplate::IS_VISUALIZATION || $info['detail_customized'] == BTemplate::IS_VISUALIZATION){
  146 + $html = $this->customModuleCustomizeHtml($source,$is_list,$is_custom);
  147 + return $this->success(['html'=>$html,'template_id'=>$template_id]);
  148 + }
  149 + return false;
  150 + }
  151 + //TODO::默认模块定制
  152 + $html = $this->isCustomizedPage($source,$is_list);//获取定制页面的html
  153 + if(!empty($html)){
  154 + return $this->success(['html'=>$html,'template_id'=>$template_id]);
  155 + }
  156 + return false;
  157 + }
  158 +
  159 + /**
  160 + * @remark :扩展模块定制html
  161 + * @name :customModuleInfo
  162 + * @author :lyh
  163 + * @method :post
  164 + * @time :2024/1/10 9:20
  165 + */
  166 + public function customModuleCustomizeHtml($source,$is_list,$is_custom){
  167 + $bTemplateMainModel = new BTemplateMain();
  168 + //TODO::获取初始代码
  169 + $customHtmlInfo = $bTemplateMainModel->read(['type'=>$source,'is_list'=>$is_list,'is_custom'=>$is_custom]);
  170 + if($customHtmlInfo === false){
  171 + $this->fail('定制页面,请先上传代码块');
  172 + }
  173 + $commonInfo = $this->getCustomizedCommonHtml($source,$is_custom,$is_list);//获取定制头部
  174 + if($commonInfo !== false){
  175 + $customHtmlInfo['main_html'] = $this->handleAllHtml($commonInfo,$customHtmlInfo['main_html']);
  176 + }
  177 + return $customHtmlInfo['main_html'];
  178 + }
  179 +
  180 + /**
106 * @remark :获取中间部分的html 181 * @remark :获取中间部分的html
107 * @name :getMAinHtml 182 * @name :getMAinHtml
108 * @author :lyh 183 * @author :lyh
@@ -163,7 +238,7 @@ class BTemplateLogic extends BaseLogic @@ -163,7 +238,7 @@ class BTemplateLogic extends BaseLogic
163 * @method :post 238 * @method :post
164 * @time :2023/12/13 10:55 239 * @time :2023/12/13 10:55
165 */ 240 */
166 - public function isCustomizedPage($source,$is_list) 241 + public function isCustomizedPage($source,$is_list,$is_custom)
167 { 242 {
168 $type = $this->getCustomizedType($source, $is_list);//获取定制界面类型 243 $type = $this->getCustomizedType($source, $is_list);//获取定制界面类型
169 //查看当前页面是否定制,是否开启可视化 244 //查看当前页面是否定制,是否开启可视化
@@ -171,17 +246,17 @@ class BTemplateLogic extends BaseLogic @@ -171,17 +246,17 @@ class BTemplateLogic extends BaseLogic
171 if (in_array($type, $page_array)) {//是定制界面 246 if (in_array($type, $page_array)) {//是定制界面
172 //TODO::获取初始代码 247 //TODO::获取初始代码
173 $bTemplateMainModel = new BTemplateMain(); 248 $bTemplateMainModel = new BTemplateMain();
174 - $customHtmlInfo = $bTemplateMainModel->read(['type'=>$source,'is_list'=>$is_list]); 249 + $customHtmlInfo = $bTemplateMainModel->read(['type'=>$source,'is_custom'=>$is_custom,'is_list'=>$is_list]);
175 if($customHtmlInfo === false){ 250 if($customHtmlInfo === false){
176 $this->fail('定制页面,请先上传代码块'); 251 $this->fail('定制页面,请先上传代码块');
177 } 252 }
178 - $commonInfo = $this->getCustomizedCommonHtml($type);//获取定制头部 253 + $commonInfo = $this->getCustomizedCommonHtml($type,$is_custom,$is_list);//获取定制头部
179 if($commonInfo !== false){ 254 if($commonInfo !== false){
180 $customHtmlInfo['main_html'] = $this->handleAllHtml($commonInfo,$customHtmlInfo['main_html']); 255 $customHtmlInfo['main_html'] = $this->handleAllHtml($commonInfo,$customHtmlInfo['main_html']);
181 } 256 }
182 return $customHtmlInfo['main_html']; 257 return $customHtmlInfo['main_html'];
183 } 258 }
184 - return []; 259 + return false;
185 } 260 }
186 261
187 /** 262 /**
@@ -191,11 +266,13 @@ class BTemplateLogic extends BaseLogic @@ -191,11 +266,13 @@ class BTemplateLogic extends BaseLogic
191 * @method :post 266 * @method :post
192 * @time :2023/12/29 13:13 267 * @time :2023/12/29 13:13
193 */ 268 */
194 - public function getCustomizedCommonHtml($type){ 269 + public function getCustomizedCommonHtml($type,$is_custom = 0,$is_list = 0){
195 $data = [ 270 $data = [
196 'template_id' => 0, 271 'template_id' => 0,
197 'project_id' => $this->user['project_id'], 272 'project_id' => $this->user['project_id'],
198 - 'type'=>$type 273 + 'type'=>$type,
  274 + 'is_custom'=>$is_custom,
  275 + 'is_list'=>$is_list
199 ]; 276 ];
200 $commonTemplateModel = new BTemplateCommon(); 277 $commonTemplateModel = new BTemplateCommon();
201 return $commonTemplateModel->read($data); 278 return $commonTemplateModel->read($data);
@@ -241,9 +318,19 @@ class BTemplateLogic extends BaseLogic @@ -241,9 +318,19 @@ class BTemplateLogic extends BaseLogic
241 * @method :post 318 * @method :post
242 * @time :2023/12/13 10:48 319 * @time :2023/12/13 10:48
243 */ 320 */
244 - public function getSettingTemplate($source,$is_list){ 321 + public function getSettingTemplate($source,$is_list,$is_custom){
245 $template_id = 0; 322 $template_id = 0;
246 if($this->user['is_customized'] == BTemplate::IS_VISUALIZATION) {//定制项目 323 if($this->user['is_customized'] == BTemplate::IS_VISUALIZATION) {//定制项目
  324 + if($is_custom == BTemplate::IS_CUSTOM){
  325 + $customModuleModel = new CustomModule();
  326 + $info = $customModuleModel->read(['id'=>$source]);
  327 + if($info === false){
  328 + $this->fail('当前扩展模块不存在或已被删除');
  329 + }
  330 + if($info['list_customized'] == BTemplate::IS_VISUALIZATION || $info['detail_customized'] == BTemplate::IS_VISUALIZATION){
  331 + return $this->success($template_id);
  332 + }
  333 + }else{
247 $type = $this->getCustomizedType($source, $is_list);//获取定制界面类型 334 $type = $this->getCustomizedType($source, $is_list);//获取定制界面类型
248 //查看当前页面是否定制,是否开启可视化 335 //查看当前页面是否定制,是否开启可视化
249 $page_array = (array)$this->user['is_visualization']->page_array;//获取所有定制界面 336 $page_array = (array)$this->user['is_visualization']->page_array;//获取所有定制界面
@@ -251,6 +338,7 @@ class BTemplateLogic extends BaseLogic @@ -251,6 +338,7 @@ class BTemplateLogic extends BaseLogic
251 return $this->success($template_id); 338 return $this->success($template_id);
252 } 339 }
253 } 340 }
  341 + }
254 $bSettingModel = new Setting(); 342 $bSettingModel = new Setting();
255 $info = $bSettingModel->read(['project_id'=>$this->user['project_id']]); 343 $info = $bSettingModel->read(['project_id'=>$this->user['project_id']]);
256 if($info === false){ 344 if($info === false){
@@ -272,7 +360,8 @@ class BTemplateLogic extends BaseLogic @@ -272,7 +360,8 @@ class BTemplateLogic extends BaseLogic
272 $data = [ 360 $data = [
273 'template_id' => $template_id, 361 'template_id' => $template_id,
274 'project_id' => $this->user['project_id'], 362 'project_id' => $this->user['project_id'],
275 - 'type'=>$type 363 + 'type'=>$type,
  364 + 'is_custom'=>$is_custom,
276 ]; 365 ];
277 $commonTemplateModel = new BTemplateCommon(); 366 $commonTemplateModel = new BTemplateCommon();
278 $commonInfo = $commonTemplateModel->read($data); 367 $commonInfo = $commonTemplateModel->read($data);
@@ -294,16 +383,10 @@ class BTemplateLogic extends BaseLogic @@ -294,16 +383,10 @@ class BTemplateLogic extends BaseLogic
294 * @time :2023/6/29 11:05 383 * @time :2023/6/29 11:05
295 */ 384 */
296 public function templateSave(){ 385 public function templateSave(){
297 - //演示项目不允许修改 386 + //TODO::演示项目不允许修改
298 $this->showProjectNoEdit($this->param['source']); 387 $this->showProjectNoEdit($this->param['source']);
299 $this->param = $this->handleDefaultString($this->param);//设置默认数据 388 $this->param = $this->handleDefaultString($this->param);//设置默认数据
300 - $templateInfo = $this->model->read([  
301 - 'template_id'=>$this->param['template_id'],  
302 - 'source'=>$this->param['source'],  
303 - 'source_id'=>$this->param['source_id'],  
304 - 'is_custom'=>$this->param['is_custom'],  
305 - 'is_list'=>$this->param['is_list']  
306 - ]); 389 + $templateInfo = $this->webTemplateInfo($this->param['source'],$this->param['source_id'],$this->param['template_id'],$this->param['is_custom'],$this->param['is_list']);
307 if($templateInfo === false){//执行新增 390 if($templateInfo === false){//执行新增
308 $data = [ 391 $data = [
309 'source'=>$this->param['source'], 'source_id'=>$this->param['source_id'],'type'=>BTemplate::PAGE_HTML, 392 'source'=>$this->param['source'], 'source_id'=>$this->param['source_id'],'type'=>BTemplate::PAGE_HTML,
@@ -311,7 +394,7 @@ class BTemplateLogic extends BaseLogic @@ -311,7 +394,7 @@ class BTemplateLogic extends BaseLogic
311 'section_list_id'=>$this->param['section_list_id'],'is_custom'=>$this->param['is_custom'], 394 'section_list_id'=>$this->param['section_list_id'],'is_custom'=>$this->param['is_custom'],
312 'is_list'=>$this->param['is_list'] 395 'is_list'=>$this->param['is_list']
313 ]; 396 ];
314 - $data = $this->handleVisualizationParam($this->param['html'],$this->param['source'],$this->param['is_list'],$data); 397 + $data = $this->handleVisualizationParam($this->param['html'],$this->param['source'],$this->param['is_list'],$this->param['is_custom'],$data);
315 $this->model->add($data); 398 $this->model->add($data);
316 }else{//执行编辑 399 }else{//执行编辑
317 $condition = [ 400 $condition = [
@@ -322,7 +405,7 @@ class BTemplateLogic extends BaseLogic @@ -322,7 +405,7 @@ class BTemplateLogic extends BaseLogic
322 $data = [ 405 $data = [
323 'section_list_id'=>$this->param['section_list_id'] 406 'section_list_id'=>$this->param['section_list_id']
324 ]; 407 ];
325 - $data = $this->handleVisualizationParam($this->param['html'],$this->param['source'],$this->param['is_list'],$data); 408 + $data = $this->handleVisualizationParam($this->param['html'],$this->param['source'],$this->param['is_list'],$this->param['is_custom'],$data);
326 $this->model->edit($data,$condition); 409 $this->model->edit($data,$condition);
327 } 410 }
328 //更新头部信息 411 //更新头部信息
@@ -355,7 +438,7 @@ class BTemplateLogic extends BaseLogic @@ -355,7 +438,7 @@ class BTemplateLogic extends BaseLogic
355 * @method :post 438 * @method :post
356 * @time :2023/12/15 10:59 439 * @time :2023/12/15 10:59
357 */ 440 */
358 - public function handleVisualizationParam($html,$source, $is_list,$data){ 441 + public function handleVisualizationParam($html,$source, $is_list,$is_custom,$data){
359 if($this->user['is_customized'] == BTemplate::IS_VISUALIZATION){//定制项目 442 if($this->user['is_customized'] == BTemplate::IS_VISUALIZATION){//定制项目
360 $type = $this->getCustomizedType($source, $is_list);//获取定制界面类型 443 $type = $this->getCustomizedType($source, $is_list);//获取定制界面类型
361 //查看当前页面是否定制,是否开启可视化 444 //查看当前页面是否定制,是否开启可视化
@@ -364,6 +447,19 @@ class BTemplateLogic extends BaseLogic @@ -364,6 +447,19 @@ class BTemplateLogic extends BaseLogic
364 $data['html'] = $html; 447 $data['html'] = $html;
365 $data['type'] = BTemplate::ALL_HTML; 448 $data['type'] = BTemplate::ALL_HTML;
366 }else{ 449 }else{
  450 + //TODO::扩展模块定制单独处理
  451 + if($is_custom == BTemplate::IS_CUSTOM){
  452 + $customModuleModel = new CustomModule();
  453 + $info = $customModuleModel->read(['id'=>$source]);
  454 + if($info === false){
  455 + $this->fail('当前扩展模块不存在或已被删除');
  456 + }
  457 + //todo::扩展模块(列表页/详情页)定制
  458 + if($info['list_customized'] == BTemplate::IS_VISUALIZATION || $info['detail_customized'] == BTemplate::IS_VISUALIZATION) {
  459 + $data['html'] = $html;
  460 + $data['type'] = BTemplate::ALL_HTML;
  461 + }
  462 + }
367 $mainInfo = $this->handleTemplateHtml($html); 463 $mainInfo = $this->handleTemplateHtml($html);
368 $data['main_html'] = $mainInfo['main_html']; 464 $data['main_html'] = $mainInfo['main_html'];
369 $data['main_css'] = $mainInfo['main_css']; 465 $data['main_css'] = $mainInfo['main_css'];
@@ -376,7 +472,6 @@ class BTemplateLogic extends BaseLogic @@ -376,7 +472,6 @@ class BTemplateLogic extends BaseLogic
376 return $data; 472 return $data;
377 } 473 }
378 474
379 -  
380 /** 475 /**
381 * @remark :保存公共头部底部 476 * @remark :保存公共头部底部
382 * @name :saveCommonHtml 477 * @name :saveCommonHtml
@@ -385,12 +480,20 @@ class BTemplateLogic extends BaseLogic @@ -385,12 +480,20 @@ class BTemplateLogic extends BaseLogic
385 * @time :2023/12/13 17:05 480 * @time :2023/12/13 17:05
386 */ 481 */
387 public function saveCommonHtml($html,$source,$is_list,$template_id,$is_custom){ 482 public function saveCommonHtml($html,$source,$is_list,$template_id,$is_custom){
  483 + //TODO::定制扩展模块单独处理
  484 + if($is_custom == BTemplate::IS_CUSTOM){
  485 + $code = $this->saveCustomModuleCommonHtml($html,$source,$is_custom,$is_list,$template_id);
  486 + if($code === false){
  487 + return $this->success();
  488 + }
  489 + }
  490 + //其他情况
388 $type = $this->getType($source,$is_list,$is_custom);//获取头部类型1-9(首页到自定义页面) 491 $type = $this->getType($source,$is_list,$is_custom);//获取头部类型1-9(首页到自定义页面)
389 if($template_id == 0){//定制页面默认为独立头部 492 if($template_id == 0){//定制页面默认为独立头部
390 $type = $this->getCustomizedType($source,$is_list);//定制默认独立头部 493 $type = $this->getCustomizedType($source,$is_list);//定制默认独立头部
391 } 494 }
392 $templateCommonModel = new BTemplateCommon(); 495 $templateCommonModel = new BTemplateCommon();
393 - $commonInfo = $templateCommonModel->read(['template_id'=>$template_id,'project_id'=>$this->user['project_id'],'type'=>$type]);//查看当前头部是否存在 496 + $commonInfo = $templateCommonModel->read(['template_id'=>$template_id,'project_id'=>$this->user['project_id'],'type'=>$type,'is_custom'=>0]);//查看当前头部是否存在
394 $handleInfo = $this->handleCommonParam($html); 497 $handleInfo = $this->handleCommonParam($html);
395 if($commonInfo === false){ 498 if($commonInfo === false){
396 $data = [ 499 $data = [
@@ -411,6 +514,45 @@ class BTemplateLogic extends BaseLogic @@ -411,6 +514,45 @@ class BTemplateLogic extends BaseLogic
411 } 514 }
412 515
413 /** 516 /**
  517 + * @remark :扩展模块定制保存头部处理
  518 + * @name :saveCustomModuleCommonHtml
  519 + * @author :lyh
  520 + * @method :post
  521 + * @time :2024/1/10 11:33
  522 + */
  523 + public function saveCustomModuleCommonHtml($html,$source,$is_custom,$is_list,$template_id){
  524 + $customModuleModel = new CustomModule();
  525 + $info = $customModuleModel->read(['id'=>$source]);
  526 + if($info === false){
  527 + $this->fail('当前扩展模块不存在或已被删除');
  528 + }
  529 + //todo::扩展模块(列表页/详情页)定制
  530 + if($info['list_customized'] == BTemplate::IS_VISUALIZATION || $info['detail_customized'] == BTemplate::IS_VISUALIZATION) {
  531 + $data = ['type'=>$source,'is_custom'=>$is_custom,'is_list'=>$is_list,'template_id'=>$template_id];
  532 + $templateCommonModel = new BTemplateCommon();
  533 + $commonInfo = $templateCommonModel->read($data);//查看当前头部是否存在
  534 + $handleInfo = $this->handleCommonParam($html);
  535 + if($commonInfo === false){
  536 + $data = [
  537 + 'head_html'=>$handleInfo['head_html'], 'head_css'=>$handleInfo['head_css'],'other'=>$handleInfo['other'],
  538 + 'footer_html'=>$handleInfo['footer_html'], 'footer_css'=>$handleInfo['footer_css'],
  539 + 'type'=>$source,'template_id'=>$template_id, 'project_id'=>$this->user['project_id'],
  540 + 'is_custom'=>$is_custom,'is_list'=>$is_list,
  541 + ];
  542 + $templateCommonModel->add($data);
  543 + }else{
  544 + $data = [
  545 + 'head_html'=>$handleInfo['head_html'], 'head_css'=>$handleInfo['head_css'],'other'=>$handleInfo['other'],
  546 + 'footer_html'=>$handleInfo['footer_html'], 'footer_css'=>$handleInfo['footer_css'],
  547 + ];
  548 + $templateCommonModel->edit($data,['id'=>$commonInfo['id']]);
  549 + }
  550 + return false;
  551 + }
  552 + return true;
  553 + }
  554 +
  555 + /**
414 * @remark :演示项目不允许修改首页 556 * @remark :演示项目不允许修改首页
415 * @name :showProject 557 * @name :showProject
416 * @author :lyh 558 * @author :lyh
@@ -457,7 +599,7 @@ class BTemplateLogic extends BaseLogic @@ -457,7 +599,7 @@ class BTemplateLogic extends BaseLogic
457 return $this->success($param); 599 return $this->success($param);
458 } 600 }
459 /** 601 /**
460 - * @remark :保存时获取获取设置的类型 602 + * @remark :(非定制)保存时获取获取设置的类型
461 * @name :getType 603 * @name :getType
462 * @author :lyh 604 * @author :lyh
463 * @method :post 605 * @method :post
@@ -44,7 +44,7 @@ class CountLogic extends BaseLogic @@ -44,7 +44,7 @@ class CountLogic extends BaseLogic
44 //获取项目的剩余时长 44 //获取项目的剩余时长
45 $projectModel = new Project(); 45 $projectModel = new Project();
46 $projectInfo = $projectModel->read(['id'=>$this->user['project_id']],['remain_day','finish_remain_day']); 46 $projectInfo = $projectModel->read(['id'=>$this->user['project_id']],['remain_day','finish_remain_day']);
47 - $info['service_day'] = $projectInfo['remain_day']; 47 + $info['service_day'] = $this->project['deploy_build']['service_duration'] - $projectInfo['finish_remain_day'];
48 $info['compliance_day'] = $projectInfo['finish_remain_day']; 48 $info['compliance_day'] = $projectInfo['finish_remain_day'];
49 return $this->success($info); 49 return $this->success($info);
50 } 50 }
@@ -599,6 +599,20 @@ class ProductLogic extends BaseLogic @@ -599,6 +599,20 @@ class ProductLogic extends BaseLogic
599 } 599 }
600 600
601 /** 601 /**
  602 + * @remark :
  603 + * @name :setAllSort
  604 + * @author :lyh
  605 + * @method :post
  606 + * @time :2024/1/10 15:40
  607 + */
  608 + public function setAllSort(){
  609 + foreach ($this->param['data'] as $k => $v){
  610 + $this->model->edit(['sort'=>$v['sort']],['id'=>$v['id']]);
  611 + }
  612 + return $this->success();
  613 + }
  614 +
  615 + /**
602 * 产品导入 616 * 产品导入
603 * @param $project_id 617 * @param $project_id
604 * @param $user_id 618 * @param $user_id
@@ -722,13 +736,11 @@ class ProductLogic extends BaseLogic @@ -722,13 +736,11 @@ class ProductLogic extends BaseLogic
722 if($data[10]??''){ 736 if($data[10]??''){
723 $seo_description = substr(strip_tags($data[10]),0,200); 737 $seo_description = substr(strip_tags($data[10]),0,200);
724 } 738 }
725 -  
726 $seo_mate = [ 739 $seo_mate = [
727 'title' => $seo_title, 740 'title' => $seo_title,
728 'keyword' => $seo_keywords, 741 'keyword' => $seo_keywords,
729 'description' => $seo_description 742 'description' => $seo_description
730 ]; 743 ];
731 -  
732 //处理参数 744 //处理参数
733 $attrs = []; 745 $attrs = [];
734 if($data[4]??''){ 746 if($data[4]??''){
@@ -746,10 +758,8 @@ class ProductLogic extends BaseLogic @@ -746,10 +758,8 @@ class ProductLogic extends BaseLogic
746 } 758 }
747 } 759 }
748 } 760 }
749 -  
750 //处理描述切换栏 761 //处理描述切换栏
751 $describe = []; 762 $describe = [];
752 -  
753 for ($i=11;$i<=20;$i+=2){ 763 for ($i=11;$i<=20;$i+=2){
754 if(($data[$i]??'') && ($data[$i+1]??'')){ 764 if(($data[$i]??'') && ($data[$i+1]??'')){
755 preg_match_all('/<img\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $data[$i+1], $result_desc); 765 preg_match_all('/<img\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $data[$i+1], $result_desc);
@@ -759,7 +769,6 @@ class ProductLogic extends BaseLogic @@ -759,7 +769,6 @@ class ProductLogic extends BaseLogic
759 $new_vdesc_img && $data[$i+1] = str_replace($vdesc_img,$new_vdesc_img,$data[$i+1]); 769 $new_vdesc_img && $data[$i+1] = str_replace($vdesc_img,$new_vdesc_img,$data[$i+1]);
760 } 770 }
761 } 771 }
762 -  
763 preg_match_all('/<source\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $data[$i+1], $result_desc_video); 772 preg_match_all('/<source\s+[^>]*?src\s*=\s*(\'|\")(.*?)\\1[^>]*?\/?\s*>/i', $data[$i+1], $result_desc_video);
764 if($result_desc_video[2]??[]){ 773 if($result_desc_video[2]??[]){
765 foreach ($result_desc_video[2] as $vdesc_video){ 774 foreach ($result_desc_video[2] as $vdesc_video){
@@ -776,7 +785,6 @@ class ProductLogic extends BaseLogic @@ -776,7 +785,6 @@ class ProductLogic extends BaseLogic
776 break; 785 break;
777 } 786 }
778 } 787 }
779 -  
780 $id = $this->model->addReturnId( 788 $id = $this->model->addReturnId(
781 [ 789 [
782 'project_id' => $project_id, 790 'project_id' => $project_id,
@@ -794,7 +802,6 @@ class ProductLogic extends BaseLogic @@ -794,7 +802,6 @@ class ProductLogic extends BaseLogic
794 'status' => Product::STATUS_ON 802 'status' => Product::STATUS_ON
795 ] 803 ]
796 ); 804 );
797 -  
798 //更新路由 805 //更新路由
799 if($route){ 806 if($route){
800 $route_map = RouteMap::where('project_id', $project_id)->where('source', RouteMap::SOURCE_PRODUCT)->where('source_id', $id)->first(); 807 $route_map = RouteMap::where('project_id', $project_id)->where('source', RouteMap::SOURCE_PRODUCT)->where('source_id', $id)->first();
@@ -810,17 +817,13 @@ class ProductLogic extends BaseLogic @@ -810,17 +817,13 @@ class ProductLogic extends BaseLogic
810 }else{ 817 }else{
811 $route = RouteMap::setRoute($data[0], RouteMap::SOURCE_PRODUCT, $id, $project_id); 818 $route = RouteMap::setRoute($data[0], RouteMap::SOURCE_PRODUCT, $id, $project_id);
812 } 819 }
813 -  
814 $this->edit(['route' => $route], ['id' => $id]); 820 $this->edit(['route' => $route], ['id' => $id]);
815 -  
816 //关联分类 821 //关联分类
817 if($category_arr){ 822 if($category_arr){
818 CategoryRelated::saveRelated($id, $category_arr); 823 CategoryRelated::saveRelated($id, $category_arr);
819 } 824 }
820 -  
821 return true; 825 return true;
822 } 826 }
823 -  
824 return false; 827 return false;
825 } 828 }
826 } 829 }
@@ -85,6 +85,7 @@ class Project extends Base @@ -85,6 +85,7 @@ class Project extends Base
85 9 => '星链网站(2年版)', 85 9 => '星链网站(2年版)',
86 11 => '俄语标准版', 86 11 => '俄语标准版',
87 12 => '俄语商务版', 87 12 => '俄语商务版',
  88 + 13 => '体验版'
88 ]; 89 ];
89 } 90 }
90 91
@@ -102,10 +102,9 @@ class ProjectServer @@ -102,10 +102,9 @@ class ProjectServer
102 * @time :2023/9/19 14:45 102 * @time :2023/9/19 14:45
103 */ 103 */
104 public static function saveInitParam($project_id){ 104 public static function saveInitParam($project_id){
105 - $created_at = date('Y-m-d H:i:s');  
106 - self::initGroup($project_id,$created_at); 105 + self::initGroup($project_id);
107 //初始化单页 106 //初始化单页
108 - self::init404Page($project_id,$created_at); 107 + self::init404Page($project_id);
109 //初始化模块数据 108 //初始化模块数据
110 self::initModule($project_id); 109 self::initModule($project_id);
111 DB::disconnect('custom_mysql'); 110 DB::disconnect('custom_mysql');
@@ -140,16 +139,17 @@ class ProjectServer @@ -140,16 +139,17 @@ class ProjectServer
140 * @method :post 139 * @method :post
141 * @time :2023/12/29 9:30 140 * @time :2023/12/29 9:30
142 */ 141 */
143 - public static function initGroup($project_id,$created_at){ 142 + public static function initGroup($project_id){
  143 + $time = date('Y-m-d H:i:s');
144 $info = DB::connection('custom_mysql')->table('gl_web_nav')->first(); 144 $info = DB::connection('custom_mysql')->table('gl_web_nav')->first();
145 if(empty($info)) { 145 if(empty($info)) {
146 $data = [ 146 $data = [
147 - ['project_id' => $project_id, 'name' => 'Home', 'url' => 'Home', 'location' => 'header', 'group_id' => 1, 'created_at' => $created_at, 'updated_at' => $created_at],  
148 - ['project_id' => $project_id, 'name' => 'Products', 'url' => 'Products', 'location' => 'header', 'group_id' => 1, 'created_at' => $created_at, 'updated_at' => $created_at],  
149 - ['project_id' => $project_id, 'name' => 'News', 'url' => 'News', 'location' => 'header', 'group_id' => 1, 'created_at' => $created_at, 'updated_at' => $created_at],  
150 - ['project_id' => $project_id, 'name' => 'ABOUT US', 'url' => 'about-us', 'location' => 'footer', 'group_id' => 2, 'created_at' => $created_at, 'updated_at' => $created_at],  
151 - ['project_id' => $project_id, 'name' => 'Contact Us', 'url' => 'contact-us', 'location' => 'footer', 'group_id' => 2, 'created_at' => $created_at, 'updated_at' => $created_at],  
152 - ['project_id' => $project_id, 'name' => 'FAQ', 'url' => 'faq', 'location' => 'footer', 'group_id' => 2, 'created_at' => $created_at, 'updated_at' => $created_at], 147 + ['project_id' => $project_id, 'name' => 'Home', 'url' => 'Home', 'location' => 'header', 'group_id' => 1, 'created_at' => $time, 'updated_at' => $time],
  148 + ['project_id' => $project_id, 'name' => 'Products', 'url' => 'Products', 'location' => 'header', 'group_id' => 1, 'created_at' => $time, 'updated_at' => $time],
  149 + ['project_id' => $project_id, 'name' => 'News', 'url' => 'News', 'location' => 'header', 'group_id' => 1, 'created_at' => $time, 'updated_at' => $time],
  150 + ['project_id' => $project_id, 'name' => 'ABOUT US', 'url' => 'about-us', 'location' => 'footer', 'group_id' => 2, 'created_at' => $time, 'updated_at' => $time],
  151 + ['project_id' => $project_id, 'name' => 'Contact Us', 'url' => 'contact-us', 'location' => 'footer', 'group_id' => 2, 'created_at' => $time, 'updated_at' => $time],
  152 + ['project_id' => $project_id, 'name' => 'FAQ', 'url' => 'faq', 'location' => 'footer', 'group_id' => 2, 'created_at' => $time, 'updated_at' => $time],
153 ]; 153 ];
154 DB::connection('custom_mysql')->table('gl_web_nav')->insert($data); 154 DB::connection('custom_mysql')->table('gl_web_nav')->insert($data);
155 } 155 }
@@ -157,8 +157,8 @@ class ProjectServer @@ -157,8 +157,8 @@ class ProjectServer
157 $info = DB::connection('custom_mysql')->table('gl_web_nav_group')->first(); 157 $info = DB::connection('custom_mysql')->table('gl_web_nav_group')->first();
158 if(empty($info)) { 158 if(empty($info)) {
159 $data = [ 159 $data = [
160 - ['id' => 1, 'project_id' => $project_id, 'name' => '全局顶部菜单', 'created_at' => $created_at, 'updated_at' => $created_at],  
161 - ['id' => 2, 'project_id' => $project_id, 'name' => '底部菜单', 'created_at' => $created_at, 'updated_at' => $created_at], 160 + ['id' => 1, 'project_id' => $project_id, 'name' => '全局顶部菜单', 'created_at' => $time, 'updated_at' => $time],
  161 + ['id' => 2, 'project_id' => $project_id, 'name' => '底部菜单', 'created_at' => $time, 'updated_at' => $time],
162 ]; 162 ];
163 DB::connection('custom_mysql')->table('gl_web_nav_group')->insert($data); 163 DB::connection('custom_mysql')->table('gl_web_nav_group')->insert($data);
164 } 164 }
@@ -172,7 +172,8 @@ class ProjectServer @@ -172,7 +172,8 @@ class ProjectServer
172 * @method :post 172 * @method :post
173 * @time :2023/12/29 9:32 173 * @time :2023/12/29 9:32
174 */ 174 */
175 - public function init404Page($project_id,$created_at){ 175 + public function init404Page($project_id){
  176 + $time = date('Y-m-d H:i:s');
176 $info = DB::connection('custom_mysql')->table('gl_web_custom_template')->first(); 177 $info = DB::connection('custom_mysql')->table('gl_web_custom_template')->first();
177 if(empty($info)) { 178 if(empty($info)) {
178 $main_404_html = '<main> 179 $main_404_html = '<main>
@@ -211,12 +212,12 @@ class ProjectServer @@ -211,12 +212,12 @@ class ProjectServer
211 'html_style' => '<style id="globalsojs-styles"></style>', 212 'html_style' => '<style id="globalsojs-styles"></style>',
212 'title' => '404-Page not found', 213 'title' => '404-Page not found',
213 'description' => 'Sorry. The page has either moved or cannot be found.', 214 'description' => 'Sorry. The page has either moved or cannot be found.',
214 - 'created_at' => $created_at, 'updated_at' => $created_at]; 215 + 'created_at' => $time, 'updated_at' => $time];
215 $id = DB::connection('custom_mysql')->table('gl_web_custom_template')->insertGetId($data); 216 $id = DB::connection('custom_mysql')->table('gl_web_custom_template')->insertGetId($data);
216 //路由 217 //路由
217 $info = DB::connection('custom_mysql')->table('gl_route_map')->first(); 218 $info = DB::connection('custom_mysql')->table('gl_route_map')->first();
218 if(empty($info)) { 219 if(empty($info)) {
219 - $data = ['project_id' => $project_id, 'source' => RouteMap::SOURCE_PAGE, 'source_id' => $id, 'route' => BCustomTemplate::NOT_FOUND_PAGE_URL, 'created_at' => $created_at, 'updated_at' => $created_at]; 220 + $data = ['project_id' => $project_id, 'source' => RouteMap::SOURCE_PAGE, 'source_id' => $id, 'route' => BCustomTemplate::NOT_FOUND_PAGE_URL, 'created_at' => $time, 'updated_at' => $time];
220 DB::connection('custom_mysql')->table('gl_route_map')->insert($data); 221 DB::connection('custom_mysql')->table('gl_route_map')->insert($data);
221 } 222 }
222 } 223 }
@@ -204,6 +204,7 @@ Route::middleware(['bloginauth'])->group(function () { @@ -204,6 +204,7 @@ Route::middleware(['bloginauth'])->group(function () {
204 Route::post('/save', [\App\Http\Controllers\Bside\Product\ProductController::class, 'save'])->name('product_save'); 204 Route::post('/save', [\App\Http\Controllers\Bside\Product\ProductController::class, 'save'])->name('product_save');
205 Route::post('/editList', [\App\Http\Controllers\Bside\Product\ProductController::class, 'editList'])->name('product_editList'); 205 Route::post('/editList', [\App\Http\Controllers\Bside\Product\ProductController::class, 'editList'])->name('product_editList');
206 Route::post('/sort', [\App\Http\Controllers\Bside\Product\ProductController::class, 'sort'])->name('product_sort'); 206 Route::post('/sort', [\App\Http\Controllers\Bside\Product\ProductController::class, 'sort'])->name('product_sort');
  207 + Route::post('/allSort', [\App\Http\Controllers\Bside\Product\ProductController::class, 'allSort'])->name('product_allSort');
207 Route::any('/delete', [\App\Http\Controllers\Bside\Product\ProductController::class, 'delete'])->name('product_delete'); 208 Route::any('/delete', [\App\Http\Controllers\Bside\Product\ProductController::class, 'delete'])->name('product_delete');
208 Route::any('/statusNum', [\App\Http\Controllers\Bside\Product\ProductController::class, 'getStatusNumber'])->name('product_statusNum'); 209 Route::any('/statusNum', [\App\Http\Controllers\Bside\Product\ProductController::class, 'getStatusNumber'])->name('product_statusNum');
209 Route::any('/copyProduct', [\App\Http\Controllers\Bside\Product\ProductController::class, 'copyProduct'])->name('product_copyProduct'); 210 Route::any('/copyProduct', [\App\Http\Controllers\Bside\Product\ProductController::class, 'copyProduct'])->name('product_copyProduct');