Файловый менеджер - Редактировать - /home/easybachat/resumewing.com/app/Http/Controllers/Api/PostController.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\Http\Controllers\Api; use App\Http\Requests\Front\PostRequest; use App\Services\PostService; use Illuminate\Http\JsonResponse; use Illuminate\Routing\Controllers\Middleware; /** * @group Listings */ class PostController extends BaseController { protected PostService $postService; /** * @param \App\Services\PostService $postService */ public function __construct(PostService $postService) { parent::__construct(); $this->postService = $postService; } /** * Get the middleware that should be assigned to the controller. */ public static function middleware(): array { $array = []; // Check if guests can post listings if (!doesGuestHaveAbilityToCreateListings()) { $array[] = new Middleware('auth', only: ['store']); } return array_merge(parent::middleware(), $array); } /** * List listings * * @queryParam op string Type of listings list (optional) - Possible value: search,premium,latest,free,premiumFirst,similar. Example: null * @queryParam postId int Base Listing's ID to get similar listings (optional) - Mandatory to get similar listings (when op=similar). Example: null * @queryParam distance int Distance to get similar listings (optional) - Also optional when the type of similar listings is based on the current listing's category. Mandatory when the type of similar listings is based on the current listing's location. So, its usage is limited to get similar listings (when op=similar) based on the current listing's location. Example: null * @queryParam belongLoggedUser boolean Force users to be logged to get data that belongs to him. Authentication token needs to be sent in the header, and the "op" parameter needs to be null or unset - Possible value: 0 or 1. * @queryParam pendingApproval boolean To list a user's listings in pending approval. Authentication token needs to be sent in the header, and the "op" parameter needs to be null or unset - Possible value: 0 or 1. * @queryParam archived boolean To list a user's archived posts. Authentication token needs to be sent in the header, and the "op" parameter need be null or unset - Possible value: 0 or 1. * @queryParam embed string Comma-separated list of the post relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package. Example: null * @queryParam sort string The sorting parameter (Order by DESC with the given column. Use "-" as prefix to order by ASC). Possible values: created_at. Example: created_at * @queryParam perPage int Items per page. Can be defined globally from the admin settings. Cannot be exceeded 100. Example: 2 * * @return \Illuminate\Http\JsonResponse */ public function index(): JsonResponse { $params = [ 'op' => request()->input('op'), ]; return $this->postService->getEntries($params); } /** * Get listing * * @queryParam unactivatedIncluded boolean Include or not unactivated entries - Possible value: 0 or 1. Example: 1 * @queryParam belongLoggedUser boolean Force users to be logged to get data that belongs to him - Possible value: 0 or 1. Example: 0 * @queryParam noCache boolean Disable the cache for this request - Possible value: 0 or 1. Example: 0 * @queryParam embed string Comma-separated list of the listing relationships for Eager Loading - Possible values: user,category,parent,postType,city,currency,savedByLoggedUser,pictures,payment,package.Example: user,postType * @queryParam detailed boolean Allow getting the listing's details with all its relationships (No need to set the 'embed' parameter). Example: false * * @urlParam id int required The post/listing's ID. Example: 2 * * @param $id * @return \Illuminate\Http\JsonResponse */ public function show($id): JsonResponse { $params = [ 'embed' => request()->input('embed'), 'detailed' => (request()->input('detailed') == 1), ]; return $this->postService->getEntry($id, $params); } /** * Store listing * * For both types of listing's creation (Single step or Multi steps). * Note: The field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2. * * @authenticated * @header Authorization Bearer {YOUR_AUTH_TOKEN} * * @bodyParam country_code string required The code of the user's country. Example: US * * @bodyParam company_id int The job company's ID. * @bodyParam company[].name string required The company's name (required when 'company_id' is not set). Example: Foo Inc * @bodyParam company[].logo file The company's logo (available when 'company_id' is not set). * @bodyParam company[].description string required The company's description (required when 'company_id' is not set). Example: Nostrum quia est aut quas. * * @bodyParam category_id int required The category's ID. Example: 1 * @bodyParam post_type_id int The listing type's ID. Example: 1 * @bodyParam title string required The listing's title. Example: John Doe * @bodyParam description string required The listing's description. Example: Beatae placeat atque tempore consequatur animi magni omnis. * @bodyParam contact_name string required The listing's author name. Example: John Doe * @bodyParam auth_field string required The user's auth field ('email' or 'phone'). Example: email * @bodyParam email string The post's author email address (Required when 'auth_field' value is 'email'). Example: john.doe@domain.tld * @bodyParam phone string The post's author mobile number (Required when 'auth_field' value is 'phone'). Example: +17656766467 * @bodyParam phone_country string required The user's phone number's country code (Required when the 'phone' field is filled). Example: null * @bodyParam admin_code string The administrative division's code. Example: 0 * @bodyParam city_id int required The city's ID. * @bodyParam price int required The price. Example: 5000 * @bodyParam negotiable boolean Negotiable price or no. Example: 0 * @bodyParam phone_hidden boolean Mobile phone number will be hidden in public or no. Example: 0 * @bodyParam create_from_ip string The post's author IP address. Example: 127.0.0.1 * @bodyParam accept_marketing_offers boolean Accept to receive marketing offers or no. * @bodyParam is_permanent boolean Is it permanent post or no. * @bodyParam tags string Comma-separated tags list. Example: car,automotive,tesla,cyber,truck * @bodyParam accept_terms boolean required Accept the website terms and conditions. Example: 0 * @bodyParam package_id int required The package's ID. Example: 2 * @bodyParam payment_method_id int The payment method's ID (required when the selected package's price is > 0). Example: 5 * @bodyParam captcha_key string Key generated by the CAPTCHA endpoint calling (Required when the CAPTCHA verification is enabled from the Admin panel). * * @param \App\Http\Requests\Front\PostRequest $request * @return \Illuminate\Http\JsonResponse|mixed */ public function store(PostRequest $request) { return $this->postService->store($request); } /** * Update listing * * Note: The fields 'pictures', 'package_id' and 'payment_method_id' are only available with the single step listing edition. * The field 'admin_code' is only available when the listing's country's 'admin_type' column is set to 1 or 2. * * @authenticated * @header Authorization Bearer {YOUR_AUTH_TOKEN} * * @bodyParam country_code string required The code of the user's country. Example: US * * @bodyParam company_id int The job company's ID. * @bodyParam company[].name string required The company's name (required when 'company_id' is not set). Example: Foo Inc * @bodyParam company[].logo file The company's logo (available when 'company_id' is not set). * @bodyParam company[].description string required The company's description (required when 'company_id' is not set). Example: Nostrum quia est aut quas. * * @bodyParam category_id int required The category's ID. Example: 1 * @bodyParam post_type_id int The listing type's ID. Example: 1 * @bodyParam title string required The listing's title. Example: John Doe * @bodyParam description string required The listing's description. Example: Beatae placeat atque tempore consequatur animi magni omnis. * @bodyParam contact_name string required The listing's author name. Example: John Doe * @bodyParam auth_field string required The user's auth field ('email' or 'phone'). Example: email * @bodyParam email string The post's author email address (Required when 'auth_field' value is 'email'). Example: john.doe@domain.tld * @bodyParam phone string The post's author mobile number (Required when 'auth_field' value is 'phone'). Example: +17656766467 * @bodyParam phone_country string required The user's phone number's country code (Required when the 'phone' field is filled). Example: null * @bodyParam admin_code string The administrative division's code. Example: 0 * @bodyParam city_id int required The city's ID. * @bodyParam price int required The price. Example: 5000 * @bodyParam negotiable boolean Negotiable price or no. Example: 0 * @bodyParam phone_hidden boolean Mobile phone number will be hidden in public or no. Example: 0 * @bodyParam latest_update_ip string The post's author IP address. Example: 127.0.0.1 * @bodyParam accept_marketing_offers boolean Accept to receive marketing offers or no. * @bodyParam is_permanent boolean Is it permanent post or no. * @bodyParam tags string Comma-separated tags list. Example: car,automotive,tesla,cyber,truck * @bodyParam accept_terms boolean required Accept the website terms and conditions. Example: 0 * * @bodyParam package_id int required The package's ID. Example: 2 * @bodyParam payment_method_id int The payment method's ID (required when the selected package's price is > 0). Example: 5 * * @urlParam id int required The post/listing's ID. * * @param $id * @param \App\Http\Requests\Front\PostRequest $request * @return array|\Illuminate\Http\JsonResponse|mixed */ public function update($id, PostRequest $request) { return $this->postService->update($id, $request); } /** * Delete listing(s) * * @authenticated * @header Authorization Bearer {YOUR_AUTH_TOKEN} * * @urlParam ids string required The ID or comma-separated IDs list of listing(s). * * @param string $ids * @return \Illuminate\Http\JsonResponse */ public function destroy(string $ids): JsonResponse { return $this->postService->destroy($ids); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.02 |
proxy
|
phpinfo
|
ÐаÑтройка