dsff
This commit is contained in:
@@ -88,18 +88,94 @@ final class Community
|
||||
|
||||
public function computePoints(int $userId): float
|
||||
{
|
||||
$pointsCfg = $this->config['points'] ?? [];
|
||||
$eventCreated = (int)$this->pdo->query("SELECT COUNT(*) FROM events WHERE created_by = {$userId}")->fetchColumn();
|
||||
$eventParticipants = (float)$this->pdo->query("SELECT COUNT(*) FROM event_participants WHERE user_id = {$userId}")->fetchColumn();
|
||||
$threadCount = (int)$this->pdo->query("SELECT COUNT(*) FROM forum_threads WHERE user_id = {$userId}")->fetchColumn();
|
||||
$answerCount = (int)$this->pdo->query("SELECT COUNT(*) FROM forum_posts WHERE user_id = {$userId}")->fetchColumn();
|
||||
$invites = 0;
|
||||
// Primär: aggregierte Werte aus user_points_totals, Fallback: Summe aus user_points
|
||||
$stmt = $this->pdo->prepare('SELECT total FROM user_points_totals WHERE user_id = :uid');
|
||||
$stmt->execute([':uid' => $userId]);
|
||||
$total = $stmt->fetchColumn();
|
||||
if ($total !== false && $total !== null) {
|
||||
return (float)$total;
|
||||
}
|
||||
|
||||
return $threadCount * ($pointsCfg['forum_question'] ?? 0.5)
|
||||
+ $answerCount * ($pointsCfg['forum_answer'] ?? 1.0)
|
||||
+ $eventCreated * ($pointsCfg['event_create'] ?? 1.0)
|
||||
+ $eventParticipants * ($pointsCfg['event_participation'] ?? 0.1)
|
||||
+ $invites * ($pointsCfg['invite'] ?? 0.5);
|
||||
$stmt = $this->pdo->prepare('SELECT COALESCE(SUM(amount),0) FROM user_points WHERE user_id = :uid');
|
||||
$stmt->execute([':uid' => $userId]);
|
||||
return (float)$stmt->fetchColumn();
|
||||
}
|
||||
|
||||
/**
|
||||
* Vergibt Punkte persistent und berücksichtigt Caps/Bonis gemäß config actions.
|
||||
*/
|
||||
public function addPoints(int $userId, string $group, string $key, array $meta = []): float
|
||||
{
|
||||
$actions = $this->config['actions'][$group][$key] ?? null;
|
||||
if (!$actions || empty($actions['points'])) {
|
||||
return 0.0;
|
||||
}
|
||||
$basePoints = (float)$actions['points'];
|
||||
|
||||
// Boni (einfacher first-Check)
|
||||
$bonusPoints = 0.0;
|
||||
if (!empty($actions['bonuses'])) {
|
||||
if (isset($actions['bonuses']['first'])) {
|
||||
$bonusPoints += (float)$actions['bonuses']['first'];
|
||||
}
|
||||
if (isset($actions['bonuses']['first_helpful_5']) && isset($meta['helpful_count']) && (int)$meta['helpful_count'] >= 5) {
|
||||
$bonusPoints += (float)$actions['bonuses']['first_helpful_5'];
|
||||
}
|
||||
}
|
||||
|
||||
$amount = $basePoints + $bonusPoints;
|
||||
if ($amount <= 0) {
|
||||
return 0.0;
|
||||
}
|
||||
|
||||
$caps = $actions['caps'] ?? [];
|
||||
$capDaily = $caps['daily'] ?? null;
|
||||
$capTotal = $caps['total'] ?? null;
|
||||
|
||||
$todayStart = (new \DateTimeImmutable('today'))->format('Y-m-d 00:00:00');
|
||||
$todayEnd = (new \DateTimeImmutable('today'))->format('Y-m-d 23:59:59');
|
||||
|
||||
$actionKey = $group . '.' . $key;
|
||||
|
||||
if ($capDaily !== null) {
|
||||
$stmt = $this->pdo->prepare("SELECT COALESCE(SUM(amount),0) FROM user_points WHERE user_id = :uid AND action = :action AND created_at BETWEEN :s AND :e");
|
||||
$stmt->execute([
|
||||
':uid' => $userId,
|
||||
':action' => $actionKey,
|
||||
':s' => $todayStart,
|
||||
':e' => $todayEnd,
|
||||
]);
|
||||
$usedToday = (float)$stmt->fetchColumn();
|
||||
$remaining = max(0.0, (float)$capDaily - $usedToday);
|
||||
if ($remaining <= 0) {
|
||||
return 0.0;
|
||||
}
|
||||
$amount = min($amount, $remaining);
|
||||
}
|
||||
|
||||
if ($capTotal !== null) {
|
||||
$stmt = $this->pdo->prepare("SELECT COALESCE(SUM(amount),0) FROM user_points WHERE user_id = :uid AND action = :action");
|
||||
$stmt->execute([':uid' => $userId, ':action' => $actionKey]);
|
||||
$usedTotal = (float)$stmt->fetchColumn();
|
||||
$remaining = max(0.0, (float)$capTotal - $usedTotal);
|
||||
if ($remaining <= 0) {
|
||||
return 0.0;
|
||||
}
|
||||
$amount = min($amount, $remaining);
|
||||
}
|
||||
|
||||
$stmt = $this->pdo->prepare('INSERT INTO user_points (user_id, action, amount, meta) VALUES (:uid, :action, :amount, :meta)');
|
||||
$stmt->execute([
|
||||
':uid' => $userId,
|
||||
':action' => $actionKey,
|
||||
':amount' => $amount,
|
||||
':meta' => $meta ? json_encode($meta) : null,
|
||||
]);
|
||||
|
||||
$stmt = $this->pdo->prepare('INSERT INTO user_points_totals (user_id, total) VALUES (:uid, :amt) ON DUPLICATE KEY UPDATE total = total + VALUES(total)');
|
||||
$stmt->execute([':uid' => $userId, ':amt' => $amount]);
|
||||
|
||||
return $amount;
|
||||
}
|
||||
|
||||
public function membershipLevel(float $points): array
|
||||
|
||||
Reference in New Issue
Block a user