芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/status.pulsehost.co.uk/app/controllers/NotificationHandlerCreate.php
query("SELECT COUNT(`type`) AS `total`, `type` FROM `notification_handlers` WHERE `user_id` = {$this->user->user_id} GROUP BY `type`"); while($row = $total_notification_handlers_result->fetch_object()) { $total_notification_handlers[$row->type] = $row->total; } if(!empty($_POST)) { $_POST['type'] = array_key_exists($_POST['type'], require APP_PATH . 'includes/notification_handlers.php') ? input_clean($_POST['type']) : null; $_POST['name'] = input_clean($_POST['name']); //ALTUMCODE:DEMO if(DEMO) if($this->user->user_id == 1) Alerts::add_error('Please create an account on the demo to test out this function.'); /* Check for any errors */ $required_fields = ['type', 'name']; foreach($required_fields as $field) { if(!isset($_POST[$field]) || (isset($_POST[$field]) && empty($_POST[$field]) && $_POST[$field] != '0')) { Alerts::add_field_error($field, l('global.error_message.empty_field')); } } if(!\Altum\Csrf::check()) { Alerts::add_error(l('global.error_message.invalid_csrf_token')); } /* Check for the plan limit */ if($this->user->plan_settings->{'notification_handlers_' . $_POST['type'] . '_limit'} != -1 && $total_notification_handlers[$_POST['type']] >= $this->user->plan_settings->{'notification_handlers_' . $_POST['type'] . '_limit'}) { Alerts::add_error(l('global.info_message.plan_feature_limit')); } if(!Alerts::has_field_errors() && !Alerts::has_errors()) { $settings = []; switch($_POST['type']) { case 'telegram': $settings['telegram'] = input_clean($_POST['telegram'], 512); $settings['telegram_chat_id'] = input_clean($_POST['telegram_chat_id'], 512); break; case 'whatsapp': $settings['whatsapp'] = (int) input_clean($_POST['whatsapp'], 32); break; case 'twilio': case 'twilio_call': $settings[$_POST['type']] = input_clean($_POST[$_POST['type']], 32); break; case 'x': $settings['x_consumer_key'] = input_clean($_POST['x_consumer_key'], 512); $settings['x_consumer_secret'] = input_clean($_POST['x_consumer_secret'], 512); $settings['x_access_token'] = input_clean($_POST['x_access_token'], 512); $settings['x_access_token_secret'] = input_clean($_POST['x_access_token_secret'], 512); break; default: $settings[$_POST['type']] = input_clean($_POST[$_POST['type']], 512); break; } $settings = json_encode($settings); /* Database query */ db()->insert('notification_handlers', [ 'user_id' => $this->user->user_id, 'type' => $_POST['type'], 'name' => $_POST['name'], 'settings' => $settings, 'datetime' => get_date(), ]); /* Set a nice success message */ Alerts::add_success(sprintf(l('global.success_message.create1'), '
' . $_POST['name'] . '
')); /* Clear the cache */ cache()->deleteItem('notification_handlers?user_id=' . $this->user->user_id); redirect('notification-handlers'); } } $values = [ 'name' => $_POST['name'] ?? '', 'type' => $_POST['type'] ?? '', 'email' => $_POST['email'] ?? '', 'webhook' => $_POST['webhook'] ?? '', 'slack' => $_POST['slack'] ?? '', 'discord' => $_POST['discord'] ?? '', 'microsoft_teams' => $_POST['microsoft_teams'] ?? '', 'twilio' => $_POST['twilio'] ?? '', 'twilio_call' => $_POST['twilio_call'] ?? '', 'telegram' => $_POST['telegram'] ?? '', 'telegram_chat_id' => $_POST['telegram_chat_id'] ?? '', 'whatsapp' => $_POST['whatsapp'] ?? '', 'x_consumer_key' => $_POST['x_consumer_key'] ?? '', 'x_consumer_secret' => $_POST['x_consumer_secret'] ?? '', 'x_access_token' => $_POST['x_access_token'] ?? '', 'x_access_token_secret' => $_POST['x_access_token_secret'] ?? '', ]; /* Prepare the view */ $data = [ 'values' => $values, 'total_notification_handlers' => $total_notification_handlers, ]; $view = new \Altum\View('notification-handler-create/index', (array) $this); $this->add_view_content('content', $view->run($data)); } }