Merge pull request #2712 from pratik-joshi/CRM-14363
[civicrm-core.git] / install / civicrm.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
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 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2013
32 * $Id$
33 *
34 */
35 function civicrm_setup($filesDirectory) {
36 global $crmPath, $sqlPath, $pkgPath, $tplPath;
37 global $compileDir;
38
39 $sqlPath = $crmPath . DIRECTORY_SEPARATOR . 'sql';
40 $tplPath = $crmPath . DIRECTORY_SEPARATOR . 'templates' . DIRECTORY_SEPARATOR . 'CRM' . DIRECTORY_SEPARATOR . 'common' . DIRECTORY_SEPARATOR;
41
42 if (!is_dir($filesDirectory)) {
43 mkdir($filesDirectory, 0777);
44 chmod($filesDirectory, 0777);
45 }
46
47 $scratchDir = $filesDirectory . DIRECTORY_SEPARATOR . 'civicrm';
48 if (!is_dir($scratchDir)) {
49 mkdir($scratchDir, 0777);
50 }
51
52 $compileDir = $scratchDir . DIRECTORY_SEPARATOR . 'templates_c' . DIRECTORY_SEPARATOR;
53 if (!is_dir($compileDir)) {
54 mkdir($compileDir, 0777);
55 }
56 $compileDir = addslashes($compileDir);
57 }
58
59 function civicrm_write_file($name, &$buffer) {
60 $fd = fopen($name, "w");
61 if (!$fd) {
62 die("Cannot open $name");
63 }
64 fputs($fd, $buffer);
65 fclose($fd);
66 }
67
68 function civicrm_main(&$config) {
69 global $sqlPath, $crmPath, $cmsPath, $installType;
70
71 if ($installType == 'drupal') {
72 $siteDir = isset($config['site_dir']) ? $config['site_dir'] : getSiteDir($cmsPath, $_SERVER['SCRIPT_FILENAME']);
73 civicrm_setup($cmsPath . DIRECTORY_SEPARATOR . 'sites' . DIRECTORY_SEPARATOR .
74 $siteDir . DIRECTORY_SEPARATOR . 'files'
75 );
76 }
77 elseif ($installType == 'wordpress') {
78 civicrm_setup(WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . 'files');
79 }
80
81 $dsn = "mysql://{$config['mysql']['username']}:{$config['mysql']['password']}@{$config['mysql']['server']}/{$config['mysql']['database']}?new_link=true";
82
83 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR . 'civicrm.mysql');
84
85 if (!empty($config['loadGenerated'])) {
86 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR . 'civicrm_generated.mysql', TRUE);
87 }
88 else {
89 if (isset($config['seedLanguage'])
90 and preg_match('/^[a-z][a-z]_[A-Z][A-Z]$/', $config['seedLanguage'])
91 and file_exists($sqlPath . DIRECTORY_SEPARATOR . "civicrm_data.{$config['seedLanguage']}.mysql")
92 and file_exists($sqlPath . DIRECTORY_SEPARATOR . "civicrm_acl.{$config['seedLanguage']}.mysql")
93 ) {
94 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR . "civicrm_data.{$config['seedLanguage']}.mysql");
95 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR . "civicrm_acl.{$config['seedLanguage']}.mysql");
96 }
97 else {
98 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR . 'civicrm_data.mysql');
99 civicrm_source($dsn, $sqlPath . DIRECTORY_SEPARATOR . 'civicrm_acl.mysql');
100 }
101 }
102
103 // generate backend settings file
104 if ($installType == 'drupal') {
105 $configFile = $cmsPath . DIRECTORY_SEPARATOR . 'sites' . DIRECTORY_SEPARATOR . $siteDir . DIRECTORY_SEPARATOR . 'civicrm.settings.php';
106 }
107 elseif ($installType == 'wordpress') {
108 $configFile = $cmsPath . DIRECTORY_SEPARATOR . 'civicrm.settings.php';
109 }
110
111 $string = civicrm_config($config);
112 civicrm_write_file($configFile,
113 $string
114 );
115
116 }
117
118 function civicrm_source($dsn, $fileName, $lineMode = FALSE) {
119 global $crmPath;
120 require_once "$crmPath/packages/DB.php";
121
122 $db = DB::connect($dsn);
123 if (PEAR::isError($db)) {
124 die("Cannot open $dsn: " . $db->getMessage());
125 }
126 $db->query("SET NAMES utf8");
127
128 $db->query("SET NAMES utf8");
129
130 if (!$lineMode) {
131 $string = file_get_contents($fileName);
132
133 // change \r\n to fix windows issues
134 $string = str_replace("\r\n", "\n", $string);
135
136 //get rid of comments starting with # and --
137
138 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
139 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
140
141 $queries = preg_split('/;\s*$/m', $string);
142 foreach ($queries as $query) {
143 $query = trim($query);
144 if (!empty($query)) {
145 $res = &$db->query($query);
146 if (PEAR::isError($res)) {
147 print_r($res);
148 die("Cannot execute $query: " . $res->getMessage());
149 }
150 }
151 }
152 }
153 else {
154 $fd = fopen($fileName, "r");
155 while ($string = fgets($fd)) {
156 $string = preg_replace("/^#[^\n]*$/m", "\n", $string);
157 $string = preg_replace("/^(--[^-]).*/m", "\n", $string);
158
159 $string = trim($string);
160 if (!empty($string)) {
161 $res = &$db->query($string);
162 if (PEAR::isError($res)) {
163 die("Cannot execute $string: " . $res->getMessage());
164 }
165 }
166 }
167 }
168 }
169
170 function civicrm_config(&$config) {
171 global $crmPath, $comPath;
172 global $compileDir;
173 global $tplPath, $installType;
174
175 $params = array(
176 'crmRoot' => $crmPath,
177 'templateCompileDir' => $compileDir,
178 'frontEnd' => 0,
179 'dbUser' => addslashes($config['mysql']['username']),
180 'dbPass' => addslashes($config['mysql']['password']),
181 'dbHost' => $config['mysql']['server'],
182 'dbName' => addslashes($config['mysql']['database']),
183 );
184
185 $params['baseURL'] = isset($config['base_url']) ? $config['base_url'] : civicrm_cms_base();
186 if ($installType == 'drupal') {
187 if (version_compare(VERSION, '7.0-rc1') >= 0) {
188 $params['cms'] = 'Drupal';
189 $params['CMSdbUser'] = addslashes($config['drupal']['username']);
190 $params['CMSdbPass'] = addslashes($config['drupal']['password']);
191 $params['CMSdbHost'] = $config['drupal']['server'];
192 $params['CMSdbName'] = addslashes($config['drupal']['database']);
193 }
194 elseif (version_compare(VERSION, '6.0') >= 0) {
195 $params['cms'] = 'Drupal6';
196 $params['CMSdbUser'] = addslashes($config['drupal']['username']);
197 $params['CMSdbPass'] = addslashes($config['drupal']['password']);
198 $params['CMSdbHost'] = $config['drupal']['server'];
199 $params['CMSdbName'] = addslashes($config['drupal']['database']);
200 }
201 }
202 else {
203 $params['cms'] = 'WordPress';
204 $params['CMSdbUser'] = addslashes(DB_USER);
205 $params['CMSdbPass'] = addslashes(DB_PASSWORD);
206 $params['CMSdbHost'] = DB_HOST;
207 $params['CMSdbName'] = addslashes(DB_NAME);
208
209 // CRM-12386
210 $params['crmRoot'] = addslashes($params['crmRoot']);
211 }
212
213 $params['siteKey'] = md5(uniqid('', TRUE) . $params['baseURL']);
214
215 $str = file_get_contents($tplPath . 'civicrm.settings.php.template');
216 foreach ($params as $key => $value) {
217 $str = str_replace('%%' . $key . '%%', $value, $str);
218 }
219 return trim($str);
220 }
221
222 function civicrm_cms_base() {
223 global $installType;
224
225 // for drupal
226 $numPrevious = 6;
227
228 if (isset($_SERVER['HTTPS']) &&
229 !empty($_SERVER['HTTPS']) &&
230 strtolower($_SERVER['HTTPS']) != 'off'
231 ) {
232 $url = 'https://' . $_SERVER['HTTP_HOST'];
233 }
234 else {
235 $url = 'http://' . $_SERVER['HTTP_HOST'];
236 }
237
238 $baseURL = $_SERVER['SCRIPT_NAME'];
239
240 if ($installType == 'drupal') {
241 //don't assume 6 dir levels, as civicrm
242 //may or may not be in sites/all/modules/
243 //lets allow to install in custom dir. CRM-6840
244 global $cmsPath;
245 $crmDirLevels = str_replace($cmsPath, '', str_replace('\\', '/', $_SERVER['SCRIPT_FILENAME']));
246 $baseURL = str_replace($crmDirLevels, '', str_replace('\\', '/', $baseURL));
247 }
248 elseif ($installType == 'wordpress') {
249 $baseURL = str_replace($url, '', site_url());
250 }
251 else {
252 for ($i = 1; $i <= $numPrevious; $i++) {
253 $baseURL = dirname($baseURL);
254 }
255 }
256
257 // remove the last directory separator string from the directory
258 if (substr($baseURL, -1, 1) == DIRECTORY_SEPARATOR) {
259 $baseURL = substr($baseURL, 0, -1);
260 }
261
262 // also convert all DIRECTORY_SEPARATOR to the forward slash for windoze
263 $baseURL = str_replace(DIRECTORY_SEPARATOR, '/', $baseURL);
264
265 if ($baseURL != '/') {
266 $baseURL .= '/';
267 }
268
269 return $url . $baseURL;
270 }
271
272 function civicrm_home_url() {
273 $drupalURL = civicrm_cms_base();
274 return $drupalURL . 'index.php?q=civicrm';
275 }
276