Merge pull request #19407 from eileenmcnaughton/anet
[civicrm-core.git] / CRM / Api4 / Services.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC. All rights reserved. |
6 | |
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
10 +--------------------------------------------------------------------+
11 */
12
13 /**
14 *
15 * @package CRM
16 * @copyright CiviCRM LLC https://civicrm.org/licensing
17 */
18
19
20 use Symfony\Component\DependencyInjection\Reference;
21 use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
22 use Symfony\Component\Config\FileLocator;
23
24 class CRM_Api4_Services {
25
26 /**
27 * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
28 */
29 public static function hook_container($container) {
30 $loader = new XmlFileLoader($container, new FileLocator(dirname(dirname(__DIR__))));
31 $loader->load('Civi/Api4/services.xml');
32
33 self::loadServices('Civi\Api4\Service\Spec\Provider', 'spec_provider', $container);
34 self::loadServices('Civi\Api4\Event\Subscriber', 'event_subscriber', $container);
35
36 $container->getDefinition('civi_api_kernel')->addMethodCall(
37 'registerApiProvider',
38 [new Reference('action_object_provider')]
39 );
40
41 // add event subscribers$container->get(
42 $dispatcher = $container->getDefinition('dispatcher');
43 $subscribers = $container->findTaggedServiceIds('event_subscriber');
44
45 foreach (array_keys($subscribers) as $subscriber) {
46 $dispatcher->addMethodCall(
47 'addSubscriber',
48 [new Reference($subscriber)]
49 );
50 }
51
52 // add spec providers
53 $providers = $container->findTaggedServiceIds('spec_provider');
54 $gatherer = $container->getDefinition('spec_gatherer');
55
56 foreach (array_keys($providers) as $provider) {
57 $gatherer->addMethodCall(
58 'addSpecProvider',
59 [new Reference($provider)]
60 );
61 }
62
63 if (defined('CIVICRM_UF') && CIVICRM_UF === 'UnitTests') {
64 $loader->load('tests/phpunit/api/v4/services.xml');
65 }
66 }
67
68 /**
69 * Load all services in a given directory
70 *
71 * @param string $namespace
72 * @param string $tag
73 * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
74 */
75 public static function loadServices($namespace, $tag, $container) {
76 $namespace = \CRM_Utils_File::addTrailingSlash($namespace, '\\');
77 $locations = array_merge([\Civi::paths()->getPath('[civicrm.root]/Civi.php')],
78 array_column(\CRM_Extension_System::singleton()->getMapper()->getActiveModuleFiles(), 'filePath')
79 );
80 foreach ($locations as $location) {
81 $path = \CRM_Utils_File::addTrailingSlash(dirname($location)) . str_replace('\\', DIRECTORY_SEPARATOR, $namespace);
82 if (!file_exists($path) || !is_dir($path)) {
83 $resource = new \Symfony\Component\Config\Resource\FileExistenceResource($path);
84 $container->addResource($resource);
85 }
86 else {
87 $resource = new \Symfony\Component\Config\Resource\DirectoryResource($path, ';\.php$;');
88 foreach (glob("$path*.php") as $file) {
89 $matches = [];
90 preg_match('/(\w*)\.php$/', $file, $matches);
91 $serviceName = $namespace . array_pop($matches);
92 $serviceClass = new \ReflectionClass($serviceName);
93 if ($serviceClass->isInstantiable()) {
94 $definition = $container->register(str_replace('\\', '_', $serviceName), $serviceName);
95 $definition->addTag($tag);
96 }
97 }
98 $container->addResource($resource);
99 }
100 }
101 }
102
103 }