<?php

namespace ControlScripts;

use \SHServ\Entities\Device;

class OfficeRoomScope extends \SHServ\Middleware\ControlScripts implements \SHServ\Implements\ControlScriptsInterface {
	protected $sync_map = [
		"connections" => [
			[
				["type" => "relay", "alias" => "light_hub_1", "channel" => 0],
				["type" => "button", "alias" => "buttons_office_room", "channel" => 0],
			],

			[
				["type" => "relay", "alias" => "craft_table_lamp", "channel" => 0],
				["type" => "button", "alias" => "buttons_office_room", "channel" => 1],
			],
			
			[
				["type" => "relay", "alias" => "computer_table_lamp", "channel" => 0],
				["type" => "button", "alias" => "buttons_office_room", "channel" => 2],
			],
		]
	];

	public function register_events_handlers(): void {
	}

	public function register_actions_scripts(): void {
		$this -> add_action_script([
			"alias" => "computer_table_lamp_switch",
			"name" => "Комп. лампа",
			"icon" => '<i class="ph ph-lamp"></i><i class="ph ph-desktop"></i>',
			"description" => "Вкл/Выкл. настольную компьютерную лампу",
			"author" => "Eugene Sukhodolskiy"
		], function($params) {
			return $this -> lamp_switch("computer_table_lamp", 0);
		});

		$this -> add_action_script([
			"alias" => "craft_table_lamp_switch",
			"name" => "Крафт. лампа",
			"icon" => '<i class="ph ph-lamp"></i><i class="ph ph-wrench"></i>>',
			"description" => "Вкл/Выкл. настольную лампу на столе для крафта",
			"author" => "Eugene Sukhodolskiy"
		], function($params) {
			return $this -> lamp_switch("craft_table_lamp", 0);
		});

		$this -> add_action_script([
			"alias" => "main_lamps_switcher",
			"name" => "Осн. свет в кабинете",
			"icon" => '<i class="ph ph-lightbulb"></i>',
			"description" => "Включить/выключить основной свет в кабинете",
			"author" => "Eugene Sukhodolskiy"
		], function($params) {
			return $this -> lamp_switch("light_hub_1", 0);
		});
	}

	public function register_regular_scripts(): void {
	}

	// ACTIONS

	protected function lamp_switch(String $relay_alias, int $channel): Array {
		$btns_block_api = $this -> devices() -> by_alias("buttons_office_room") -> device_api();
		$relay_api = $this -> devices() -> by_alias($relay_alias) -> device_api();

		$result = false;
		if($relay_api instanceof \SHServ\Tools\DeviceAPI\Relay) {
			$result = $relay_api -> toggle_channel($channel);
			$this -> helper() -> sync_relay_to_btns($this -> sync_map, $relay_alias);
		}
		
		return [
			"result" => $result
		];
	}
}