* @copyright Copyright (c) 2013 - 2020, Alex Tselegidis * @license http://opensource.org/licenses/GPL-3.0 - GPLv3 * @link http://easyappointments.org * @since v1.2.0 * ---------------------------------------------------------------------------- */ require_once __DIR__ . '/API_V1_Controller.php'; use EA\Engine\Api\V1\Request; use EA\Engine\Api\V1\Response; /** * Settings Controller * * @property CI_Session $session * @property CI_Loader $load * @property CI_Input $input * @property CI_Output $output * @property CI_Config $config * @property CI_Lang $lang * @property CI_Cache $cache * @property CI_DB_query_builder $db * @property CI_Security $security * @property Google_Sync $google_sync * @property Ics_file $ics_file * @property Appointments_Model $appointments_model * @property Providers_Model $providers_model * @property Services_Model $services_model * @property Customers_Model $customers_model * @property Settings_Model $settings_model * @property Timezones $timezones * @property Roles_Model $roles_model * @property Secretaries_Model $secretaries_model * @property Admins_Model $admins_model * @property User_Model $user_model * * @package Controllers */ class Settings extends API_V1_Controller { /** * Settings Resource Parser * * @var \EA\Engine\Api\V1\Parsers\Settings */ protected $parser; /** * Class Constructor */ public function __construct() { parent::__construct(); $this->load->model('settings_model'); $this->parser = new \EA\Engine\Api\V1\Parsers\Settings; } /** * GET API Method * * @param string $name Optional (null), the setting name to be returned. */ public function get($name = NULL) { try { $settings = $this->settings_model->get_settings(); if ($name !== NULL) { $setting = NULL; foreach ($settings as $entry) { if ($entry['name'] === $name) { $setting = $entry; break; } } if (empty($setting)) { $this->_throwRecordNotFound(); } unset($setting['id']); $settings = [ $setting ]; } $response = new Response($settings); $response->encode($this->parser) ->search() ->sort() ->paginate() ->minimize() ->singleEntry($name) ->output(); } catch (Exception $exception) { exit($this->_handleException($exception)); } } /** * PUT API Method * * @param string $name The setting name to be inserted/updated. */ public function put($name) { try { $request = new Request(); $value = $request->getBody()['value']; $this->settings_model->set_setting($name, $value); // Fetch the updated object from the database and return it to the client. $response = new Response([ [ 'name' => $name, 'value' => $value ] ]); $response->encode($this->parser)->singleEntry($name)->output(); } catch (Exception $exception) { exit($this->_handleException($exception)); } } /** * DELETE API Method * * @param string $name The setting name to be deleted. */ public function delete($name) { try { $result = $this->settings_model->remove_setting($name); $response = new Response([ 'code' => 200, 'message' => 'Record was deleted successfully!' ]); $response->output(); } catch (Exception $exception) { exit($this->_handleException($exception)); } } }