/opencart_v1.4/upload/install/controller/step_3.php

http://coderstalk.googlecode.com/ · PHP · 244 lines · 194 code · 50 blank · 0 comment · 46 complexity · b1b373c0fbb02b229b402f6e50d9956f MD5 · raw file

  1. <?php
  2. class ControllerStep3 extends Controller {
  3. private $error = array();
  4. public function index() {
  5. if (($this->request->server['REQUEST_METHOD'] == 'POST') && ($this->validate())) {
  6. $this->load->model('install');
  7. $this->model_install->mysql($this->request->post);
  8. $output = '<?php' . "\n";
  9. $output .= '// HTTP' . "\n";
  10. $output .= 'define(\'HTTP_SERVER\', \'' . HTTP_OPENCART . '\');' . "\n";
  11. $output .= 'define(\'HTTP_IMAGE\', \'' . HTTP_OPENCART . 'image/\');' . "\n\n";
  12. $output .= '// HTTPS' . "\n";
  13. $output .= 'define(\'HTTPS_SERVER\', \'\');' . "\n";
  14. $output .= 'define(\'HTTPS_IMAGE\', \'\');' . "\n\n";
  15. $output .= '// DIR' . "\n";
  16. $output .= 'define(\'DIR_APPLICATION\', \'' . DIR_OPENCART . 'catalog/\');' . "\n";
  17. $output .= 'define(\'DIR_SYSTEM\', \'' . DIR_OPENCART. 'system/\');' . "\n";
  18. $output .= 'define(\'DIR_DATABASE\', \'' . DIR_OPENCART . 'system/database/\');' . "\n";
  19. $output .= 'define(\'DIR_LANGUAGE\', \'' . DIR_OPENCART . 'catalog/language/\');' . "\n";
  20. $output .= 'define(\'DIR_TEMPLATE\', \'' . DIR_OPENCART . 'catalog/view/theme/\');' . "\n";
  21. $output .= 'define(\'DIR_CONFIG\', \'' . DIR_OPENCART . 'system/config/\');' . "\n";
  22. $output .= 'define(\'DIR_IMAGE\', \'' . DIR_OPENCART . 'image/\');' . "\n";
  23. $output .= 'define(\'DIR_CACHE\', \'' . DIR_OPENCART . 'system/cache/\');' . "\n";
  24. $output .= 'define(\'DIR_DOWNLOAD\', \'' . DIR_OPENCART . 'download/\');' . "\n";
  25. $output .= 'define(\'DIR_LOGS\', \'' . DIR_OPENCART . 'system/logs/\');' . "\n\n";
  26. $output .= '// DB' . "\n";
  27. $output .= 'define(\'DB_DRIVER\', \'mysql\');' . "\n";
  28. $output .= 'define(\'DB_HOSTNAME\', \'' . $this->request->post['db_host'] . '\');' . "\n";
  29. $output .= 'define(\'DB_USERNAME\', \'' . $this->request->post['db_user'] . '\');' . "\n";
  30. $output .= 'define(\'DB_PASSWORD\', \'' . $this->request->post['db_password'] . '\');' . "\n";
  31. $output .= 'define(\'DB_DATABASE\', \'' . $this->request->post['db_name'] . '\');' . "\n";
  32. $output .= 'define(\'DB_PREFIX\', \'' . $this->request->post['db_prefix'] . '\');' . "\n";
  33. $output .= '?>';
  34. $file = fopen(DIR_OPENCART . 'config.php', 'w');
  35. fwrite($file, $output);
  36. fclose($file);
  37. $output = '<?php' . "\n";
  38. $output .= '// HTTP' . "\n";
  39. $output .= 'define(\'HTTP_SERVER\', \'' . HTTP_OPENCART . 'admin/\');' . "\n";
  40. $output .= 'define(\'HTTP_CATALOG\', \'' . HTTP_OPENCART . '\');' . "\n";
  41. $output .= 'define(\'HTTP_IMAGE\', \'' . HTTP_OPENCART . 'image/\');' . "\n\n";
  42. $output .= '// HTTPS' . "\n";
  43. $output .= 'define(\'HTTPS_SERVER\', \'\');' . "\n";
  44. $output .= 'define(\'HTTPS_IMAGE\', \'\');' . "\n\n";
  45. $output .= '// DIR' . "\n";
  46. $output .= 'define(\'DIR_APPLICATION\', \'' . DIR_OPENCART . 'admin/\');' . "\n";
  47. $output .= 'define(\'DIR_SYSTEM\', \'' . DIR_OPENCART . 'system/\');' . "\n";
  48. $output .= 'define(\'DIR_DATABASE\', \'' . DIR_OPENCART . 'system/database/\');' . "\n";
  49. $output .= 'define(\'DIR_LANGUAGE\', \'' . DIR_OPENCART . 'admin/language/\');' . "\n";
  50. $output .= 'define(\'DIR_TEMPLATE\', \'' . DIR_OPENCART . 'admin/view/template/\');' . "\n";
  51. $output .= 'define(\'DIR_CONFIG\', \'' . DIR_OPENCART . 'system/config/\');' . "\n";
  52. $output .= 'define(\'DIR_IMAGE\', \'' . DIR_OPENCART . 'image/\');' . "\n";
  53. $output .= 'define(\'DIR_CACHE\', \'' . DIR_OPENCART . 'system/cache/\');' . "\n";
  54. $output .= 'define(\'DIR_DOWNLOAD\', \'' . DIR_OPENCART . 'download/\');' . "\n";
  55. $output .= 'define(\'DIR_LOGS\', \'' . DIR_OPENCART . 'system/logs/\');' . "\n";
  56. $output .= 'define(\'DIR_CATALOG\', \'' . DIR_OPENCART . 'catalog/\');' . "\n\n";
  57. $output .= '// DB' . "\n";
  58. $output .= 'define(\'DB_DRIVER\', \'mysql\');' . "\n";
  59. $output .= 'define(\'DB_HOSTNAME\', \'' . $this->request->post['db_host'] . '\');' . "\n";
  60. $output .= 'define(\'DB_USERNAME\', \'' . $this->request->post['db_user'] . '\');' . "\n";
  61. $output .= 'define(\'DB_PASSWORD\', \'' . $this->request->post['db_password'] . '\');' . "\n";
  62. $output .= 'define(\'DB_DATABASE\', \'' . $this->request->post['db_name'] . '\');' . "\n";
  63. $output .= 'define(\'DB_PREFIX\', \'' . $this->request->post['db_prefix'] . '\');' . "\n";
  64. $output .= '?>';
  65. $file = fopen(DIR_OPENCART . 'admin/config.php', 'w');
  66. fwrite($file, $output);
  67. fclose($file);
  68. $this->redirect($this->url->http('step_4'));
  69. }
  70. if (isset($this->error['warning'])) {
  71. $this->data['error_warning'] = $this->error['warning'];
  72. } else {
  73. $this->data['error_warning'] = '';
  74. }
  75. if (isset($this->error['error_db_host'])) {
  76. $this->data['error_db_host'] = $this->error['db_host'];
  77. } else {
  78. $this->data['error_db_host'] = '';
  79. }
  80. if (isset($this->error['db_user'])) {
  81. $this->data['error_db_user'] = $this->error['db_user'];
  82. } else {
  83. $this->data['error_db_user'] = '';
  84. }
  85. if (isset($this->error['db_name'])) {
  86. $this->data['error_db_name'] = $this->error['db_name'];
  87. } else {
  88. $this->data['error_db_name'] = '';
  89. }
  90. if (isset($this->error['username'])) {
  91. $this->data['error_username'] = $this->error['username'];
  92. } else {
  93. $this->data['error_username'] = '';
  94. }
  95. if (isset($this->error['password'])) {
  96. $this->data['error_password'] = $this->error['password'];
  97. } else {
  98. $this->data['error_password'] = '';
  99. }
  100. if (isset($this->error['email'])) {
  101. $this->data['error_email'] = $this->error['email'];
  102. } else {
  103. $this->data['error_email'] = '';
  104. }
  105. $this->data['action'] = $this->url->http('step_3');
  106. if (isset($this->request->post['db_host'])) {
  107. $this->data['db_host'] = $this->request->post['db_host'];
  108. } else {
  109. $this->data['db_host'] = 'localhost';
  110. }
  111. if (isset($this->request->post['db_user'])) {
  112. $this->data['db_user'] = html_entity_decode($this->request->post['db_user']);
  113. } else {
  114. $this->data['db_user'] = '';
  115. }
  116. if (isset($this->request->post['db_password'])) {
  117. $this->data['db_password'] = html_entity_decode($this->request->post['db_password']);
  118. } else {
  119. $this->data['db_password'] = '';
  120. }
  121. if (isset($this->request->post['db_name'])) {
  122. $this->data['db_name'] = html_entity_decode($this->request->post['db_name']);
  123. } else {
  124. $this->data['db_name'] = '';
  125. }
  126. if (isset($this->request->post['db_prefix'])) {
  127. $this->data['db_prefix'] = html_entity_decode($this->request->post['db_prefix']);
  128. } else {
  129. $this->data['db_prefix'] = '';
  130. }
  131. if (isset($this->request->post['username'])) {
  132. $this->data['username'] = $this->request->post['username'];
  133. } else {
  134. $this->data['username'] = 'admin';
  135. }
  136. if (isset($this->request->post['password'])) {
  137. $this->data['password'] = $this->request->post['password'];
  138. } else {
  139. $this->data['password'] = '';
  140. }
  141. if (isset($this->request->post['email'])) {
  142. $this->data['email'] = $this->request->post['email'];
  143. } else {
  144. $this->data['email'] = '';
  145. }
  146. $this->children = array(
  147. 'header',
  148. 'footer'
  149. );
  150. $this->template = 'step_3.tpl';
  151. $this->response->setOutput($this->render(TRUE));
  152. }
  153. private function validate() {
  154. if (!$this->request->post['db_host']) {
  155. $this->error['db_host'] = 'Host required!';
  156. }
  157. if (!$this->request->post['db_user']) {
  158. $this->error['db_user'] = 'User required!';
  159. }
  160. if (!$this->request->post['db_name']) {
  161. $this->error['db_name'] = 'Database Name required!';
  162. }
  163. if (!$this->request->post['username']) {
  164. $this->error['username'] = 'Username required!';
  165. }
  166. if (!$this->request->post['password']) {
  167. $this->error['password'] = 'Password required!';
  168. }
  169. $pattern = '/^([a-z0-9])(([-a-z0-9._])*([a-z0-9]))*\@([a-z0-9])(([a-z0-9-])*([a-z0-9]))+(\.([a-z0-9])([-a-z0-9_-])?([a-z0-9])+)+$/i';
  170. if (!preg_match($pattern, $this->request->post['email'])) {
  171. $this->error['email'] = 'Invalid E-Mail!';
  172. }
  173. if (!$connection = @mysql_connect($this->request->post['db_host'], $this->request->post['db_user'], $this->request->post['db_password'])) {
  174. $this->error['warning'] = 'Error: Could not connect to the database please make sure the database server, username and password is correct!';
  175. } else {
  176. if (!@mysql_select_db($this->request->post['db_name'], $connection)) {
  177. $this->error['warning'] = 'Error: Database does not exist!';
  178. }
  179. mysql_close($connection);
  180. }
  181. if (!is_writable(DIR_OPENCART . 'config.php')) {
  182. $this->error['warning'] = 'Error: Could not write to config.php please check you have set the correct permissions on: ' . DIR_OPENCART . 'config.php!';
  183. }
  184. if (!is_writable(DIR_OPENCART . 'admin/config.php')) {
  185. $this->error['warning'] = 'Error: Could not write to config.php please check you have set the correct permissions on: ' . DIR_OPENCART . 'admin/config.php!';
  186. }
  187. if (!$this->error) {
  188. return TRUE;
  189. } else {
  190. return FALSE;
  191. }
  192. }
  193. }
  194. ?>