INFRA-132 - Fix spacing of @return tag in comments
[civicrm-core.git] / Civi / API / Provider / ReflectionProvider.php
CommitLineData
82376c19
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
82376c19 5 +--------------------------------------------------------------------+
39de6fd5 6 | Copyright CiviCRM LLC (c) 2004-2014 |
82376c19
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28namespace Civi\API\Provider;
8882ff5c 29
82376c19
TO
30use Civi\API\Events;
31use Symfony\Component\EventDispatcher\EventSubscriberInterface;
32
33/**
34 * This class defines operations for inspecting the API's metadata.
35 */
36class ReflectionProvider implements EventSubscriberInterface, ProviderInterface {
6550386a
EM
37 /**
38 * @return array
39 */
82376c19
TO
40 public static function getSubscribedEvents() {
41 return array(
42 Events::RESOLVE => array(
8882ff5c
TO
43 // TODO decide if we really want to override others
44 array('onApiResolve', Events::W_EARLY),
82376c19
TO
45 ),
46 Events::AUTHORIZE => array(
8882ff5c
TO
47 // TODO decide if we really want to override others
48 array('onApiAuthorize', Events::W_EARLY),
82376c19
TO
49 ),
50 );
51 }
52
53 /**
54 * @var \Civi\API\Kernel
55 */
56 private $apiKernel;
57
58 /**
59 * @var array (string $entityName => array(string $actionName))
60 */
61 private $actions;
62
63 /**
64 * @param \Civi\API\Kernel $apiKernel
8882ff5c 65 * The API kernel.
82376c19
TO
66 */
67 public function __construct($apiKernel) {
68 $this->apiKernel = $apiKernel;
69 $this->actions = array(
8882ff5c
TO
70 // FIXME: We really need to deal with the api's lack of uniformity wrt
71 // case (Entity or entity).
82376c19 72 'Entity' => array('get', 'getactions'),
a14e9d08 73 'entity' => array('get', 'getactions'),
82376c19
TO
74 '*' => array('getactions'), // 'getfields'
75 );
76 }
77
6550386a
EM
78 /**
79 * @param \Civi\API\Event\ResolveEvent $event
8882ff5c 80 * API resolution event.
6550386a 81 */
82376c19
TO
82 public function onApiResolve(\Civi\API\Event\ResolveEvent $event) {
83 $apiRequest = $event->getApiRequest();
92776611 84 $actions = $this->getActionNames($apiRequest['version'], $apiRequest['entity']);
82376c19
TO
85 if (in_array($apiRequest['action'], $actions)) {
86 $apiRequest['is_metadata'] = TRUE;
87 $event->setApiRequest($apiRequest);
88 $event->setApiProvider($this);
8882ff5c
TO
89 $event->stopPropagation();
90 // TODO decide if we really want to override others
82376c19
TO
91 }
92 }
93
6550386a
EM
94 /**
95 * @param \Civi\API\Event\AuthorizeEvent $event
8882ff5c 96 * API authorization event.
6550386a 97 */
82376c19
TO
98 public function onApiAuthorize(\Civi\API\Event\AuthorizeEvent $event) {
99 $apiRequest = $event->getApiRequest();
100 if (isset($apiRequest['is_metadata'])) {
8882ff5c
TO
101 // if (\CRM_Core_Permission::check('access AJAX API')
102 // || \CRM_Core_Permission::check('access CiviCRM')) {
82376c19
TO
103 $event->authorize();
104 $event->stopPropagation();
105 // }
106 }
107 }
108
109 /**
110 * {inheritdoc}
111 */
112 public function invoke($apiRequest) {
a14e9d08
CW
113 if (strtolower($apiRequest['entity']) == 'entity' && $apiRequest['action'] == 'get') {
114 return civicrm_api3_create_success($this->apiKernel->getEntityNames($apiRequest['version']), $apiRequest['params'], 'entity', 'get');
82376c19
TO
115 }
116 switch ($apiRequest['action']) {
117 case 'getactions':
a14e9d08 118 return civicrm_api3_create_success($this->apiKernel->getActionNames($apiRequest['version'], $apiRequest['entity']), $apiRequest['params'], $apiRequest['entity'], $apiRequest['action']);
8882ff5c
TO
119
120 //case 'getfields':
121 // return $this->doGetFields($apiRequest);
122
82376c19
TO
123 default:
124 }
125
126 // We shouldn't get here because onApiResolve() checks $this->actions
8882ff5c 127 throw new \API_Exception("Unsupported action (" . $apiRequest['entity'] . '.' . $apiRequest['action'] . ']');
82376c19
TO
128 }
129
130 /**
131 * {inheritdoc}
132 */
8882ff5c 133 public function getEntityNames($version) {
82376c19
TO
134 return array('Entity');
135 }
136
137 /**
138 * {inheritdoc}
139 */
8882ff5c 140 public function getActionNames($version, $entity) {
92776611 141 $entity = _civicrm_api_get_camel_name($entity, $version);
82376c19
TO
142 return isset($this->actions[$entity]) ? $this->actions[$entity] : $this->actions['*'];
143 }
6550386a 144}