3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2015
33 * @param $filesDirectory
35 function civicrm_setup($filesDirectory) {
36 global $crmPath, $sqlPath, $pkgPath, $tplPath;
40 // This is needed to allow CiviCRM to be installed by drush.
41 // TODO: move to civicrm.drush.inc drush_civicrm_install()
43 require_once $crmPath . '/CRM/Core/ClassLoader.php';
44 CRM_Core_ClassLoader
::singleton()->register();
46 $sqlPath = $crmPath . DIRECTORY_SEPARATOR
. 'sql';
47 $tplPath = $crmPath . DIRECTORY_SEPARATOR
. 'templates' . DIRECTORY_SEPARATOR
. 'CRM' . DIRECTORY_SEPARATOR
. 'common' . DIRECTORY_SEPARATOR
;
49 if (!is_dir($filesDirectory)) {
50 mkdir($filesDirectory, 0777);
51 chmod($filesDirectory, 0777);
54 $scratchDir = $filesDirectory . DIRECTORY_SEPARATOR
. 'civicrm';
55 if (!is_dir($scratchDir)) {
56 mkdir($scratchDir, 0777);
59 $compileDir = $scratchDir . DIRECTORY_SEPARATOR
. 'templates_c' . DIRECTORY_SEPARATOR
;
60 if (!is_dir($compileDir)) {
61 mkdir($compileDir, 0777);
63 $compileDir = addslashes($compileDir);
70 function civicrm_write_file($name, &$buffer) {
71 $fd = fopen($name, "w");
73 die("Cannot open $name");
82 function civicrm_main(&$config) {
83 global $sqlPath, $crmPath, $cmsPath, $installType;
85 if ($installType == 'drupal') {
86 $siteDir = isset($config['site_dir']) ?
$config['site_dir'] : getSiteDir($cmsPath, $_SERVER['SCRIPT_FILENAME']);
87 civicrm_setup($cmsPath . DIRECTORY_SEPARATOR
. 'sites' . DIRECTORY_SEPARATOR
.
88 $siteDir . DIRECTORY_SEPARATOR
. 'files'
91 elseif ($installType == 'wordpress') {
92 civicrm_setup(WP_PLUGIN_DIR
. DIRECTORY_SEPARATOR
. 'files');
95 $dsn = "mysql://{$config['mysql']['username']}:{$config['mysql']['password']}@{$config['mysql']['server']}/{$config['mysql']['database']}?new_link=true";
97 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR
. 'civicrm.mysql');
99 if (!empty($config['loadGenerated'])) {
100 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR
. 'civicrm_generated.mysql', TRUE);
103 if (isset($config['seedLanguage'])
104 and preg_match('/^[a-z][a-z]_[A-Z][A-Z]$/', $config['seedLanguage'])
105 and file_exists($sqlPath . DIRECTORY_SEPARATOR
. "civicrm_data.{$config['seedLanguage']}.mysql")
106 and file_exists($sqlPath . DIRECTORY_SEPARATOR
. "civicrm_acl.{$config['seedLanguage']}.mysql")
108 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR
. "civicrm_data.{$config['seedLanguage']}.mysql");
109 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR
. "civicrm_acl.{$config['seedLanguage']}.mysql");
112 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR
. 'civicrm_data.mysql');
113 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR
. 'civicrm_acl.mysql');
117 // generate backend settings file
118 if ($installType == 'drupal') {
119 $configFile = $cmsPath . DIRECTORY_SEPARATOR
. 'sites' . DIRECTORY_SEPARATOR
. $siteDir . DIRECTORY_SEPARATOR
. 'civicrm.settings.php';
121 elseif ($installType == 'wordpress') {
122 $configFile = $cmsPath . DIRECTORY_SEPARATOR
. 'civicrm.settings.php';
125 $string = civicrm_config($config);
126 civicrm_write_file($configFile,
134 * @param string $fileName
135 * @param bool $lineMode
137 function civicrm_source($dsn, $fileName, $lineMode = FALSE) {
140 require_once "$crmPath/packages/DB.php";
142 $db = DB
::connect($dsn);
143 if (PEAR
::isError($db)) {
144 die("Cannot open $dsn: " . $db->getMessage());
146 $db->query("SET NAMES utf8");
148 $db->query("SET NAMES utf8");
151 $string = file_get_contents($fileName);
153 // change \r\n to fix windows issues
154 $string = str_replace("\r\n", "\n", $string);
156 //get rid of comments starting with # and --
158 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
159 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
161 $queries = preg_split('/;\s*$/m', $string);
162 foreach ($queries as $query) {
163 $query = trim($query);
164 if (!empty($query)) {
165 $res = &$db->query($query);
166 if (PEAR
::isError($res)) {
168 die("Cannot execute $query: " . $res->getMessage());
174 $fd = fopen($fileName, "r");
175 while ($string = fgets($fd)) {
176 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
177 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
179 $string = trim($string);
180 if (!empty($string)) {
181 $res = &$db->query($string);
182 if (PEAR
::isError($res)) {
183 die("Cannot execute $string: " . $res->getMessage());
195 function civicrm_config(&$config) {
196 global $crmPath, $comPath;
198 global $tplPath, $installType;
201 'crmRoot' => $crmPath,
202 'templateCompileDir' => $compileDir,
204 'dbUser' => addslashes($config['mysql']['username']),
205 'dbPass' => addslashes($config['mysql']['password']),
206 'dbHost' => $config['mysql']['server'],
207 'dbName' => addslashes($config['mysql']['database']),
210 $params['baseURL'] = isset($config['base_url']) ?
$config['base_url'] : civicrm_cms_base();
211 if ($installType == 'drupal') {
212 if (version_compare(VERSION
, '7.0-rc1') >= 0) {
213 $params['cms'] = 'Drupal';
214 $params['CMSdbUser'] = addslashes($config['drupal']['username']);
215 $params['CMSdbPass'] = addslashes($config['drupal']['password']);
216 $params['CMSdbHost'] = $config['drupal']['server'];
217 $params['CMSdbName'] = addslashes($config['drupal']['database']);
219 elseif (version_compare(VERSION
, '6.0') >= 0) {
220 $params['cms'] = 'Drupal6';
221 $params['CMSdbUser'] = addslashes($config['drupal']['username']);
222 $params['CMSdbPass'] = addslashes($config['drupal']['password']);
223 $params['CMSdbHost'] = $config['drupal']['server'];
224 $params['CMSdbName'] = addslashes($config['drupal']['database']);
228 $params['cms'] = 'WordPress';
229 $params['CMSdbUser'] = addslashes(DB_USER
);
230 $params['CMSdbPass'] = addslashes(DB_PASSWORD
);
231 $params['CMSdbHost'] = DB_HOST
;
232 $params['CMSdbName'] = addslashes(DB_NAME
);
235 $params['crmRoot'] = addslashes($params['crmRoot']);
238 $params['siteKey'] = md5(rand() . mt_rand() . rand() . uniqid('', TRUE) . $params['baseURL']);
239 // Would prefer openssl_random_pseudo_bytes(), but I don't think it's universally available.
241 $str = file_get_contents($tplPath . 'civicrm.settings.php.template');
242 foreach ($params as $key => $value) {
243 $str = str_replace('%%' . $key . '%%', $value, $str);
251 function civicrm_cms_base() {
257 if (isset($_SERVER['HTTPS']) &&
258 !empty($_SERVER['HTTPS']) &&
259 strtolower($_SERVER['HTTPS']) != 'off'
261 $url = 'https://' . $_SERVER['HTTP_HOST'];
264 $url = 'http://' . $_SERVER['HTTP_HOST'];
267 $baseURL = $_SERVER['SCRIPT_NAME'];
269 if ($installType == 'drupal') {
270 //don't assume 6 dir levels, as civicrm
271 //may or may not be in sites/all/modules/
272 //lets allow to install in custom dir. CRM-6840
274 $crmDirLevels = str_replace($cmsPath, '', str_replace('\\', '/', $_SERVER['SCRIPT_FILENAME']));
275 $baseURL = str_replace($crmDirLevels, '', str_replace('\\', '/', $baseURL));
277 elseif ($installType == 'wordpress') {
278 $baseURL = str_replace($url, '', site_url());
281 for ($i = 1; $i <= $numPrevious; $i++
) {
282 $baseURL = dirname($baseURL);
286 // remove the last directory separator string from the directory
287 if (substr($baseURL, -1, 1) == DIRECTORY_SEPARATOR
) {
288 $baseURL = substr($baseURL, 0, -1);
291 // also convert all DIRECTORY_SEPARATOR to the forward slash for windoze
292 $baseURL = str_replace(DIRECTORY_SEPARATOR
, '/', $baseURL);
294 if ($baseURL != '/') {
298 return $url . $baseURL;
304 function civicrm_home_url() {
305 $drupalURL = civicrm_cms_base();
306 return $drupalURL . 'index.php?q=civicrm';