Вход Регистрация
Файл: app/Http/Controllers/BoardController.php
Строк: 167
<?php

declare(strict_types=1);

namespace 
AppHttpControllers;

use 
AppClassesValidator;
use 
AppModelsBoard;
use 
AppModelsFile;
use 
AppModelsFlood;
use 
AppModelsItem;
use 
IlluminateDatabaseEloquentBuilder;
use 
IlluminateHttpRedirectResponse;
use 
IlluminateHttpRequest;
use 
IlluminateViewView;

class 
BoardController extends Controller
{
    
/**
     * Главная страница
     */
    
public function index(?int $id null): View
    
{
        
$board null;

        if (
$id) {
            
/** @var Board $board */
            
$board Board::query()->find($id);

            if (! 
$board) {
                
abort(404__('boards.category_not_exist'));
            }
        }

        
$items Item::query()
            ->
when($board, static function (Builder $query) use ($board) {
                return 
$query->where('board_id'$board->id);
            })
            ->
where('expires_at''>'SITETIME)
            ->
orderByDesc('updated_at')
            ->
with('category''user''files')
            ->
paginate(Item::BOARD_PAGINATE);

        
$boards Board::query()
            ->
where('parent_id'$board->id ?? 0)
            ->
get();

        return 
view('boards/index'compact('items''board''boards'));
    }

    
/**
     * Просмотр объявления
     */
    
public function view(int $id): View
    
{
        
/** @var Item $item */
        
$item Item::query()
            ->
with('category')
            ->
find($id);

        if (! 
$item) {
            
abort(404__('boards.item_not_exist'));
        }

        if (
$item->expires_at <= SITETIME && getUser() && getUser('id') !== $item->user_id) {
            
abort(200__('boards.item_not_active'));
        }

        return 
view('boards/view'compact('item'));
    }

    
/**
     * Создание объявления
     *
     *
     * @return View|RedirectResponse
     */
    
public function create(Request $requestValidator $validatorFlood $flood)
    {
        
$bid int($request->input('bid'));

        if (! 
$user getUser()) {
            
abort(403);
        }

        
$boards = (new Board())->getChildren();

        if (
$boards->isEmpty()) {
            
abort(200__('boards.categories_not_created'));
        }

        if (
$request->isMethod('post')) {
            
$title $request->input('title');
            
$text $request->input('text');
            
$price int($request->input('price'));
            
$phone preg_replace('/D/'''$request->input('phone') ?? '');

            
/** @var Board $board */
            
$board Board::query()->find($bid);

            
$validator
                
->equal($request->input('_token'), csrf_token(), __('validator.token'))
                ->
length($title350, ['title' => __('validator.text')])
                ->
length($text505000, ['text' => __('validator.text')])
                ->
phone($phone, ['phone' => __('validator.phone')], false)
                ->
false($flood->isFlood(), ['msg' => __('validator.flood', ['sec' => $flood->getPeriod()])])
                ->
notEmpty($board, ['category' => __('boards.category_not_exist')]);

            if (
$board) {
                
$validator->empty($board->closed, ['category' => __('boards.category_closed')]);
            }

            if (
$validator->isValid()) {
                
/** @var Item $item */
                
$item Item::query()->create([
                    
'board_id'   => $board->id,
                    
'title'      => $title,
                    
'text'       => $text,
                    
'user_id'    => $user->id,
                    
'price'      => $price,
                    
'phone'      => $phone,
                    
'created_at' => SITETIME,
                    
'updated_at' => SITETIME,
                    
'expires_at' => strtotime('+1 month'SITETIME),
                ]);

                
$item->category->increment('count_items');

                
File::query()
                    ->
where('relate_type'Item::$morphName)
                    ->
where('relate_id'0)
                    ->
where('user_id'$user->id)
                    ->
update(['relate_id' => $item->id]);

                
clearCache(['statBoards''recentBoards''ItemFeed']);
                
$flood->saveState();

                
setFlash('success'__('boards.item_success_added'));

                return 
redirect('items/' $item->id);
            }

            
setInput($request->all());
            
setFlash('danger'$validator->getErrors());
        }

        
$files File::query()
            ->
where('relate_type'Item::$morphName)
            ->
where('relate_id'0)
            ->
where('user_id'$user->id)
            ->
get();

        return 
view('boards/create'compact('boards''bid''files'));
    }

    
/**
     * Редактирование объявления
     *
     *
     * @return View|RedirectResponse
     */
    
public function edit(int $idRequest $requestValidator $validator)
    {
        if (! 
$user getUser()) {
            
abort(403__('main.not_authorized'));
        }

        
/** @var Item $item */
        
$item Item::query()->find($id);

        if (! 
$item) {
            
abort(404__('boards.item_not_exist'));
        }

        if (
$request->isMethod('post')) {
            
$bid int($request->input('bid'));
            
$title $request->input('title');
            
$text $request->input('text');
            
$price int($request->input('price'));
            
$phone preg_replace('/D/'''$request->input('phone') ?? '');

            
/** @var Board $board */
            
$board Board::query()->find($bid);

            
$validator
                
->equal($request->input('_token'), csrf_token(), __('validator.token'))
                ->
length($title350, ['title' => __('validator.text')])
                ->
length($text505000, ['text' => __('validator.text')])
                ->
phone($phone, ['phone' => __('validator.phone')], false)
                ->
notEmpty($board, ['category' => __('boards.category_not_exist')])
                ->
equal($item->user_id$user->id__('boards.item_not_author'));

            if (
$board) {
                
$validator->empty($board->closed, ['category' => __('boards.category_closed')]);
            }

            if (
$validator->isValid()) {
                
// Обновление счетчиков
                
if ($item->board_id !== $board->id) {
                    
$board->increment('count_items');
                    
Board::query()->where('id'$item->board_id)->decrement('count_items');
                }

                
$item->update([
                    
'board_id' => $board->id,
                    
'title'    => $title,
                    
'text'     => $text,
                    
'price'    => $price,
                    
'phone'    => $phone,
                ]);

                
clearCache(['statBoards''recentBoards''ItemFeed']);
                
setFlash('success'__('boards.item_success_edited'));

                return 
redirect('items/' $item->id);
            }

            
setInput($request->all());
            
setFlash('danger'$validator->getErrors());
        }

        
$boards $item->category->getChildren();

        return 
view('boards/edit'compact('item''boards'));
    }

    
/**
     * Снятие / Публикация объявления
     */
    
public function close(int $idRequest $requestValidator $validator): RedirectResponse
    
{
        if (! 
$user getUser()) {
            
abort(403__('main.not_authorized'));
        }

        
/** @var Item $item */
        
$item Item::query()->find($id);

        if (! 
$item) {
            
abort(404__('boards.item_not_exist'));
        }

        
$validator->equal($request->input('_token'), csrf_token(), __('validator.token'))
            ->
equal($item->user_id$user->id__('boards.item_not_author'));

        if (
$validator->isValid()) {
            if (
$item->expires_at SITETIME) {
                
$status __('boards.item_success_unpublished');
                
$item->update([
                    
'expires_at' => SITETIME,
                ]);

                
$item->category->decrement('count_items');
            } else {
                
$status __('boards.item_success_published');
                
$expired strtotime('+1 month'$item->updated_at) <= SITETIME;

                
$item->update([
                    
'expires_at' => strtotime('+1 month'SITETIME),
                    
'updated_at' => $expired SITETIME $item->updated_at,
                ]);

                
$item->category->increment('count_items');
            }

            
setFlash('success'$status);
        } else {
            
setFlash('danger'$validator->getErrors());
        }

        return 
redirect('items/edit/' $item->id);
    }

    
/**
     * Удаление объявления
     */
    
public function delete(int $idRequest $requestValidator $validator): RedirectResponse
    
{
        if (! 
$user getUser()) {
            
abort(403__('main.not_authorized'));
        }

        
/** @var Item $item */
        
$item Item::query()->find($id);

        if (! 
$item) {
            
abort(404__('boards.item_not_exist'));
        }

        
$validator->equal($request->input('_token'), csrf_token(), __('validator.token'))
            ->
equal($item->user_id$user->id__('boards.item_not_author'));

        if (
$validator->isValid()) {
            
$item->delete();

            
$item->category->decrement('count_items');

            
clearCache(['statBoards''recentBoards''ItemFeed']);
            
setFlash('success'__('boards.item_success_deleted'));
        } else {
            
setFlash('danger'$validator->getErrors());
        }

        return 
redirect('boards/' $item->board_id);
    }

    
/**
     * Мои объявления
     */
    
public function active(): View
    
{
        if (! 
$user getUser()) {
            
abort(403__('main.not_authorized'));
        }

        
$items Item::query()
            ->
where('user_id'$user->id)
            ->
orderByDesc('updated_at')
            ->
with('category''user''files')
            ->
paginate(Item::BOARD_PAGINATE);

        return 
view('boards/active'compact('items'));
    }
}
Онлайн: 5
Реклама