Merge pull request #2157 from kurund/CRM-13896
[civicrm-core.git] / CRM / Core / Config.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
232624b1 4 | CiviCRM version 4.4 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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
28/**
29 * Config handles all the run time configuration changes that the system needs to deal with.
30 * Typically we'll have different values for a user's sandbox, a qa sandbox and a production area.
31 * The default values in general, should reflect production values (minimizes chances of screwing up)
32 *
33 * @package CRM
34 * @copyright CiviCRM LLC (c) 2004-2013
35 * $Id$
36 *
37 */
38
39require_once 'Log.php';
40require_once 'Mail.php';
41
42require_once 'api/api.php';
43class CRM_Core_Config extends CRM_Core_Config_Variables {
44 ///
45 /// BASE SYSTEM PROPERTIES (CIVICRM.SETTINGS.PHP)
46 ///
47
48 /**
49 * the dsn of the database connection
50 * @var string
51 */
52 public $dsn;
53
54 /**
55 * the name of user framework
56 * @var string
57 */
58 public $userFramework = 'Drupal';
59
60 /**
61 * the name of user framework url variable name
62 * @var string
63 */
64 public $userFrameworkURLVar = 'q';
65
66 /**
67 * the dsn of the database connection for user framework
68 * @var string
69 */
70 public $userFrameworkDSN = NULL;
71
72 /**
73 * The connector module for the CMS/UF
74 *
75 * @var CRM_Util_System_{$uf}
76 */
77 public $userSystem = NULL;
78
79 /**
80 * The root directory where Smarty should store
81 * compiled files
82 * @var string
83 */
84 public $templateCompileDir = './templates_c/en_US/';
85
86 public $configAndLogDir = NULL;
87
88 // END: BASE SYSTEM PROPERTIES (CIVICRM.SETTINGS.PHP)
89
90 ///
91 /// BEGIN HELPER CLASS PROPERTIES
92 ///
93
94 /**
95 * are we initialized and in a proper state
96 * @var string
97 */
98 public $initialized = 0;
99
100 /**
101 * the factory class used to instantiate our DB objects
102 * @var string
103 */
104 private $DAOFactoryClass = 'CRM_Contact_DAO_Factory';
105
106 /**
107 * The handle to the log that we are using
108 * @var object
109 */
110 private static $_log = NULL;
111
112 /**
113 * the handle on the mail handler that we are using
114 * @var object
115 */
72ad6c1b 116 public static $_mail = NULL;
6a488035
TO
117
118 /**
119 * We only need one instance of this object. So we use the singleton
120 * pattern and cache the instance in this variable
121 * @var object
122 * @static
123 */
124 private static $_singleton = NULL;
125
126 /**
127 * component registry object (of CRM_Core_Component type)
128 */
129 public $componentRegistry = NULL;
130
131 ///
132 /// END HELPER CLASS PROPERTIES
133 ///
134
135 ///
136 /// RUNTIME SET CLASS PROPERTIES
137 ///
138
139 /**
140 * to determine wether the call is from cms or civicrm
141 */
142 public $inCiviCRM = FALSE;
143
144 ///
145 /// END: RUNTIME SET CLASS PROPERTIES
146 ///
147
148 /**
149 * Define recaptcha key
150 */
151
152 public $recaptchaPublicKey;
153
154 /**
155 * The constructor. Sets domain id if defined, otherwise assumes
156 * single instance installation.
157 *
158 * @return void
159 * @access private
160 */
161 private function __construct() {
162 }
163
164 /**
165 * Singleton function used to manage this object.
166 *
167 * @param $loadFromDB boolean whether to load from the database
168 * @param $force boolean whether to force a reconstruction
169 *
5af8c999 170 * @return CRM_Core_Config
6a488035
TO
171 * @static
172 */
173 static function &singleton($loadFromDB = TRUE, $force = FALSE) {
174 if (self::$_singleton === NULL || $force) {
175 // goto a simple error handler
176 $GLOBALS['_PEAR_default_error_mode'] = PEAR_ERROR_CALLBACK;
177 $GLOBALS['_PEAR_default_error_options'] = array('CRM_Core_Error', 'simpleHandler');
178
179 // lets ensure we set E_DEPRECATED to minimize errors
180 // CRM-6327
181 if (defined('E_DEPRECATED')) {
182 error_reporting(error_reporting() & ~E_DEPRECATED);
183 }
184
185 // first, attempt to get configuration object from cache
186 $cache = CRM_Utils_Cache::singleton();
0e04f44e 187 self::$_singleton = $cache->get('CRM_Core_Config' . CRM_Core_Config::domainID());
6a488035
TO
188 // if not in cache, fire off config construction
189 if (!self::$_singleton) {
190 self::$_singleton = new CRM_Core_Config;
191 self::$_singleton->_initialize($loadFromDB);
192
193 //initialize variables. for gencode we cannot load from the
194 //db since the db might not be initialized
195 if ($loadFromDB) {
2ba175b6
DL
196 // initialize stuff from the settings file
197 self::$_singleton->setCoreVariables();
198
6a488035
TO
199 self::$_singleton->_initVariables();
200
2ba175b6
DL
201 // I dont think we need to do this twice
202 // however just keeping this commented for now in 4.4
203 // in case we hit any issues - CRM-13064
204 // We can safely delete this once we release 4.4.4
205 // self::$_singleton->setCoreVariables();
6a488035 206 }
0e04f44e 207 $cache->set('CRM_Core_Config' . CRM_Core_Config::domainID(), self::$_singleton);
6a488035
TO
208 }
209 else {
210 // we retrieve the object from memcache, so we now initialize the objects
211 self::$_singleton->_initialize($loadFromDB);
212
213 // CRM-9803, NYSS-4822
214 // this causes various settings to be reset and hence we should
215 // only use the config object that we retrived from memcache
216 }
217
218 self::$_singleton->initialized = 1;
219
220 if (isset(self::$_singleton->customPHPPathDir) &&
221 self::$_singleton->customPHPPathDir
222 ) {
223 $include_path = self::$_singleton->customPHPPathDir . PATH_SEPARATOR . get_include_path();
224 set_include_path($include_path);
225 }
226
227 // set the callback at the very very end, to avoid an infinite loop
228 // set the error callback
229 CRM_Core_Error::setCallback();
230
231 // call the hook so other modules can add to the config
232 // again doing this at the very very end
233 CRM_Utils_Hook::config(self::$_singleton);
234
235 // make sure session is always initialised
236 $session = CRM_Core_Session::singleton();
237
238 // for logging purposes, pass the userID to the db
239 $userID = $session->get('userID');
240 if ($userID) {
241 CRM_Core_DAO::executeQuery('SET @civicrm_user_id = %1',
242 array(1 => array($userID, 'Integer'))
243 );
244 }
e8f14831
DS
245
246 // initialize authentication source
247 self::$_singleton->initAuthSrc();
6a488035
TO
248 }
249 return self::$_singleton;
250 }
251
252
253 private function _setUserFrameworkConfig($userFramework) {
254
255 $this->userFrameworkClass = 'CRM_Utils_System_' . $userFramework;
256 $this->userHookClass = 'CRM_Utils_Hook_' . $userFramework;
257 $userPermissionClass = 'CRM_Core_Permission_' . $userFramework;
258 $this->userPermissionClass = new $userPermissionClass();
259
260 $class = $this->userFrameworkClass;
261 // redundant with _initVariables
262 $userSystem = $this->userSystem = new $class();
263
264 if ($userFramework == 'Joomla') {
265 $this->userFrameworkURLVar = 'task';
266 }
267
268 if (defined('CIVICRM_UF_BASEURL')) {
269 $this->userFrameworkBaseURL = CRM_Utils_File::addTrailingSlash(CIVICRM_UF_BASEURL, '/');
270
271 //format url for language negotiation, CRM-7803
272 $this->userFrameworkBaseURL = CRM_Utils_System::languageNegotiationURL($this->userFrameworkBaseURL);
273
274 if (CRM_Utils_System::isSSL()) {
275 $this->userFrameworkBaseURL = str_replace('http://', 'https://',
276 $this->userFrameworkBaseURL
277 );
278 }
279 }
280
281 if (defined('CIVICRM_UF_DSN')) {
282 $this->userFrameworkDSN = CIVICRM_UF_DSN;
283 }
284
285 // this is dynamically figured out in the civicrm.settings.php file
286 if (defined('CIVICRM_CLEANURL')) {
287 $this->cleanURL = CIVICRM_CLEANURL;
288 }
289 else {
290 $this->cleanURL = 0;
291 }
292
293 $this->userFrameworkVersion = $userSystem->getVersion();
294
295 if ($userFramework == 'Joomla') {
296 global $mainframe;
297 $dbprefix = $mainframe ? $mainframe->getCfg('dbprefix') : 'jos_';
298 $this->userFrameworkUsersTableName = $dbprefix . 'users';
299 }
300 elseif ($userFramework == 'WordPress') {
301 global $wpdb;
302 $dbprefix = $wpdb ? $wpdb->prefix : '';
303 $this->userFrameworkUsersTableName = $dbprefix . 'users';
304 }
305 }
306
307 /**
308 * Initializes the entire application.
309 * Reads constants defined in civicrm.settings.php and
310 * stores them in config properties.
311 *
312 * @return void
313 * @access public
314 */
315 private function _initialize($loadFromDB = TRUE) {
316
317 // following variables should be set in CiviCRM settings and
318 // as crucial ones, are defined upon initialisation
319 // instead of in CRM_Core_Config_Defaults
320 if (defined('CIVICRM_DSN')) {
321 $this->dsn = CIVICRM_DSN;
322 }
323 elseif ($loadFromDB) {
324 // bypass when calling from gencode
325 echo 'You need to define CIVICRM_DSN in civicrm.settings.php';
326 exit();
327 }
328
329 if (defined('CIVICRM_TEMPLATE_COMPILEDIR')) {
330 $this->templateCompileDir = CRM_Utils_File::addTrailingSlash(CIVICRM_TEMPLATE_COMPILEDIR);
331
332 // also make sure we create the config directory within this directory
333 // the below statement will create both the templates directory and the config and log directory
b597d0b1
DL
334 $this->configAndLogDir =
335 CRM_Utils_File::baseFilePath($this->templateCompileDir) .
336 'ConfigAndLog' . DIRECTORY_SEPARATOR;
6a488035
TO
337 CRM_Utils_File::createDir($this->configAndLogDir);
338
339 // we're automatically prefixing compiled templates directories with country/language code
340 global $tsLocale;
341 if (!empty($tsLocale)) {
342 $this->templateCompileDir .= CRM_Utils_File::addTrailingSlash($tsLocale);
343 }
344 elseif (!empty($this->lcMessages)) {
345 $this->templateCompileDir .= CRM_Utils_File::addTrailingSlash($this->lcMessages);
346 }
347
348 CRM_Utils_File::createDir($this->templateCompileDir);
349 }
350 elseif ($loadFromDB) {
351 echo 'You need to define CIVICRM_TEMPLATE_COMPILEDIR in civicrm.settings.php';
352 exit();
353 }
354
355 $this->_initDAO();
356
357 if (defined('CIVICRM_UF')) {
358 $this->userFramework = CIVICRM_UF;
359 $this->_setUserFrameworkConfig($this->userFramework);
360 }
361 else {
362 echo 'You need to define CIVICRM_UF in civicrm.settings.php';
363 exit();
364 }
365
366 // also initialize the logger
367 self::$_log = Log::singleton('display');
368
369 // initialize component registry early to avoid "race"
370 // between CRM_Core_Config and CRM_Core_Component (they
371 // are co-dependant)
372 $this->componentRegistry = new CRM_Core_Component();
373 }
374
375 /**
376 * initialize the DataObject framework
377 *
378 * @return void
379 * @access private
380 */
381 private function _initDAO() {
382 CRM_Core_DAO::init($this->dsn);
383
384 $factoryClass = $this->DAOFactoryClass;
385 require_once str_replace('_', DIRECTORY_SEPARATOR, $factoryClass) . '.php';
386 CRM_Core_DAO::setFactory(new $factoryClass());
387 if (CRM_Utils_Constant::value('CIVICRM_MYSQL_STRICT', CRM_Utils_System::isDevelopment())) {
388 CRM_Core_DAO::executeQuery('SET SESSION sql_mode = STRICT_TRANS_TABLES');
389 }
390 }
391
392 /**
393 * returns the singleton logger for the application
394 *
395 * @param
396 * @access private
397 *
398 * @return object
399 */
400 static public function &getLog() {
401 if (!isset(self::$_log)) {
402 self::$_log = Log::singleton('display');
403 }
404
405 return self::$_log;
406 }
407
408 /**
409 * initialize the config variables
410 *
411 * @return void
412 * @access private
413 */
414 private function _initVariables() {
415 // retrieve serialised settings
416 $variables = array();
417 CRM_Core_BAO_ConfigSetting::retrieve($variables);
418
419 // if settings are not available, go down the full path
420 if (empty($variables)) {
421 // Step 1. get system variables with their hardcoded defaults
422 $variables = get_object_vars($this);
423
424 // Step 2. get default values (with settings file overrides if
425 // available - handled in CRM_Core_Config_Defaults)
426 CRM_Core_Config_Defaults::setValues($variables);
427
428 // retrieve directory and url preferences also
429 CRM_Core_BAO_Setting::retrieveDirectoryAndURLPreferences($variables);
430
431 // add component specific settings
432 $this->componentRegistry->addConfig($this);
433
434 // serialise settings
435 $settings = $variables;
436 CRM_Core_BAO_ConfigSetting::add($settings);
437 }
438
439 $urlArray = array('userFrameworkResourceURL', 'imageUploadURL');
440 $dirArray = array('uploadDir', 'customFileUploadDir');
441
442 foreach ($variables as $key => $value) {
443 if (in_array($key, $urlArray)) {
444 $value = CRM_Utils_File::addTrailingSlash($value, '/');
445 }
446 elseif (in_array($key, $dirArray)) {
447 if ($value) {
448 $value = CRM_Utils_File::addTrailingSlash($value);
449 }
450 if (empty($value) || (CRM_Utils_File::createDir($value, FALSE) === FALSE)) {
451 // seems like we could not create the directories
452 // settings might have changed, lets suppress a message for now
453 // so we can make some more progress and let the user fix their settings
454 // for now we assign it to a know value
455 // CRM-4949
456 $value = $this->templateCompileDir;
457 $url = CRM_Utils_System::url('civicrm/admin/setting/path', 'reset=1');
458 CRM_Core_Session::setStatus(ts('%1 has an incorrect directory path. Please go to the <a href="%2">path setting page</a> and correct it.', array(
459 1 => $key,
460 2 => $url
461 )), ts('Check Settings'), 'alert');
462 }
463 }
464 elseif ($key == 'lcMessages') {
465 // reset the templateCompileDir to locale-specific and make sure it exists
466 if (substr($this->templateCompileDir, -1 * strlen($value) - 1, -1) != $value) {
467 $this->templateCompileDir .= CRM_Utils_File::addTrailingSlash($value);
468 CRM_Utils_File::createDir($this->templateCompileDir);
469 }
470 }
471
472 $this->$key = $value;
473 }
474
475 if ($this->userFrameworkResourceURL) {
476 // we need to do this here so all blocks also load from an ssl server
477 if (CRM_Utils_System::isSSL()) {
478 CRM_Utils_System::mapConfigToSSL();
479 }
480 $rrb = parse_url($this->userFrameworkResourceURL);
481 // dont use absolute path if resources are stored on a different server
482 // CRM-4642
483 $this->resourceBase = $this->userFrameworkResourceURL;
484 if (isset($_SERVER['HTTP_HOST']) &&
485 isset($rrb['host'])
486 ) {
487 $this->resourceBase = ($rrb['host'] == $_SERVER['HTTP_HOST']) ? $rrb['path'] : $this->userFrameworkResourceURL;
488 }
489 }
490
491 if (!$this->customFileUploadDir) {
492 $this->customFileUploadDir = $this->uploadDir;
493 }
494
495 if ($this->geoProvider) {
496 $this->geocodeMethod = 'CRM_Utils_Geocode_' . $this->geoProvider;
497 }
498 elseif ($this->mapProvider) {
499 $this->geocodeMethod = 'CRM_Utils_Geocode_' . $this->mapProvider;
500 }
501
502 require_once (str_replace('_', DIRECTORY_SEPARATOR, $this->userFrameworkClass) . '.php');
503 $class = $this->userFrameworkClass;
504 // redundant with _setUserFrameworkConfig
505 $this->userSystem = new $class();
506 }
507
508 /**
3713d69c 509 * Retrieve a mailer to send any mail from the application
6a488035
TO
510 *
511 * @param boolean $persist open a persistent smtp connection, should speed up mailings
6a488035 512 * @access private
6a488035
TO
513 * @return object
514 */
515 static function &getMailer($persist = FALSE) {
516 if (!isset(self::$_mail)) {
517 $mailingInfo = CRM_Core_BAO_Setting::getItem(CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
518 'mailing_backend'
519 );
520
521 if ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_REDIRECT_TO_DB ||
522 (defined('CIVICRM_MAILER_SPOOL') && CIVICRM_MAILER_SPOOL)
523 ) {
72ad6c1b 524 self::$_mail = self::_createMailer('CRM_Mailing_BAO_Spool', array());
6a488035
TO
525 }
526 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SMTP) {
527 if ($mailingInfo['smtpServer'] == '' || !$mailingInfo['smtpServer']) {
9327d839
DL
528 CRM_Core_Error::debug_log_message(ts('There is no valid smtp server setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the SMTP Server.', array(1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1'))));
529 CRM_Core_Error::fatal(ts('There is no valid smtp server setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the SMTP Server.', array(1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1'))));
6a488035
TO
530 }
531
532 $params['host'] = $mailingInfo['smtpServer'] ? $mailingInfo['smtpServer'] : 'localhost';
533 $params['port'] = $mailingInfo['smtpPort'] ? $mailingInfo['smtpPort'] : 25;
534
535 if ($mailingInfo['smtpAuth']) {
536 $params['username'] = $mailingInfo['smtpUsername'];
537 $params['password'] = CRM_Utils_Crypt::decrypt($mailingInfo['smtpPassword']);
538 $params['auth'] = TRUE;
539 }
540 else {
541 $params['auth'] = FALSE;
542 }
543
544 // set the localhost value, CRM-3153
545 $params['localhost'] = CRM_Utils_Array::value('SERVER_NAME', $_SERVER, 'localhost');
546
547 // also set the timeout value, lets set it to 30 seconds
548 // CRM-7510
549 $params['timeout'] = 30;
550
551 // CRM-9349
552 $params['persist'] = $persist;
553
72ad6c1b 554 self::$_mail = self::_createMailer('smtp', $params);
6a488035
TO
555 }
556 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_SENDMAIL) {
557 if ($mailingInfo['sendmail_path'] == '' ||
558 !$mailingInfo['sendmail_path']
559 ) {
9327d839
DL
560 CRM_Core_Error::debug_log_message(ts('There is no valid sendmail path setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the sendmail server.', array(1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1'))));
561 CRM_Core_Error::fatal(ts('There is no valid sendmail path setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the sendmail server.', array(1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1'))));
6a488035
TO
562 }
563 $params['sendmail_path'] = $mailingInfo['sendmail_path'];
564 $params['sendmail_args'] = $mailingInfo['sendmail_args'];
565
72ad6c1b 566 self::$_mail = self::_createMailer('sendmail', $params);
6a488035
TO
567 }
568 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_MAIL) {
72ad6c1b 569 self::$_mail = self::_createMailer('mail', array());
6a488035
TO
570 }
571 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_MOCK) {
72ad6c1b 572 self::$_mail = self::_createMailer('mock', array());
6a488035 573 }
72ad6c1b 574 elseif ($mailingInfo['outBound_option'] == CRM_Mailing_Config::OUTBOUND_OPTION_DISABLED) {
9327d839
DL
575 CRM_Core_Error::debug_log_message(ts('Outbound mail has been disabled. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the OutBound Email.', array(1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1'))));
576 CRM_Core_Session::setStatus(ts('Outbound mail has been disabled. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the OutBound Email.', array(1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1'))));
4b7d50ce 577 }
c8e4bea0 578 else {
9327d839
DL
579 CRM_Core_Error::debug_log_message(ts('There is no valid SMTP server Setting Or SendMail path setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the OutBound Email.', array(1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1'))));
580 CRM_Core_Session::setStatus(ts('There is no valid SMTP server Setting Or sendMail path setting. Click <a href=\'%1\'>Administer >> System Setting >> Outbound Email</a> to set the OutBound Email.', array(1 => CRM_Utils_System::url('civicrm/admin/setting/smtp', 'reset=1'))));
4b7d50ce 581 CRM_Core_Error::debug_var('mailing_info', $mailingInfo);
6a488035
TO
582 }
583 }
584 return self::$_mail;
585 }
586
72ad6c1b 587 /**
c8e4bea0
TO
588 * Create a new instance of a PEAR Mail driver
589 *
72ad6c1b
TO
590 * @param string $driver 'CRM_Mailing_BAO_Spool' or a name suitable for Mail::factory()
591 * @param array $params
c8e4bea0 592 * @return Mail (More specifically, a class which implements the "send()" function)
72ad6c1b
TO
593 */
594 public static function _createMailer($driver, $params) {
595 if ($driver == 'CRM_Mailing_BAO_Spool') {
596 $mailer = new CRM_Mailing_BAO_Spool($params);
c8e4bea0
TO
597 }
598 else {
72ad6c1b
TO
599 $mailer = Mail::factory($driver, $params);
600 }
91bff2e5 601 CRM_Utils_Hook::alterMail($mailer, $driver, $params);
72ad6c1b
TO
602 return $mailer;
603 }
604
6a488035
TO
605 /**
606 * delete the web server writable directories
607 *
608 * @param int $value 1 - clean templates_c, 2 - clean upload, 3 - clean both
609 *
610 * @access public
611 *
612 * @return void
613 */
614 public function cleanup($value, $rmdir = TRUE) {
615 $value = (int ) $value;
616
617 if ($value & 1) {
618 // clean templates_c
619 CRM_Utils_File::cleanDir($this->templateCompileDir, $rmdir);
620 CRM_Utils_File::createDir($this->templateCompileDir);
621 }
622 if ($value & 2) {
623 // clean upload dir
624 CRM_Utils_File::cleanDir($this->uploadDir);
625 CRM_Utils_File::createDir($this->uploadDir);
626 CRM_Utils_File::restrictAccess($this->uploadDir);
627 }
628 }
629
630 /**
631 * verify that the needed parameters are not null in the config
632 *
633 * @param CRM_Core_Config (reference ) the system config object
634 * @param array (reference ) the parameters that need a value
635 *
636 * @return boolean
637 * @static
638 * @access public
639 */
640 static function check(&$config, &$required) {
641 foreach ($required as $name) {
642 if (CRM_Utils_System::isNull($config->$name)) {
643 return FALSE;
644 }
645 }
646 return TRUE;
647 }
648
649 /**
650 * reset the serialized array and recompute
651 * use with care
652 */
653 function reset() {
654 $query = "UPDATE civicrm_domain SET config_backend = null";
655 CRM_Core_DAO::executeQuery($query);
656 }
657
e8f14831
DS
658 // This method should initialize auth sources
659 function initAuthSrc() {
660 $session = CRM_Core_Session::singleton();
661 if ($session->get('userID') && !$session->get('authSrc')) {
662 $session->set('authSrc', CRM_Core_Permission::AUTH_SRC_LOGIN);
663 }
664
665 // checksum source
666 CRM_Contact_BAO_Contact_Permission::initChecksumAuthSrc();
667 }
668
6a488035
TO
669 /**
670 * one function to get domain ID
671 */
672 static function domainID($domainID = NULL, $reset = FALSE) {
673 static $domain;
674 if ($domainID) {
675 $domain = $domainID;
676 }
677 if ($reset || empty($domain)) {
678 $domain = defined('CIVICRM_DOMAIN_ID') ? CIVICRM_DOMAIN_ID : 1;
679 }
680
681 return $domain;
682 }
683
684 /**
685 * do general cleanup of caches, temp directories and temp tables
686 * CRM-8739
687 */
688 function cleanupCaches($sessionReset = TRUE) {
689 // cleanup templates_c directory
690 $this->cleanup(1, FALSE);
691
692 // clear db caching
693 self::clearDBCache();
694
695 if ($sessionReset) {
696 $session = CRM_Core_Session::singleton();
697 $session->reset(2);
698 }
699 }
700
701 /**
702 * Do general cleanup of module permissions.
703 */
704 function cleanupPermissions() {
705 $module_files = CRM_Extension_System::singleton()->getMapper()->getActiveModuleFiles();
7fccad46
TO
706 if ($this->userPermissionClass->isModulePermissionSupported()) {
707 // Can store permissions -- so do it!
0d8fc497
TO
708 $this->userPermissionClass->upgradePermissions(
709 CRM_Core_Permission::basicPermissions()
710 );
7fccad46
TO
711 } else {
712 // Cannot store permissions -- warn if any modules require them
713 $modules_with_perms = array();
714 foreach ($module_files as $module_file) {
715 $perms = $this->userPermissionClass->getModulePermissions($module_file['prefix']);
716 if (!empty($perms)) {
717 $modules_with_perms[] = $module_file['prefix'];
718 }
719 }
720 if (!empty($modules_with_perms)) {
721 CRM_Core_Session::setStatus(
10a5be27 722 ts('Some modules define permissions, but the CMS cannot store them: %1', array(1 => implode(', ', $modules_with_perms))),
7fccad46
TO
723 ts('Permission Error'),
724 'error'
725 );
726 }
6a488035
TO
727 }
728 }
729
730 /**
731 * Flush information about loaded modules
732 */
733 function clearModuleList() {
734 CRM_Extension_System::singleton()->getCache()->flush();
735 CRM_Utils_Hook::singleton(TRUE);
736 CRM_Core_PseudoConstant::getModuleExtensions(TRUE);
737 CRM_Core_Module::getAll(TRUE);
738 }
739
740 /**
741 * clear db cache
742 */
743 public static function clearDBCache() {
744 $queries = array(
745 'TRUNCATE TABLE civicrm_acl_cache',
746 'TRUNCATE TABLE civicrm_acl_contact_cache',
747 'TRUNCATE TABLE civicrm_cache',
748 'TRUNCATE TABLE civicrm_prevnext_cache',
749 'UPDATE civicrm_group SET cache_date = NULL',
750 'TRUNCATE TABLE civicrm_group_contact_cache',
751 'TRUNCATE TABLE civicrm_menu',
752 'UPDATE civicrm_setting SET value = NULL WHERE name="navigation" AND contact_id IS NOT NULL',
753 'DELETE FROM civicrm_setting WHERE name="modulePaths"', // CRM-10543
754 );
755
756 foreach ($queries as $query) {
757 CRM_Core_DAO::executeQuery($query);
758 }
759
760 // also delete all the import and export temp tables
761 self::clearTempTables();
762 }
763
764 /**
765 * clear leftover temporary tables
766 */
767 public static function clearTempTables() {
768 // CRM-5645
769 $dao = CRM_Core_DAO::executeQuery("SELECT DATABASE();");
770 $query = "
771SELECT TABLE_NAME as tableName
772FROM INFORMATION_SCHEMA.TABLES
773WHERE TABLE_SCHEMA = %1
a3243ca9 774AND
775 ( TABLE_NAME LIKE 'civicrm_import_job_%'
776 OR TABLE_NAME LIKE 'civicrm_export_temp%'
777 OR TABLE_NAME LIKE 'civicrm_task_action_temp%'
778 OR TABLE_NAME LIKE 'civicrm_report_temp%'
779 )
6a488035
TO
780";
781
782 $params = array(1 => array($dao->database(), 'String'));
783 $tableDAO = CRM_Core_DAO::executeQuery($query, $params);
784 $tables = array();
785 while ($tableDAO->fetch()) {
786 $tables[] = $tableDAO->tableName;
787 }
788 if (!empty($tables)) {
789 $table = implode(',', $tables);
790 // drop leftover temporary tables
791 CRM_Core_DAO::executeQuery("DROP TABLE $table");
792 }
793 }
794
795 /**
796 * function to check if running in upgrade mode
797 */
798 static function isUpgradeMode($path = NULL) {
799 if (defined('CIVICRM_UPGRADE_ACTIVE')) {
800 return TRUE;
801 }
802
803 if (!$path) {
804 // note: do not re-initialize config here, since this function is part of
805 // config initialization itself
806 $urlVar = 'q';
807 if (defined('CIVICRM_UF') && CIVICRM_UF == 'Joomla') {
808 $urlVar = 'task';
809 }
810
811 $path = CRM_Utils_Array::value($urlVar, $_GET);
812 }
813
814 if ($path && preg_match('/^civicrm\/upgrade(\/.*)?$/', $path)) {
815 return TRUE;
816 }
817
818 return FALSE;
819 }
820
821 /**
822 * Wrapper function to allow unit tests to switch user framework on the fly
823 */
824 public function setUserFramework($userFramework = NULL) {
825 $this->userFramework = $userFramework;
826 $this->_setUserFrameworkConfig($userFramework);
827 }
828}
829// end CRM_Core_Config
830