easyappointments/application/controllers/Api_settings.php

103 lines
2.6 KiB
PHP
Raw Normal View History

2022-07-26 16:38:58 +03:00
<?php defined('BASEPATH') or exit('No direct script access allowed');
/* ----------------------------------------------------------------------------
* Easy!Appointments - Online Appointment Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) Alex Tselegidis
* @license https://opensource.org/licenses/GPL-3.0 - GPLv3
* @link https://easyappointments.org
* @since v1.5.0
* ---------------------------------------------------------------------------- */
/**
* API settings controller.
*
* Handles API settings related operations.
*
* @package Controllers
*/
class Api_settings extends EA_Controller
{
2022-07-26 16:38:58 +03:00
/**
* Api_settings constructor.
2022-07-26 16:38:58 +03:00
*/
public function __construct()
{
parent::__construct();
$this->load->model('settings_model');
$this->load->library('accounts');
}
/**
* Render the settings page.
*/
2024-04-26 17:36:14 +03:00
public function index(): void
2022-07-26 16:38:58 +03:00
{
session(['dest_url' => site_url('api_settings')]);
$user_id = session('user_id');
if (cannot('view', PRIV_SYSTEM_SETTINGS)) {
if ($user_id) {
2022-07-26 16:38:58 +03:00
abort(403, 'Forbidden');
}
redirect('login');
return;
}
$role_slug = session('role_slug');
script_vars([
'user_id' => $user_id,
'role_slug' => $role_slug,
'api_settings' => $this->settings_model->get('name like "api_%"'),
2022-07-26 16:38:58 +03:00
]);
html_vars([
'page_title' => lang('api'),
'active_menu' => PRIV_SYSTEM_SETTINGS,
'user_display_name' => $this->accounts->get_user_display_name($user_id),
2022-07-26 16:38:58 +03:00
]);
$this->load->view('pages/api_settings');
}
/**
* Save general settings.
*/
2024-04-26 17:36:14 +03:00
public function save(): void
2022-07-26 16:38:58 +03:00
{
try {
if (cannot('edit', PRIV_SYSTEM_SETTINGS)) {
2022-07-26 16:38:58 +03:00
throw new RuntimeException('You do not have the required permissions for this task.');
}
$settings = request('api_settings', []);
foreach ($settings as $setting) {
$existing_setting = $this->settings_model
->query()
->where('name', $setting['name'])
->get()
->row_array();
2022-07-26 16:38:58 +03:00
if (!empty($existing_setting)) {
2022-07-26 16:38:58 +03:00
$setting['id'] = $existing_setting['id'];
}
$this->settings_model->save($setting);
}
response();
} catch (Throwable $e) {
2022-07-26 16:38:58 +03:00
json_exception($e);
}
}
}