koselig/library

View on GitHub
src/Routing/CategoryRoute.php

Summary

Maintainability
B
4 hrs
Test Coverage
<?php
namespace Koselig\Routing;

use Illuminate\Http\Request;
use Illuminate\Routing\Route;
use Koselig\Support\Wordpress;

/**
 * Category page route, used when Wordpress reports
 * this page is a category page.
 *
 * @author Jordan Doyle <jordan@doyle.wf>
 */
class CategoryRoute extends Route
{
    /**
     * Post types for this archive route to hook onto.
     *
     * @var array
     */
    private $categories;

    /**
     * Create a new Route instance.
     *
     * @param  array|string $methods
     * @param  array $postTypes
     * @param  \Closure|array $action
     *
     * @return void
     */
    public function __construct($methods, $postTypes, $action)
    {
        parent::__construct($methods, $postTypes, $action);

        $this->categories = $this->uri;
        $this->uri = 'category/' . (implode('/', $this->categories) ?: 'all');
    }

    /**
     * Determine if the route matches given request.
     *
     * @param  \Illuminate\Http\Request $request
     * @param  bool $includingMethod
     *
     * @return bool
     */
    public function matches(Request $request, $includingMethod = true)
    {
        if (!empty($this->getAction()['domain']) && !Wordpress::multisite($this->getAction()['domain'])) {
            return false;
        }

        return Wordpress::category($this->categories);
    }
}