881 Star 3.6K Fork 1.5K

Discuz / DiscuzX

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
extend_thread_reward.php 5.34 KB
一键复制 编辑 原始数据 按行查看 历史
<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: extend_thread_reward.php 34351 2014-03-19 04:34:04Z hypowang $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
class extend_thread_reward extends extend_thread_base {
public $rewardprice;
public $realprice;
public function before_newthread($parameters) {
$this->rewardprice = intval($_GET['rewardprice']);
$minrewardprice = $this->group['minrewardprice'];
$maxrewardprice = $this->group['maxrewardprice'];
if($this->rewardprice < 1) {
showmessage('reward_credits_please');
} elseif($this->rewardprice > 32767) {
showmessage('reward_credits_overflow');
} elseif($this->rewardprice < $minrewardprice || ($maxrewardprice > 0 && $this->rewardprice > $maxrewardprice)) {
if($maxrewardprice > 0) {
showmessage('reward_credits_between', '', array('minrewardprice' => $minrewardprice, 'maxrewardprice' => $maxrewardprice));
} else {
showmessage('reward_credits_lower', '', array('minrewardprice' => $minrewardprice));
}
} elseif(($this->realprice = $this->rewardprice + ceil($this->rewardprice * $this->setting['creditstax'])) > getuserprofile('extcredits'.$this->setting['creditstransextra'][2])) {
showmessage('reward_credits_shortage');
}
$this->param['price'] = $this->rewardprice;
}
public function after_newthread() {
if($this->group['allowpostreward']) {
updatemembercount($this->member['uid'], array($this->setting['creditstransextra']['2'] => -$this->realprice), 1, 'RTC', $this->tid);
}
}
public function before_feed() {
$this->feed['icon'] = 'reward';
$this->feed['title_template'] = 'feed_thread_reward_title';
$this->feed['body_template'] = 'feed_thread_reward_message';
$this->feed['body_data'] = array(
'subject'=> "<a href=\"forum.php?mod=viewthread&tid={$this->tid}\">".$this->param['subject']."</a>",
'rewardprice'=> $this->rewardprice,
'extcredits' => $this->setting['extcredits'][$this->setting['creditstransextra']['2']]['title'],
);
}
public function before_replyfeed() {
if($this->forum['allowfeed'] && !$this->param['isanonymous']) {
if($this->param['special'] == 3 && $this->thread['authorid'] != $this->member['uid']) {
$this->feed['icon'] = 'reward';
$this->feed['title_template'] = 'feed_reply_reward_title';
$this->feed['title_data'] = array(
'subject' => "<a href=\"forum.php?mod=viewthread&tid=".$this->thread['tid']."\">".$this->thread['subject']."</a>",
'author' => "<a href=\"home.php?mod=space&uid=".$this->thread['authorid']."\">".$this->thread['author']."</a>"
);
}
}
}
public function before_editpost($parameters) {
$isfirstpost = $this->post['first'] ? 1 : 0;
$isorigauthor = $this->member['uid'] && $this->member['uid'] == $this->post['authorid'];
if($isfirstpost) {
if($this->thread['special'] == 3) {
$this->param['price'] = $isorigauthor ? ($this->thread['price'] > 0 && $this->thread['price'] != $_GET['rewardprice'] ? $_GET['rewardprice'] : 0) : $this->thread['price'];
}
if($this->thread['special'] == 3 && $isorigauthor) {
$rewardprice = $this->thread['price'] > 0 ? intval($_GET['rewardprice']) : $this->thread['price'];
if($this->thread['price'] > 0 && $this->thread['price'] != $_GET['rewardprice']) {
if($rewardprice <= 0){
showmessage('reward_credits_invalid');
}
$addprice = ceil(($rewardprice - $this->thread['price']) + ($rewardprice - $this->thread['price']) * $this->setting['creditstax']);
if($rewardprice < $this->thread['price']) {
showmessage('reward_credits_fall');
} elseif($rewardprice < $this->group['minrewardprice'] || ($this->group['maxrewardprice'] > 0 && $rewardprice > $this->group['maxrewardprice'])) {
showmessage('reward_credits_between', '', array('minrewardprice' => $this->group['minrewardprice'], 'maxrewardprice' => $this->group['maxrewardprice']));
} elseif($addprice > getuserprofile('extcredits'.$this->setting['creditstransextra'][2])) {
showmessage('reward_credits_shortage');
}
$realprice = ceil($rewardprice + $rewardprice * $this->setting['creditstax']);
updatemembercount($this->thread['authorid'], array($this->setting['creditstransextra'][2] => -$addprice));
C::t('common_credit_log')->update_by_uid_operation_relatedid($this->thread['authorid'], 'RTC', $this->thread['tid'], array('extcredits'.$this->setting['creditstransextra'][2] => -$realprice));
}
if(!$this->forum['ismoderator']) {
if($this->thread['replies'] > 1) {
$this->param['subject'] = addslashes($this->thread['subject']);
}
}
$this->param['price'] = $rewardprice;
}
}
}
public function before_deletepost($parameters) {
$isfirstpost = $this->post['first'] ? 1 : 0;
if($this->thread['special'] == 3) {
if($this->thread['price'] < 0 && ($this->thread['dateline'] + 1 == $this->post['dateline'])) {
showmessage('post_edit_reward_nopermission', NULL);
}
}
if($this->thread['special'] == 3 && $isfirstpost) {
updatemembercount($this->post['authorid'], array($this->setting['creditstransextra'][2] => $this->thread['price']));
C::t('common_credit_log')->delete_by_uid_operation_relatedid($this->thread['authorid'], 'RTC', $this->thread['tid']);
}
}
}
?>
PHP
1
https://gitee.com/Discuz/DiscuzX.git
git@gitee.com:Discuz/DiscuzX.git
Discuz
DiscuzX
DiscuzX
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891