Файл: app/Http/Controllers/SocialController.php
Строк: 78
<?php
declare(strict_types=1);
namespace AppHttpControllers;
use AppClassesValidator;
use AppModelsSocial;
use AppModelsUser;
use GuzzleHttpClient;
use GuzzleHttpExceptionGuzzleException;
use IlluminateHttpRedirectResponse;
use IlluminateHttpRequest;
use IlluminateViewView;
class SocialController extends Controller
{
    public ?User $user;
    /**
     * Конструктор
     */
    public function __construct()
    {
        $this->middleware('check.user');
        $this->middleware(function ($request, $next) {
            $this->user = getUser();
            return $next($request);
        });
    }
    /**
     * Главная страница
     *
     *
     * @throws GuzzleException
     *
     * @return View|RedirectResponse
     */
    public function index(Request $request)
    {
        if ($request->isMethod('post')) {
            $client = new Client(['timeout' => 30.0]);
            $response = $client->get('//ulogin.ru/token.php', [
                'query' => [
                    'token' => $request->input('token'),
                    'host'  => $_SERVER['HTTP_HOST'],
                ],
            ]);
            if ($response->getStatusCode() === 200) {
                $network = json_decode($response->getBody()->getContents());
                $social = Social::query()
                    ->where('network', $network->network)
                    ->where('uid', $network->uid)
                    ->first();
                if (! $social) {
                    Social::query()->create([
                        'user_id'    => $this->user->id,
                        'network'    => $network->network,
                        'uid'        => $network->uid,
                        'created_at' => SITETIME,
                    ]);
                    setFlash('success', __('socials.success_binding'));
                } else {
                    setFlash('danger', __('socials.already_binding'));
                }
                return redirect('socials');
            }
            setFlash('danger', __('socials.failed_binding'));
        }
        $socials = Social::query()
            ->where('user_id', $this->user->id)
            ->get();
        return view('socials/index', compact('socials'));
    }
    /**
     * Удаление привязки
     */
    public function delete(int $id, Request $request, Validator $validator): RedirectResponse
    {
        $social = Social::query()->where('user_id', $this->user->id)->find($id);
        $validator->equal($request->input('_token'), csrf_token(), __('validator.token'))
            ->notEmpty($social, __('socials.not_found_binding'));
        if ($validator->isValid()) {
            $social->delete();
            setFlash('success', __('socials.success_deleted'));
        } else {
            setFlash('danger', $validator->getErrors());
        }
        return redirect('socials');
    }
}