Файловый менеджер - Редактировать - /home/easybachat/resumewing.com/app/Http/Controllers/Api/CaptchaController.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\Controllers\Controller; use Illuminate\Http\JsonResponse; use Larapen\Captcha\Captcha; /** * @group Captcha */ class CaptchaController extends Controller { /** * Get CAPTCHA * * Calling this endpoint is mandatory if the captcha is enabled in the Admin panel. * Return JSON data with an 'img' item that contains the captcha image to show and a 'key' item that contains the generated key to send for validation. * * @param \Larapen\Captcha\Captcha $captcha * @return \Illuminate\Http\JsonResponse */ public function getCaptcha(Captcha $captcha): JsonResponse { $config = config('settings.security.captcha', 'flat'); // Create the captcha challenge // See the original usage at: "packages/larapen/captcha/src/CaptchaController.php" $captchaData = $captcha->create($config, true); $sensitive = data_get($captchaData, 'sensitive'); $key = data_get($captchaData, 'key'); $img = data_get($captchaData, 'img'); // Parsing the API response $isSuccess = ( is_bool($sensitive) && (!empty($key) && is_string($key)) && (!empty($img) && is_string($img)) ); $status = $isSuccess ? 200 : 400; $result = [ 'sensitive' => (bool)$sensitive, 'key' => $key, 'img' => $img, ]; $message = !$isSuccess ? 'Error found during captcha retrieving.' : null; $data = [ 'success' => $isSuccess, 'result' => $isSuccess ? $result : null, 'message' => $message, ]; return apiResponse()->json($data, $status); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка