📄 misc.php
字号:
$sqlvalues = $comma = '';
$sqlreason = cutstr($reason, 40);
foreach($creditsarray as $id => $addcredits) {
$sqlvalues .= "$comma('$pid', '$discuz_uid', '$discuz_user', '$id', '$timestamp', '$addcredits', '$sqlreason')";
$comma = ', ';
}
$db->query("INSERT INTO {$tablepre}ratelog (pid, uid, username, extcredits, dateline, score, reason)
VALUES $sqlvalues", 'UNBUFFERED');
if($sendreasonpm) {
require_once DISCUZ_ROOT.'./include/misc.func.php';
$ratescore = $slash = '';
foreach($creditsarray as $id => $addcredits) {
$ratescore .= $slash.$extcredits[$id]['title'].' '.($addcredits > 0 ? '+'.$addcredits : $addcredits).' '.$extcredits[$id]['unit'];
$slash = ' / ';
}
sendreasonpm('post', 'rate_reason');
}
$reason = dhtmlspecialchars($reason);
@$fp = fopen(DISCUZ_ROOT.'./forumdata/ratelog.php', 'a');
@flock($fp, 2);
foreach($creditsarray as $id => $addcredits) {
@fwrite($fp, "$timestamp\t".dhtmlspecialchars($discuz_userss)."\t$adminid\t".dhtmlspecialchars($post['author'])."\t$id\t$addcredits\t$tid\t$thread[subject]\t$reason\n");
}
@fclose($fp);
showmessage('thread_rate_succeed', dreferer());
}
} elseif($action == 'viewratings' && $pid) {
$queryr = $db->query("SELECT * FROM {$tablepre}ratelog WHERE pid='$pid' ORDER BY dateline");
$queryp = $db->query("SELECT p.* ".($bannedmessages ? ", m.groupid " : '').
" FROM {$tablepre}posts p ".
($bannedmessages ? "LEFT JOIN {$tablepre}members m ON m.uid=p.authorid" : '').
" WHERE p.pid='$pid' AND p.invisible='0'");
if(!($db->num_rows($queryr)) || !($db->num_rows($queryp))) {
showmessage('thread_rate_log_nonexistence');
}
$post = $db->fetch_array($queryp);
if($post['tid'] != $thread['tid']) {
showmessage('undefined_action', NULL, 'HALTED');
}
$discuz_action = 72;
if(!$bannedmessages || !$post['authorid'] || ($bannedmessages && $post['authorid'] && !in_array(intval($author['groupid']), array(0, 4, 5)))) {
require_once DISCUZ_ROOT.'./include/discuzcode.func.php';
$post['dateline'] = gmdate("$dateformat $timeformat", $post['dateline'] + $timeoffset * 3600);
$post['message'] = discuzcode($post['message'], $post['smileyoff'], $post['bbcodeoff'], $post['htmlon'], $forum['allowsmilies'], $forum['allowbbcode'], $forum['allowimgcode'], $forum['allowhtml'], $forum['jammer']);
} else {
$post['message'] = '';
}
$loglist = array();
while($log = $db->fetch_array($queryr)) {
$log['dateline'] = gmdate("$dateformat $timeformat", $log['dateline'] + $timeoffset * 3600);
$log['score'] = $log['score'] > 0 ? '+'.$log['score'] : $log['score'];
$log['reason'] = dhtmlspecialchars($log['reason']);
$loglist[] = $log;
}
include template('rate_view');
} elseif($action == 'pay') {
if(!isset($extcredits[$creditstrans])) {
showmessage('credits_transaction_disabled');
} elseif($thread['price'] <= 0) {
showmessage('undefined_action', NULL, 'HALTED');
} elseif(!$discuz_uid) {
showmessage('group_nopermission', NULL, 'NOPERM');
}
if(($balance = ${'extcredits'.$creditstrans} - $thread['price']) < ($minbalance = 0)) {
showmessage('credits_balance_insufficient');
}
$discuz_action = 81;
$thread['netprice'] = floor($thread['price'] * (1 - $creditstax));
if(!submitcheck('paysubmit')) {
include template('pay');
} else {
$updateauthor = true;
if($maxincperthread > 0) {
$query = $db->query("SELECT SUM(netamount) FROM {$tablepre}paymentlog WHERE tid='$tid'");
if(($db->result($query, 0)) > $maxincperthread) {
$updateauthor = false;
}
}
if($updateauthor) {
$db->query("UPDATE {$tablepre}members SET extcredits$creditstrans=extcredits$creditstrans+$thread[netprice] WHERE uid='$thread[authorid]'");
}
$db->query("UPDATE {$tablepre}members SET extcredits$creditstrans=extcredits$creditstrans-$thread[price] WHERE uid='$discuz_uid'");
$db->query("INSERT INTO {$tablepre}paymentlog (uid, tid, authorid, dateline, amount, netamount)
VALUES ('$discuz_uid', '$tid', '$thread[authorid]', '$timestamp', '$thread[price]', '$thread[netprice]')");
showmessage('thread_pay_succeed', "viewthread.php?tid=$tid");
}
} elseif($action == 'viewpayments') {
$discuz_action = 82;
$loglist = array();
$query = $db->query("SELECT p.*, m.username FROM {$tablepre}paymentlog p
LEFT JOIN {$tablepre}members m USING (uid)
WHERE tid='$tid' ORDER BY dateline");
while($log = $db->fetch_array($query)) {
$log['dateline'] = gmdate("$dateformat $timeformat", $log['dateline'] + $timeoffset * 3600);
$loglist[] = $log;
}
include template('pay_view');
} elseif($action == 'report') {
if(!$reportpost) {
showmessage('thread_report_disabled');
}
if(!$discuz_uid) {
showmessage('not_loggedin', NULL, 'HALTED');
}
if(!$thread || !is_numeric($pid)) {
showmessage('undefined_action', NULL, 'HALTED');
}
$discuz_action = 123;
$floodctrl = $floodctrl * 3;
if($timestamp - $lastpost < $floodctrl) {
showmessage('thread_report_flood_ctrl');
}
if(!submitcheck('reportsubmit')) {
include template('reportpost');
} else {
$posturl = "{$boardurl}viewthread.php?tid=$tid".($page || $pid ? "&page=$page#pid$pid" : NULL);
$uids = 0;
$adminids = '';
$reportto = array();
if(is_array($to) && count($to)) {
if(isset($to[3])) {
$query = $db->query("SELECT uid FROM {$tablepre}moderators WHERE fid='$fid'");
while($member = $db->fetch_array($query)) {
$uids .= ','.$member['uid'];
}
}
if(!$uids || ($reportpost >= 2 && $to[2])) {
$adminids .= ',2';
}
if($reportpost == 3 && $to[1]) {
$adminids .= ',1';
}
if($adminids) {
$query = $db->query("SELECT uid FROM {$tablepre}members WHERE adminid IN (".substr($adminids, 1).")");
if(!$db->num_rows($query)) {
$query = $db->query("SELECT uid FROM {$tablepre}members WHERE adminid='1'");
}
while($member = $db->fetch_array($query)) {
$uids .= ','.$member['uid'];
}
}
$query = $db->query("SELECT uid, ignorepm FROM {$tablepre}memberfields WHERE uid IN ($uids)");
while($member = $db->fetch_array($query)) {
if(!preg_match("/(^{ALL}$|(,|^)\s*".preg_quote($discuz_user, '/')."\s*(,|$))/i", $member['ignorepm'])) {
if(!in_array($member['uid'], $reportto)) {
$reportto[] = $member['uid'];
}
}
}
if($reportto) {
$reason = stripslashes($reason);
sendpm(implode(',', $reportto), 'reportpost_subject', 'reportpost_message');
}
$db->query("UPDATE {$tablepre}members SET lastpost='$timestamp' WHERE uid='$discuz_uid'");
showmessage('thread_report_succeed', "viewthread.php?tid=$tid");
} else {
showmessage('thread_report_invalid');
}
}
} elseif($action == 'blog') {
if(!$discuz_uid || (!$thread['blog'] && (!$allowuseblog || !$forum['allowblog']))) {
showmessage('group_nopermission', NULL, 'NOPERM');
}
if($thread['authorid'] != $discuz_uid) {
$query = $db->query("SELECT adminid FROM {$tablepre}members WHERE uid='$thread[authorid]'");
$thread['adminid'] = $db->result($query, 0);
if(!$forum['ismoderator'] || (in_array($thread['adminid'], array(1, 2, 3)) && $adminid > $thread['adminid'])) {
showmessage('blog_add_illegal');
}
}
if(!submitcheck('blogsubmit')) {
include template('blog_addremove');
} else {
$blog = $thread['blog'] ? 0 : 1;
$db->query("UPDATE {$tablepre}threads SET blog='$blog' WHERE tid='$tid'", 'UNBUFFERED');
if($forum['ismoderator'] && $thread['authorid'] != $discuz_uid && $blog != $thread['blog']) {
$reason = '';
require_once DISCUZ_ROOT.'./include/misc.func.php';
modlog($thread, ($thread['blog'] ? 'RBL' : 'ABL'));
}
showmessage('blog_add_succeed', "viewthread.php?tid=$tid");
}
} elseif($action == 'viewthreadmod' && $tid) {
$loglist = array();
$query = $db->query("SELECT * FROM {$tablepre}threadsmod WHERE tid='$tid' ORDER BY dateline DESC");
while($log = $db->fetch_array($query)) {
$log['dateline'] = gmdate("$dateformat $timeformat", $log['dateline'] + $timeoffset * 3600);
$log['expiration'] = !empty($log['expiration']) ? gmdate("$dateformat", $log['expiration'] + $timeoffset * 3600) : '';
$log['status'] = empty($log['status']) ? 'style="text-decoration: line-through" disabled' : '';
$loglist[] = $log;
}
if(empty($loglist)) {
showmessage('threadmod_nonexistence');
} else {
include_once language('modactions');
}
include template('viewthread_mod');
}
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -