Merge branch '4.7.21-rc' into master
[civicrm-core.git] / Civi / Core / Container.php
CommitLineData
fa184193
TO
1<?php
2namespace Civi\Core;
46bcf597 3
8bcc0d86 4use Civi\API\Provider\ActionObjectProvider;
0085db83 5use Civi\Core\Event\SystemInstallEvent;
10760fa1 6use Civi\Core\Lock\LockManager;
fa184193
TO
7use Doctrine\Common\Annotations\AnnotationReader;
8use Doctrine\Common\Annotations\AnnotationRegistry;
9use Doctrine\Common\Annotations\FileCacheReader;
10use Doctrine\Common\Cache\FilesystemCache;
11use Doctrine\ORM\EntityManager;
12use Doctrine\ORM\Mapping\Driver\AnnotationDriver;
13use Doctrine\ORM\Tools\Setup;
40787e18 14use Symfony\Component\Config\ConfigCache;
fa184193 15use Symfony\Component\DependencyInjection\ContainerBuilder;
c8074a93 16use Symfony\Component\DependencyInjection\ContainerInterface;
fa184193 17use Symfony\Component\DependencyInjection\Definition;
40787e18 18use Symfony\Component\DependencyInjection\Dumper\PhpDumper;
fa184193 19use Symfony\Component\DependencyInjection\Reference;
40787e18
TO
20use Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher;
21use Symfony\Component\EventDispatcher\DependencyInjection\RegisterListenersPass;
fa184193
TO
22
23// TODO use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
24
6550386a
EM
25/**
26 * Class Container
27 * @package Civi\Core
28 */
fa184193
TO
29class Container {
30
31 const SELF = 'civi_container_factory';
32
fa184193 33 /**
04855556
TO
34 * @param bool $reset
35 * Whether to forcibly rebuild the entire container.
fa184193
TO
36 * @return \Symfony\Component\DependencyInjection\TaggedContainerInterface
37 */
378e2654 38 public static function singleton($reset = FALSE) {
7f835399
TO
39 if ($reset || !isset(\Civi::$statics[__CLASS__]['container'])) {
40 self::boot(TRUE);
fa184193 41 }
7f835399 42 return \Civi::$statics[__CLASS__]['container'];
fa184193
TO
43 }
44
45 /**
40787e18
TO
46 * Find a cached container definition or construct a new one.
47 *
48 * There are many weird contexts in which Civi initializes (eg different
49 * variations of multitenancy and different permutations of CMS/CRM bootstrap),
50 * and hook_container may fire a bit differently in each context. To mitigate
51 * risk of leaks between environments, we compute a unique envID
52 * (md5(DB_NAME, HTTP_HOST, SCRIPT_FILENAME, etc)) and use separate caches for
53 * each (eg "templates_c/CachedCiviContainer.$ENVID.php").
54 *
55 * Constants:
56 * - CIVICRM_CONTAINER_CACHE -- 'always' [default], 'never', 'auto'
57 * - CIVICRM_DSN
58 * - CIVICRM_DOMAIN_ID
59 * - CIVICRM_TEMPLATE_COMPILEDIR
60 *
61 * @return ContainerInterface
62 */
63 public function loadContainer() {
64 // Note: The container's raison d'etre is to manage construction of other
65 // services. Consequently, we assume a minimal service available -- the classloader
66 // has been setup, and civicrm.settings.php is loaded, but nothing else works.
67
68 $cacheMode = defined('CIVICRM_CONTAINER_CACHE') ? CIVICRM_CONTAINER_CACHE : 'always';
69
70 // In pre-installation environments, don't bother with caching.
71 if (!defined('CIVICRM_TEMPLATE_COMPILEDIR') || !defined('CIVICRM_DSN') || $cacheMode === 'never' || \CRM_Utils_System::isInUpgradeMode()) {
12e01332
TO
72 $containerBuilder = $this->createContainer();
73 $containerBuilder->compile();
74 return $containerBuilder;
40787e18
TO
75 }
76
83617886 77 $envId = \CRM_Core_Config_Runtime::getId();
40787e18
TO
78 $file = CIVICRM_TEMPLATE_COMPILEDIR . "/CachedCiviContainer.{$envId}.php";
79 $containerConfigCache = new ConfigCache($file, $cacheMode === 'auto');
40787e18
TO
80 if (!$containerConfigCache->isFresh()) {
81 $containerBuilder = $this->createContainer();
82 $containerBuilder->compile();
83 $dumper = new PhpDumper($containerBuilder);
84 $containerConfigCache->write(
85 $dumper->dump(array('class' => 'CachedCiviContainer')),
86 $containerBuilder->getResources()
87 );
88 }
89
90 require_once $file;
91 $c = new \CachedCiviContainer();
92 $c->set('service_container', $c);
93 return $c;
94 }
95
96 /**
97 * Construct a new container.
98 *
fa184193 99 * @var ContainerBuilder
77b97be7 100 * @return \Symfony\Component\DependencyInjection\ContainerBuilder
fa184193
TO
101 */
102 public function createContainer() {
103 $civicrm_base_path = dirname(dirname(__DIR__));
104 $container = new ContainerBuilder();
40787e18
TO
105 $container->addCompilerPass(new RegisterListenersPass('dispatcher'));
106 $container->addObjectResource($this);
fa184193 107 $container->setParameter('civicrm_base_path', $civicrm_base_path);
40787e18 108 //$container->set(self::SELF, $this);
762dc04d
TO
109
110 $container->addResource(new \Symfony\Component\Config\Resource\FileResource(__FILE__));
111
40787e18
TO
112 $container->setDefinition(self::SELF, new Definition(
113 'Civi\Core\Container',
114 array()
115 ));
fa184193 116
505d8b83
TO
117 // TODO Move configuration to an external file; define caching structure
118 // if (empty($configDirectories)) {
119 // throw new \Exception(__CLASS__ . ': Missing required properties (civicrmRoot, configDirectories)');
120 // }
121 // $locator = new FileLocator($configDirectories);
122 // $loaderResolver = new LoaderResolver(array(
123 // new YamlFileLoader($container, $locator)
124 // ));
125 // $delegatingLoader = new DelegatingLoader($loaderResolver);
126 // foreach (array('services.yml') as $file) {
127 // $yamlUserFiles = $locator->locate($file, NULL, FALSE);
128 // foreach ($yamlUserFiles as $file) {
129 // $delegatingLoader->load($file);
130 // }
131 // }
fa184193 132
16072ce1 133 $container->setDefinition('angular', new Definition(
40787e18 134 'Civi\Angular\Manager',
16072ce1
TO
135 array()
136 ))
137 ->setFactoryService(self::SELF)->setFactoryMethod('createAngularManager');
138
fa184193 139 $container->setDefinition('dispatcher', new Definition(
762dc04d 140 'Civi\Core\CiviEventDispatcher',
40787e18 141 array(new Reference('service_container'))
fa184193
TO
142 ))
143 ->setFactoryService(self::SELF)->setFactoryMethod('createEventDispatcher');
144
c65db512 145 $container->setDefinition('magic_function_provider', new Definition(
40787e18 146 'Civi\API\Provider\MagicFunctionProvider',
c65db512
TO
147 array()
148 ));
149
0f643fb2 150 $container->setDefinition('civi_api_kernel', new Definition(
40787e18 151 'Civi\API\Kernel',
c65db512 152 array(new Reference('dispatcher'), new Reference('magic_function_provider'))
0f643fb2
TO
153 ))
154 ->setFactoryService(self::SELF)->setFactoryMethod('createApiKernel');
155
7b4bbb34 156 $container->setDefinition('cxn_reg_client', new Definition(
40787e18 157 'Civi\Cxn\Rpc\RegistrationClient',
7b4bbb34
TO
158 array()
159 ))
9ae2d27b 160 ->setFactoryClass('CRM_Cxn_BAO_Cxn')->setFactoryMethod('createRegistrationClient');
7b4bbb34 161
6e5ad5ee
TO
162 $container->setDefinition('psr_log', new Definition('CRM_Core_Error_Log', array()));
163
83617886 164 foreach (array('js_strings', 'community_messages') as $cacheName) {
a4704404
TO
165 $container->setDefinition("cache.{$cacheName}", new Definition(
166 'CRM_Utils_Cache_Interface',
167 array(
168 array(
169 'name' => $cacheName,
a944a143 170 'type' => array('*memory*', 'SqlGroup', 'ArrayCache'),
a4704404
TO
171 ),
172 )
173 ))->setFactoryClass('CRM_Utils_Cache')->setFactoryMethod('create');
174 }
3a84c0ab 175
4ed867e0
TO
176 $container->setDefinition('sql_triggers', new Definition(
177 'Civi\Core\SqlTriggers',
178 array()
179 ));
180
87e3fe24
TO
181 $container->setDefinition('asset_builder', new Definition(
182 'Civi\Core\AssetBuilder',
183 array()
184 ));
185
247eb841
TO
186 $container->setDefinition('pear_mail', new Definition('Mail'))
187 ->setFactoryClass('CRM_Utils_Mail')->setFactoryMethod('createMailer');
188
7f835399
TO
189 if (empty(\Civi::$statics[__CLASS__]['boot'])) {
190 throw new \RuntimeException("Cannot initialize container. Boot services are undefined.");
191 }
192 foreach (\Civi::$statics[__CLASS__]['boot'] as $bootService => $def) {
56eafc21 193 $container->setDefinition($bootService, new Definition())->setSynthetic(TRUE);
83617886
TO
194 }
195
c8074a93
TO
196 // Expose legacy singletons as services in the container.
197 $singletons = array(
198 'resources' => 'CRM_Core_Resources',
199 'httpClient' => 'CRM_Utils_HttpClient',
7b5937fe 200 'cache.default' => 'CRM_Utils_Cache',
a7c57397 201 'i18n' => 'CRM_Core_I18n',
c8074a93
TO
202 // Maybe? 'config' => 'CRM_Core_Config',
203 // Maybe? 'smarty' => 'CRM_Core_Smarty',
204 );
205 foreach ($singletons as $name => $class) {
206 $container->setDefinition($name, new Definition(
207 $class
208 ))
209 ->setFactoryClass($class)->setFactoryMethod('singleton');
210 }
211
43ceab3f
TO
212 $container->setDefinition('civi_token_compat', new Definition(
213 'Civi\Token\TokenCompatSubscriber',
214 array()
215 ))->addTag('kernel.event_subscriber');
56df2d06
TO
216 $container->setDefinition("crm_mailing_action_tokens", new Definition(
217 "CRM_Mailing_ActionTokens",
218 array()
219 ))->addTag('kernel.event_subscriber');
43ceab3f 220
56df2d06 221 foreach (array('Activity', 'Contribute', 'Event', 'Mailing', 'Member') as $comp) {
46f5566c
TO
222 $container->setDefinition("crm_" . strtolower($comp) . "_tokens", new Definition(
223 "CRM_{$comp}_Tokens",
224 array()
225 ))->addTag('kernel.event_subscriber');
226 }
50a23755 227
aa4343bc
TO
228 if (\CRM_Utils_Constant::value('CIVICRM_FLEXMAILER_HACK_SERVICES')) {
229 \Civi\Core\Resolver::singleton()->call(CIVICRM_FLEXMAILER_HACK_SERVICES, array($container));
230 }
231
40787e18
TO
232 \CRM_Utils_Hook::container($container);
233
fa184193
TO
234 return $container;
235 }
236
16072ce1
TO
237 /**
238 * @return \Civi\Angular\Manager
239 */
240 public function createAngularManager() {
241 return new \Civi\Angular\Manager(\CRM_Core_Resources::singleton());
242 }
243
fa184193 244 /**
40787e18 245 * @param ContainerInterface $container
43ceab3f 246 * @return \Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher
fa184193 247 */
40787e18 248 public function createEventDispatcher($container) {
762dc04d 249 $dispatcher = new CiviEventDispatcher($container);
0085db83 250 $dispatcher->addListener(SystemInstallEvent::EVENT_NAME, array('\Civi\Core\InstallationCanary', 'check'));
40d5632a 251 $dispatcher->addListener(SystemInstallEvent::EVENT_NAME, array('\Civi\Core\DatabaseInitializer', 'initialize'));
ece6501c 252 $dispatcher->addListener(SystemInstallEvent::EVENT_NAME, array('\Civi\Core\LocalizationInitializer', 'initialize'));
c73e3098
TO
253 $dispatcher->addListener('hook_civicrm_pre', array('\Civi\Core\Event\PreEvent', 'dispatchSubevent'), 100);
254 $dispatcher->addListener('hook_civicrm_post', array('\Civi\Core\Event\PostEvent', 'dispatchSubevent'), 100);
708d8fa2 255 $dispatcher->addListener('hook_civicrm_post::Activity', array('\Civi\CCase\Events', 'fireCaseChange'));
753657ed 256 $dispatcher->addListener('hook_civicrm_post::Case', array('\Civi\CCase\Events', 'fireCaseChange'));
708d8fa2 257 $dispatcher->addListener('hook_civicrm_caseChange', array('\Civi\CCase\Events', 'delegateToXmlListeners'));
b019b130 258 $dispatcher->addListener('hook_civicrm_caseChange', array('\Civi\CCase\SequenceListener', 'onCaseChange_static'));
47e7c2f8 259 $dispatcher->addListener('hook_civicrm_eventDefs', array('\Civi\Core\CiviEventInspector', 'findBuiltInEvents'));
0d0031a0 260 // TODO We need a better code-convention for metadata about non-hook events.
47e7c2f8
TO
261 $dispatcher->addListener('hook_civicrm_eventDefs', array('\Civi\API\Events', 'hookEventDefs'));
262 $dispatcher->addListener('hook_civicrm_eventDefs', array('\Civi\Core\Event\SystemInstallEvent', 'hookEventDefs'));
466e4b29 263 $dispatcher->addListener('hook_civicrm_buildAsset', array('\Civi\Angular\Page\Modules', 'buildAngularModules'));
94075464
TO
264 $dispatcher->addListener('civi.dao.postInsert', array('\CRM_Core_BAO_RecurringEntity', 'triggerInsert'));
265 $dispatcher->addListener('civi.dao.postUpdate', array('\CRM_Core_BAO_RecurringEntity', 'triggerUpdate'));
266 $dispatcher->addListener('civi.dao.postDelete', array('\CRM_Core_BAO_RecurringEntity', 'triggerDelete'));
46bcf597 267 $dispatcher->addListener('hook_civicrm_unhandled_exception', array(
9ae2d27b
TO
268 'CRM_Core_LegacyErrorHandler',
269 'handleException',
c73e3098 270 ), -200);
46f5566c
TO
271 $dispatcher->addListener(\Civi\ActionSchedule\Events::MAPPINGS, array('CRM_Activity_ActionMapping', 'onRegisterActionMappings'));
272 $dispatcher->addListener(\Civi\ActionSchedule\Events::MAPPINGS, array('CRM_Contact_ActionMapping', 'onRegisterActionMappings'));
2045389a 273 $dispatcher->addListener(\Civi\ActionSchedule\Events::MAPPINGS, array('CRM_Contribute_ActionMapping_ByPage', 'onRegisterActionMappings'));
b5302d4e 274 $dispatcher->addListener(\Civi\ActionSchedule\Events::MAPPINGS, array('CRM_Contribute_ActionMapping_ByType', 'onRegisterActionMappings'));
46f5566c
TO
275 $dispatcher->addListener(\Civi\ActionSchedule\Events::MAPPINGS, array('CRM_Event_ActionMapping', 'onRegisterActionMappings'));
276 $dispatcher->addListener(\Civi\ActionSchedule\Events::MAPPINGS, array('CRM_Member_ActionMapping', 'onRegisterActionMappings'));
277
aa4343bc
TO
278 if (\CRM_Utils_Constant::value('CIVICRM_FLEXMAILER_HACK_LISTENERS')) {
279 \Civi\Core\Resolver::singleton()->call(CIVICRM_FLEXMAILER_HACK_LISTENERS, array($dispatcher));
280 }
281
fa184193
TO
282 return $dispatcher;
283 }
0f643fb2 284
10760fa1
TO
285 /**
286 * @return LockManager
287 */
83617886 288 public static function createLockManager() {
10760fa1
TO
289 // Ideally, downstream implementers could override any definitions in
290 // the container. For now, we'll make-do with some define()s.
291 $lm = new LockManager();
292 $lm
293 ->register('/^cache\./', defined('CIVICRM_CACHE_LOCK') ? CIVICRM_CACHE_LOCK : array('CRM_Core_Lock', 'createScopedLock'))
294 ->register('/^data\./', defined('CIVICRM_DATA_LOCK') ? CIVICRM_DATA_LOCK : array('CRM_Core_Lock', 'createScopedLock'))
295 ->register('/^worker\.mailing\.send\./', defined('CIVICRM_WORK_LOCK') ? CIVICRM_WORK_LOCK : array('CRM_Core_Lock', 'createCivimailLock'))
296 ->register('/^worker\./', defined('CIVICRM_WORK_LOCK') ? CIVICRM_WORK_LOCK : array('CRM_Core_Lock', 'createScopedLock'));
297
298 // Registrations may use complex resolver expressions, but (as a micro-optimization)
299 // the default factory is specified as an array.
300
301 return $lm;
302 }
303
0f643fb2
TO
304 /**
305 * @param \Symfony\Component\EventDispatcher\EventDispatcher $dispatcher
2a6da8d7
EM
306 * @param $magicFunctionProvider
307 *
0f643fb2
TO
308 * @return \Civi\API\Kernel
309 */
c65db512 310 public function createApiKernel($dispatcher, $magicFunctionProvider) {
0a946de2 311 $dispatcher->addSubscriber(new \Civi\API\Subscriber\ChainSubscriber());
b55bc593 312 $dispatcher->addSubscriber(new \Civi\API\Subscriber\TransactionSubscriber());
bace5cd9 313 $dispatcher->addSubscriber(new \Civi\API\Subscriber\I18nSubscriber());
c65db512 314 $dispatcher->addSubscriber($magicFunctionProvider);
d0c9daa4 315 $dispatcher->addSubscriber(new \Civi\API\Subscriber\PermissionCheck());
dcef11bd 316 $dispatcher->addSubscriber(new \Civi\API\Subscriber\APIv3SchemaAdapter());
6d3bdc98
TO
317 $dispatcher->addSubscriber(new \Civi\API\Subscriber\WrapperAdapter(array(
318 \CRM_Utils_API_HTMLInputCoder::singleton(),
319 \CRM_Utils_API_NullOutputCoder::singleton(),
320 \CRM_Utils_API_ReloadOption::singleton(),
321 \CRM_Utils_API_MatchOption::singleton(),
322 )));
0661f62b 323 $dispatcher->addSubscriber(new \Civi\API\Subscriber\XDebugSubscriber());
82376c19
TO
324 $kernel = new \Civi\API\Kernel($dispatcher);
325
326 $reflectionProvider = new \Civi\API\Provider\ReflectionProvider($kernel);
327 $dispatcher->addSubscriber($reflectionProvider);
328
56154d36
TO
329 $dispatcher->addSubscriber(new \Civi\API\Subscriber\DynamicFKAuthorization(
330 $kernel,
331 'Attachment',
332 array('create', 'get', 'delete'),
2e37a19f 333 // Given a file ID, determine the entity+table it's attached to.
56154d36
TO
334 'SELECT if(cf.id,1,0) as is_valid, cef.entity_table, cef.entity_id
335 FROM civicrm_file cf
336 LEFT JOIN civicrm_entity_file cef ON cf.id = cef.file_id
337 WHERE cf.id = %1',
29468114
TO
338 // Get a list of custom fields (field_name,table_name,extends)
339 'SELECT concat("custom_",fld.id) as field_name,
340 grp.table_name as table_name,
341 grp.extends as extends
342 FROM civicrm_custom_field fld
343 INNER JOIN civicrm_custom_group grp ON fld.custom_group_id = grp.id
344 WHERE fld.data_type = "File"
345 ',
e3e66815 346 array('civicrm_activity', 'civicrm_mailing', 'civicrm_contact', 'civicrm_grant')
56154d36
TO
347 ));
348
82376c19
TO
349 $kernel->setApiProviders(array(
350 $reflectionProvider,
351 $magicFunctionProvider,
352 ));
353
0f643fb2
TO
354 return $kernel;
355 }
96025800 356
83617886
TO
357 /**
358 * Get a list of boot services.
359 *
360 * These are services which must be setup *before* the container can operate.
361 *
7f835399 362 * @param bool $loadFromDB
83617886
TO
363 * @throws \CRM_Core_Exception
364 */
7f835399 365 public static function boot($loadFromDB) {
56eafc21 366 // Array(string $serviceId => object $serviceInstance).
7f835399
TO
367 $bootServices = array();
368 \Civi::$statics[__CLASS__]['boot'] = &$bootServices;
d4330c62 369
56eafc21 370 $bootServices['runtime'] = $runtime = new \CRM_Core_Config_Runtime();
7f835399 371 $runtime->initialize($loadFromDB);
d4330c62 372
56eafc21 373 $bootServices['paths'] = new \Civi\Core\Paths();
d4330c62 374
7f835399 375 $class = $runtime->userFrameworkClass;
56eafc21 376 $bootServices['userSystem'] = $userSystem = new $class();
7f835399
TO
377 $userSystem->initialize();
378
379 $userPermissionClass = 'CRM_Core_Permission_' . $runtime->userFramework;
56eafc21 380 $bootServices['userPermissionClass'] = new $userPermissionClass();
7f835399 381
56eafc21
TO
382 $bootServices['cache.settings'] = \CRM_Utils_Cache::create(array(
383 'name' => 'settings',
384 'type' => array('*memory*', 'SqlGroup', 'ArrayCache'),
385 ));
7f835399 386
56eafc21 387 $bootServices['settings_manager'] = new \Civi\Core\SettingsManager($bootServices['cache.settings']);
7f835399 388
56eafc21 389 $bootServices['lockManager'] = self::createLockManager();
7f835399
TO
390
391 if ($loadFromDB && $runtime->dsn) {
3a036b15 392 \CRM_Core_DAO::init($runtime->dsn);
edbcbd96 393 \CRM_Utils_Hook::singleton(TRUE);
7f835399 394 \CRM_Extension_System::singleton(TRUE);
4025c773 395 \CRM_Extension_System::singleton(TRUE)->getClassLoader()->register();
7f835399 396
1b81ed50 397 $runtime->includeCustomPath();
398
7f835399 399 $c = new self();
56eafc21
TO
400 $container = $c->loadContainer();
401 foreach ($bootServices as $name => $obj) {
402 $container->set($name, $obj);
403 }
404 \Civi::$statics[__CLASS__]['container'] = $container;
83617886 405 }
83617886
TO
406 }
407
408 public static function getBootService($name) {
56eafc21 409 return \Civi::$statics[__CLASS__]['boot'][$name];
83617886
TO
410 }
411
4d8e83b6
TO
412 /**
413 * Determine whether the container services are available.
414 *
415 * @return bool
416 */
417 public static function isContainerBooted() {
418 return isset(\Civi::$statics[__CLASS__]['container']);
419 }
420
fa184193 421}