You are here

DeveloperAppByNameRouteAlterSubscriber.php in Apigee Edge 8

File

src/Routing/DeveloperAppByNameRouteAlterSubscriber.php
View source
<?php

/**
 * Copyright 2018 Google Inc.
 *
 * This program is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License version 2 as published by the
 * Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
 * License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc., 51
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */
namespace Drupal\apigee_edge\Routing;

use Drupal\Component\Utility\NestedArray;
use Drupal\Core\Routing\RouteSubscriberBase;
use Symfony\Component\Routing\RouteCollection;

/**
 * Registers the 'type' of the 'app' route parameter if 'user' is available.
 *
 * The {developer_app} parameter can be automatically resolved by
 * EntityResolverManager, but in that case the value of in the path is the app
 * id (UUID) and not the name of an app.
 *
 * @see \Drupal\apigee_edge\Entity\DeveloperApp::urlRouteParameters()
 * @see \Drupal\apigee_edge\ParamConverter\DeveloperAppNameConverter
 */
final class DeveloperAppByNameRouteAlterSubscriber extends RouteSubscriberBase {

  /**
   * {@inheritdoc}
   */
  protected function alterRoutes(RouteCollection $collection) {
    foreach ($collection as $id => $route) {
      if (strpos($id, 'entity.developer_app') !== FALSE && in_array('user', $route
        ->compile()
        ->getPathVariables()) && in_array('app', $route
        ->compile()
        ->getPathVariables())) {
        $params = $route
          ->getOption('parameters') ?? [];
        NestedArray::setValue($params, [
          'app',
          'type',
        ], 'developer_app_by_name');
        $route
          ->setOption('parameters', $params);
      }
    }
  }

}

Classes

Namesort descending Description
DeveloperAppByNameRouteAlterSubscriber Registers the 'type' of the 'app' route parameter if 'user' is available.