Файловый менеджер - Редактировать - /home/easybachat/resumewing.com/app/Services/Payment/Promotion/MultiStepsPayment.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\Payment\Promotion; use App\Helpers\Services\Payment as PaymentHelper; use App\Http\Requests\Front\PackageRequest; use App\Http\Resources\PostResource; use App\Models\Package; use App\Models\Post; use App\Models\Scopes\ReviewedScope; use App\Models\Scopes\VerifiedScope; use App\Services\Payment\HasPaymentTrigger; use App\Services\Payment\RetrievePackageFeatures; trait MultiStepsPayment { use RetrievePackageFeatures; use HasPaymentTrigger; public array $apiMsg = []; public array $apiUri = []; public ?Package $selectedPackage = null; /** * Set payment settings for promotion packages (Multi-Steps Form) * * @return void */ protected function setPaymentSettingsForPromotion(): void { // Messages $this->apiMsg['payable']['success'] = t('your_listing_is_updated'); $this->apiMsg['checkout']['success'] = t('payment_received'); $this->apiMsg['checkout']['cancel'] = t('payment_cancelled_text'); $this->apiMsg['checkout']['error'] = t('payment_error_text'); // Set URLs $this->apiUri['previousUrl'] = urlGen()->editPostPayment('#entryId'); $this->apiUri['nextUrl'] = urlGen()->postPattern(id: '#entryId', slug: '#entrySlug'); $this->apiUri['paymentCancelUrl'] = urlGen()->editPostPaymentCancel('#entryId'); $this->apiUri['paymentReturnUrl'] = urlGen()->editPostPaymentSuccess('#entryId'); // Payment Helper init. PaymentHelper::$country = collect(config('country')); PaymentHelper::$lang = collect(config('lang')); PaymentHelper::$msg = $this->apiMsg; PaymentHelper::$uri = $this->apiUri; // Selected Package $this->selectedPackage = $this->getSelectedPackage(); if (!isFromApi()) { view()->share('selectedPackage', $this->selectedPackage); } } /** * Store a promotion payment (Multi-Steps Form) * * @param \App\Http\Requests\Front\PackageRequest $request * @return \Illuminate\Http\JsonResponse|mixed */ protected function multiStepsPaymentStore(PackageRequest $request) { $postId = $request->input('payable_id'); $authUser = auth(getAuthGuard())->user(); $post = null; if (!empty($postId) && !empty($authUser)) { $post = Post::withoutGlobalScopes([VerifiedScope::class, ReviewedScope::class]) ->with('payment') ->where('user_id', $authUser->getAuthIdentifier()) ->where('id', $postId) ->first(); } if (empty($post)) { return apiResponse()->notFound(t('post_not_found')); } // ===| Make|send payment (if needed) |============== $payResult = $this->isPaymentRequested($request, $post); if (data_get($payResult, 'success')) { return $this->sendPayment($request, $post); } if (data_get($payResult, 'failure')) { return apiResponse()->error(data_get($payResult, 'message')); } // ===| If no payment is made (continue) |=========== $data = [ 'success' => true, 'message' => t('your_listing_is_updated'), 'result' => (new PostResource($post))->toArray($request), ]; return apiResponse()->json($data); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 1 |
proxy
|
phpinfo
|
ÐаÑтройка