summaryrefslogtreecommitdiff
path: root/htdocs/src/UserIterator.inc.php
blob: 2f8fef21b07d4325e2040c1e81853e5792f00fbf (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
<?php

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

require_once "base.inc.php";

class UserIterator implements Iterator {
    private $where;
    private $rows;
    private $position;
    private $order;
    private $limit;

    public function __construct() {
        $this->where = array();
        $this->rows = array();
        $this->position = 0;
        $this->order = "name asc";
        $this->limit = 0;
    }

    public function filterNotify($notify) {
        $sqlnotify = $notify ? '1' : '0';
        $this->where[] = "notify='$sqlnotify'";
    }
    
    public function orderBy($order) {
        $this->order = $order;
    }

    public function limit($limit) {
        $this->limit = $limit;
    }

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

    public function current() {
        return new User($this->rows[$this->position]);
    }

    public function key() {
        return $this->rows[$this->position]['id'];
    }

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

    public function valid() {
        return isset($this->rows[$this->position]);
    }

    public function query() {
        $query = "SELECT * FROM user"; 
        
        if (count($this->where) > 0) {
            $where = join(' AND ', $this->where);
            $query .= " WHERE $where";
        }

        $query .= " ORDER BY ". $this->order;

        if ($this->limit != 0) {
            $query .= " LIMIT ". $this->limit;
        }

        $db = getDatabase();

        $this->rows = $db->fetchAssocRows($query);
        $this->position = 0;
    }
}

?>