MaketRandevu/application/libraries/Instance.php

183 lines
5.3 KiB
PHP
Raw Normal View History

<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
2024-01-01 01:14:38 +03:00
* MaketRandevu - MAKET Randevu Portalı
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
2021-12-18 19:43:45 +03:00
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
* @since v1.4.0
* ---------------------------------------------------------------------------- */
require_once __DIR__ . '/../core/EA_Migration.php';
/**
* Instance library.
*
* Handles all Easy!Appointments instance related functionality.
*
* @package Libraries
*/
class Instance
{
/**
2023-03-13 11:06:18 +03:00
* @var EA_Controller|CI_Controller
*/
2023-03-13 11:06:18 +03:00
protected EA_Controller|CI_Controller $CI;
/**
* Installation constructor.
*/
public function __construct()
{
$this->CI = &get_instance();
$this->CI->load->model('admins_model');
$this->CI->load->model('services_model');
$this->CI->load->model('providers_model');
$this->CI->load->model('customers_model');
$this->CI->load->library('timezones');
$this->CI->load->library('migration');
}
/**
* Migrate the database to the latest state.
*
* @param string $type Provide "fresh" to revert previous migrations and start from the beginning or "up"/"down" to step.
*/
2023-03-13 11:06:18 +03:00
public function migrate(string $type = ''): void
{
$current_version = $this->CI->migration->current_version();
if ($type === 'up') {
if (!$this->CI->migration->version($current_version + 1)) {
show_error($this->CI->migration->error_string());
}
return;
}
if ($type === 'down') {
if (!$this->CI->migration->version($current_version - 1)) {
show_error($this->CI->migration->error_string());
}
return;
}
if ($type === 'fresh' && !$this->CI->migration->version(0)) {
show_error($this->CI->migration->error_string());
}
if ($this->CI->migration->latest() === false) {
show_error($this->CI->migration->error_string());
}
}
/**
* Seed the database with test data.
*
* @return string Return's the administrator user password.
*
2023-03-17 09:20:29 +03:00
* @throws Exception
*/
public function seed(): string
{
// Settings
setting([
'company_name' => 'Company Name',
'company_email' => 'info@example.org',
'company_link' => 'https://example.org',
]);
// Admin
2023-11-29 12:43:08 +03:00
$password = 'administrator';
$this->CI->admins_model->save([
'first_name' => 'John',
'last_name' => 'Doe',
'email' => 'john@example.org',
'phone_number' => '+10000000000',
'settings' => [
'username' => 'administrator',
2023-11-29 12:43:08 +03:00
'password' => $password,
'notifications' => true,
'calendar_view' => CALENDAR_VIEW_DEFAULT,
],
]);
// Service
$service_id = $this->CI->services_model->save([
'name' => 'Service',
'duration' => '30',
'price' => '0',
'currency' => '',
'availabilities_type' => 'flexible',
'attendants_number' => '1',
]);
// Provider
$this->CI->providers_model->save([
2024-01-01 19:53:24 +03:00
'first_name' => 'Hizmet Sağlayıcı İsmini Buraya Girin',
'last_name' => 'Hizmet Sağlayıcı Soyismini Buraya Girin',
'email' => 'hizmet_saglayici_mail@example.org',
'phone_number' => '+90 (000) 000-0000',
'services' => [$service_id],
'settings' => [
2024-01-01 19:53:24 +03:00
'username' => 'ilkhizmetsaglayici',
'password' => random_string(),
'working_plan' => setting('company_working_plan'),
'notifications' => true,
'google_sync' => false,
'sync_past_days' => 30,
'sync_future_days' => 90,
'calendar_view' => CALENDAR_VIEW_DEFAULT,
],
]);
// Customer
$this->CI->customers_model->save([
2024-01-01 19:53:24 +03:00
'first_name' => 'Örnek Müşteri İsmi',
'last_name' => 'Örnek Müşteri Soyismi',
'email' => 'ornek_musteri@example.org',
'phone_number' => '+90 (000) 000-0000',
]);
return $password;
}
/**
* Create a database backup file.
*
* @param string|null $path Override the default backup path (storage/backups/*).
*
* @throws Exception
*/
public function backup(string $path = null): void
{
$path = $path ?? APPPATH . '/../storage/backups';
if (!file_exists($path)) {
throw new InvalidArgumentException('The backup path does not exist: ' . $path);
}
if (!is_writable($path)) {
throw new RuntimeException('The backup path is not writable: ' . $path);
}
$contents = $this->CI->dbutil->backup();
$filename = 'easyappointments-backup-' . date('Y-m-d-His') . '.gz';
write_file(rtrim($path, '/') . '/' . $filename, $contents);
}
}