AppsPageAccessCheck.php in Apigee Edge 8
Namespace
Drupal\apigee_edge\AccessFile
src/Access/AppsPageAccessCheck.phpView 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\Access;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Access\AccessResultAllowed;
use Drupal\Core\Routing\Access\AccessInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Session\AccountInterface;
/**
* Custom access handler to Apps page.
*/
class AppsPageAccessCheck implements AccessInterface {
/**
* Grant access to the Apps page if user has any of the required permissions.
*
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The parametrized route.
* @param \Drupal\Core\Session\AccountInterface $account
* The currently logged in account.
*
* @return \Drupal\Core\Access\AccessResultInterface
* The access result.
*/
public function access(RouteMatchInterface $route_match, AccountInterface $account) {
/** @var \Drupal\user\UserInterface $user */
$user = $route_match
->getParameter('user');
if ($user === NULL) {
return AccessResult::forbidden('User is missing from route.');
}
return AccessResultAllowed::allowedIf($account
->id() === $user
->id() && $account
->hasPermission('view own developer_app') || $account
->hasPermission('administer developer_app'));
}
/**
* Grant access to the user/[uid]/create-apps page.
*
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The parametrized route.
* @param \Drupal\Core\Session\AccountInterface $account
* The currently logged in account.
*
* @return \Drupal\Core\Access\AccessResultInterface
* The access result.
*/
public function createAppAccess(RouteMatchInterface $route_match, AccountInterface $account) {
/** @var \Drupal\user\UserInterface $user */
$user = $route_match
->getParameter('user');
if ($user === NULL) {
return AccessResult::forbidden('User is missing from route.');
}
return AccessResultAllowed::allowedIf($account
->id() === $user
->id() && $account
->hasPermission('create developer_app') || $account
->hasPermission('administer developer_app'));
}
}
Classes
Name | Description |
---|---|
AppsPageAccessCheck | Custom access handler to Apps page. |