-
Notifications
You must be signed in to change notification settings - Fork 14
/
misc.php
273 lines (270 loc) · 11.2 KB
/
misc.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
<?php
/**
*
* @copyright http://www.xoops.org/ The XOOPS Project
* @copyright XOOPS_copyrights.txt
* @copyright http://www.impresscms.org/ The ImpressCMS Project
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License (GPL)
* @package core
* @since XOOPS
* @author http://www.xoops.org The XOOPS Project
* @author Sina Asghari (aka stranger) <[email protected]>
* @version $Id: misc.php 21047 2011-03-14 15:52:14Z m0nty_ $
**/
include 'mainfile.php';
icms_loadLanguageFile('core', 'misc');
$action = isset($_GET['action']) ? trim(StopXSS($_GET['action'])) : '';
$action = isset($_POST['action']) ? trim(StopXSS($_POST['action'])) : $action;
$type = isset($_GET['type']) ? trim(StopXSS($_GET['type'])) : '';
$type = isset($_POST['type']) ? trim(StopXSS($_POST['type'])) : $type;
if ($action == 'showpopups')
{
xoops_header(false);
// show javascript close button?
$closebutton = 1;
switch($type)
{
case 'smilies':
$target = isset($_GET['target']) ? trim($_GET['target']) : '';
if ($target == '' || !preg_match('/^[0-9a-z_]*$/i', $target)) {} else {
echo "<script type=\"text/javascript\"><!--//
function doSmilie(addSmilie) {
var currentMessage = window.opener.xoopsGetElementById(\"".$target."\").value;
window.opener.xoopsGetElementById(\"".$target."\").value=currentMessage+addSmilie;
return;
}
//-->
</script>
";
echo '</head><body>
<table width="100%" class="outer">
<tr><th colspan="3">'._MSC_SMILIES.'</th></tr>
<tr class="head"><td>'._MSC_CODE.'</td><td>'._MSC_EMOTION.'</td><td>'._IMAGE.'</td></tr>';
$smiles = icms_core_DataFilter::getSmileys(1);
$count = count($smiles);
if ($count > 0)
{
$rcolor = 'even';
for ($i = 0; $i < $count; $i++)
{
echo "<tr class='$rcolor'><td>".$smiles[$i]['code']."</td>
<td>".$smiles[$i]['emotion']."</td>
<td><img onmouseover='style.cursor=\"pointer\"' onclick='doSmilie(\" "
. $smiles[$i]['code'] . " \");' src='"
. ICMS_UPLOAD_URL . "/" . $smiles[$i]['smile_url'] . "' alt='' /></td></tr>";
$rcolor = ($rcolor == 'even') ? 'odd' : 'even';
}
}
else {echo 'Could not retrieve data from the database.';}
echo '</table>'._MSC_CLICKASMILIE;
}
break;
case 'avatars':
?>
<script language='javascript'>
<!--//
function myimage_onclick(counter) {
window.opener.xoopsGetElementById("user_avatar").options[counter].selected = true;
showAvatar();
window.opener.xoopsGetElementById("user_avatar").focus();
window.close();
}
function showAvatar() {
window.opener.xoopsGetElementById("avatar").src='<?php echo ICMS_UPLOAD_URL;?>/'
+ window.opener.xoopsGetElementById("user_avatar")
.options[window.opener.xoopsGetElementById("user_avatar").selectedIndex].value;
}
//-->
</script>
</head>
<body>
<h4><?php echo _MSC_AVAVATARS;?></h4>
<form name='avatars' action='<?php echo $_SERVER['REQUEST_URI'];?>'>
<table width='100%'>
<tr>
<?php
$avatar_handler = icms::handler('icms_data_avatar');
$avatarslist =& $avatar_handler->getList('S');
$cntavs = 0;
$counter = isset($_GET['start']) ? (int) ($_GET['start']) : 0;
foreach ($avatarslist as $file => $name)
{
echo '<td><img src="uploads/'.$file.'" alt="'.$name.'" style="padding:10px; vertical-align:top;" />
<br />'.$name.'<br />
<input name="myimage" type="button" value="'._SELECT.'" onclick="myimage_onclick('.$counter.')" />
</td>';
$counter++;
$cntavs++;
if ($cntavs > 8)
{
echo '</tr><tr>';
$cntavs=0;
}
}
echo '</tr></table></form></div>';
break;
case 'friend':
if (!icms::$security->check() || !isset($_POST['op']) || StopXSS($_POST['op']) == 'sendform') {
if (icms::$user)
{
$yname = icms::$user->getVar('uname', 'e');
$ymail = icms::$user->getVar('email', 'e');
$fname = '';
$fmail = '';
} else {
$yname = '';
$ymail = '';
$fname = '';
$fmail = '';
}
printCheckForm();
echo '</head><body>';
echo "<div class='errorMsg'>".implode('<br />', icms::$security->getErrors())."</div>";
echo '<form action="'.ICMS_URL.'/misc.php" method="post" onsubmit="return checkForm();"><table width="100%" class="outer" cellspacing="1"><tr><th colspan="2">'._MSC_RECOMMENDSITE.'</th></tr>';
echo "<tr><td class='head'>
<input type='hidden' name='op' value='sendsite' />
<input type='hidden' name='action' value='showpopups' />
<input type='hidden' name='type' value='friend' />\n";
echo _MSC_YOURNAMEC."</td>
<td class='even'><input type='text' name='yname' value='$yname' id='yname' /></td></tr>
<tr><td class='head'>"._MSC_YOUREMAILC."</td><td class='odd'>
<input type='text' name='ymail' value='".$ymail."' id='ymail' /></td></tr>
<tr><td class='head'>"._MSC_FRIENDNAMEC."</td>
<td class='even'><input type='text' name='fname' value='$fname' id='fname' /></td></tr>
<tr><td class='head'>"._MSC_FRIENDEMAILC."</td>
<td class='odd'><input type='text' name='fmail' value='$fmail' id='fmail' /></td></tr>
<tr><td class='head'> </td><td class='even'>
<input type='submit' value='"._SEND."' />
<input value='"._CLOSE."' type='button' onclick='javascript:window.close();' />"
. icms::$security->getTokenHTML()."</td></tr>
</table></form>\n";
$closebutton = 0;
} elseif ($_POST['op'] == 'sendsite') {
if (icms::$user) {
$ymail = icms::$user->getVar('email');
} else {
$ymail = isset($_POST['ymail']) ? icms_core_DataFilter::stripSlashesGPC(trim($_POST['ymail'])) : '';
}
if (!isset($_POST['yname']) || trim($_POST['yname']) == '' || $ymail == ''
|| !isset($_POST['fname']) || trim($_POST['fname']) == ''
|| !isset($_POST['fmail']) || trim($_POST['fmail']) == '') {
redirect_header(ICMS_URL.'/misc.php?action=showpopups&type=friend&op=sendform',2,_MSC_NEEDINFO);
}
$yname = icms_core_DataFilter::stripSlashesGPC(trim($_POST['yname']));
$fname = icms_core_DataFilter::stripSlashesGPC(trim($_POST['fname']));
$fmail = icms_core_DataFilter::stripSlashesGPC(trim($_POST['fmail']));
if (!checkEmail($fmail) || !checkEmail($ymail) || preg_match('/[\\0-\\31]/', $yname)) {
$errormessage = _MSC_INVALIDEMAIL1.'<br />'._MSC_INVALIDEMAIL2.'';
redirect_header(ICMS_URL.'/misc.php?action=showpopups&type=friend&op=sendform',2,$errormessage);
}
$xoopsMailer = new icms_messaging_Handler();
$xoopsMailer->setTemplate('tellfriend.tpl');
$xoopsMailer->assign('SITENAME', $icmsConfig['sitename']);
$xoopsMailer->assign('ADMINMAIL', $icmsConfig['adminmail']);
$xoopsMailer->assign('SITEURL', ICMS_URL.'/');
$xoopsMailer->assign('YOUR_NAME', $yname);
$xoopsMailer->assign('FRIEND_NAME', $fname);
$xoopsMailer->setToEmails($fmail);
$xoopsMailer->setFromEmail($ymail);
$xoopsMailer->setFromName($yname);
$xoopsMailer->setSubject(sprintf(_MSC_INTSITE,$icmsConfig['sitename']));
//OpenTable();
if (!$xoopsMailer->send()) {echo $xoopsMailer->getErrors();}
else {echo '<div><h4>'._MSC_REFERENCESENT.'</h4></div>';}
//CloseTable();
}
break;
case 'online':
echo '<table width="100%" cellspacing="1" class="outer"><tr><th colspan="3">'._WHOSONLINE.'</th></tr>';
$start = isset($_GET['start']) ? (int) ($_GET['start']) : 0;
$online_handler = icms::handler('icms_core_Online');
$online_total =& $online_handler->getCount();
$limit = ($online_total > 20) ? 20 : $online_total;
$criteria = new icms_db_criteria_Compo();
$criteria->setLimit($limit);
$criteria->setStart($start);
$onlines =& $online_handler->getAll($criteria);
$count = count($onlines);
$module_handler = icms::handler('icms_module');
$modules =& $module_handler->getList(new icms_db_criteria_Item('isactive', 1));
for ($i = 0; $i < $count; $i++) {
if ($onlines[$i]['online_uid'] == 0) {
$onlineUsers[$i]['user'] = '';
} else {
$onlineUsers[$i]['user'] = new icms_member_user_Object($onlines[$i]['online_uid']);
}
$onlineUsers[$i]['ip'] = $onlines[$i]['online_ip'];
$onlineUsers[$i]['updated'] = $onlines[$i]['online_updated'];
$onlineUsers[$i]['module'] = ($onlines[$i]['online_module'] > 0) ? $modules[$onlines[$i]['online_module']] : '';
}
$class = 'even';
for ($i = 0; $i < $count; $i++) {
$class = ($class == 'odd') ? 'even' : 'odd';
echo '<tr valign="middle" align="center" class="'.$class.'">';
if (is_object($onlineUsers[$i]['user'])) {
$avatar = $onlineUsers[$i]['user']->getVar('user_avatar')
? '<img src="'.ICMS_UPLOAD_URL.'/'.$onlineUsers[$i]['user']->getVar('user_avatar').'" alt="" />' : ' ';
echo '<td>'.$avatar."</td><td>
<a href=\"javascript:window.opener.location='".ICMS_URL."/userinfo.php?uid="
. $onlineUsers[$i]['user']->getVar('uid')."';window.close();\">"
. $onlineUsers[$i]['user']->getVar('uname')."</a>";
} else {
echo '<td> </td><td>'.$icmsConfig['anonymous'];
}
if (icms::$user->isAdmin()) {
echo '<br />('.$onlineUsers[$i]['ip'].')';
}
echo '</td><td>'.$onlineUsers[$i]['module'].'</td></tr>';
}
echo '</table><br />';
if ($online_total > 20) {
$nav = new icms_view_PageNav($online_total, 20, $start, 'start', 'action=showpopups&type=online');
echo '<div style="text-align: right;">'.$nav->renderNav().'</div>';
}
break;
case 'ssllogin':
if ($icmsConfig['use_ssl'] && isset($_POST[$icmsConfig['sslpost_name']]) && is_object(icms::$user)) {
icms_loadLanguageFile('core', 'user');
echo sprintf(_US_LOGGINGU, icms::$user->getVar('uname'));
echo '<div style="text-align:center;">
<input class="formButton" value="'._CLOSE.'" type="button" onclick="window.opener.location.reload();window.close();" />
</div>';
$closebutton = false;
}
break;
default:
break;
}
if ($closebutton) {
echo '<div style="text-align:center;">
<input class="formButton" value="'._CLOSE.'" type="button" onclick="javascript:window.close();" />
</div>';
}
xoops_footer();
}
function printCheckForm() {
?>
<script language='javascript'>
<!--//
function checkForm() {
if (xoopsGetElementById("yname").value == "") {
alert("<?php echo _MSC_ENTERYNAME;?>");
xoopsGetElementById("yname").focus();
return false;
} elseif (xoopsGetElementById("fname").value == "") {
alert("<?php echo _MSC_ENTERFNAME;?>");
xoopsGetElementById("fname").focus();
return false;
} elseif (xoopsGetElementById("fmail").value =="") {
alert("<?php echo _MSC_ENTERFMAIL;?>");
xoopsGetElementById("fmail").focus();
return false;
} else {
return true;
}
}
//-->
</script>
<?php
}
?>