summaryrefslogtreecommitdiff
path: root/htdocs/src/ModerationSchedule.inc.php
blob: 4c094e40085a3eec17dcf847036b33fd90433fae (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?php

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

require_once "base.inc.php";

class ModerationSchedule implements Iterator {
    private $moderators;
    private $exceptions;

    private $year;
    private $week;
    private $expos;

    private $moderator;
    private $exceptionfor;

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

    public function getNumberOfModerators() {
        return count($this->moderators);
    }


    // Iterator methods

    public function rewind() {
        $this->year = date('o') + 0;
        $this->week = date('W') + 0;
        $this->expos = 0;
        $this->nextModerator();
    }

    public function current() {
        return $this->moderator;
    }

    public function key() {
        return strtotime($this->year . 'W' .
            ($this->week < 10 ? '0' : '') . $this->week);
    }

    public function next() {
        if ($this->week == 53) {
            // Check for leap year
            if (date('N', mktime(0, 0, 0, 1, 1, $this->year)) == 4
                or date('N', mktime(0, 0, 0, 12, 31, $this->year)) == 4) {
                
                $this->week++;
            
            } else {
                $this->week = 1;
                $this->year++;
            }

        } else if ($this->week > 53) {
            $this->week = 1;
            $this->year++;
        
        } else {
            $this->week++;
        }

        $this->nextModerator();
    }

    private function nextModerator() {
        // Clear out the exception flag.
        $this->exceptionfor = null;

        // Get the scheduled mod.
        $modpos = $this->week % $this->getNumberOfModerators();
        $this->moderator = User::getById($this->moderators[$modpos]['user_id']);

        // Check for exceptions
        if (count($this->exceptions) > 0) {
            // Skip exceptions prior to the current() date.
            while (
                // We have exceptions to search
                $this->expos < (count($this->exceptions) - 1) and
                // and the year is less than the current() year
                ($this->exceptions[$this->expos]['year'] < $this->year or
                // or if it is the current() year, but less than the week.
                ($this->exceptions[$this->expos]['year'] == $this->year
                and $this->exceptions[$this->expos]['week'] < $this->week))
                ) {

                $this->expos++;
            }

            // Check if any of the top exception apply today.
            while($this->exceptions[$this->expos]['year'] == $this->year
                and $this->exceptions[$this->expos]['week'] == $this->week) {

                if ($this->exceptions[$i]['user_id'] == $this->moderator->getId()) {
                    // Yes, return the replacement
                    $this->exceptionfor = $this->moderator;
                    $this->moderator = User::getById($this->exceptions[$this->expos]['user_id']);
                    break;
                }

                $this->expos++;
            }
        }
    }

    public function valid() {
        // The schedule continues forever.
        return true;
    }

    public function isException() {
        return $this->exceptionfor !== null;
    }

    public function getExceptionFor() {
        return $this->exceptionfor;
    }

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

        // Get the moderators
        $query = "SELECT * FROM moderator_schedule ORDER BY position"; 
        $this->moderators = $db->fetchAssocRows($query);

        // 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();
    }
}

?>