$all['good'] - $halfyear['good'], 'soso' => $all['soso'] - $halfyear['soso'], 'bad' => $all['bad'] - $halfyear['bad'], 'total' => $all['total'] - $halfyear['total'] ); $data = array('all' => $all, 'before' => $before, 'halfyear' => $halfyear, 'thismonth' => $thismonth, 'thisweek' => $thisweek); C::t('forum_spacecache')->insert(array( 'uid' => $uid, 'variable' => $type, 'value' => serialize($data), 'expiration' => getexpiration(), ), false, true); if($return) { return $data; } } function countcredit($uid, $type, $days = 0) { $type = $type == 'buyercredit' ? 1 : 0; $good = $soso = $bad = 0; foreach(C::t('forum_tradecomment')->fetch_all_by_rateeid($uid, $type, $days ? TIMESTAMP - $days * 86400 : 0) as $credit) { if($credit['score'] == 1) { $good++; } elseif($credit['score'] == 0) { $soso++; } else { $bad++; } } return array('good' => $good, 'soso' => $soso, 'bad' => $bad, 'total' => $good + $soso + $bad); } function updateusercredit($uid, $type, $level) { $uid = intval($uid); if(!$uid || !in_array($type, array('buyercredit', 'sellercredit')) || !in_array($level, array('good', 'soso', 'bad'))) { return; } if($cache = C::t('forum_spacecache')->fetch($uid, $type)) { $expiration = $cache['expiration']; $cache = dunserialize($cache['value']); } else { $init = array('good' => 0, 'soso' => 0, 'bad' => 0, 'total' => 0); $cache = array('all' => $init, 'before' => $init, 'halfyear' => $init, 'thismonth' => $init, 'thisweek' => $init); $expiration = getexpiration(); } foreach(array('all', 'before', 'halfyear', 'thismonth', 'thisweek') as $key) { $cache[$key][$level]++; $cache[$key]['total']++; } C::t('forum_spacecache')->insert(array( 'uid' => $uid, 'variable' => $type, 'value' => serialize($cache), 'expiration' => $expiration, ), false, true); $score = $level == 'good' ? 1 : ($level == 'soso' ? 0 : -1); C::t('common_member_status')->increase($uid, array($type=>$score)); } ?>