2015-10-18 20:18:02 +03:00
|
|
|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Easy!Appointments - Open Source Web Scheduler
|
|
|
|
*
|
|
|
|
* @package EasyAppointments
|
|
|
|
* @author A.Tselegidis <alextselegidis@gmail.com>
|
2016-01-02 15:47:04 +02:00
|
|
|
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
|
2015-10-18 20:18:02 +03:00
|
|
|
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
|
|
|
|
* @link http://easyappointments.org
|
|
|
|
* @since v1.1.0
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Installation Controller
|
|
|
|
*
|
|
|
|
* This controller will handle the installation procedure of Easy!Appointments
|
|
|
|
*
|
|
|
|
* @package Controllers
|
|
|
|
*/
|
|
|
|
class Installation extends CI_Controller {
|
2015-10-18 21:00:01 +03:00
|
|
|
/**
|
|
|
|
* Class Constructor
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
|
|
|
$this->load->helper('installation');
|
2015-11-05 22:13:44 +03:00
|
|
|
$this->load->library('session');
|
|
|
|
|
|
|
|
// Set user's selected language.
|
|
|
|
if ($this->session->userdata('language')) {
|
|
|
|
$this->config->set_item('language', $this->session->userdata('language'));
|
|
|
|
$this->lang->load('translations', $this->session->userdata('language'));
|
|
|
|
} else {
|
|
|
|
$this->lang->load('translations', $this->config->item('language')); // default
|
|
|
|
}
|
2015-10-18 21:00:01 +03:00
|
|
|
}
|
|
|
|
|
2015-10-18 20:18:02 +03:00
|
|
|
/**
|
|
|
|
* Display the installation page.
|
|
|
|
*/
|
|
|
|
public function index() {
|
2015-10-18 21:00:01 +03:00
|
|
|
if (is_ea_installed()) {
|
|
|
|
redirect('appointments/index');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->load->view('general/installation', array(
|
|
|
|
'base_url' => $this->config->item('base_url')
|
|
|
|
));
|
2015-10-18 20:18:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* [AJAX] Installs Easy!Appointments on the server.
|
|
|
|
*
|
|
|
|
* @param array $_POST['admin'] Contains the initial admin user data. The App needs at
|
|
|
|
* least one admin user to work.
|
|
|
|
* @param array $_POST['company'] Contains the basic company data.
|
|
|
|
*/
|
|
|
|
public function ajax_install() {
|
|
|
|
try {
|
2015-10-18 21:00:01 +03:00
|
|
|
if (is_ea_installed()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-18 20:18:02 +03:00
|
|
|
// Create E!A database structure.
|
2015-11-05 22:30:54 +03:00
|
|
|
$file_contents = file_get_contents(dirname(BASEPATH) . '/assets/sql/structure.sql');
|
2015-10-18 20:18:02 +03:00
|
|
|
$sql_queries = explode(';', $file_contents);
|
|
|
|
array_pop($sql_queries);
|
|
|
|
foreach($sql_queries as $query) {
|
|
|
|
$this->db->query($query);
|
|
|
|
}
|
|
|
|
|
2015-11-05 23:19:52 +03:00
|
|
|
// Insert default E!A entries into the database.
|
|
|
|
$file_contents = file_get_contents(dirname(BASEPATH) . '/assets/sql/data.sql');
|
|
|
|
$sql_queries = explode(';', $file_contents);
|
|
|
|
array_pop($sql_queries);
|
|
|
|
foreach($sql_queries as $query) {
|
|
|
|
$this->db->query($query);
|
|
|
|
}
|
|
|
|
|
2015-10-18 20:18:02 +03:00
|
|
|
// Insert admin
|
|
|
|
$this->load->model('admins_model');
|
|
|
|
$admin = json_decode($_POST['admin'], true);
|
|
|
|
$admin['settings']['username'] = $admin['username'];
|
|
|
|
$admin['settings']['password'] = $admin['password'];
|
2016-07-24 11:48:57 +03:00
|
|
|
$admin['settings']['calendar_view'] = CALENDAR_VIEW_DEFAULT;
|
2015-10-18 20:18:02 +03:00
|
|
|
unset($admin['username'], $admin['password']);
|
|
|
|
$admin['id'] = $this->admins_model->add($admin);
|
|
|
|
|
|
|
|
$this->load->library('session');
|
|
|
|
$this->session->set_userdata('user_id', $admin['id']);
|
|
|
|
$this->session->set_userdata('user_email', $admin['email']);
|
|
|
|
$this->session->set_userdata('role_slug', DB_SLUG_ADMIN);
|
|
|
|
$this->session->set_userdata('username', $admin['settings']['username']);
|
|
|
|
|
|
|
|
// Save company settings
|
|
|
|
$this->load->model('settings_model');
|
|
|
|
$company = json_decode($_POST['company'], true);
|
|
|
|
$this->settings_model->set_setting('company_name', $company['company_name']);
|
|
|
|
$this->settings_model->set_setting('company_email', $company['company_email']);
|
|
|
|
$this->settings_model->set_setting('company_link', $company['company_link']);
|
|
|
|
|
2016-01-01 17:45:01 +02:00
|
|
|
// Create sample records.
|
|
|
|
$this->load->model('services_model');
|
|
|
|
$this->load->model('providers_model');
|
|
|
|
|
|
|
|
$sample_service = get_sample_service();
|
|
|
|
$sample_service['id'] = $this->services_model->add($sample_service);
|
|
|
|
$sample_provider = get_sample_provider();
|
|
|
|
$sample_provider['services'][] = $sample_service['id'];
|
|
|
|
$this->providers_model->add($sample_provider);
|
|
|
|
|
2015-10-18 20:18:02 +03:00
|
|
|
echo json_encode(AJAX_SUCCESS);
|
|
|
|
|
|
|
|
} catch (Exception $exc) {
|
|
|
|
echo json_encode(array(
|
|
|
|
'exceptions' => array(exceptionToJavaScript($exc))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|