Файловый менеджер - Редактировать - /home/easybachat/resumewing.com/app/Services/CategoryService.php
Ðазад
<?php /* * JobClass - Job Board Web Application * Copyright (c) BeDigit. All Rights Reserved * * Website: https://laraclassifier.com/jobclass * Author: Mayeul Akpovi (BeDigit - https://bedigit.com) * * LICENSE * ------- * This software is provided under a license agreement and may only be used or copied * in accordance with its terms, including the inclusion of the above copyright notice. * As this software is sold exclusively on CodeCanyon, * please review the full license details here: https://codecanyon.net/licenses/standard */ namespace App\Services; use App\Http\Resources\CategoryResource; use App\Http\Resources\EntityCollection; use App\Models\Category; use App\Services\Category\CategoryBy; use Illuminate\Http\JsonResponse; class CategoryService extends BaseService { use CategoryBy; /** * List categories * * @param int|null $parentId * @param array $params * @return \Illuminate\Http\JsonResponse */ public function getEntries(?int $parentId = null, array $params = []): JsonResponse { $cacheExpiration = $params['cacheExpiration'] ?? $this->cacheExpiration; $locale = config('app.locale'); $perPage = getNumberOfItemsPerPage('categories', $params['perPage'] ?? null, $this->perPage); $page = (int)($params['page'] ?? 1); $embed = getCommaSeparatedStrAsArray($params['embed'] ?? []); $areNestedEntriesIncluded = getIntAsBoolean($params['nestedIncluded'] ?? 0); $parentId = !empty($parentId) ? $parentId : ($params['parentId'] ?? null); $sort = $params['sort'] ?? []; // Cache ID $cacheNestedId = '.nestedIncluded.' . (int)$areNestedEntriesIncluded; $cacheEmbedId = !empty($embed) ? '.embed.' . implode(',', $embed) : ''; $cachePageId = '.page.' . $page . '.of.' . $perPage; $cacheId = 'cats.' . ((int)$parentId) . $cacheNestedId . $cacheEmbedId . $cachePageId . '.' . $locale; $cacheId = md5($cacheId); // Cached Query $categories = cache()->remember($cacheId, $cacheExpiration, function () use ( $perPage, $parentId, $embed, $areNestedEntriesIncluded, $sort ) { $categories = Category::query(); if (!empty($parentId)) { $categories->childrenOf($parentId); } else { if (!$areNestedEntriesIncluded) { $categories->root(); } } if (in_array('parent', $embed)) { $categories->with('parent'); } else { $categories->with('parentClosure'); } if (in_array('children', $embed)) { $categories->with('children'); } // Sorting $categories = $this->applySorting($categories, ['lft'], $sort); if ($areNestedEntriesIncluded) { $categories = $categories->get(); if ($categories->count() > 0) { $categories = $categories->keyBy('id'); } return $categories; } // Adding the withQueryString() to apply filters for AJAX request return $categories->paginate($perPage)->withQueryString(); }); // If the request is made from the app's Web environment, // use the Web URL as the pagination's base URL if (!$areNestedEntriesIncluded) { $categories = setPaginationBaseUrl($categories); } $resourceCollection = new EntityCollection(CategoryResource::class, $categories, $params); $message = ($categories->count() <= 0) ? t('no_categories_found') : null; return apiResponse()->withCollection($resourceCollection, $message); } /** * Get category * * Get category by its unique slug or ID. * * @param int|string $slugOrId * @param string|null $parentSlug * @param array $params * @return \Illuminate\Http\JsonResponse */ public function getEntry(int|string $slugOrId, ?string $parentSlug = null, array $params = []): JsonResponse { $category = is_numeric($slugOrId) ? $this->getCategoryById($slugOrId, $params) : $this->getCategoryBySlug($slugOrId, $parentSlug, $params); abort_if(empty($category), 404, t('category_not_found')); $resource = new CategoryResource($category, $params); return apiResponse()->withResource($resource); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.3 |
proxy
|
phpinfo
|
ÐаÑтройка