���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/alphpwcp/public_html/us/alphachat/cli/lib/install.php
���ѧ٧ѧ�
<?php class Install { function __construct($ini_file) { openlog("livehelperchat", LOG_PID | LOG_PERROR, LOG_LOCAL0); syslog(LOG_DEBUG, "Start installation"); $this->settings = parse_ini_file($ini_file, true, INI_SCANNER_TYPED); } function __destruct() { syslog(LOG_DEBUG, "Finish installation"); closelog(); } function step1() { $Errors = array(); $directories = $this->_scandir('cache'); $this->file_is_writable(array('cache'),'', $Errors); $this->file_is_writable($directories, 'cache/', $Errors); $this->file_is_writable(array('settings'), '', $Errors); $var_directories = array( 'var/storage', 'var/storageform', 'var/storagetheme', 'var/storageadmintheme', 'var/tmpfiles', 'var/userphoto', ); $this->file_is_writable(array('var'),'', $Errors); $this->file_is_writable($var_directories, '', $Errors); if (!extension_loaded ('pdo_mysql' )) $Errors[] = "php-pdo extension not detected. Please install php extension"; if (!extension_loaded('curl')) $Errors[] = "php_curl extension not detected. Please install php extension"; if (!extension_loaded('mbstring')) $Errors[] = "mbstring extension not detected. Please install php extension"; if (!extension_loaded('gd')) $Errors[] = "gd extension not detected. Please install php extension"; if (!function_exists('json_encode')) $Errors[] = "json support not detected. Please install php extension"; if (version_compare(PHP_VERSION, '5.4.0','<')) { $Errors[] = "Minimum 5.4.0 PHP version is required"; } if (count($Errors) == 0){ return true; } else { return $Errors; } } function step2() { $Errors = array(); $database = $this->settings['db']; foreach ($database as $key => $value) { if (!filter_var($database[$key], FILTER_UNSAFE_RAW)) { $Errors[] = "Please enter database $key"; } } if (!filter_var($database['database'], FILTER_SANITIZE_STRING)) { $Errors[] = 'Please enter database name'; } if (count($Errors) == 0) { try { $db = ezcDbFactory::create( "mysql://{$database['user']}:{$database['password']}@{$database['host']}:{$database['port']}/{$database['database']}" ); } catch (Exception $e) { $Errors[] = "Cannot login with provided logins. Returned message: ".$e->getMessage(); } } if (count($Errors) == 0) { $cfgSite = erConfigClassLhConfig::getInstance(); foreach ($database as $key => $value) { $cfgSite->setSetting( 'db', $key, $value); } $cfgSite->setSetting( 'site', 'secrethash', erLhcoreClassChat::generateHash(80)); return true; } else { return $Errors; } } function step3() { $Errors = array(); $form = (object)$this->settings['admin']; if (!filter_var($form->AdminUsername, FILTER_UNSAFE_RAW)) { $Errors[] = 'Please enter admin username'; } if (!empty($form->AdminUsername) && strlen($form->AdminUsername) > 40) { $Errors[] = 'Maximum 40 characters for admin username'; } if (!filter_var($form->AdminPassword, FILTER_UNSAFE_RAW)) { $Errors[] = 'Please enter admin password'; } if (!empty($form->AdminPassword) && strlen($form->AdminPassword) > 40) { $Errors[] = 'Maximum 40 characters for admin password'; } if (!filter_var($form->AdminEmail, FILTER_VALIDATE_EMAIL)) { $Errors[] = 'Wrong email address'; } if (!filter_var($form->DefaultDepartament, FILTER_SANITIZE_STRING)) { $Errors[] = 'Please enter default department name'; } if (count($Errors) == 0) { $adminEmail = $form->AdminEmail; /*DATABASE TABLES SETUP*/ $db = ezcDbInstance::get(); try { $db->query("set global innodb_large_prefix = 1"); } catch (Exception $e) { // Just ignore if not succeed } $db->query("CREATE TABLE IF NOT EXISTS `lh_chat` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `nick` varchar(100) NOT NULL, `status` int(11) NOT NULL DEFAULT '0', `status_sub` int(11) NOT NULL DEFAULT '0', `status_sub_sub` int(11) NOT NULL DEFAULT '0', `time` int(11) NOT NULL, `user_id` int(11) NOT NULL, `hash` varchar(40) NOT NULL, `referrer` text NOT NULL, `session_referrer` text NOT NULL, `chat_variables` text NOT NULL, `remarks` text NOT NULL, `ip` varchar(100) NOT NULL, `dep_id` int(11) NOT NULL, `gbot_id` int(11) NOT NULL DEFAULT '0', `invitation_id` int(11) NOT NULL, `sender_user_id` int(11) NOT NULL, `product_id` int(11) NOT NULL, `cls_us` tinyint(1) NOT NULL DEFAULT '0', `pnd_time` int(11) NOT NULL DEFAULT '0', `cls_time` int(11) NOT NULL DEFAULT '0', `usaccept` int(11) NOT NULL DEFAULT '0', `user_status` int(11) NOT NULL DEFAULT '0', `user_closed_ts` int(11) NOT NULL DEFAULT '0', `support_informed` int(11) NOT NULL DEFAULT '0', `unread_messages_informed` int(11) NOT NULL DEFAULT '0', `reinform_timeout` int(11) NOT NULL DEFAULT '0', `last_op_msg_time` int(11) NOT NULL DEFAULT '0', `has_unread_op_messages` int(11) NOT NULL DEFAULT '0', `unread_op_messages_informed` int(11) NOT NULL DEFAULT '0', `email` varchar(100) NOT NULL, `country_code` varchar(100) NOT NULL, `country_name` varchar(100) NOT NULL, `unanswered_chat` int(11) NOT NULL, `anonymized` tinyint(1) NOT NULL, `user_typing` int(11) NOT NULL, `user_typing_txt` varchar(200) NOT NULL, `operator_typing` int(11) NOT NULL, `operator_typing_id` int(11) NOT NULL, `phone` varchar(100) NOT NULL, `has_unread_messages` int(11) NOT NULL, `last_user_msg_time` int(11) NOT NULL, `fbst` tinyint(1) NOT NULL, `online_user_id` int(11) NOT NULL, `auto_responder_id` int(11) NOT NULL, `last_msg_id` int(11) NOT NULL, `lsync` int(11) NOT NULL, `transfer_uid` int(11) NOT NULL, `additional_data` text NOT NULL, `user_tz_identifier` varchar(50) NOT NULL, `lat` varchar(10) NOT NULL, `lon` varchar(10) NOT NULL, `city` varchar(100) NOT NULL, `operation` text NOT NULL, `operation_admin` varchar(200) NOT NULL, `status_sub_arg` varchar(200) NOT NULL, `uagent` varchar(250) NOT NULL, `chat_locale` varchar(10) NOT NULL, `chat_locale_to` varchar(10) NOT NULL, `mail_send` int(11) NOT NULL, `screenshot_id` int(11) NOT NULL, `wait_time` int(11) NOT NULL, `chat_duration` int(11) NOT NULL, `tslasign` int(11) NOT NULL, `priority` int(11) NOT NULL, `chat_initiator` int(11) NOT NULL, `transfer_timeout_ts` int(11) NOT NULL, `transfer_timeout_ac` int(11) NOT NULL, `transfer_if_na` int(11) NOT NULL, `na_cb_executed` int(11) NOT NULL, `device_type` int(11) NOT NULL, `nc_cb_executed` tinyint(1) NOT NULL, `iwh_id` int(11) NOT NULL DEFAULT '0', `theme_id` int(11) unsigned NOT NULL DEFAULT '0', `frt` int(11) unsigned NOT NULL DEFAULT '0', `aart` int(11) unsigned NOT NULL DEFAULT '0', `mart` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `status_user_id` (`status`,`user_id`), KEY `unanswered_chat` (`unanswered_chat`), KEY `online_user_id` (`online_user_id`), KEY `dep_id` (`dep_id`), KEY `time` (`time`), KEY `product_id` (`product_id`), KEY `unread_operator` (`has_unread_op_messages`,`unread_op_messages_informed`), KEY `user_id_sender_user_id` (`user_id`,`sender_user_id`), KEY `sender_user_id` (`sender_user_id`), KEY `anonymized` (`anonymized`), KEY `has_unread_messages` (`has_unread_messages`), KEY `iwh_id` (`iwh_id`), KEY `theme_id` (`theme_id`), KEY `status` (`status`), KEY `nick` (`nick`), KEY `email` (`email`), KEY `phone` (`phone`), KEY `dep_id_status` (`dep_id`,`status`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_chat_blocked_user` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `datets` bigint(20) unsigned NOT NULL, `chat_id` bigint(20) unsigned NOT NULL, `dep_id` bigint(20) unsigned NOT NULL, `nick` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `btype` tinyint(1) NOT NULL DEFAULT 0, `expires` bigint(20) unsigned NOT NULL DEFAULT 0, `online_user_id` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `ip` (`ip`), KEY `nick` (`nick`), KEY `online_user_id` (`online_user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_users_online_session` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `time` int(11) NOT NULL, `duration` int(11) NOT NULL, `lactivity` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `user_id_lactivity` (`user_id`, `lactivity`), KEY `lactivity` (`lactivity`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_chat_start_settings` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `data` longtext NOT NULL, `dep_ids` text NOT NULL, `department_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `department_id` (`department_id`)) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_chat_event_track` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `data` longtext NOT NULL, `department_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `department_id` (`department_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_canned_msg_use` (`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `canned_id` int(11) unsigned NOT NULL, `chat_id` bigint(20) unsigned NOT NULL, `ctime` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`), KEY `ctime` (`ctime`), KEY `canned_id` (`canned_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_chat_archive_range` ( `id` int(11) NOT NULL AUTO_INCREMENT, `range_from` int(11) NOT NULL, `range_to` int(11) NOT NULL, `year_month` int(11) NOT NULL, `older_than` int(11) NOT NULL, `last_id` int(11) NOT NULL, `first_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_notification_subscriber` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `online_user_id` bigint(20) NOT NULL, `dep_id` int(11) NOT NULL, `theme_id` int(11) NOT NULL, `ctime` int(11) NOT NULL, `utime` int(11) NOT NULL, `status` int(11) NOT NULL, `params` text NOT NULL, `device_type` tinyint(1) NOT NULL,`subscriber_hash` varchar(50) NOT NULL, `uagent` varchar(250) NOT NULL, `ip` varchar(250) NOT NULL, `last_error` text NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`), KEY `dep_id` (`dep_id`), KEY `online_user_id` (`online_user_id`), KEY `subscriber_hash` (`subscriber_hash`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_auto_responder_dep` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `autoresponder_id` int(11) NOT NULL, `dep_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `autoresponder_id` (`autoresponder_id`), KEY `dep_id` (`dep_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_auto_responder` ( `id` int(11) NOT NULL AUTO_INCREMENT, `siteaccess` varchar(3) NOT NULL, `wait_message` text NOT NULL, `wait_timeout` int(11) NOT NULL, `position` int(11) NOT NULL, `timeout_message` text NOT NULL, `bot_configuration` text NOT NULL, `name` varchar(50) NOT NULL, `operator` varchar(50) NOT NULL, `dep_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `only_proactive` int(11) NOT NULL, `repeat_number` int(11) NOT NULL DEFAULT '1', `survey_timeout` int(11) NOT NULL DEFAULT '0', `survey_id` int(11) NOT NULL DEFAULT '0', `wait_timeout_hold_1` int(11) NOT NULL, `wait_timeout_hold_2` int(11) NOT NULL, `wait_timeout_hold_3` int(11) NOT NULL, `wait_timeout_hold_4` int(11) NOT NULL, `wait_timeout_hold_5` int(11) NOT NULL, `timeout_hold_message_1` text NOT NULL, `timeout_hold_message_2` text NOT NULL, `timeout_hold_message_3` text NOT NULL, `timeout_hold_message_4` text NOT NULL, `timeout_hold_message_5` text NOT NULL, `wait_timeout_hold` text NOT NULL, `wait_timeout_2` int(11) NOT NULL, `timeout_message_2` text NOT NULL, `wait_timeout_3` int(11) NOT NULL, `timeout_message_3` text NOT NULL, `wait_timeout_4` int(11) NOT NULL, `timeout_message_4` text NOT NULL, `wait_timeout_5` int(11) NOT NULL, `timeout_message_5` text NOT NULL, `wait_timeout_reply_1` int(11) NOT NULL, `timeout_reply_message_1` text NOT NULL, `wait_timeout_reply_2` int(11) NOT NULL, `timeout_reply_message_2` text NOT NULL, `wait_timeout_reply_3` int(11) NOT NULL, `timeout_reply_message_3` text NOT NULL, `wait_timeout_reply_4` int(11) NOT NULL, `timeout_reply_message_4` text NOT NULL, `wait_timeout_reply_5` int(11) NOT NULL, `timeout_reply_message_5` text NOT NULL, `languages` text NOT NULL, `ignore_pa_chat` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `siteaccess_position` (`siteaccess`,`position`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_abstract_widget_theme` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `name_company` text COLLATE utf8mb4_unicode_ci NOT NULL, `onl_bcolor` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `bor_bcolor` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'e3e3e3', `text_color` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `online_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `online_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `offline_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `offline_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `logo_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `logo_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `header_background` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_tcolor` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_bcolor` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_border` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_close_bg` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_hover_bg` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_close_hover_bg` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `custom_status_css` text COLLATE utf8mb4_unicode_ci NOT NULL, `custom_container_css` text COLLATE utf8mb4_unicode_ci NOT NULL, `custom_widget_css` text COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_header` text COLLATE utf8mb4_unicode_ci NOT NULL, `need_help_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `online_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `offline_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `widget_border_color` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `copyright_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `copyright_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `widget_copyright_url` text COLLATE utf8mb4_unicode_ci NOT NULL, `show_copyright` int(11) NOT NULL DEFAULT 1, `explain_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `intro_operator_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `operator_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `operator_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `minimize_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `minimize_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `restore_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `restore_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `close_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `close_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `popup_image` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `popup_image_path` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `hide_close` int(11) NOT NULL, `hide_popup` int(11) NOT NULL, `header_height` int(11) NOT NULL, `header_padding` int(11) NOT NULL, `widget_border_width` int(11) NOT NULL, `support_joined` text COLLATE utf8mb4_unicode_ci NOT NULL, `support_closed` text COLLATE utf8mb4_unicode_ci NOT NULL, `pending_join` text COLLATE utf8mb4_unicode_ci NOT NULL, `noonline_operators` text COLLATE utf8mb4_unicode_ci NOT NULL, `noonline_operators_offline` text COLLATE utf8mb4_unicode_ci NOT NULL, `show_need_help` int(11) NOT NULL DEFAULT 1, `show_need_help_timeout` int(11) NOT NULL DEFAULT 24, `show_voting` tinyint(1) NOT NULL DEFAULT 1, `department_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `department_select` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `buble_visitor_background` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `buble_visitor_title_color` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `buble_visitor_text_color` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `buble_operator_background` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `buble_operator_title_color` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `buble_operator_text_color` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `custom_popup_css` text COLLATE utf8mb4_unicode_ci NOT NULL, `hide_ts` int(11) NOT NULL, `widget_response_width` int(11) NOT NULL, `show_need_help_delay` int(11) NOT NULL, `show_status_delay` int(11) NOT NULL, `modern_look` tinyint(1) NOT NULL DEFAULT 0, `bot_status_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `bot_configuration` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `notification_configuration` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `pending_join_queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `modified` int(11) NOT NULL, `widget_show_leave_form` tinyint(1) NOT NULL, `enable_widget_embed_override` tinyint(1) NOT NULL, `widget_popheight` int(11) NOT NULL, `widget_popwidth` int(11) NOT NULL, `widget_survey` int(11) NOT NULL, `widget_position` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `widget_pright` int(11) NOT NULL, `widget_pbottom` int(11) NOT NULL, `alias` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `alias` (`alias`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE IF NOT EXISTS `lh_faq` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question` varchar(250) NOT NULL, `answer` text NOT NULL, `url` varchar(250) NOT NULL, `email` varchar(50) NOT NULL, `identifier` varchar(10) NOT NULL, `active` int(11) NOT NULL, `has_url` tinyint(1) NOT NULL, `is_wildcard` tinyint(1) NOT NULL, PRIMARY KEY (`id`), KEY `active` (`active`), KEY `active_url_2` (`active`,`url`(191)), KEY `has_url` (`has_url`), KEY `identifier` (`identifier`), KEY `is_wildcard` (`is_wildcard`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_group_chat` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `status` int(11) NOT NULL, `time` int(11) NOT NULL, `user_id` int(11) NOT NULL, `last_msg_op_id` bigint(20) NOT NULL, `last_msg` varchar(200) NOT NULL, `chat_id` bigint(20) NOT NULL DEFAULT 0, `last_user_msg_time` int(11) NOT NULL, `last_msg_id` bigint(20) NOT NULL, `type` tinyint(1) NOT NULL DEFAULT 0, `tm` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `chat_id` (`chat_id`), KEY `type` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_group_msg` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `msg` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `time` int(11) NOT NULL, `chat_id` int(11) NOT NULL DEFAULT 0, `user_id` int(11) NOT NULL DEFAULT 0, `name_support` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `meta_msg` longtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `chat_id_id` (`chat_id`,`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_group_chat_member` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `group_id` bigint(20) NOT NULL, `last_activity` int(11) NOT NULL, `last_msg_id` bigint(20) NOT NULL DEFAULT 0, `type` tinyint(1) NOT NULL DEFAULT 0, `jtime` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `group_id` (`group_id`), KEY `user_id` (`user_id`), KEY `type` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_cobrowse` ( `id` int(11) NOT NULL AUTO_INCREMENT, `chat_id` int(11) NOT NULL, `online_user_id` int(11) NOT NULL, `mtime` int(11) NOT NULL, `url` varchar(250) NOT NULL, `initialize` longtext NOT NULL, `modifications` longtext NOT NULL, `finished` tinyint(1) NOT NULL, `w` int NOT NULL, `wh` int NOT NULL, `x` int NOT NULL, `y` int NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`), KEY `online_user_id` (`online_user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_abstract_survey` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(250) NOT NULL, `feedback_text` text NOT NULL, `max_stars_1_title` varchar(250) NOT NULL, `max_stars_1_pos` int(11) NOT NULL, `max_stars_2_title` varchar(250) NOT NULL, `max_stars_2_pos` int(11) NOT NULL, `max_stars_2` int(11) NOT NULL, `max_stars_3_title` varchar(250) NOT NULL, `max_stars_3_pos` int(11) NOT NULL, `max_stars_3` int(11) NOT NULL, `max_stars_4_title` varchar(250) NOT NULL, `max_stars_4_pos` int(11) NOT NULL, `max_stars_4` int(11) NOT NULL, `max_stars_5_title` varchar(250) NOT NULL, `max_stars_5_pos` int(11) NOT NULL, `max_stars_5` int(11) NOT NULL, `question_options_1` varchar(250) NOT NULL, `question_options_1_items` text NOT NULL, `question_options_1_pos` int(11) NOT NULL, `question_options_2` varchar(250) NOT NULL, `question_options_2_items` text NOT NULL, `question_options_2_pos` int(11) NOT NULL, `question_options_3` varchar(250) NOT NULL, `question_options_3_items` text NOT NULL, `question_options_3_pos` int(11) NOT NULL, `question_options_4` varchar(250) NOT NULL, `question_options_4_items` text NOT NULL, `question_options_4_pos` int(11) NOT NULL, `question_options_5` varchar(250) NOT NULL, `question_options_5_items` text NOT NULL, `question_options_5_pos` int(11) NOT NULL, `question_plain_1` text NOT NULL, `question_plain_1_pos` int(11) NOT NULL, `question_plain_2` text NOT NULL, `question_plain_2_pos` int(11) NOT NULL, `question_plain_3` text NOT NULL, `question_plain_3_pos` int(11) NOT NULL, `question_plain_4` text NOT NULL, `question_plain_4_pos` int(11) NOT NULL, `question_plain_5` text NOT NULL, `question_plain_5_pos` int(11) NOT NULL, `max_stars_1_enabled` int(11) NOT NULL, `max_stars_2_enabled` int(11) NOT NULL, `max_stars_3_enabled` int(11) NOT NULL, `max_stars_4_enabled` int(11) NOT NULL, `max_stars_5_enabled` int(11) NOT NULL, `question_options_1_enabled` int(11) NOT NULL, `question_options_2_enabled` int(11) NOT NULL, `question_options_3_enabled` int(11) NOT NULL, `question_options_4_enabled` int(11) NOT NULL, `question_options_5_enabled` int(11) NOT NULL, `question_plain_1_enabled` int(11) NOT NULL, `question_plain_2_enabled` int(11) NOT NULL, `question_plain_3_enabled` int(11) NOT NULL, `question_plain_4_enabled` int(11) NOT NULL, `question_plain_5_enabled` int(11) NOT NULL, `max_stars_1` int(11) NOT NULL, `max_stars_1_req` int(11) NOT NULL, `max_stars_2_req` int(11) NOT NULL, `max_stars_3_req` int(11) NOT NULL, `max_stars_4_req` int(11) NOT NULL, `max_stars_5_req` int(11) NOT NULL, `question_options_1_req` int(11) NOT NULL, `question_options_2_req` int(11) NOT NULL, `question_options_3_req` int(11) NOT NULL, `question_options_4_req` int(11) NOT NULL, `question_options_5_req` int(11) NOT NULL, `question_plain_1_req` int(11) NOT NULL, `question_plain_2_req` int(11) NOT NULL, `question_plain_3_req` int(11) NOT NULL, `question_plain_4_req` int(11) NOT NULL, `question_plain_5_req` int(11) NOT NULL, `configuration` longtext NOT NULL, `identifier` varchar(50) NOT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_admin_theme` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `static_content` longtext NOT NULL, `static_js_content` longtext NOT NULL, `static_css_content` longtext NOT NULL, `css_attributes` longtext NOT NULL, `header_content` text NOT NULL, `user_id` int(11) NOT NULL, `header_css` text NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_chat_paid` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hash` varchar(250) NOT NULL, `chat_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `hash` (`hash`(191)), KEY `chat_id` (`chat_id`)) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_survey_item` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `survey_id` int(11) NOT NULL, `status` int(11) NOT NULL DEFAULT '0', `chat_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `ftime` int(11) NOT NULL, `dep_id` int(11) NOT NULL, `max_stars_1` int(11) NOT NULL, `max_stars_2` int(11) NOT NULL, `max_stars_3` int(11) NOT NULL, `max_stars_4` int(11) NOT NULL, `max_stars_5` int(11) NOT NULL, `question_options_1` int(11) NOT NULL, `question_options_2` int(11) NOT NULL, `question_options_3` int(11) NOT NULL, `question_options_4` int(11) NOT NULL, `question_options_5` int(11) NOT NULL, `question_plain_1` text NOT NULL, `question_plain_2` text NOT NULL, `question_plain_3` text NOT NULL, `question_plain_4` text NOT NULL, `question_plain_5` text NOT NULL, `online_user_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `online_user_id` (`online_user_id`), KEY `survey_id` (`survey_id`), KEY `chat_id` (`chat_id`), KEY `user_id` (`user_id`), KEY `dep_id` (`dep_id`), KEY `ftime` (`ftime`), KEY `max_stars_1` (`max_stars_1`), KEY `max_stars_2` (`max_stars_2`), KEY `max_stars_3` (`max_stars_3`), KEY `max_stars_4` (`max_stars_4`), KEY `max_stars_5` (`max_stars_5`), KEY `question_options_1` (`question_options_1`), KEY `question_options_2` (`question_options_2`), KEY `question_options_3` (`question_options_3`), KEY `question_options_4` (`question_options_4`), KEY `question_options_5` (`question_options_5`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_speech_language` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `siteaccess` varchar(3) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_speech_language_dialect` ( `id` int(11) NOT NULL AUTO_INCREMENT, `language_id` int(11) NOT NULL, `lang_name` varchar(100) NOT NULL, `lang_code` varchar(100) NOT NULL, `short_code` varchar(4) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `language_id` (`language_id`), KEY `short_code` (`short_code`), KEY `lang_code` (`lang_code`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("INSERT INTO `lh_speech_language` (`id`, `name`, `siteaccess`) VALUES (1, 'Afrikaans',''), (2, 'Bahasa Indonesia',''), (3, 'Bahasa Melayu',''), (4, 'Català',''), (5, 'Čeština',''), (6, 'Deutsch','ger'), (7, 'English',''), (8, 'Español','esp'), (9, 'Euskara',''), (10, 'Français','fre'), (11, 'Galego',''), (12, 'Hrvatski',''), (13, 'IsiZulu',''), (14, 'Íslenska',''), (15, 'Italiano','ita'), (16, 'Magyar',''), (17, 'Nederlands','nld'), (18, 'Norsk bokmål',''), (19, 'Polski','pol'), (20, 'Português','por'), (21, 'Română',''), (22, 'Slovenčina',''), (23, 'Suomi','fin'), (24, 'Svenska',''), (25, 'Türkçe','tur'), (26, 'български',''), (27, 'Pусский','rus'), (28, 'Српски',''), (29, '한국어',''), (30, '中文',''), (31, '日本語',''), (32, 'Lingua latīna',''), (33, 'Lithuanian','lit'), (34, 'Latvia',''), (35, 'Afar',''), (36, 'Arabic',''), (37, 'Assamese',''), (38, 'Azerbaijani',''), (39, 'Bulgarian','bgr'), (40, 'Bangla',''), (41, 'Bosnian',''), (42, 'Cakchiquel',''), (43, 'Danish',''), (44, 'Greek',''), (45, 'Estonian',''), (46, 'Persian',''), (47, 'Filipino',''), (48, 'Gujarati',''), (49, 'Hebrew',''), (50, 'Croatian',''), (51, 'Indonesia',''), (52, 'Icelandic',''), (53, 'Georgian',''), (54, 'Maori (New Zealand)',''), (55, 'Macedonian',''), (56, 'Malay (Latin)',''), (57, 'Maltese',''), (58, 'Norwegian Nynorsk',''), (59, 'Norwegian','nor'), (60, 'Northern Sotho (South Africa)',''), (61, 'Slovenian',''), (63, 'Thai',''), (64, 'Tagalog',''), (65, 'Tongan',''), (66, 'Ukrainian',''), (67, 'Vietnamese','vnm'), (68, 'Chinese','chn');"); $db->query("INSERT INTO `lh_speech_language_dialect` (`id`, `language_id`, `lang_name`, `lang_code`, `short_code`) VALUES (1, 1, 'Afrikaans', 'af-ZA', 'af'), (2, 2, 'Bahasa Indonesia', 'id-ID', 'id'), (3, 3, 'Bahasa Melayu', 'ms-MY', ''), (4, 4, 'Català', 'ca-ES', ''), (5, 5, 'Čeština', 'cs-CZ', 'cs'), (6, 6, 'Deutsch', 'de-DE', 'de'), (7, 7, 'Australia', 'en-AU', ''), (8, 7, 'Canada', 'en-CA', ''), (9, 7, 'India', 'en-IN', ''), (10, 7, 'New Zealand', 'en-NZ', ''), (11, 7, 'South Africa', 'en-ZA', ''), (12, 7, 'United Kingdom', 'en-GB', 'en'), (13, 7, 'United States', 'en-US', ''), (14, 8, 'Argentina', 'es-AR', ''), (15, 8, 'Bolivia', 'es-BO', ''), (16, 8, 'Chile', 'es-CL', ''), (17, 8, 'Colombia', 'es-CO', ''), (18, 8, 'Costa Rica', 'es-CR', ''), (19, 8, 'Ecuador', 'es-EC', ''), (20, 8, 'El Salvador', 'es-SV', ''), (21, 8, 'España', 'es-ES', 'es'), (22, 8, 'Estados Unidos', 'es-US', ''), (23, 8, 'Guatemala', 'es-GT', ''), (24, 8, 'Honduras', 'es-HN', ''), (25, 8, 'México', 'es-MX', ''), (26, 8, 'Nicaragua', 'es-NI', ''), (27, 8, 'Panamá', 'es-PA', ''), (28, 8, 'Paraguay', 'es-PY', ''), (29, 8, 'Perú', 'es-PE', ''), (30, 8, 'Puerto Rico', 'es-PR', ''), (31, 8, 'República Dominicana', 'es-DO', ''), (32, 8, 'Uruguay', 'es-UY', ''), (33, 8, 'Venezuela', 'es-VE', ''), (34, 9, 'Euskara', 'eu-ES', ''), (35, 10, 'Français', 'fr-FR', 'fr'), (36, 11, 'Galego', 'gl-ES', ''), (37, 12, 'Hrvatski', 'hr_HR', ''), (38, 13, 'IsiZulu', 'zu-ZA', ''), (39, 14, 'Íslenska', 'is-IS', ''), (40, 15, 'Italia', 'it-IT', 'it'), (41, 15, 'Svizzera', 'it-CH', 'it'), (42, 16, 'Magyar', 'hu-HU', 'hu'), (43, 17, 'Nederlands', 'nl-NL', 'nl'), (44, 18, 'Norsk bokmål', 'nb-NO', 'nb'), (45, 19, 'Polski', 'pl-PL', 'pl'), (46, 20, 'Brasil', 'pt-BR', ''), (47, 20, 'Portugal', 'pt-PT', 'pt'), (48, 21, 'Română', 'ro-RO', 'ro'), (49, 22, 'Slovenčina', 'sk-SK', 'sk'), (50, 23, 'Suomi', 'fi-FI', 'fi'), (51, 24, 'Swedish', 'sv-SE', 'sv'), (52, 25, 'Türkçe', 'tr-TR', 'tr'), (53, 26, 'български', 'bg-BG', ''), (54, 27, 'Pусский', 'ru-RU', 'ru'), (55, 28, 'Serbian', 'sr-RS', 'sr'), (56, 29, '한국어', 'ko-KR', 'ko'), (57, 30, '普通话 (中国大陆)', 'cmn-Hans-CN', ''), (58, 30, '普通话 (香港)', 'cmn-Hans-HK', ''), (59, 30, '中文 (台灣)', 'cmn-Hant-TW', ''), (60, 30, '粵語 (香港)', 'yue-Hant-HK', ''), (61, 31, '日本語', 'ja-JP', 'ja'), (62, 32, 'Lingua latīna', 'la', ''), (64, 33, 'Lithuanian', 'lt-LT', 'lt'), (65, 34, 'Latvia', 'lv-LV', 'lv'), (66, 35, 'Afar', 'aa-DJ', 'aa'), (67, 36, 'Egypt', 'ar-EG', 'ar'), (68, 37, 'India', 'as-IN', 'as'), (69, 38, 'Azerbaijani', 'az-AZ', 'az'), (70, 39, 'Bulgarian', 'bg', 'bg'), (71, 40, 'Bangla', 'bn', 'bn'), (72, 41, 'Bosnian', 'bs-BA', 'bs'), (73, 42, 'Cakchiquel', 'cak', 'cak'), (74, 43, 'Danish', 'da-dk', 'da'), (75, 44, 'Greek', 'el-GR', 'el'), (76, 45, 'Estonian', 'et-EE', 'et'), (77, 46, 'Persian', 'fa-IR', 'fa'), (78, 47, 'Filipino', 'fil', 'fil'), (79, 48, 'Gujarati', 'gu-IN', 'gu'), (80, 49, 'Hebrew', 'he', 'he'), (81, 50, 'Croatian', 'hr-HR', 'hr'), (82, 51, 'Indonesia', 'in', 'in'), (83, 52, 'Icelandic', 'is', 'is'), (84, 53, 'Georgian', 'ka-ge', 'ka'), (85, 54, 'Maori (New Zealand)', 'mi-nz', 'mi'), (86, 55, 'Macedonian', 'mk-MK', 'mk'), (87, 56, 'Malay (Latin)', 'ms', 'ms'), (88, 57, 'Maltese', 'mt', 'mt'), (89, 58, 'Norwegian Nynorsk', 'nn-NO', 'nn'), (90, 59, 'Norwegian', 'no', 'no'), (91, 60, 'Northern Sotho (South Africa)', 'nso-za', 'nso'), (92, 61, 'Slovenian', 'sl-SI', 'sl'), (94, 63, 'Thai', 'th-TH', 'th'), (95, 64, 'Tagalog', 'tl', 'tl'), (96, 65, 'Tongan', 'to-TO', 'to'), (97, 66, 'Ukrainian', 'uk-UA', 'uk'), (98, 67, 'Vietnamese', 'vi-VN', 'vi'), (99, 68, 'Chinese', 'zh-CN', 'zh'), (100, 36, 'Egypt', 'ar-AE', ''), (101, 36, 'Egypt', 'ar-IQ', ''), (102, 41, 'Bosnian', 'bs-Latn-BA', ''), (103, 6, 'Deutsch', 'de-at', ''), (104, 6, 'Deutsch', 'de-ch', ''), (105, 6, 'Deutsch', 'de-GB', ''), (106, 6, 'Deutsch', 'de-LI', ''), (107, 6, 'Deutsch', 'de-LU', ''), (108, 7, 'United Kingdom', 'en-029', ''), (109, 7, 'United Kingdom', 'en-AS', ''), (110, 7, 'United Kingdom', 'en-BE', ''), (111, 7, 'United Kingdom', 'en-BM', ''), (112, 7, 'United Kingdom', 'en-BS', ''), (113, 7, 'United Kingdom', 'en-BW', ''), (114, 7, 'United Kingdom', 'en-CH', ''), (115, 7, 'United Kingdom', 'en-CX', ''), (116, 7, 'United Kingdom', 'en-CY', ''), (117, 7, 'United Kingdom', 'en-DE', ''), (118, 7, 'United Kingdom', 'en-DK', ''), (119, 7, 'United Kingdom', 'en-DM', ''), (120, 7, 'United Kingdom', 'en-GY', ''), (121, 7, 'United Kingdom', 'en-HK', ''), (122, 7, 'United Kingdom', 'en-ie', ''), (123, 7, 'United Kingdom', 'en-IM', ''), (124, 7, 'United Kingdom', 'en-JM', ''), (125, 7, 'United Kingdom', 'en-KY', ''), (126, 7, 'United Kingdom', 'en-MY', ''), (127, 7, 'United Kingdom', 'en-NF', ''), (128, 7, 'United Kingdom', 'en-NG', ''), (129, 7, 'United Kingdom', 'en-NL', ''), (130, 7, 'United Kingdom', 'en-PH', ''), (131, 7, 'United Kingdom', 'en-SE', ''), (132, 7, 'United Kingdom', 'en-sg', ''), (133, 7, 'United Kingdom', 'en-SI', ''), (134, 7, 'United Kingdom', 'en-SS', ''), (135, 7, 'United Kingdom', 'en-TO', ''), (136, 7, 'United Kingdom', 'en-TZ', ''), (137, 7, 'United Kingdom', 'en-UG', ''), (138, 7, 'United Kingdom', 'en-UK', ''), (139, 7, 'United Kingdom', 'en-ZG', ''), (140, 7, 'United Kingdom', 'en-ZM', ''), (141, 7, 'United Kingdom', 'en-ZW', ''), (142, 8, 'España', 'es-419', ''), (143, 8, 'España', 'es-xl', ''), (144, 47, 'Filipino', 'fil-PH', ''), (145, 10, 'Français', 'fr-BE', ''), (146, 10, 'Français', 'fr-ca', ''), (147, 10, 'Français', 'fr-ch', ''), (148, 10, 'Français', 'fr-CM', ''), (149, 10, 'Français', 'fr-MC', ''), (150, 49, 'Hebrew', 'he-IL', ''), (151, 50, 'Croatian', 'hr-BA', ''), (152, 17, 'Nederlands', 'nl-BE', ''), (153, 19, 'Polski', 'pl-GB', ''), (154, 27, 'Pусский', 'ru-KZ', ''), (155, 27, 'Pусский', 'ru-UA', ''), (156, 28, 'Serbian', 'sr-BA', ''), (157, 28, 'Serbian', 'sr-Latn-RS', ''), (158, 68, 'Chinese', 'zh-MO', ''), (159, 68, 'Chinese', 'zh-SG', ''), (160, 68, 'Chinese', 'zh-TW', '');"); $db->query("CREATE TABLE IF NOT EXISTS `lh_speech_chat_language` ( `id` int(11) NOT NULL AUTO_INCREMENT, `chat_id` int(11) NOT NULL, `language_id` int(11) NOT NULL, `dialect` varchar(50) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_chat_file` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `upload_name` varchar(255) NOT NULL, `size` int(11) NOT NULL, `type` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `extension` varchar(255) NOT NULL, `chat_id` bigint(20) NOT NULL, `persistent` int(11) NOT NULL, `online_user_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `date` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`), KEY `online_user_id` (`online_user_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_email_template` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(250) NOT NULL, `from_name` varchar(150) NOT NULL, `from_name_ac` tinyint(4) NOT NULL, `from_email` varchar(150) NOT NULL, `from_email_ac` tinyint(4) NOT NULL, `user_mail_as_sender` tinyint(4) NOT NULL, `content` text NOT NULL, `use_chat_locale` tinyint(1) NOT NULL DEFAULT '0', `translations` longtext NOT NULL, `subject` varchar(250) NOT NULL, `bcc_recipients` varchar(200) NOT NULL, `subject_ac` tinyint(4) NOT NULL, `reply_to` varchar(150) NOT NULL, `reply_to_ac` tinyint(4) NOT NULL, `recipient` varchar(150) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("INSERT INTO `lh_abstract_email_template` (`id`, `translations`, `name`, `from_name`, `from_name_ac`, `from_email`, `from_email_ac`, `content`, `subject`, `subject_ac`, `reply_to`, `reply_to_ac`, `recipient`, `bcc_recipients`, `user_mail_as_sender`) VALUES (1,'', 'Send mail to user', 'Live Helper Chat', 0, '', 0, 'Dear {user_chat_nick},\r\n\r\n{additional_message}\r\n\r\nLive Support response:\r\n{messages_content}\r\n\r\nSincerely,\r\nLive Support Team\r\n', '{name_surname} has responded to your request', 1, '', 1, '', '', 0), (2,'', 'Support request from user', '', 0, '', 0, 'Hello,\r\n\r\nUser request data:\r\nName: {name}\r\nEmail: {email}\r\nPhone: {phone}\r\nDepartment: {department}\r\nCountry: {country}\r\nCity: {city}\r\nIP: {ip}\r\n\r\nMessage:\r\n{message}\r\n\r\nAdditional data, if any:\r\n{additional_data}\r\n\r\nURL of page from which user has send request:\r\n{url_request}\r\n\r\nLink to chat if any:\r\n{prefillchat}\r\n\r\nSincerely,\r\nLive Support Team', '{name}, {country}, {department}, Support request from user', 0, '', 0, '{$adminEmail}', '', 0), (3,'', 'User mail for himself', 'Live Helper Chat', 0, '', 0, 'Dear {user_chat_nick},\r\n\r\nTranscript:\r\n{messages_content}\r\nChat ID: {chat_id}\n\r\nSincerely,\r\nLive Support Team\r\n', 'Chat transcript', 0, '', 0, '', '', 0), (4,'', 'New chat request', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\nUser request data:\r\nName: {name}\r\nEmail: {email}\r\nPhone: {phone}\r\nDepartment: {department}\r\nCountry: {country}\r\nCity: {city}\r\nIP: {ip}\r\nCreated: {created}\r\nUser left: {user_left}\r\nWaited: {waited}\r\nChat duration: {chat_duration}\r\n\r\nMessage:\r\n{message}\r\n\r\nURL of page from which user has send request:\r\n{url_request}\r\n\r\nClick to accept chat automatically\r\n{url_accept}\r\n\r\nSurvey\r\n{survey}\r\n\r\nSincerely,\r\nLive Support Team', 'New chat request', 0, '', 0, '{$adminEmail}', '', 0), (5,'', 'Chat was closed', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\n{operator} has closed a chat\r\nName: {name}\r\nEmail: {email}\r\nPhone: {phone}\r\nDepartment: {department}\r\nCountry: {country}\r\nCity: {city}\r\nIP: {ip}\r\nCreated: {created}\r\nUser left: {user_left}\r\nWaited: {waited}\r\nChat duration: {chat_duration}\r\n\r\nMessage:\r\n{message}\r\n\r\nAdditional data, if any:\r\n{additional_data}\r\n\r\nURL of page from which user has send request:\r\n{url_request}\r\n\r\nSurvey:\r\n{survey}\r\n\r\nSincerely,\r\nLive Support Team', 'Chat was closed', 0, '', 0, '{$adminEmail}', '', 0), (6,'', 'New FAQ question', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\nNew FAQ question\r\nEmail: {email}\r\n\r\nQuestion:\r\n{question}\r\n\r\nQuestion URL:\r\n{url_question}\r\n\r\nURL to answer a question:\r\n{url_request}\r\n\r\nSincerely,\r\nLive Support Team', 'New FAQ question', 0, '', 0, '{$adminEmail}', '', 0), (7,'', 'New unread message', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\nUser request data:\r\nName: {name}\r\nEmail: {email}\r\nPhone: {phone}\r\nDepartment: {department}\r\nCountry: {country}\r\nCity: {city}\r\nIP: {ip}\r\nCreated: {created}\r\nUser left: {user_left}\r\nWaited: {waited}\r\nChat duration: {chat_duration}\r\n\r\nMessage:\r\n{message}\r\n\r\nURL of page from which user has send request:\r\n{url_request}\r\n\r\nClick to accept chat automatically\r\n{url_accept}\r\n\r\nSurvey:\r\n{survey}\r\n\r\nSincerely,\r\nLive Support Team', 'New unread message', 0, '', 0, '{$adminEmail}', '', 0), (8,'', 'Filled form', 'MCFC', 0, '', 0, 'Hello,\r\n\r\nUser has filled a form\r\nForm name - {form_name}\r\nUser IP - {ip}\r\nDownload filled data - {url_download}\r\nView filled data - {url_view}\r\n\r\n{content}\r\n\r\nSincerely,\r\nLive Support Team', 'Filled form - {form_name}', 0, '', 0, '{$adminEmail}', '', 0), (9,'', 'Chat was accepted', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\nOperator {user_name} has accepted a chat [{chat_id}]\r\n\r\nUser request data:\r\nName: {name}\r\nEmail: {email}\r\nPhone: {phone}\r\nDepartment: {department}\r\nCountry: {country}\r\nCity: {city}\r\nIP: {ip}\r\nCreated: {created}\r\nUser left: {user_left}\r\nWaited: {waited}\r\nChat duration: {chat_duration}\r\n\r\nMessage:\r\n{message}\r\n\r\nURL of page from which user has send request:\r\n{url_request}\r\n\r\nClick to accept chat automatically\r\n{url_accept}\r\n\r\nSurvey:\r\n{survey}\r\n\r\nSincerely,\r\nLive Support Team', 'Chat was accepted [{chat_id}]', 0, '', 0, '{$adminEmail}', '', 0), (10,'', 'Permission request', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\nOperator {user} has requested these permissions\n\r\n{permissions}\r\n\r\nSincerely,\r\nLive Support Team', 'Permission request from {user}', 0, '', 0, '', '', 0), (11,'', 'You have unread messages', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\nOperator {operator} has answered to you\r\n\r\n{messages}\r\n\r\nSincerely,\r\nLive Support Team', 'Operator has answered to your request', 0, '', 0, '', '', 0), (12,'', 'Visitor returned', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\nVisitor information\r\nName: {name}\r\nEmail: {email}\r\nPhone: {phone}\r\nDepartment: {department}\r\nCountry: {country}\r\nCity: {city}\r\nIP: {ip}\r\nCreated: {created}\r\nUser left: {user_left}\r\nWaited: {waited}\r\nChat duration: {chat_duration}\r\n\r\nSee more information at\r\n{url_accept}\r\n\r\nLast chat:\r\n{message}\r\n\r\nAdditional data, if any:\r\n{additional_data}\r\n\r\nSincerely,\r\nLive Support Team', 'Visitor returned - {username}', 0, '', 0, '', '', 0), (13,'','Report prepared', 'Live Helper Chat', 0, '', 0, 'Hello,\r\n\r\nReport prepared - {report_name}, {date_range}\r\n\r\n{report_description}\r\n\r\nView report at:\r\n{url_report}', 'Report prepared - {report_name}', 0, '', 0, '', '', 0);"); $db->query("CREATE TABLE IF NOT EXISTS `lh_question` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question` varchar(250) NOT NULL, `location` varchar(250) NOT NULL, `active` int(11) NOT NULL, `priority` int(11) NOT NULL, `is_voting` int(11) NOT NULL, `question_intro` text NOT NULL, `revote` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `priority` (`priority`), KEY `active_priority` (`active`,`priority`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_question_answer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ip` bigint(20) NOT NULL, `question_id` int(11) NOT NULL, `answer` text NOT NULL, `ctime` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `ip` (`ip`), KEY `question_id` (`question_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_question_option` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question_id` int(11) NOT NULL, `option_name` varchar(250) NOT NULL, `priority` tinyint(4) NOT NULL, PRIMARY KEY (`id`), KEY `question_id` (`question_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_question_option_answer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `question_id` int(11) NOT NULL, `option_id` int(11) NOT NULL, `ctime` int(11) NOT NULL, `ip` bigint(20) NOT NULL, PRIMARY KEY (`id`), KEY `question_id` (`question_id`), KEY `ip` (`ip`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_product` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(250) NOT NULL, `disabled` int(11) NOT NULL, `priority` int(11) NOT NULL, `departament_id` int(11) NOT NULL, KEY `departament_id` (`departament_id`), PRIMARY KEY (`id`)) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_browse_offer_invitation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `siteaccess` varchar(10) NOT NULL, `time_on_site` int(11) NOT NULL, `content` longtext NOT NULL, `callback_content` longtext NOT NULL, `lhc_iframe_content` tinyint(4) NOT NULL, `custom_iframe_url` varchar(250) NOT NULL, `name` varchar(250) NOT NULL, `identifier` varchar(50) NOT NULL, `executed_times` int(11) NOT NULL, `url` varchar(250) NOT NULL, `active` int(11) NOT NULL, `has_url` int(11) NOT NULL, `is_wildcard` int(11) NOT NULL, `referrer` varchar(250) NOT NULL, `priority` varchar(250) NOT NULL, `hash` varchar(40) NOT NULL, `width` int(11) NOT NULL, `height` int(11) NOT NULL, `unit` varchar(10) NOT NULL, PRIMARY KEY (`id`), KEY `active` (`active`), KEY `identifier` (`identifier`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_form` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `content` longtext NOT NULL, `recipient` varchar(250) NOT NULL, `active` int(11) NOT NULL, `name_attr` varchar(250) NOT NULL, `intro_attr` varchar(250) NOT NULL, `xls_columns` text NOT NULL, `pagelayout` varchar(200) NOT NULL, `post_content` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_form_collected` ( `id` int(11) NOT NULL AUTO_INCREMENT, `form_id` int(11) NOT NULL, `ctime` int(11) NOT NULL, `ip` varchar(250) NOT NULL, `identifier` varchar(250) NOT NULL, `chat_id` bigint(20) NOT NULL, `content` longtext NOT NULL, `custom_fields` longtext NOT NULL, PRIMARY KEY (`id`), KEY `form_id` (`form_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_chatbox` ( `id` int(11) NOT NULL AUTO_INCREMENT, `identifier` varchar(50) NOT NULL, `name` varchar(100) NOT NULL, `chat_id` int(11) NOT NULL, `active` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_chat_action` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `action` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `body` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_canned_msg` ( `id` int(11) NOT NULL AUTO_INCREMENT, `msg` longtext NOT NULL, `fallback_msg` text NOT NULL, `title` varchar(250) NOT NULL, `explain` varchar(250) NOT NULL, `languages` text NOT NULL, `additional_data` text NOT NULL, `position` int(11) NOT NULL, `disabled` tinyint(1) unsigned NOT NULL NULL DEFAULT 0, `department_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `delay` int(11) NOT NULL, `auto_send` tinyint(1) NOT NULL, `html_snippet` longtext NOT NULL, `attr_int_1` int(11) NOT NULL, `attr_int_2` int(11) NOT NULL, `attr_int_3` int(11) NOT NULL, `unique_id` varchar(20) NOT NULL, `updated_at` int(11) unsigned NOT NULL DEFAULT 0, `created_at` int(11) unsigned NOT NULL DEFAULT 0, `active_from` int(11) unsigned NOT NULL DEFAULT 0, `active_to` int(11) unsigned NOT NULL DEFAULT 0, `repetitiveness` int(11) unsigned NOT NULL DEFAULT 0, `days_activity` text COLLATE utf8mb4_unicode_ci NOT NULL, `delete_on_exp` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `department_id` (`department_id`), KEY `disabled` (`disabled`), KEY `attr_int_1` (`attr_int_1`), KEY `attr_int_2` (`attr_int_2`), KEY `attr_int_3` (`attr_int_3`), KEY `delete_on_exp` (`delete_on_exp`), KEY `position_title_v2` (`position`, `title`(191)), KEY `user_id` (`user_id`), KEY `unique_id` (`unique_id`), KEY `repetitiveness` (`repetitiveness`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_chat_online_user_footprint` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `online_user_id` int(11) NOT NULL, `page` varchar(2083) NOT NULL, `vtime` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`), KEY `online_user_id` (`online_user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_proactive_chat_invitation_dep` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `invitation_id` int(11) NOT NULL, `dep_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `invitation_id` (`invitation_id`), KEY `dep_id` (`dep_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_proactive_chat_event` ( `id` int(11) NOT NULL AUTO_INCREMENT, `vid_id` int(11) NOT NULL, `ev_id` int(11) NOT NULL, `ts` int(11) NOT NULL, `val` varchar(50) NOT NULL, PRIMARY KEY (`id`), KEY `vid_id_ev_id_val_ts` (`vid_id`,`ev_id`,`val`,`ts`), KEY `vid_id_ev_id_ts` (`vid_id`,`ev_id`,`ts`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_proactive_chat_invitation_event` ( `id` int(11) NOT NULL AUTO_INCREMENT, `invitation_id` int(11) NOT NULL, `event_id` int(11) NOT NULL, `min_number` int(11) NOT NULL, `during_seconds` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `invitation_id` (`invitation_id`), KEY `event_id` (`event_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_proactive_chat_variables` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `identifier` varchar(50) NOT NULL, `store_timeout` int(11) NOT NULL, `filter_val` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `identifier` (`identifier`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_proactive_chat_campaign` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `text` text NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_chat_alert_icon` (`id` bigint(20) NOT NULL AUTO_INCREMENT,`name` varchar(50) NOT NULL, `identifier` varchar(50) NOT NULL,PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_proactive_chat_campaign_conv` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `device_type` tinyint(11) NOT NULL, `invitation_type` tinyint(1) NOT NULL, `invitation_status` tinyint(1) NOT NULL, `chat_id` bigint(20) NOT NULL, `campaign_id` int(11) NOT NULL, `invitation_id` int(11) NOT NULL, `department_id` int(11) NOT NULL, `ctime` int(11) NOT NULL, `con_time` int(11) NOT NULL, `vid_id` bigint(20) DEFAULT NULL, `variation_id` bigint(20) unsigned NOT NULL DEFAULT 0, `conv_int_expires` bigint(20) unsigned NOT NULL DEFAULT 0, `conv_int_time` bigint(20) unsigned NOT NULL DEFAULT 0, `conv_event` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `unique_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `campaign_id` (`campaign_id`), KEY `invitation_status` (`invitation_status`), KEY `ctime` (`ctime`), KEY `invitation_id_variation_id` (`invitation_id`,`variation_id`), KEY `unique_id` (`unique_id`), KEY `conv_int_time` (`conv_int_time`), KEY `conv_event_vid_id` (`conv_event`,`vid_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_users_setting` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `identifier` varchar(50) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`,`identifier`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_departament_limit_group_member` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dep_id` int(11) NOT NULL, `dep_limit_group_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `dep_limit_group_id` (`dep_limit_group_id`)) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_departament_limit_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `pending_max` int(11) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_auto_responder_chat` ( `id` int(11) NOT NULL AUTO_INCREMENT, `chat_id` int(11) NOT NULL, `auto_responder_id` int(11) NOT NULL, `wait_timeout_send` int(11) NOT NULL, `pending_send_status` int(11) NOT NULL, `active_send_status` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE IF NOT EXISTS `lh_users_setting_option` ( `identifier` varchar(50) NOT NULL, `class` varchar(50) NOT NULL, `attribute` varchar(40) NOT NULL, PRIMARY KEY (`identifier`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("INSERT INTO `lh_users_setting_option` (`identifier`, `class`, `attribute`) VALUES ('chat_message', '', ''), ('new_chat_sound', '', ''), ('enable_pending_list', '', ''), ('enable_active_list', '', ''), ('enable_close_list', '', ''), ('new_user_bn', '', ''), ('new_user_sound', '', ''), ('oupdate_timeout', '', ''), ('ouser_timeout', '', ''), ('o_department', '', ''), ('omax_rows', '', ''), ('ogroup_by', '', ''), ('omap_depid', '', ''), ('omap_mtimeout', '', ''), ('ocountry', '', ''), ('otime_on_site', '', ''), ('dwo', '', ''), ('enable_unread_list', '', '')"); $db->query("CREATE TABLE IF NOT EXISTS `lh_chat_config` ( `identifier` varchar(50) NOT NULL, `value` text NOT NULL, `type` tinyint(1) NOT NULL DEFAULT '0', `explain` varchar(250) NOT NULL, `hidden` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`identifier`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $randomHash = erLhcoreClassModelForgotPassword::randomPassword(80); $randomHashLength = strlen($randomHash); $exportHash = erLhcoreClassModelForgotPassword::randomPassword(80); if (extension_loaded('bcmath')){ $geoRow = "('geo_data','a:5:{i:0;b:0;s:21:\"geo_detection_enabled\";i:1;s:22:\"geo_service_identifier\";s:8:\"max_mind\";s:23:\"max_mind_detection_type\";s:7:\"country\";s:22:\"max_mind_city_location\";s:37:\"var/external/geoip/GeoLite2-City.mmdb\";}',0,'',1)"; } else { $geoRow = "('geo_data', '', '0', '', '1')"; } $db->query("INSERT INTO `lh_chat_config` (`identifier`, `value`, `type`, `explain`, `hidden`) VALUES ('tracked_users_cleanup', '160', 0, 'How many days keep records of online users.', 0), ('list_online_operators', '1', '0', 'List online operators.', '0'), ('voting_days_limit', '7', 0, 'How many days voting widget should not be expanded after last show', 0), ('track_online_visitors', '1', 0, 'Enable online site visitors tracking', 0), ('pro_active_invite', '1', 0, 'Is pro active chat invitation active. Online users tracking also has to be enabled', 0), ('customer_company_name', 'Live Helper Chat', 0, 'Your company name - visible in bottom left corner', 0), ('customer_site_url', 'http://livehelperchat.com', 0, 'Your site URL address', 0), ('transfer_configuration','0','0','Transfer configuration','1'), ('list_unread','0','0','List unread chats','0'), ('autoclose_abandon_pending','0,0','0','Automatically close pending chats where visitor has left a chat. Timeout in minutes, last activity by visitor <desktop timeout>,<mobile timeout>,<status chat>.','0'), ('mobile_options', 'a:2:{s:13:\"notifications\";i:0;s:7:\"fcm_key\";s:152:\"AAAAiF8DeNk:APA91bFVHu2ybhBUTtlEtQrUEPpM2fb-5ovgo0FVNm4XxK3cYJtSwRcd-pqcBot_422yDOzHyw2p9ZFplkHrmNXjm8f5f-OIzfalGmpsypeXvnPxhU6Db1B2Z1Acc-TamHUn2F4xBJkP\";}', 0, '', 1), ('list_closed','0','0','List closed chats','0'), ('autoclose_activity_timeout','0','0','Automatically close active chat if from last visitor/operator message passed. 0 - disabled, n > 0 time in minutes','0'), ('footprint_background','0','0','Footprint updates should be processed in the background. Make sure you are running workflow background cronjob.','0'), ('reverse_pending','0','0','Make default pending chats order from old to new','0'), ('departament_availability','364','0','How long department availability statistic should be kept? (days)','0'), ('uonline_sessions','364','0','How long keep operators online sessions data? (days)','0'), ('disable_live_autoassign','0','0','Disable live auto assign','0'), ('tracked_footprint_cleanup','90','0','How many days keep records of users footprint.','0'), ('cleanup_cronjob','0','0','Cleanup should be done only using cronjob.','0'), ('vwait_to_long','120','0','How long we should wait before we inform operator about unanswered chat.','0'), ('no_wildcard_cookie','0','0','Cookie should be valid only for domain where Javascript is embedded (excludes subdomains)','0'), ('cduration_timeout_user','4','0','How long operator can wait for message from visitor before time between messages are ignored. Values in minutes.','0'), ('cduration_timeout_operator','10','0','How long visitor can wait for message from operator before time between messages are ignored. Values in minutes.','0'), ('assign_workflow_timeout','0','0','Chats waiting in pending line more than n seconds should be auto assigned first. Time in seconds','0'), ('smtp_data', 'a:5:{s:4:\"host\";s:0:\"\";s:4:\"port\";s:2:\"25\";s:8:\"use_smtp\";i:0;s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";}', 0, 'SMTP configuration', 1), ('chatbox_data', 'a:6:{i:0;b:0;s:20:\"chatbox_auto_enabled\";i:0;s:19:\"chatbox_secret_hash\";s:{$randomHashLength}:\"{$randomHash}\";s:20:\"chatbox_default_name\";s:7:\"Chatbox\";s:17:\"chatbox_msg_limit\";i:50;s:22:\"chatbox_default_opname\";s:7:\"Manager\";}', 0, 'Chatbox configuration', 1), ('start_chat_data', 'a:80:{i:0;b:0;s:21:\"name_visible_in_popup\";b:0;s:27:\"name_visible_in_page_widget\";b:0;s:19:\"name_require_option\";s:8:\"required\";s:22:\"email_visible_in_popup\";b:0;s:28:\"email_visible_in_page_widget\";b:0;s:20:\"email_require_option\";s:8:\"required\";s:24:\"message_visible_in_popup\";b:1;s:30:\"message_visible_in_page_widget\";b:1;s:22:\"message_require_option\";s:8:\"required\";s:22:\"phone_visible_in_popup\";b:0;s:28:\"phone_visible_in_page_widget\";b:0;s:20:\"phone_require_option\";s:8:\"required\";s:21:\"force_leave_a_message\";b:0;s:29:\"offline_name_visible_in_popup\";b:1;s:35:\"offline_name_visible_in_page_widget\";b:1;s:27:\"offline_name_require_option\";s:8:\"required\";s:30:\"offline_phone_visible_in_popup\";b:0;s:36:\"offline_phone_visible_in_page_widget\";b:0;s:28:\"offline_phone_require_option\";s:8:\"required\";s:32:\"offline_message_visible_in_popup\";b:1;s:38:\"offline_message_visible_in_page_widget\";b:1;s:30:\"offline_message_require_option\";s:8:\"required\";s:15:\"auto_start_chat\";b:0;s:12:\"mobile_popup\";b:0;s:17:\"dont_auto_process\";b:0;s:20:\"tos_visible_in_popup\";b:0;s:12:\"requires_dep\";b:0;s:17:\"requires_dep_lock\";b:0;s:17:\"show_messages_box\";b:1;s:26:\"tos_visible_in_page_widget\";b:0;s:19:\"tos_checked_offline\";b:0;s:18:\"tos_checked_online\";b:0;s:28:\"offline_tos_visible_in_popup\";b:0;s:34:\"offline_tos_visible_in_page_widget\";b:0;s:35:\"offline_file_visible_in_page_widget\";b:0;s:29:\"offline_file_visible_in_popup\";b:0;s:11:\"name_hidden\";b:0;s:15:\"name_hidden_bot\";b:0;s:24:\"custom_fields_encryption\";s:0:\"\";s:19:\"offline_name_hidden\";b:0;s:13:\"pre_chat_html\";s:0:\"\";s:21:\"pre_offline_chat_html\";s:0:\"\";s:12:\"email_hidden\";b:0;s:16:\"email_hidden_bot\";b:0;s:20:\"offline_email_hidden\";b:0;s:15:\"user_msg_height\";s:0:\"\";s:12:\"phone_hidden\";b:0;s:16:\"phone_hidden_bot\";b:0;s:20:\"offline_phone_hidden\";b:0;s:14:\"message_hidden\";b:0;s:18:\"message_hidden_bot\";b:0;s:18:\"message_auto_start\";b:0;s:28:\"message_auto_start_key_press\";b:0;s:22:\"offline_message_hidden\";b:0;s:21:\"show_operator_profile\";b:1;s:21:\"remove_operator_space\";b:0;s:18:\"hide_message_label\";b:0;s:17:\"custom_fields_url\";s:0:\"\";s:13:\"custom_fields\";s:0:\"\";s:21:\"name_hidden_prefilled\";b:0;s:22:\"email_hidden_prefilled\";b:0;s:24:\"message_hidden_prefilled\";b:0;s:22:\"phone_hidden_prefilled\";b:0;s:29:\"offline_name_hidden_prefilled\";b:0;s:32:\"offline_message_hidden_prefilled\";b:0;s:30:\"offline_phone_hidden_prefilled\";b:0;s:18:\"disable_start_chat\";b:0;s:18:\"offline_name_width\";i:0;s:19:\"offline_email_width\";i:0;s:19:\"offline_phone_width\";i:0;s:10:\"name_width\";i:0;s:11:\"email_width\";i:0;s:11:\"phone_width\";i:0;s:17:\"hide_start_button\";b:0;s:9:\"lazy_load\";b:0;s:28:\"offline_email_require_option\";s:8:\"required\";s:30:\"offline_email_hidden_prefilled\";b:0;s:36:\"offline_email_visible_in_page_widget\";b:1;s:30:\"offline_email_visible_in_popup\";b:1;}', 0, '', 1), ('application_name', 'a:6:{s:3:\"eng\";s:31:\"Live Helper Chat - live support\";s:3:\"lit\";s:26:\"Live Helper Chat - pagalba\";s:3:\"hrv\";s:0:\"\";s:3:\"esp\";s:0:\"\";s:3:\"por\";s:0:\"\";s:10:\"site_admin\";s:31:\"Live Helper Chat - live support\";}', 1, 'Support application name, visible in browser title.', 0), ('track_footprint', '0', 0, 'Track users footprint. For this also online visitors tracking should be enabled', 0), ('pro_active_limitation', '-1', 0, 'Pro active chats invitations limitation based on pending chats, (-1) do not limit, (0,1,n+1) number of pending chats can be for invitation to be shown.', 0), ('pro_active_show_if_offline', '0', 0, 'Should invitation logic be executed if there is no online operators', 0), ('export_hash', '{$exportHash}', 0, 'Chats export secret hash', 0), ('do_no_track_ip', 0, 0, 'Do not track visitors IP',0), ('remember_username','1','0','Should we remember username for the next time visitor starts a chat?','0'), ('ignore_typing', 0, 0, 'Do not store what visitor is typing',0), ('encrypt_msg_after', 0, 0, 'After how many days anonymize messages',0), ('encrypt_msg_op', 0, 0, 'Anonymize also operators messages',0), ('valid_domains','','0','Domains where script can be embedded. E.g example.com, google.com','0'), ('message_seen_timeout', 24, 0, 'Proactive message timeout in hours. After how many hours proactive chat mesasge should be shown again.', 0), ('reopen_chat_enabled',0, 0, 'Reopen chat functionality enabled', 0), ('ignorable_ip', '', 0, 'Which ip should be ignored in online users list, separate by comma',0), ('run_departments_workflow', 0, 0, 'Should cronjob run departments transfer workflow, even if user leaves a chat', 0), ('geo_location_data', 'a:3:{s:4:\"zoom\";i:4;s:3:\"lat\";s:7:\"49.8211\";s:3:\"lng\";s:7:\"11.7835\";}', '0', '', '1'), ('xmp_data','a:14:{i:0;b:0;s:4:\"host\";s:15:\"talk.google.com\";s:6:\"server\";s:9:\"gmail.com\";s:8:\"resource\";s:6:\"xmpphp\";s:4:\"port\";s:4:\"5222\";s:7:\"use_xmp\";i:0;s:8:\"username\";s:0:\"\";s:8:\"password\";s:0:\"\";s:11:\"xmp_message\";s:98:\"New chat request [{chat_id}] from [{department}]\r\n{messages}\r\nClick to accept a chat\r\n{url_accept}\";s:10:\"recipients\";s:0:\"\";s:20:\"xmp_accepted_message\";s:89:\"{user_name} has accepted a chat [{chat_id}] from [{department}]\r\n{messages}\r\n{url_accept}\";s:16:\"use_standard_xmp\";i:0;s:15:\"test_recipients\";s:0:\"\";s:21:\"test_group_recipients\";s:0:\"\";}',0,'XMP data',1), ('run_unaswered_chat_workflow', 0, 0, 'Should cronjob run unanswered chats workflow and execute unaswered chats callback, 0 - no, any other number bigger than 0 is a minits how long chat have to be not accepted before executing callback.',0), ('disable_popup_restore', 0, 0, 'Disable option in widget to open new window. Restore icon will be hidden', 0), ('accept_tos_link', '#', 0, 'Change to your site Terms of Service', 0), ('hide_button_dropdown', '0', 0, 'Hide close button in dropdown', 0), ('on_close_exit_chat', '0', 0, 'On chat close exit chat', 0), ('activity_timeout', '5', 0, 'How long operator should go offline automatically because of inactivity. Value in minutes', 0), ('product_enabled_module','0','0','Product module is enabled', '1'), ('preload_iframes','0','0','Preload widget. It will avoid loading delay after clicking widget','0'), ('product_show_departament','0','0','Enable products show by departments', '1'), ('paidchat_data','','0','Paid chat configuration','1'), ('mheight_op','200','0','Messages box height for operator','0'), ('listd_op','10','0','Default number of online operators to show','0'), ('disable_iframe_sharing', '1', 0, 'Disable iframes in sharing mode', 0), ('file_configuration', 'a:7:{i:0;b:0;s:5:\"ft_op\";s:47:\"gif|jpe?g|png|zip|svg|rar|xls|doc|docx|xlsx|pdf\";s:5:\"ft_us\";s:30:\"gif|jpe?g|png|svg|doc|docx|pdf\";s:6:\"fs_max\";i:2048;s:18:\"active_user_upload\";b:0;s:16:\"active_op_upload\";b:1;s:19:\"active_admin_upload\";b:1;}', 0, 'Files configuration item', 1), ('accept_chat_link_timeout', '300', 0, 'How many seconds chat accept link is valid. Set 0 to force login all the time manually.', 0), ('open_closed_chat_timeout', '1800', 0, 'How many seconds customer has to open already closed chat.', 0), ('session_captcha',0, 0, 'Use session captcha. LHC have to be installed on the same domain or subdomain.', 0), ('sync_sound_settings', 'a:16:{i:0;b:0;s:12:\"repeat_sound\";i:1;s:18:\"repeat_sound_delay\";i:5;s:10:\"show_alert\";b:0;s:22:\"new_chat_sound_enabled\";b:1;s:31:\"new_message_sound_admin_enabled\";b:1;s:30:\"new_message_sound_user_enabled\";b:1;s:14:\"online_timeout\";d:300;s:22:\"check_for_operator_msg\";d:10;s:21:\"back_office_sinterval\";d:10;s:22:\"chat_message_sinterval\";d:3.5;s:20:\"long_polling_enabled\";b:0;s:30:\"polling_chat_message_sinterval\";d:1.5;s:29:\"polling_back_office_sinterval\";d:5;s:18:\"connection_timeout\";i:30;s:28:\"browser_notification_message\";b:0;}', 0, '', 1), ('sound_invitation', 1, 0, 'Play sound on invitation to chat.', 0), ('explicit_http_mode', '',0,'Please enter explicit http mode. Either http: or https:, do not forget : at the end.', '0'), ('track_domain', '', 0, 'Set your domain to enable user tracking across different domain subdomains.', 0), ('max_message_length','500',0,'Maximum message length in characters', '0'), ('need_help_tip','1',0,'Show need help tooltip?', '0'), ('recaptcha_data','a:4:{i:0;b:0;s:8:\"site_key\";s:0:\"\";s:10:\"secret_key\";s:0:\"\";s:7:\"enabled\";i:0;}','0','Re-captcha configuration','1'), ('need_help_tip_timeout','24',0,'Need help tooltip timeout, after how many hours show again tooltip?', '0'), ('use_secure_cookie','0',0,'Use secure cookie, check this if you want to force SSL all the time', '0'), ('faq_email_required','0',0,'Is visitor e-mail required for FAQ', '0'), ('disable_print','0',0,'Disable chat print', '0'), ('disable_txt_dwnld','0',0,'Disable chat download', '0'), ('hide_disabled_department','1',0,'Hide disabled department widget', '0'), ('disable_send','0',0,'Disable chat transcript send', '0'), ('ignore_user_status','0',0,'Ignore users online statuses and use departments online hours', '0'), ('bbc_button_visible','1',0,'Show BB Code button', '0'), ('password_data','','0','Password requirements','1'), ('activity_track_all','0','0','Track all logged operators activity and ignore their individual settings.','0'), ('allow_reopen_closed','0', 0, 'Allow user to reopen closed chats?', '0'), ('reopen_as_new','0', 0, 'Reopen closed chat as new? Otherwise it will be reopened as active.', '0'), ('default_theme_id','0', 0, 'Default theme ID.', '1'), ('default_admin_theme_id','0', 0, 'Default admin theme ID', '1'), ('translation_data', 'a:6:{i:0;b:0;s:19:\"translation_handler\";s:4:\"bing\";s:19:\"enable_translations\";b:0;s:14:\"bing_client_id\";s:0:\"\";s:18:\"bing_client_secret\";s:0:\"\";s:14:\"google_api_key\";s:0:\"\";}', 0, 'Translation data', 1), ('disable_html5_storage','1',0,'Disable HMTL5 storage, check it if your site is switching between http and https', '0'), ('automatically_reopen_chat','1',0,'Automatically reopen chat on widget open', '0'), ('autoclose_timeout','0', 0, 'Automatic chats closing. 0 - disabled, n > 0 time in minutes before chat is automatically closed', '0'), ('autoclose_timeout_pending','0', 0, 'Automatic pending chats closing. 0 - disabled, n > 0 time in minutes before chat is automatically closed', '0'), ('autoclose_timeout_active','0', 0, 'Automatic active chats closing. 0 - disabled, n > 0 time in minutes before chat is automatically closed', '0'), ('autoclose_timeout_bot','0', 0, 'Automatic bot chats closing. 0 - disabled, n > 0 time in minutes before chat is automatically closed', '0'), ('autopurge_timeout','0', 0, 'Automatic chats purging. 0 - disabled, n > 0 time in minutes before chat is automatically deleted', '0'), ('update_ip', '127.0.0.1', 0, 'Which ip should be allowed to update DB by executing http request, separate by comma?',0), ('track_if_offline', '0', 0, 'Track online visitors even if there is no online operators',0), ('min_phone_length','8',0,'Minimum phone number length',0), ('mheight','',0,'Messages box height',0), ('inform_unread_message','0',0,'Inform visitor about unread messages from operator, value in minutes. 0 - disabled',0), ('dashboard_order', '[[\"online_operators\",\"departments_stats\",\"online_visitors\"],[\"group_chats\",\"my_chats\",\"pending_chats\",\"transfered_chats\"],[\"active_chats\",\"bot_chats\"]]', '0', 'Home page dashboard widgets order', '0'), ('banned_ip_range','',0,'Which ip should not be allowed to chat',0), ('suggest_leave_msg','1',0,'Suggest user to leave a message then user chooses offline department',0), ('checkstatus_timeout','0',0,'Interval between chat status checks in seconds, 0 disabled.',0), ('show_language_switcher','0',0,'Show users option to switch language at widget',0), ('sharing_auto_allow','0',0,'Do not ask permission for users to see their screen',0), ('sharing_nodejs_enabled','0',0,'NodeJs support enabled',0), ('sharing_nodejs_path','',0,'socket.io path, optional',0), ('online_if','0','0','','0'), ('track_mouse_activity','0','0','Should mouse movement be tracked as activity measure, if not checked only basic events would be tracked','0'), ('track_activity','0','0','Track users activity on site?','0'), ('autologin_data','a:3:{i:0;b:0;s:11:\"secret_hash\";s:16:\"please_change_me\";s:7:\"enabled\";i:0;}',0,'Autologin configuration data', 1), ('sharing_nodejs_secure','0',0,'Connect to NodeJs in https mode',0), ('disable_js_execution','1',0,'Disable JS execution in Co-Browsing operator window',0), ('sharing_nodejs_socket_host','',0,'Host where NodeJs is running',0), ('hide_right_column_frontpage','1','0','Hide right column in frontpage','0'), ('front_tabs', 'dashboard,online_users,online_map', '0', 'Home page tabs order', '0'), ('speech_data', 'a:3:{i:0;b:0;s:8:\"language\";i:7;s:7:\"dialect\";s:5:\"en-US\";}', 1, '', 1), ('sharing_nodejs_sllocation','https://cdn.jsdelivr.net/npm/socket.io-client@2/dist/socket.io.js',0,'Location of SocketIO JS library',0), ('track_is_online','0',0,'Track is user still on site, chat status checks also has to be enabled',0), ('show_languages','eng,lit,hrv,esp,por,nld,ara,ger,pol,rus,ita,fre,chn,cse,nor,tur,vnm,idn,sve,per,ell,dnk,rou,bgr,tha,geo,fin,alb',0,'Between what languages user should be able to switch',0), ('geoadjustment_data', 'a:8:{i:0;b:0;s:18:\"use_geo_adjustment\";b:0;s:13:\"available_for\";s:0:\"\";s:15:\"other_countries\";s:6:\"custom\";s:8:\"hide_for\";s:0:\"\";s:12:\"other_status\";s:7:\"offline\";s:11:\"rest_status\";s:6:\"hidden\";s:12:\"apply_widget\";i:0;}', 0, 'Geo adjustment settings', 1), {$geoRow}"); $db->query("CREATE TABLE IF NOT EXISTS `lh_chat_online_user` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `vid` varchar(50) NOT NULL, `ip` varchar(50) NOT NULL, `current_page` text NOT NULL, `page_title` varchar(250) NOT NULL, `referrer` text NOT NULL, `chat_id` bigint(20) NOT NULL, `invitation_seen_count` int(11) NOT NULL, `invitation_id` int(11) NOT NULL, `last_visit` int(11) NOT NULL, `first_visit` int(11) NOT NULL, `total_visits` int(11) NOT NULL, `pages_count` int(11) NOT NULL, `tt_pages_count` int(11) NOT NULL, `invitation_count` int(11) NOT NULL, `last_check_time` int(11) NOT NULL, `dep_id` int(11) NOT NULL, `user_agent` text NOT NULL, `notes` varchar(250) NOT NULL, `user_country_code` varchar(50) NOT NULL, `user_country_name` varchar(50) NOT NULL, `visitor_tz` varchar(50) NOT NULL, `operator_message` text NOT NULL, `operator_user_proactive` varchar(100) NOT NULL, `operator_user_id` int(11) NOT NULL, `conversion_id` int(11) NOT NULL, `message_seen` int(11) NOT NULL, `message_seen_ts` int(11) NOT NULL, `user_active` int(11) NOT NULL, `lat` varchar(10) NOT NULL, `lon` varchar(10) NOT NULL, `city` varchar(100) NOT NULL, `reopen_chat` int(11) NOT NULL, `time_on_site` int(11) NOT NULL, `tt_time_on_site` int(11) NOT NULL, `requires_email` int(11) NOT NULL, `requires_username` int(11) NOT NULL, `requires_phone` int(11) NOT NULL, `screenshot_id` int(11) NOT NULL, `identifier` varchar(50) NOT NULL, `operation` text NOT NULL, `online_attr_system` text NOT NULL, `operation_chat` text NOT NULL, `online_attr` text NOT NULL, `device_type` tinyint(1) NOT NULL DEFAULT '0', `chat_time` bigint(20) unsigned NOT NULL DEFAULT 0, `last_visit_prev` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `vid` (`vid`), KEY `dep_id` (`dep_id`), KEY `last_visit_dep_id` (`last_visit`,`dep_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_proactive_chat_invitation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `siteaccess` varchar(10) NOT NULL, `time_on_site` int(11) NOT NULL, `pageviews` int(11) NOT NULL, `message` text NOT NULL, `message_returning` text NOT NULL, `executed_times` int(11) NOT NULL, `dep_id` int(11) NOT NULL, `hide_after_ntimes` int(11) NOT NULL, `show_on_mobile` int(11) NOT NULL, `delay` int(11) NOT NULL, `delay_init` int(11) NOT NULL, `show_instant` int(11) NOT NULL, `autoresponder_id` int(11) NOT NULL, `disabled` int(11) NOT NULL, `inject_only_html` tinyint(1) NOT NULL, `name` varchar(50) NOT NULL, `operator_ids` varchar(100) NOT NULL, `message_returning_nick` varchar(250) NOT NULL, `referrer` varchar(250) NOT NULL, `show_random_operator` int(11) NOT NULL, `operator_name` varchar(100) NOT NULL, `campaign_id` int(11) NOT NULL, `position` int(11) NOT NULL, `event_invitation` int(11) NOT NULL, `dynamic_invitation` int(11) NOT NULL, `bot_id` int(11) NOT NULL, `trigger_id` int(11) NOT NULL, `bot_offline` tinyint(1) NOT NULL, `identifier` varchar(50) NOT NULL, `tag` varchar(50) NOT NULL, `requires_email` int(11) NOT NULL, `iddle_for` int(11) NOT NULL, `event_type` int(11) NOT NULL, `parent_id` int(11) NOT NULL DEFAULT '0', `requires_username` int(11) NOT NULL, `requires_phone` int(11) NOT NULL, `design_data` longtext NOT NULL, PRIMARY KEY (`id`), KEY `time_on_site_pageviews_siteaccess_position` (`time_on_site`,`pageviews`,`siteaccess`,`identifier`,`position`), KEY `identifier` (`identifier`), KEY `dynamic_invitation` (`dynamic_invitation`), KEY `tag` (`tag`), KEY `parent_id` (`parent_id`), KEY `show_on_mobile` (`show_on_mobile`), KEY `dep_id` (`dep_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_chat_accept` ( `id` int(11) NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `hash` varchar(50) NOT NULL, `ctime` int(11) NOT NULL, `wused` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `hash` (`hash`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); //Default departament $db->query("CREATE TABLE IF NOT EXISTS `lh_departament` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `xmpp_recipients` text NOT NULL, `xmpp_group_recipients` text NOT NULL, `priority` int(11) NOT NULL, `sort_priority` int(11) NOT NULL, `department_transfer_id` int(11) NOT NULL, `transfer_timeout` int(11) NOT NULL, `exclude_inactive_chats` int(11) NOT NULL, `delay_before_assign` int(11) NOT NULL, `max_ac_dep_chats` int(11) NOT NULL, `archive` tinyint(1) NOT NULL DEFAULT '0', `max_load` int(11) NOT NULL DEFAULT '0', `max_load_h` int(11) NOT NULL DEFAULT '0', `assign_same_language` int(11) NOT NULL, `disabled` int(11) NOT NULL, `hidden` int(11) NOT NULL, `delay_lm` int(11) NOT NULL, `max_active_chats` int(11) NOT NULL, `max_timeout_seconds` int(11) NOT NULL, `identifier` varchar(2083) NOT NULL, `mod_start_hour` int(4) NOT NULL DEFAULT '-1', `mod_end_hour` int(4) NOT NULL DEFAULT '-1', `tud_start_hour` int(4) NOT NULL DEFAULT '-1', `tud_end_hour` int(4) NOT NULL DEFAULT '-1', `wed_start_hour` int(4) NOT NULL DEFAULT '-1', `wed_end_hour` int(4) NOT NULL DEFAULT '-1', `thd_start_hour` int(4) NOT NULL DEFAULT '-1', `thd_end_hour` int(4) NOT NULL DEFAULT '-1', `frd_start_hour` int(4) NOT NULL DEFAULT '-1', `frd_end_hour` int(4) NOT NULL DEFAULT '-1', `sad_start_hour` int(4) NOT NULL DEFAULT '-1', `sad_end_hour` int(4) NOT NULL DEFAULT '-1', `sud_start_hour` int(4) NOT NULL DEFAULT '-1', `sud_end_hour` int(4) NOT NULL DEFAULT '-1', `nc_cb_execute` tinyint(1) NOT NULL, `na_cb_execute` tinyint(1) NOT NULL, `inform_unread` tinyint(1) NOT NULL, `active_balancing` tinyint(1) NOT NULL, `visible_if_online` tinyint(1) NOT NULL, `inform_close` int(11) NOT NULL, `inform_unread_delay` int(11) NOT NULL, `inform_options` varchar(250) NOT NULL, `online_hours_active` tinyint(1) NOT NULL, `inform_delay` int(11) NOT NULL, `attr_int_1` int(11) NOT NULL, `attr_int_2` int(11) NOT NULL, `attr_int_3` int(11) NOT NULL, `pending_max` int(11) NOT NULL, `pending_group_max` int(11) NOT NULL, `active_chats_counter` int(11) NOT NULL, `inactive_chats_cnt` int(11) NOT NULL DEFAULT '0', `pending_chats_counter` int(11) NOT NULL, `bot_chats_counter` int(11) NOT NULL DEFAULT '0', `inop_chats_cnt` int(11) NOT NULL DEFAULT '0', `acop_chats_cnt` int(11) NOT NULL DEFAULT '0', `inform_close_all` int(11) NOT NULL, `inform_close_all_email` varchar(250) NOT NULL, `alias` varchar(50) NOT NULL, `product_configuration` longtext NOT NULL, `bot_configuration` text NOT NULL, PRIMARY KEY (`id`), KEY `identifier_2` (`identifier`(191)), KEY `archive` (`archive`), KEY `attr_int_1` (`attr_int_1`), KEY `attr_int_2` (`attr_int_2`), KEY `attr_int_3` (`attr_int_3`), KEY `active_chats_counter` (`active_chats_counter`), KEY `pending_chats_counter` (`pending_chats_counter`), KEY `bot_chats_counter` (`bot_chats_counter`), KEY `disabled_hidden` (`disabled`, `hidden`), KEY `sort_priority_name` (`sort_priority`, `name`), KEY `alias` (`alias`), KEY `active_mod` (`online_hours_active`,`mod_start_hour`,`mod_end_hour`), KEY `active_tud` (`online_hours_active`,`tud_start_hour`,`tud_end_hour`), KEY `active_wed` (`online_hours_active`,`wed_start_hour`,`wed_end_hour`), KEY `active_thd` (`online_hours_active`,`thd_start_hour`,`thd_end_hour`), KEY `active_frd` (`online_hours_active`,`frd_start_hour`,`frd_end_hour`), KEY `active_sad` (`online_hours_active`,`sad_start_hour`,`sad_end_hour`), KEY `active_sud` (`online_hours_active`,`sud_start_hour`,`sud_end_hour`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_saved_search` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `position` int(11) unsigned NOT NULL, `scope` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `days` int(11) unsigned NOT NULL, `updated_at` bigint(20) unsigned NOT NULL, `requested_at` bigint(20) unsigned NOT NULL, `total_records` bigint(20) unsigned NOT NULL, `passive` tinyint(1) unsigned NOT NULL DEFAULT 0, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) unsigned NOT NULL DEFAULT 0, `sharer_user_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `scope` (`scope`), KEY `updated_at` (`updated_at`), KEY `requested_at` (`requested_at`), KEY `user_id_status` (`user_id`,`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_saved_report` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `params` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `send_log` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `recurring_options` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `position` int(11) unsigned NOT NULL, `days` int(11) unsigned NOT NULL, `date_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `days_end` int(11) unsigned NOT NULL, `updated_at` bigint(20) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_departament_group_user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dep_group_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `read_only` tinyint(1) unsigned NOT NULL DEFAULT '0', `exc_indv_autoasign` tinyint(1) unsigned NOT NULL DEFAULT '0', `assign_priority` int(11) NOT NULL DEFAULT '0', `chat_min_priority` int(11) NOT NULL DEFAULT '0', `chat_max_priority` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `dep_group_id` (`dep_group_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_departament_availability` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `dep_id` int(11) NOT NULL, `hour` int(11) NOT NULL, `hourminute` int(4) NOT NULL, `minute` int(11) NOT NULL, `time` int(11) NOT NULL, `ymdhi` bigint(20) NOT NULL, `ymd` int(11) NOT NULL, `status` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `ymdhi` (`ymdhi`), KEY `dep_id` (`dep_id`), KEY `hourminute` (`hourminute`), KEY `time` (`time`)) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_product_departament` ( `id` int(11) NOT NULL AUTO_INCREMENT, `product_id` int(11) NOT NULL, `departament_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `departament_id` (`departament_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_departament_group_member` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dep_id` int(11) NOT NULL, `dep_group_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `dep_group_id` (`dep_group_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_rest_api` (`id` bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY, `name` varchar(50) NOT NULL, `description` varchar(250), `configuration` text NOT NULL) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_rest_api_cache` ( `hash` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `rest_api_id` bigint(20) unsigned NOT NULL, `response` text NOT NULL, `ctime` bigint(20) NOT NULL, UNIQUE KEY `rest_api_id_hash` (`rest_api_id`,`hash`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_departament_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `achats_cnt` int(11) NOT NULL DEFAULT 0, `inachats_cnt` int(11) NOT NULL DEFAULT 0, `pchats_cnt` int(11) NOT NULL DEFAULT 0, `max_load` int(11) NOT NULL DEFAULT 0, `max_load_h` int(11) NOT NULL DEFAULT 0, `bchats_cnt` int(11) NOT NULL DEFAULT 0, `inopchats_cnt` int(11) NOT NULL DEFAULT 0, `acopchats_cnt` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_chat_participant` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `duration` int(11) unsigned NOT NULL, `time` bigint(20) unsigned NOT NULL, `dep_id` bigint(20) unsigned NOT NULL, `frt` int(11) unsigned NOT NULL DEFAULT '0', `aart` int(11) unsigned NOT NULL DEFAULT '0', `mart` int(11) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`), KEY `time` (`time`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_canned_msg_tag_link` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tag_id` int(11) NOT NULL, `canned_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `canned_id` (`canned_id`), KEY `tag_id` (`tag_id`)) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_canned_msg_tag` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tag` varchar(40) NOT NULL, PRIMARY KEY (`id`), KEY `tag` (`tag`)) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_subject` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `internal` tinyint(1) NOT NULL DEFAULT 0, `internal_type` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `internal` (`internal`), KEY `internal_type` (`internal_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_subject_dep` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dep_id` int(11) NOT NULL, `subject_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `subject_id` (`subject_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_subject_chat` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `subject_id` int(11) NOT NULL, `chat_id` bigint(20) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_group_object` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `object_id` bigint(20) NOT NULL, `group_id` bigint(20) NOT NULL, `type` bigint(20) NOT NULL, PRIMARY KEY (`id`), KEY `object_id_type` (`object_id`,`type`), KEY `group_id` (`group_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Bot tables $db->query("CREATE TABLE `lh_generic_bot_bot` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `configuration` longtext NOT NULL, `avatar` varchar(150) NOT NULL, `filename` varchar(250) NOT NULL, `filepath` varchar(250) NOT NULL, `name` varchar(100) NOT NULL, `nick` varchar(100) NOT NULL,`attr_str_1` varchar(100) NOT NULL, `attr_str_2` varchar(100) NOT NULL, `attr_str_3` varchar(100) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_group` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL,`is_collapsed` int(11) NOT NULL DEFAULT '0', `pos` int(11) NOT NULL DEFAULT '0', `bot_id` bigint(20) NOT NULL, PRIMARY KEY (`id`), KEY `bot_id` (`bot_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_trigger` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `actions` longtext NOT NULL, `group_id` bigint(20) NOT NULL, `bot_id` int(11) NOT NULL, `default` int(11) NOT NULL, `default_unknown` int(11) NOT NULL, `as_argument` int(11) NOT NULL DEFAULT '0', `in_progress` int(11) NOT NULL DEFAULT '0', `default_unknown_btn` int(11) NOT NULL DEFAULT '0', `default_always` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `bot_id` (`bot_id`), KEY `default_unknown` (`default_unknown`), KEY `in_progress` (`in_progress`), KEY `default_unknown_btn` (`default_unknown_btn`), KEY `default_always` (`default_always`), KEY `group_id` (`group_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_trigger_template` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `actions` longtext NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_trigger_event` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `pattern` text NOT NULL, `skip` tinyint(1) NOT NULL DEFAULT '0', `pattern_exc` text NOT NULL, `configuration` longtext NOT NULL, `trigger_id` bigint(20) NOT NULL, `bot_id` int(11) NOT NULL, `on_start_type` tinyint(1) NOT NULL, `priority` int(11) NOT NULL, `type` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `pattern_v2` (`pattern`(191)), KEY `type` (`type`), KEY `on_start_type` (`on_start_type`), KEY `trigger_id` (`trigger_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_trigger_event_template` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `configuration` longtext NOT NULL, `name` varchar(100) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_payload` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `payload` varchar(100) NOT NULL, `bot_id` int(11) NOT NULL, `trigger_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `bot_id` (`bot_id`), KEY `trigger_id` (`trigger_id`)) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_chat_workflow` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL,`trigger_id` bigint(20) NOT NULL, `time` int(11) NOT NULL, `identifier` varchar(100) NOT NULL, `status` int(11) NOT NULL, `collected_data` text, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_chat_event` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `counter` int(11) NOT NULL, `content` longtext NOT NULL, `ctime` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_pending_event` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `trigger_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`)) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_generic_bot_exception` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `priority` int(11) NOT NULL, `active` tinyint(1) NOT NULL, PRIMARY KEY (`id`)) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_exception_message` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `exception_group_id` int(11) NOT NULL, `priority` int(11) NOT NULL, `active` tinyint(1) NOT NULL, `message` text NOT NULL, PRIMARY KEY (`id`), KEY `code` (`code`), KEY `exception_group_id` (`exception_group_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_tr_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL, `bot_lang` varchar(10) NOT NULL, `use_translation_service` tinyint(1) unsigned NOT NULL DEFAULT '0', `filename` varchar(250) NOT NULL,`filepath` varchar(250) NOT NULL,`configuration` longtext NOT NULL,`nick` varchar(100) NOT NULL, PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_tr_item` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group_id` int(11) NOT NULL, `auto_translate` tinyint(1) unsigned NOT NULL DEFAULT '0', `identifier` varchar(50) NOT NULL, `translation` text NOT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`), KEY `group_id` (`group_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_speech_user_language` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `language` varchar(20) NOT NULL, PRIMARY KEY (`id`), KEY `user_id_language` (`user_id`,`language`)) DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_audits` (`id` bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY, `category` varchar(255) NOT NULL, `file` varchar(255), `object_id` bigint(20) DEFAULT '0', `line` bigint(20), `message` longtext NOT NULL, `severity` varchar(255) NOT NULL, `source` varchar(255) NOT NULL, `time` timestamp NOT NULL, KEY `time` (`time`), KEY `object_id` (`object_id`), KEY `source` (`source`(191)), KEY `category` (`category`(191))) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_chat_online_user_footprint_update` (`online_user_id` bigint(20) NOT NULL, `command` varchar(20) NOT NULL, `args` varchar(250) NOT NULL, `ctime` int(11) NOT NULL, KEY `online_user_id` (`online_user_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_generic_bot_repeat_restrict` (`id` bigint(20) NOT NULL AUTO_INCREMENT PRIMARY KEY, `chat_id` bigint(20) NOT NULL, `trigger_id` bigint(20), `identifier` varchar(20), `counter` int(11) DEFAULT '0', KEY `chat_id_trigger_id` (`chat_id`,`trigger_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_users_login` (`id` bigint(20) NOT NULL AUTO_INCREMENT,`user_id` bigint(20) NOT NULL,`type` int(11) NOT NULL,`ctime` bigint(20) NOT NULL,`status` int(11) NOT NULL,`ip` varchar(100) NOT NULL,`msg` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,PRIMARY KEY (`id`),KEY `user_id_type` (`user_id`,`type`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $Departament = new erLhcoreClassModelDepartament(); $Departament->name = $form->DefaultDepartament; erLhcoreClassDepartament::getSession()->save($Departament); $db->query("CREATE TABLE IF NOT EXISTS `lh_chat_voice_video` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `op_status` tinyint(4) NOT NULL, `vi_status` tinyint(4) NOT NULL, `voice` tinyint(4) NOT NULL, `video` tinyint(4) NOT NULL, `screen_share` tinyint(4) NOT NULL, `status` tinyint(4) NOT NULL, `ctime` int(11) NOT NULL, `token` varchar(200) NOT NULL, PRIMARY KEY (`id`), KEY `chat_id` (`chat_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_canned_msg_replace` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `identifier` varchar(50) NOT NULL, `default` text NOT NULL, `conditions` longtext NOT NULL, `active_from` int(11) unsigned NOT NULL DEFAULT 0, `active_to` int(11) unsigned NOT NULL DEFAULT 0, `repetitiveness` int(11) unsigned NOT NULL DEFAULT 0, `days_activity` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); //Department custom work hours $db->query("CREATE TABLE IF NOT EXISTS `lh_departament_custom_work_hours` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dep_id` int(11) NOT NULL, `date_from` int(11) NOT NULL, `date_to` int(11) NOT NULL, `start_hour` int(11) NOT NULL, `end_hour` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `dep_id` (`dep_id`), KEY `date_from` (`date_from`), KEY `search_active` (`date_from`, `date_to`, `dep_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); //Administrators group $db->query("CREATE TABLE IF NOT EXISTS `lh_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `disabled` tinyint(1) NOT NULL, `required` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `disabled` (`disabled`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_stats` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `type` int(11) NOT NULL, `lupdate` bigint(20) NOT NULL, `object_id` bigint(20) NOT NULL, `stats` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `type_object_id` (`type`,`object_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); //Administrators group $db->query("CREATE TABLE `lh_generic_bot_command` ( `id` int(11) NOT NULL AUTO_INCREMENT, `command` varchar(50) NOT NULL, `sub_command` varchar(100) NOT NULL, `info_msg` varchar(100) NOT NULL, `bot_id` int(11) NOT NULL, `trigger_id` int(11) NOT NULL, `dep_id` int(11) NOT NULL, `shortcut_1` varchar(10) NOT NULL, `shortcut_2` varchar(10) NOT NULL, PRIMARY KEY (`id`), KEY `dep_id` (`dep_id`), KEY `command` (`command`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Admin group $GroupData = new erLhcoreClassModelGroup(); $GroupData->name = "Administrators"; erLhcoreClassUser::getSession()->save($GroupData); // Precreate operators group $GroupDataOperators = new erLhcoreClassModelGroup(); $GroupDataOperators->name = "Operators"; erLhcoreClassUser::getSession()->save($GroupDataOperators); //Administrators role $db->query("CREATE TABLE IF NOT EXISTS `lh_role` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Administrators role $Role = new erLhcoreClassModelRole(); $Role->name = 'Administrators'; erLhcoreClassRole::getSession()->save($Role); // Operators role $RoleOperators = new erLhcoreClassModelRole(); $RoleOperators->name = 'Operators'; erLhcoreClassRole::getSession()->save($RoleOperators); //Assing group role $db->query("CREATE TABLE IF NOT EXISTS `lh_grouprole` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group_id` int(11) NOT NULL, `role_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `group_id` (`role_id`,`group_id`), KEY `group_id_primary` (`group_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Assign admin role to admin group $GroupRole = new erLhcoreClassModelGroupRole(); $GroupRole->group_id =$GroupData->id; $GroupRole->role_id = $Role->id; erLhcoreClassRole::getSession()->save($GroupRole); // Assign operators role to operators group $GroupRoleOperators = new erLhcoreClassModelGroupRole(); $GroupRoleOperators->group_id =$GroupDataOperators->id; $GroupRoleOperators->role_id = $RoleOperators->id; erLhcoreClassRole::getSession()->save($GroupRoleOperators); // Users $db->query("CREATE TABLE IF NOT EXISTS `lh_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(80) NOT NULL, `password` varchar(200) NOT NULL, `email` varchar(100) NOT NULL, `time_zone` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `surname` varchar(100) NOT NULL, `avatar` varchar(150) NOT NULL, `filepath` varchar(200) NOT NULL, `filename` varchar(200) NOT NULL, `job_title` varchar(100) NOT NULL, `departments_ids` text NOT NULL, `chat_nickname` varchar(100) NOT NULL, `xmpp_username` varchar(200) NOT NULL, `session_id` varchar(40) NOT NULL, `operation_admin` text NOT NULL, `skype` varchar(50) NOT NULL, `exclude_autoasign` tinyint(1) NOT NULL, `disabled` tinyint(4) NOT NULL, `hide_online` tinyint(1) NOT NULL, `all_departments` tinyint(1) NOT NULL, `invisible_mode` tinyint(1) NOT NULL, `inactive_mode` tinyint(1) NOT NULL, `rec_per_req` tinyint(1) NOT NULL, `auto_accept` tinyint(1) NOT NULL, `max_active_chats` int(11) NOT NULL, `cache_version` int(11) unsigned NOT NULL DEFAULT '0', `pswd_updated` int(11) NOT NULL, `attr_int_1` int(11) NOT NULL, `attr_int_2` int(11) NOT NULL, `attr_int_3` int(11) NOT NULL, `force_logout` tinyint(1) unsigned NOT NULL DEFAULT '0', `llogin` bigint(20) unsigned NOT NULL DEFAULT '0', `always_on` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `hide_online` (`hide_online`), KEY `rec_per_req` (`rec_per_req`), KEY `email` (`email`), KEY `disabled` (`disabled`), KEY `xmpp_username` (`xmpp_username`(191)) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $UserData = new erLhcoreClassModelUser(); $UserData->setPassword($form->AdminPassword); $UserData->email = $form->AdminEmail; $UserData->name = $form->AdminName; $UserData->surname = $form->AdminSurname; $UserData->username = $form->AdminUsername; $UserData->all_departments = 1; $UserData->departments_ids = 0; $UserData->pswd_updated = time(); erLhcoreClassUser::getSession()->save($UserData); // User departaments $db->query("CREATE TABLE IF NOT EXISTS `lh_userdep` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `dep_id` int(11) NOT NULL, `last_activity` int(11) NOT NULL, `lastd_activity` int(11) NOT NULL DEFAULT '0', `exclude_autoasign` tinyint(1) NOT NULL DEFAULT '0', `exc_indv_autoasign` tinyint(1) NOT NULL DEFAULT '0', `hide_online` int(11) NOT NULL, `last_accepted` int(11) NOT NULL DEFAULT '0', `active_chats` int(11) NOT NULL DEFAULT '0', `pending_chats` int(11) NOT NULL DEFAULT '0', `inactive_chats` int(11) NOT NULL DEFAULT '0', `max_chats` int(11) NOT NULL DEFAULT '0', `type` int(11) NOT NULL DEFAULT '0', `ro` tinyint(1) NOT NULL DEFAULT '0', `hide_online_ts` int(11) NOT NULL DEFAULT '0', `dep_group_id` int(11) NOT NULL DEFAULT '0', `always_on` tinyint(1) NOT NULL DEFAULT '0', `assign_priority` int(11) NOT NULL DEFAULT '0', `chat_max_priority` int(11) NOT NULL DEFAULT '0', `chat_min_priority` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `last_activity_hide_online_dep_id` (`last_activity`,`hide_online`,`dep_id`), KEY `dep_id` (`dep_id`), KEY `user_id_type` (`user_id`,`type`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); // Insert record to departament instantly $db->query("INSERT INTO `lh_userdep` (`user_id`,`dep_id`,`last_activity`,`hide_online`,`last_accepted`,`active_chats`,`type`,`dep_group_id`,`exclude_autoasign`) VALUES ({$UserData->id},0,0,0,0,0,0,0,0)"); $db->query("CREATE TABLE `lh_userdep_alias` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `dep_id` bigint(20) unsigned NOT NULL, `dep_group_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `nick` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `filepath` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `filename` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `avatar` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `dep_id_user_id` (`dep_id`,`user_id`), KEY `dep_group_id_user_id` (`dep_group_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_group_work` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group_id` int(11) NOT NULL, `group_work_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `group_id` (`group_id`)) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Transfer chat $db->query("CREATE TABLE IF NOT EXISTS `lh_transfer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `chat_id` int(11) NOT NULL, `dep_id` int(11) NOT NULL, `transfer_user_id` int(11) NOT NULL, `from_dep_id` int(11) NOT NULL, `ctime` int(11) NOT NULL, `transfer_to_user_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `dep_id` (`dep_id`), KEY `transfer_user_id_dep_id` (`transfer_user_id`,`dep_id`), KEY `transfer_to_user_id` (`transfer_to_user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Remember user table $db->query("CREATE TABLE IF NOT EXISTS `lh_users_remember` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `mtime` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // API table $db->query("CREATE TABLE IF NOT EXISTS `lh_abstract_rest_api_key` ( `id` int(11) NOT NULL AUTO_INCREMENT, `api_key` varchar(50) NOT NULL, `user_id` int(11) NOT NULL DEFAULT '0', `active` int(11) NOT NULL DEFAULT '0', `ip_restrictions` varchar(250) NOT NULL, PRIMARY KEY (`id`), KEY `api_key` (`api_key`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_rest_api_key_remote` ( `id` int(11) NOT NULL AUTO_INCREMENT, `api_key` varchar(50) NOT NULL, `username` varchar(50) NOT NULL, `name` varchar(50) NOT NULL, `host` varchar(250) NOT NULL, `active` tinyint(1) NOT NULL DEFAULT '0', `position` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `active` (`active`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_abstract_chat_variable` ( `id` int(11) NOT NULL AUTO_INCREMENT, `var_name` varchar(255) NOT NULL, `old_js_id` varchar(50) NOT NULL, `var_identifier` varchar(255) NOT NULL, `inv` tinyint(1) NOT NULL, `change_message` varchar(250) NOT NULL, `type` tinyint(1) NOT NULL, `persistent` tinyint(1) NOT NULL, `js_variable` varchar(255) NOT NULL, `dep_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `dep_id` (`dep_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_webhook` ( `id` int(11) NOT NULL AUTO_INCREMENT, `event` varchar(50) NOT NULL, `bot_id_alt` int(11) NOT NULL DEFAULT '0', `trigger_id_alt` int(11) NOT NULL DEFAULT '0',`bot_id` int(11) NOT NULL, `trigger_id` int(11) NOT NULL, `disabled` tinyint(1) NOT NULL, `configuration` longtext NOT NULL, `type` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `event_disabled` (`event`,`disabled`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_incoming_webhook` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `identifier` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `disabled` tinyint(1) NOT NULL, `configuration` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `dep_id` int(11) NOT NULL, `scope` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `icon_color` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `log_incoming` tinyint(1) unsigned NOT NULL, `log_failed_parse` tinyint(1) unsigned NOT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`,`disabled`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_chat_incoming` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `chat_id` bigint(20) NOT NULL, `incoming_id` int(11) NOT NULL, `chat_external_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `utime` bigint(20) NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `incoming_ext_id_uniq` (`incoming_id`,`chat_external_id`), KEY `chat_id` (`chat_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_abstract_chat_column` ( `id` int(11) NOT NULL AUTO_INCREMENT, `column_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `variable` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `position` int(11) NOT NULL, `enabled` tinyint(1) NOT NULL, `conditions` text COLLATE utf8mb4_unicode_ci NOT NULL, `column_icon` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `column_identifier` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `chat_enabled` tinyint(1) NOT NULL, `online_enabled` tinyint(1) NOT NULL, `icon_mode` tinyint(1) NOT NULL DEFAULT 0, `has_popup` tinyint(1) NOT NULL DEFAULT 0, `popup_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `sort_column` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `sort_enabled` tinyint(1) NOT NULL DEFAULT 0, `chat_list_enabled` tinyint(1) NOT NULL DEFAULT 0, `mail_list_enabled` tinyint(1) NOT NULL DEFAULT 0, `mail_enabled` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `enabled` (`enabled`), KEY `online_enabled` (`online_enabled`), KEY `chat_enabled` (`chat_enabled`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_brand` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci"); $db->query("CREATE TABLE `lh_brand_member` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `dep_id` bigint(20) unsigned NOT NULL, `brand_id` bigint(20) unsigned NOT NULL, `role` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `dep_id` (`dep_id`), KEY `brand_id_role` (`brand_id`,`role`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_bot_condition` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `configuration` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `identifier` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `identifier` (`identifier`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_chat_priority` (`id` int(11) NOT NULL AUTO_INCREMENT,`value` text COLLATE utf8mb4_unicode_ci NOT NULL,`role_destination` varchar(50) NOT NULL,`present_role_is` varchar(50) NOT NULL, `dep_id` int(11) NOT NULL, `dest_dep_id` int(11) NOT NULL DEFAULT 0, `sort_priority` int(11) NOT NULL DEFAULT 0,`priority` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `dep_id` (`dep_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_canned_msg_dep` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `canned_id` int(11) NOT NULL, `dep_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `canned_id` (`canned_id`), KEY `dep_id` (`dep_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_canned_msg_subject` ( `id` int(11) NOT NULL AUTO_INCREMENT, `canned_id` int(11) NOT NULL, `subject_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `canned_id` (`canned_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); $db->query("CREATE TABLE `lh_abstract_msg_protection` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `pattern` text COLLATE utf8mb4_unicode_ci NOT NULL, `enabled` int(11) NOT NULL DEFAULT 1, `remove` int(11) NOT NULL DEFAULT 0, `v_warning` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `enabled` (`enabled`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Session $db->query("CREATE TABLE `lh_users_session` ( `id` int(11) NOT NULL AUTO_INCREMENT, `token` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL, `device_type` int(11) NOT NULL, `device_token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` int(11) NOT NULL, `created_on` int(11) NOT NULL, `updated_on` int(11) NOT NULL, `expires_on` int(11) NOT NULL, `notifications_status` int(11) NOT NULL DEFAULT 1, `error` int(11) NOT NULL DEFAULT 0, `last_error` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `token` (`token`), KEY `device_token_device_type_v2` (`device_token`(191),`device_type`), KEY `error` (`error`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Chat messages $db->query("CREATE TABLE IF NOT EXISTS `lh_msg` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `msg` longtext NOT NULL, `meta_msg` longtext NOT NULL, `time` int(11) NOT NULL, `chat_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `name_support` varchar(100) NOT NULL, `del_st` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `chat_id_id` (`chat_id`, `id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Forgot password table $db->query("CREATE TABLE IF NOT EXISTS `lh_forgotpasswordhash` ( `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , `user_id` INT NOT NULL , `hash` VARCHAR( 40 ) NOT NULL , `created` INT NOT NULL ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // User groups table $db->query("CREATE TABLE IF NOT EXISTS `lh_groupuser` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `group_id` (`group_id`), KEY `user_id` (`user_id`), KEY `group_id_2` (`group_id`,`user_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Assign admin user to admin group $GroupUser = new erLhcoreClassModelGroupUser(); $GroupUser->group_id = $GroupData->id; $GroupUser->user_id = $UserData->id; erLhcoreClassUser::getSession()->save($GroupUser); //Assign default role functions $db->query("CREATE TABLE IF NOT EXISTS `lh_rolefunction` ( `id` int(11) NOT NULL AUTO_INCREMENT, `role_id` int(11) NOT NULL, `module` varchar(100) NOT NULL, `function` varchar(100) NOT NULL, `limitation` text NOT NULL, PRIMARY KEY (`id`), KEY `role_id` (`role_id`) ) ENGINE=InnoDB CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;"); // Admin role and function $RoleFunction = new erLhcoreClassModelRoleFunction(); $RoleFunction->role_id = $Role->id; $RoleFunction->module = '*'; $RoleFunction->function = '*'; erLhcoreClassRole::getSession()->save($RoleFunction); // Operators rules and functions $permissionsArray = array( array('module' => 'lhuser', 'function' => 'selfedit'), array('module' => 'lhuser', 'function' => 'changeonlinestatus'), array('module' => 'lhuser', 'function' => 'changeskypenick'), array('module' => 'lhuser', 'function' => 'personalcannedmsg'), array('module' => 'lhuser', 'function' => 'change_visibility_list'), array('module' => 'lhuser', 'function' => 'see_assigned_departments'), array('module' => 'lhuser', 'function' => 'canseedepartmentstats'), array('module' => 'lhchat', 'function' => 'use'), array('module' => 'lhchat', 'function' => 'open_all'), array('module' => 'lhchat', 'function' => 'chattabschrome'), array('module' => 'lhchat', 'function' => 'singlechatwindow'), array('module' => 'lhchat', 'function' => 'allowopenremotechat'), array('module' => 'lhchat', 'function' => 'writeremotechat'), array('module' => 'lhchat', 'function' => 'allowchattabs'), array('module' => 'lhchat', 'function' => 'use_onlineusers'), array('module' => 'lhchat', 'function' => 'take_screenshot'), array('module' => 'lhfront', 'function' => 'use'), array('module' => 'lhchat', 'function' => 'prev_chats'), array('module' => 'lhsystem','function' => 'use'), array('module' => 'lhcannedmsg', 'function' => 'see_global'), array('module' => 'lhtranslation','function' => 'use'), array('module' => 'lhchat', 'function' => 'allowblockusers'), array('module' => 'lhsystem','function' => 'generatejs'), array('module' => 'lhsystem','function' => 'changelanguage'), array('module' => 'lhchat', 'function' => 'allowredirect'), array('module' => 'lhchat', 'function' => 'allowtransfer'), array('module' => 'lhchat', 'function' => 'allowtransferdirectly'), array('module' => 'lhchat', 'function' => 'administratecannedmsg'), array('module' => 'lhchat', 'function' => 'sees_all_online_visitors'), array('module' => 'lhpermission', 'function' => 'see_permissions'), array('module' => 'lhquestionary', 'function' => 'manage_questionary'), array('module' => 'lhfaq', 'function' => 'manage_faq'), array('module' => 'lhchatbox', 'function' => 'manage_chatbox'), array('module' => 'lhbrowseoffer', 'function' => 'manage_bo'), array('module' => 'lhxml', 'function' => '*'), array('module' => 'lhcobrowse', 'function' => 'browse'), array('module' => 'lhfile', 'function' => 'use_operator'), array('module' => 'lhfile', 'function' => 'file_delete_chat'), array('module' => 'lhstatistic', 'function' => 'use'), array('module' => 'lhspeech', 'function' => 'changedefaultlanguage'), array('module' => 'lhspeech', 'function' => 'use'), array('module' => 'lhcannedmsg', 'function' => 'use'), array('module' => 'lhtheme', 'function' => 'personaltheme'), array('module' => 'lhuser', 'function' => 'userlistonline'), array('module' => 'lhspeech', 'function' => 'change_chat_recognition'), array('module' => 'lhgroupchat', 'function' => 'use'), array('module' => 'lhuser', 'function' => 'see_all_group_users'), array('module' => 'lhvoicevideo', 'function' => 'use'), ); foreach ($permissionsArray as $paramsPermission) { $RoleFunctionOperator = new erLhcoreClassModelRoleFunction(); $RoleFunctionOperator->role_id = $RoleOperators->id; $RoleFunctionOperator->module = $paramsPermission['module']; $RoleFunctionOperator->function = $paramsPermission['function']; erLhcoreClassRole::getSession()->save($RoleFunctionOperator); } $cfgSite = erConfigClassLhConfig::getInstance(); $cfgSite->setSetting( 'site', 'installed', true); $cfgSite->setSetting( 'site', 'templatecache', true); $cfgSite->setSetting( 'site', 'templatecompile', true); $cfgSite->setSetting( 'site', 'modulecompile', true); $cfgSite->setSetting( 'site', 'force_virtual_host', $form->ForceVirtualHost == 1); $cfgSite->setSetting( 'webhooks', 'enabled', isset($form->WebhooksEnabled) &&$form->WebhooksEnabled == 1); $cfgSite->setSetting( 'webhooks', 'worker', isset($form->WebhooksWorker) ? $form->WebhooksWorker : 'http'); if ($form->Extensions != '') { $extensions = explode(',',str_replace(' ','',$form->Extensions)); if (!empty($extensions) ) { $cfgSite->setSetting( 'site', 'extensions', $extensions); } } if ($form->ApacheUserGroupName != '') { $cfgSite->setSetting( 'site', 'default_group', $form->ApacheUserGroupName); } if ($form->ApacheUserName != '') { $cfgSite->setSetting( 'site', 'default_user', $form->ApacheUserName); } if ($form->TimeZone != '') { $cfgSite->setSetting( 'site', 'time_zone', $form->TimeZone); } if (isset($form->DefaultConfigs) && is_array($form->DefaultConfigs)) { foreach ($form->DefaultConfigs as $identifier => $value) { $sql = "UPDATE `lh_chat_config` SET `value` = :value WHERE `identifier` = :identifier"; $stmt = $db->prepare($sql); $stmt->bindValue(':value',$value); $stmt->bindValue(':identifier',$identifier); $stmt->execute(); } } $smtpData = erLhcoreClassModelChatConfig::fetch('smtp_data'); $data = (array)$smtpData->data; $data['default_from'] = 'info@'.$form->Domain; $data['default_from_name'] = trim($form->AdminName . ' ' . $form->AdminSurname); $data['sender'] = 'info@'.$form->Domain; $smtpData->value = serialize($data); $smtpData->saveThis(); return true; } else { return $Errors; } } function step4() { $cfgSite = erConfigClassLhConfig::getInstance(); $cfgSite->save(); $msg = "Installation is complete. You can start by adding users and departments"; syslog(LOG_DEBUG, $msg); } function print_errors($errors) { foreach($errors as $error) { syslog(LOG_ERR, "ERROR: ".$error); } exit(-1); } private function file_perms($file, $octal = true) { if(!file_exists($file)) return false; $perms = fileperms($file); $cut = $octal ? 2 : 3; return substr(decoct($perms), $cut); } private function file_is_writable($directories, $preffix = '', &$Errors) { foreach ($directories as $directory) { $error = false; syslog(LOG_DEBUG, "Evaluate $directory if writable"); $owner = fileowner($preffix.$directory); $group = filegroup($preffix.$directory); $permission = $this->file_perms($preffix.$directory); if ($permission[2] == 7) { continue; } if ($owner == 33 and $permission[0] != 7) { $error = true; } if ($group == 33 and $permission[1] != 7) { $error = true; } if ($error) { $Errors[] = $preffix.$directory." is not writable"; } } } private function _scandir($directory) { $directories = scandir($directory); $directories = array_diff($directories, ['.']); $directories = array_diff($directories, ['..']); return $directories; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.30 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.02 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�