summaryrefslogtreecommitdiff
path: root/htdocs/src/ModerationExceptions.inc.php
blob: 2cf4c9dcc6e4f41fd8357b0b30b6be566279629d (plain)
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
<?php

/* Foursquare Community Site
 * 
 * Copyright (C) 2011 Foursquare Church.
 * 
 * Developers: Jesse Morgan <jmorgan@foursquarestaff.com>
 *
 */

require_once "base.inc.php";

class ModerationExceptions implements Iterator {
    private $exceptions;

    private $expos;

    public function __construct() {
        $this->exceptions = array();
    }

    // Iterator methods

    public function rewind() {
        $this->expos = 0;
    }

    /**
     *  Return the current exception row.
     */
    public function current() {
        return $this->exceptions[$this->expos];
    }

    /**
     *  Return the User object for the substitute.
     */
    public function getSubstitute() {
        return User::getById($this->exceptions[$this->expos]['substitute']);
    }

    /**
     *  Return the user object for the person who the exception is fore.
     */
    public function getUser() {
        return User::getById($this->exceptions[$this->expos]['user_id']);
    }
        
    /**
     *  Return the unix timestamp of the first day of the exception week.
     */
    public function key() {
        $year = $this->exceptions[$this->expos]['year'];
        $week = $this->exceptions[$this->expos]['week'] + 0;

        return strtotime($year . 'W' .
            ($week < 10 ? '0' : '') . $week);
    }

    public function next() {
        $this->expos++;
    }

    public function valid() {
        return $this->expos < count($this->exceptions);
    }

    public function query() {
        $db = getDatabase();

        // Get the exceptions
        $year = date('o');
        $week = date('W');

        $query = "SELECT * FROM moderator_exceptions"
            . " WHERE year >= $year AND week >= $week"
            . " ORDER BY year, week";
        $this->exceptions = $db->fetchAssocRows($query);

        $this->rewind();
    }
}

?>