Portions created by the Initial Developer are Copyright (C) 2016-2018 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ //includes require_once "root.php"; require_once "resources/require.php"; //check permissions require_once "resources/check_auth.php"; if (permission_exists('message_add') || permission_exists('message_edit')) { //access granted } else { echo "access denied"; exit; } //add multi-lingual support $language = new text; $text = $language->get(); //action add or update if (isset($_REQUEST["id"])) { $action = "update"; $message_uuid = check_str($_REQUEST["id"]); $id = check_str($_REQUEST["id"]); } else { $action = "add"; } //get http post variables and set them to php variables if (is_array($_POST)) { $message_uuid = check_str($_POST["message_uuid"]); //$user_uuid = check_str($_POST["user_uuid"]); $message_type = check_str($_POST["message_type"]); $message_direction = check_str($_POST["message_direction"]); $message_date = check_str($_POST["message_date"]); $message_from = check_str($_POST["message_from"]); $message_to = check_str($_POST["message_to"]); $message_text = check_str($_POST["message_text"]); $message_media_type = check_str($_POST["message_media_type"]); $message_media_url = check_str($_POST["message_media_url"]); $message_media_content = check_str($_POST["message_media_content"]); $message_json = check_str($_POST["message_json"]); } //process the user data and save it to the database if (count($_POST) > 0 && strlen($_POST["persistformvar"]) == 0) { //get the uuid from the POST if ($action == "update") { $message_uuid = check_str($_POST["message_uuid"]); } //check for all required data $msg = ''; //if (strlen($user_uuid) == 0) { $msg .= $text['message-required']." ".$text['label-user_uuid']."
\n"; } if (strlen($message_type) == 0) { $msg .= $text['message-required']." ".$text['label-message_type']."
\n"; } if (strlen($message_direction) == 0) { $msg .= $text['message-required']." ".$text['label-message_direction']."
\n"; } if (strlen($message_date) == 0) { $msg .= $text['message-required']." ".$text['label-message_date']."
\n"; } if (strlen($message_from) == 0) { $msg .= $text['message-required']." ".$text['label-message_from']."
\n"; } if (strlen($message_to) == 0) { $msg .= $text['message-required']." ".$text['label-message_to']."
\n"; } //if (strlen($message_text) == 0) { $msg .= $text['message-required']." ".$text['label-message_text']."
\n"; } //if (strlen($message_media_type) == 0) { $msg .= $text['message-required']." ".$text['label-message_media_type']."
\n"; } //if (strlen($message_media_url) == 0) { $msg .= $text['message-required']." ".$text['label-message_media_url']."
\n"; } //if (strlen($message_media_content) == 0) { $msg .= $text['message-required']." ".$text['label-message_media_content']."
\n"; } //if (strlen($message_json) == 0) { $msg .= $text['message-required']." ".$text['label-message_json']."
\n"; } if (strlen($msg) > 0 && strlen($_POST["persistformvar"]) == 0) { require_once "resources/header.php"; require_once "resources/persist_form_var.php"; echo "
\n"; echo "
\n"; echo $msg."
"; echo "
\n"; persistformvar($_POST); echo "
\n"; require_once "resources/footer.php"; return; } //set the domain_uuid $_POST["domain_uuid"] = $_SESSION["domain_uuid"]; //add the message_uuid if (strlen($_POST["message_uuid"]) == 0) { $message_uuid = uuid(); $_POST["message_uuid"] = $message_uuid; } //prepare the array $array['messages'][0] = $_POST; //save to the data $database = new database; $database->app_name = 'messages'; $database->app_uuid = null; if (strlen($message_uuid) > 0) { $database->uuid($message_uuid); } $database->save($array); $message = $database->message; //debug info //echo "
";
			//print_r($message);
			//echo "
"; //exit; //redirect the user if (isset($action)) { if ($action == "add") { $_SESSION["message"] = $text['message-add']; } if ($action == "update") { $_SESSION["message"] = $text['message-update']; } header('Location: message_edit.php?id='.$message_uuid); return; } } //(is_array($_POST) && strlen($_POST["persistformvar"]) == 0) //pre-populate the form if (is_array($_GET) && $_POST["persistformvar"] != "true") { $message_uuid = check_str($_GET["id"]); $sql = "select * from v_messages "; $sql .= "where message_uuid = '$message_uuid' "; //$sql .= "and domain_uuid = '$domain_uuid' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $result = $prep_statement->fetchAll(PDO::FETCH_NAMED); foreach ($result as &$row) { $user_uuid = $row["user_uuid"]; $message_type = $row["message_type"]; $message_direction = $row["message_direction"]; $message_date = $row["message_date"]; $message_from = $row["message_from"]; $message_to = $row["message_to"]; $message_text = $row["message_text"]; $message_media_type = $row["message_media_type"]; $message_media_url = $row["message_media_url"]; $message_media_content = $row["message_media_content"]; $message_json = $row["message_json"]; } unset ($prep_statement); } //show the header require_once "resources/header.php"; //get the extensions $sql = "select * from v_users "; $sql .= "where domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "and user_enabled = 'true' "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $users = $prep_statement->fetchAll(PDO::FETCH_NAMED); unset ($prep_statement, $sql); //get the users $sql = "SELECT user_uuid, username FROM v_users "; $sql .= "WHERE domain_uuid = '".$_SESSION['domain_uuid']."' "; $sql .= "ORDER by username asc "; $prep_statement = $db->prepare(check_sql($sql)); $prep_statement->execute(); $users = $prep_statement->fetchAll(PDO::FETCH_NAMED); //show the content echo "
\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; if (strlen($message_media_type) > 0) { echo "\n"; echo "\n"; echo "\n"; echo "\n"; } if ($_GET['debug'] == 'true') { echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; echo "\n"; } echo " \n"; echo " \n"; echo " "; echo "
".$text['title-message']."

\n"; echo " "; echo " "; echo "
\n"; echo " ".$text['label-username']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-username']."\n"; echo "
\n"; echo " ".$text['label-message_type']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_type']."\n"; echo "
\n"; echo " ".$text['label-message_direction']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_direction']."\n"; echo "
\n"; echo " ".$text['label-message_date']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_date']."\n"; echo "
\n"; echo " ".$text['label-message_from']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_from']."\n"; echo "
\n"; echo " ".$text['label-message_to']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_to']."\n"; echo "
\n"; echo " ".$text['label-message_text']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_text']."\n"; echo "
\n"; echo "  \n"; echo "\n"; $image_source = 'data: '.mime_content_type($message_media_type).';base64,'.$message_media_content; echo ""; echo "
\n"; echo "
\n"; echo " ".$text['label-message_media_type']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_media_type']."\n"; echo "
\n"; echo " ".$text['label-message_media_url']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_media_url']."\n"; echo "
\n"; echo " ".$text['label-message_media_content']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_media_content']."\n"; echo "
\n"; echo " ".$text['label-message_json']."\n"; echo "\n"; echo " \n"; echo "
\n"; echo $text['description-message_json']."\n"; echo "
\n"; echo " \n"; echo " \n"; echo "
"; echo "
"; echo "

"; //include the footer require_once "resources/footer.php"; ?>