PrestataireCRUDController.php 1.36 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
<?php

namespace App\Controller\CRUD;

use App\Util\WordpressUtil;
use Sonata\AdminBundle\Datagrid\ProxyQueryInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;

class PrestataireCRUDController extends CRUDController
{
    protected $wp;

    public function __construct(WordpressUtil $wp)
    {
        $this->wp = $wp;
    }

    /**
     * @param array|int|null  If $id is null, sync all the Prestataires
     */
    protected function syncToWordpress($id)
    {
        if ($this->wp->runSync($id)) {
            $this->addFlash('sonata_flash_success', 'Synchronisation vers Wordpress effectuée');
        }

        return new RedirectResponse(
            $this->admin->generateUrl('list', ['filter' => $this->admin->getFilterParameters()])
        );
    }

    public function syncAllWpAction()
    {
        return $this->syncToWordpress(null);
    }

    public function syncWpAction($id)
    {
        if (!$this->admin->hasSubject()) {
            throw new NotFoundHttpException(sprintf('Unable to find the Prestataire with id: %s', $id));
        }

        return $this->syncToWordpress($id);
    }

    public function batchActionSyncWp(ProxyQueryInterface $query)
    {
        $ids = [];
        $selected = $query->execute();

        foreach ($selected as $e) {
            $ids[] = $e->getId();
        }

        return $this->syncToWordpress($ids);
    }
}