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.
		
		
		
		
		
			
		
			
				
					
					
						
							151 lines
						
					
					
						
							4.4 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							151 lines
						
					
					
						
							4.4 KiB
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								namespace App\Http\Controllers\Api;
							 | 
						|
								use App\Common\ProductStatus;
							 | 
						|
								use App\Http\Controllers\Controller;
							 | 
						|
								use App\Models\Advertising;
							 | 
						|
								use App\Models\AgentProduct;
							 | 
						|
								use App\Models\UserFav;
							 | 
						|
								use Illuminate\Support\Facades\Storage;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * 代理商产品
							 | 
						|
								 * Class AgentProductController
							 | 
						|
								 * @package App\Http\Controllers\Api
							 | 
						|
								 */
							 | 
						|
								class AgentProductController extends Controller
							 | 
						|
								{
							 | 
						|
									// 代理商产品列表
							 | 
						|
									public function index()
							 | 
						|
									{
							 | 
						|
										$category_id = request()->input('category_id');
							 | 
						|
										if ($category_id) {
							 | 
						|
											$where['category_id'] = $category_id;
							 | 
						|
										}
							 | 
						|
								
							 | 
						|
										$where['agent_id'] = $this->agent_id;
							 | 
						|
								
							 | 
						|
										$list = AgentProduct::list()->where($where)->orderBy('id', 'DESC')->simplePaginate();
							 | 
						|
										$list = $this->paginatePicAddHost($list);
							 | 
						|
										$list = $this->insertAd($list);
							 | 
						|
								
							 | 
						|
										return $this->success($list);
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									// 产品详情
							 | 
						|
									public function show()
							 | 
						|
									{
							 | 
						|
										$id = (int)request()->input('id');
							 | 
						|
								
							 | 
						|
										// TODO 优惠券查询待优化
							 | 
						|
										$agent_product = AgentProduct::query()
							 | 
						|
											->with('coupon:tag,agent_product_id')
							 | 
						|
											->with('fav:agent_product_id')
							 | 
						|
											->whereHas('product', function ($query) {
							 | 
						|
												return $query->where('status', ProductStatus::ON_SALE)->where('stock', '>', 0);
							 | 
						|
											})
							 | 
						|
											->where('stock', '>', 0)
							 | 
						|
											->firstWhere(['id' => $id, 'agent_id' => $this->agent_id, 'status' => ProductStatus::ON_SALE]);
							 | 
						|
								
							 | 
						|
										if (!$agent_product) {
							 | 
						|
											return $this->error('产品不存在或已下架');
							 | 
						|
										}
							 | 
						|
								
							 | 
						|
										$prefix = Storage::disk('public')->url('');
							 | 
						|
										$agent_product->pictures = array_map(fn($item) => ($prefix . $item), $agent_product->pictures);
							 | 
						|
								
							 | 
						|
										$agent_product->is_collect = !is_null($agent_product->fav); //判断是否收藏
							 | 
						|
										unset($agent_product->fav);
							 | 
						|
										//计算折扣
							 | 
						|
										if ($agent_product->price < $agent_product->original_price) {
							 | 
						|
											$agent_product->cost = round($agent_product->price / $agent_product->original_price * 10, 1);
							 | 
						|
										} else {
							 | 
						|
											$agent_product->cost = '';
							 | 
						|
										}
							 | 
						|
								
							 | 
						|
										unset($agent_product->agent_id, $agent_product->status, $agent_product->deleted_at);
							 | 
						|
										return $this->success($agent_product);
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									// 猜你喜欢
							 | 
						|
									public function guessLike()
							 | 
						|
									{
							 | 
						|
										$list = AgentProduct::list()->where('agent_id', $this->agent_id)->orderBy('id', 'DESC')->simplePaginate();
							 | 
						|
										$list = $this->paginatePicAddHost($list);
							 | 
						|
										$list = $list->toArray();
							 | 
						|
										if (!empty($list['data']) && is_array($list['data'])) {
							 | 
						|
											shuffle($list['data']); //随机乱序
							 | 
						|
										}
							 | 
						|
										$list = $this->insertAd($list);
							 | 
						|
								
							 | 
						|
										return $this->success($list);
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									//【我的】页面下方推荐
							 | 
						|
									public function recommendList()
							 | 
						|
									{
							 | 
						|
										$list = AgentProduct::list()->where(['agent_id' => $this->agent_id, 'is_rec' => 1])
							 | 
						|
											->orderBy('id', 'DESC')->simplePaginate();
							 | 
						|
										$list = $this->paginatePicAddHost($list);
							 | 
						|
										$list = $this->insertAd($list);
							 | 
						|
								
							 | 
						|
										return $this->success($list);
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									//人气爆款列表,销量排序
							 | 
						|
									public function hotList()
							 | 
						|
									{
							 | 
						|
										$list = AgentProduct::list()->where('agent_id', $this->agent_id)->orderBy('id', 'DESC')->simplePaginate();
							 | 
						|
										$list = $this->paginatePicAddHost($list);
							 | 
						|
										$list = $this->insertAd($list);
							 | 
						|
								
							 | 
						|
										return $this->success($list);
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									//分页列表产品图片加域名
							 | 
						|
									private function paginatePicAddHost($list)
							 | 
						|
									{
							 | 
						|
										if (!$list->isEmpty()) {
							 | 
						|
											$prefix = Storage::disk('public')->url('');
							 | 
						|
											foreach ($list->items() as $k=>&$v) {
							 | 
						|
												$v->pictures = array_map(function($item) use ($prefix) {
							 | 
						|
													return strpos($item, $prefix) === false ? $prefix . $item : $item;
							 | 
						|
												}, $v->pictures);
							 | 
						|
											}
							 | 
						|
										}
							 | 
						|
										return $list;
							 | 
						|
									}
							 | 
						|
								
							 | 
						|
									//插入瀑布流广告
							 | 
						|
									private function insertAd($list)
							 | 
						|
									{
							 | 
						|
										//插入瀑布流广告,分别在第8个和第16个插入,同时需要考虑到分页。当所有瀑布流广告插入完之后,再次循环插入
							 | 
						|
										if (is_object($list) && method_exists($list, 'toArray')) {
							 | 
						|
											$list = $list->toArray();
							 | 
						|
										}
							 | 
						|
										$ad_total = Advertising::where(['agent_id' => $this->agent_id, 'status' => 1, 'display' => 2])->count();
							 | 
						|
										if ($list['data'] && $ad_total > 0) {
							 | 
						|
								
							 | 
						|
											$page = (int)request()->input('page');
							 | 
						|
											$start = ($page ? $page - 1 : 0) * 2 % $ad_total;
							 | 
						|
								
							 | 
						|
											$ad = Advertising::where(['agent_id' => $this->agent_id, 'status' => 1, 'display' => 2])
							 | 
						|
												->orderBy('sort')->orderBy('id', 'DESC')
							 | 
						|
												->offset($start)->limit(2)->get(['title', 'picture', 'type', 'url'])->toArray();
							 | 
						|
								
							 | 
						|
											$prefix = Storage::disk('public')->url('');
							 | 
						|
								
							 | 
						|
											foreach ($ad as $k => &$v) {
							 | 
						|
												$v['is_ad'] = true;
							 | 
						|
												$v['picture'] = $prefix . $v['picture'];
							 | 
						|
								
							 | 
						|
												//每隔8个插入广告
							 | 
						|
												$temp = 8 * ($k+1);
							 | 
						|
												if (!empty($list['data'][$temp - 1]) && !empty($ad[$k])) {
							 | 
						|
													array_splice($list['data'], $temp + $k, 0, [$ad[$k]]);
							 | 
						|
												}
							 | 
						|
											}
							 | 
						|
										}
							 | 
						|
										return $list;
							 | 
						|
									}
							 | 
						|
								}
							 |