-
Notifications
You must be signed in to change notification settings - Fork 7
/
mailto.php
206 lines (181 loc) · 7.89 KB
/
mailto.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?php declare(strict_types = 1);
/**
* mailto.php from The Kabal Invasion.
* The Kabal Invasion is a Free & Opensource (FOSS), web-based 4X space/strategy game.
*
* @copyright 2020 The Kabal Invasion development team, Ron Harwood, and the BNT development team
*
* @license GNU AGPL version 3.0 or (at your option) any later version.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
require_once './common.php';
$login = new Tki\Login();
$login->checkLogin($pdo_db, $lang, $tkireg, $tkitimer, $template);
$body_class = 'tki';
$include_ckeditor = "include";
// Database driven language entries
$langvars = Tki\Translate::load($pdo_db, $lang, array('common', 'footer',
'insignias', 'mailto', 'planet_report',
'universal'));
$title = $langvars['l_sendm_title'];
$header = new Tki\Header();
$header->display($pdo_db, $lang, $template, $title, $body_class, $include_ckeditor);
// Filter to the FILTER_SANITIZE_STRING ruleset, because we need to allow spaces for names & subject (FILTER_SANITIZE_URL doesn't allow spaces)
// $name, $to, and $subject are all sent both via post and get, so we have to do a filter input for each
// filter_input doesn't support INPUT_REQUEST, and also doesn't support the format INPUT_POST | INPUT_GET - I tried.
$name = null;
if (array_key_exists('name', $_POST))
{
$name = filter_input(INPUT_POST, 'name', FILTER_SANITIZE_STRING);
}
elseif (array_key_exists('name', $_GET))
{
$name = filter_input(INPUT_GET, 'name', FILTER_SANITIZE_STRING);
}
$to = null;
if (array_key_exists('to', $_POST))
{
$to = filter_input(INPUT_POST, 'to', FILTER_SANITIZE_STRING);
}
elseif (array_key_exists('to', $_GET))
{
$to = filter_input(INPUT_GET, 'to', FILTER_SANITIZE_STRING);
}
$subject = null;
if (array_key_exists('subject', $_POST))
{
$subject = filter_input(INPUT_POST, 'subject', FILTER_SANITIZE_STRING);
}
if (array_key_exists('subject', $_GET))
{
$subject = filter_input(INPUT_GET, 'subject', FILTER_SANITIZE_STRING);
}
// Allow rich-text codes (dirty) in, we will filter them using html purifier
$dirtycontent = filter_input(INPUT_POST, 'content', FILTER_UNSAFE_RAW);
// Include HTML purifier, set its config, use the 4.01 doctype (since they don't do HTML5 yet)
$html_purifier_config = HTMLPurifier_Config::createDefault();
$html_purifier_config->set('HTML.Doctype', 'HTML 4.01 Transitional');
$purifier = new HTMLPurifier($html_purifier_config);
// Filter the submitted content to ensure that it doesn't have exploits
$content = $purifier->purify($dirtycontent);
// Filter the submitted subject to ensure that it doesn't have exploits either
if ($subject !== null)
{
$subject = $purifier->purify($subject);
}
// Get playerinfo from database
$players_gateway = new \Tki\Players\PlayersGateway($pdo_db);
$playerinfo = $players_gateway->selectPlayerInfo($_SESSION['username']);
echo "<h1>" . $title . "</h1>\n";
if (empty($content))
{
$res = $old_db->Execute("SELECT character_name FROM {$old_db->prefix}ships WHERE email NOT LIKE '%@Kabal' AND ship_id <> ? ORDER BY character_name ASC;", array($playerinfo['ship_id']));
Tki\Db::logDbErrors($pdo_db, $res, __LINE__, __FILE__);
$res2 = $old_db->Execute("SELECT team_name FROM {$old_db->prefix}teams WHERE admin ='N' ORDER BY team_name ASC;");
Tki\Db::logDbErrors($pdo_db, $res2, __LINE__, __FILE__);
echo "<form accept-charset='utf-8' action=mailto.php method=post>\n";
echo " <table>\n";
echo " <tr>\n";
echo " <td>" . $langvars['l_sendm_from'] . ":</td>\n";
echo " <td><input disabled type='text' name='dummy' size='40' maxlength='40' value=\"$playerinfo[character_name]\"></td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td>" . $langvars['l_sendm_to'] . ":</td>\n";
echo " <td>\n";
echo " <select name='to' style='width:200px;'>\n";
// Add self to list.
echo " <option" . (($playerinfo['character_name'] == $name) ? " selected" : "") . ">{$playerinfo['character_name']}</option>\n";
while (!$res->EOF)
{
$row = $res->fields;
echo " <option" . (($row['character_name'] == $to) ? " selected" : "") . ">{$row['character_name']}</option>\n";
$res->MoveNext();
}
while (!$res2->EOF && $res2->fields !== null)
{
$row2 = $res2->fields;
echo " <option>" . $langvars['l_sendm_ally'] . " " . $row2['team_name'] . "</option>\n";
$res2->MoveNext();
}
echo " </select>\n";
echo " </td>\n";
echo " </tr>\n";
if ($subject !== null)
{
$subject = "RE: " . $subject;
}
else
{
$subject = null;
}
echo " <tr>\n";
echo " <td>" . $langvars['l_sendm_subj'] . ":</td>\n";
echo " <td><input type=text name=subject size=40 maxlength=40 value=\"$subject\"></td>\n";
echo " </tr>\n";
echo " <tr>\n";
echo " <td>" . $langvars['l_sendm_mess'] . ":</td>\n";
echo " <td><textarea id=richeditor name=content rows=6 cols=80></textarea></td>\n";
echo " </tr>";
echo " <tr>\n";
echo " <td></td>\n";
echo " <td><input type=submit value=" . $langvars['l_sendm_send'] . "><input type=reset value=" . $langvars['l_reset'] . "></td>\n";
echo " </tr>\n";
echo " </table>\n";
echo "<script>CKEDITOR.replace('richeditor');</script>";
echo "</form>\n";
}
else
{
if (strpos($to, $langvars['l_sendm_ally']) === false)
{
$timestamp = date("Y\-m\-d H\:i\:s");
$res = $old_db->Execute("SELECT ship_id FROM {$old_db->prefix}ships WHERE character_name = ?;", array($to));
Tki\Db::logDbErrors($pdo_db, $res, __LINE__, __FILE__);
$target_info = $res->fields;
$resx = $old_db->Execute("INSERT INTO {$old_db->prefix}messages (sender_id, recp_id, sent, subject, message) VALUES (?, ?, ?, ?, ?);", array($playerinfo['ship_id'], $target_info['ship_id'], $timestamp, $subject, $content));
Tki\Db::logDbErrors($pdo_db, $resx, __LINE__, __FILE__);
if ($old_db->ErrorNo() != 0)
{
echo $langvars['l_sendm_failed'] . $old_db->ErrorMsg() . "<br>\n";
}
else
{
echo $langvars['l_sendm_sent'] . "<br><br>";
}
}
else
{
$timestamp = date("Y\-m\-d H\:i\:s");
$to = str_replace($langvars['l_sendm_ally'], "", $to);
$to = trim($to);
$to = addslashes($to);
$res = $old_db->Execute("SELECT id FROM {$old_db->prefix}teams WHERE team_name = ?;", array($to));
Tki\Db::logDbErrors($pdo_db, $res, __LINE__, __FILE__);
$row = $res->fields;
$res2 = $old_db->Execute("SELECT ship_id FROM {$old_db->prefix}ships WHERE team = ?;", array($row['id']));
Tki\Db::logDbErrors($pdo_db, $res2, __LINE__, __FILE__);
while (!$res2->EOF)
{
$row2 = $res2->fields;
$resx = $old_db->Execute("INSERT INTO {$old_db->prefix}messages (sender_id, recp_id, sent, subject, message) VALUES (?, ?, ?, ?, ?);", array($playerinfo['ship_id'], $row2['ship_id'], $timestamp, $subject, $content));
Tki\Db::logDbErrors($pdo_db, $resx, __LINE__, __FILE__);
$res2->MoveNext();
}
}
}
Tki\Text::gotoMain($pdo_db, $lang);
$footer = new Tki\Footer();
$footer->display($pdo_db, $lang, $tkireg, $tkitimer, $template);