175 lines
4.9 KiB
PHP
175 lines
4.9 KiB
PHP
<?php
|
|
/**
|
|
* CategoryRepo.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-06-16 17:45:41
|
|
* @modified 2022-06-16 17:45:41
|
|
*/
|
|
|
|
namespace Beike\Repositories;
|
|
|
|
use Beike\Models\Category;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Beike\Shop\Http\Resources\CategoryDetail;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class CategoryRepo
|
|
{
|
|
private static $allCategoryWithName = null;
|
|
|
|
|
|
public static function flatten(string $locale, $separator = ' > '): array
|
|
{
|
|
$sql = "SELECT cp.category_id AS id, TRIM(LOWER(GROUP_CONCAT(cd1.name ORDER BY cp.level SEPARATOR '{$separator}'))) AS name, c1.parent_id, c1.position";
|
|
$sql .= " FROM category_paths cp";
|
|
$sql .= " LEFT JOIN categories c1 ON (cp.category_id = c1.id)";
|
|
$sql .= " LEFT JOIN categories c2 ON (cp.path_id = c2.id)";
|
|
$sql .= " LEFT JOIN category_descriptions cd1 ON (cp.path_id = cd1.category_id)";
|
|
$sql .= " WHERE cd1.locale = '" . $locale . "' GROUP BY cp.category_id ORDER BY name ASC";
|
|
return DB::select($sql);
|
|
}
|
|
|
|
/**
|
|
* 获取顶级及其子分类
|
|
*/
|
|
public static function getTwoLevelCategories()
|
|
{
|
|
$topCategories = Category::query()
|
|
->from('categories as c')
|
|
->with(['description', 'children.description'])
|
|
->where('parent_id', 0)
|
|
->where('active', true)
|
|
->orderBy('position')
|
|
->limit(6)
|
|
->get();
|
|
|
|
$categoryList = CategoryDetail::collection($topCategories);
|
|
return json_decode($categoryList->toJson(), true);
|
|
}
|
|
|
|
|
|
/**
|
|
* 获取产品分类列表
|
|
*
|
|
* @param array $filters
|
|
* @return Builder[]|Collection
|
|
*/
|
|
public static function list(array $filters = [])
|
|
{
|
|
$builder = self::getBuilder($filters);
|
|
return $builder->get();
|
|
}
|
|
|
|
|
|
/**
|
|
* 获取筛选builder
|
|
*
|
|
* @param array $filters
|
|
* @return Builder
|
|
*/
|
|
public static function getBuilder(array $filters = []): Builder
|
|
{
|
|
$builder = Category::query()->with(['description']);
|
|
$keyword = $filters['keyword'] ?? '';
|
|
if ($keyword) {
|
|
$builder->whereHas('description', function ($query) use ($keyword) {
|
|
return $query->where('name', 'like', "%$keyword%");
|
|
});
|
|
}
|
|
return $builder;
|
|
}
|
|
|
|
|
|
/**
|
|
* 自动完成
|
|
*
|
|
* @param $name
|
|
* @return array
|
|
*/
|
|
public static function autocomplete($name): array
|
|
{
|
|
$categories = Category::query()->with('paths.pathCategory.description')
|
|
->whereHas('paths', function ($query) use ($name) {
|
|
$query->whereHas('pathCategory', function ($query) use ($name) {
|
|
$query->whereHas('description', function ($query) use ($name) {
|
|
$query->where('name', 'like', "{$name}%");
|
|
});
|
|
});
|
|
})
|
|
->limit(10)->get();
|
|
$results = [];
|
|
foreach ($categories as $category) {
|
|
$pathName = '';
|
|
foreach ($category->paths->sortBy('level') as $path) {
|
|
if ($pathName) {
|
|
$pathName .= ' > ';
|
|
}
|
|
$pathName .= $path->pathCategory->description->name;
|
|
}
|
|
$results[] = [
|
|
'id' => $category->id,
|
|
'status' => $category->active,
|
|
'name' => $pathName,
|
|
];
|
|
}
|
|
return $results;
|
|
}
|
|
|
|
|
|
/**
|
|
* 删除产品分类
|
|
* @throws \Exception
|
|
*/
|
|
public static function delete($category)
|
|
{
|
|
if (is_int($category)) {
|
|
$category = Category::query()->findOrFail($category);
|
|
} elseif (!($category instanceof Category)) {
|
|
throw new \Exception('invalid category');
|
|
}
|
|
$category->descriptions()->delete();
|
|
$category->paths()->delete();
|
|
$category->productCategories()->delete();
|
|
$category->delete();
|
|
}
|
|
|
|
|
|
/**
|
|
* 通过分类ID获取产品名称
|
|
* @param $id
|
|
* @return mixed|string
|
|
*/
|
|
public static function getName($id)
|
|
{
|
|
$categories = self::getAllCategoryWithName();
|
|
return $categories[$id]['name'] ?? '';
|
|
}
|
|
|
|
|
|
/**
|
|
* 获取所有商品分类ID和名称列表
|
|
* @return array|null
|
|
*/
|
|
public static function getAllCategoryWithName(): ?array
|
|
{
|
|
if (self::$allCategoryWithName !== null) {
|
|
return self::$allCategoryWithName;
|
|
}
|
|
|
|
$items = [];
|
|
$categories = self::getBuilder()->select('id')->get();
|
|
foreach ($categories as $category) {
|
|
$items[$category->id] = [
|
|
'id' => $category->id,
|
|
'name' => $category->description->name ?? '',
|
|
];
|
|
}
|
|
return self::$allCategoryWithName = $items;
|
|
}
|
|
}
|
|
|