summaryrefslogtreecommitdiff
path: root/htdocs/src/User.inc.php
blob: 0333520c887d3edb06d0519ecffea3776c6aeca9 (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
151
152
153
154
155
156
<?php

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

require_once "base.inc.php";

class User {
    private $info;
    private $indatabase;

    public function __construct($info=null) {
        $this->info = is_null($info) ? array() : $info;

        if ($info !== null and isset($info['id'])) {
            $this->indatabase = true;

        } else {
            $this->indatabase = false;
        }
    }
    
    public static function getById($id) {
        $where = "id='$id'";

        return User::getUser($where);
    }

    public static function getByEmail($email) {
        $where = "email='$email'";

        return User::getUser($where);
    }

    private static function getUser($where) {
        $query = "SELECT * FROM user WHERE $where";

        $db = getDatabase();
        
        $row = $db->fetchAssocRow($query);

        if ($row) {
            $user = new User();
            $user->info = $row;
            $user->indatabase = true;

            return $user;

        } else {
            return false;
        }
    }

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

        // Cleanup Info
        foreach ($this->info as $key=>$value)
            $info[$key] = addslashes($value);

        // Save or create?
        if ($this->indatabase) {
            try {
                $db->update('user', $info, "WHERE `id`='"
                    . $this->getId() ."'");
                return true;

            } catch (Cif_Database_Exception $e) {
                return false;
            }

        } else {
            // Creating... set special fields.
            try {
                $ret = $db->insert('user', $info);

                if ($ret) {
                    $this->info['id'] = $ret;
                    $this->indatabase = true;
                }

                return true;

            } catch (Cif_Database_Exception $e) {
                return false;
            }
        }
    }

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

        $db->delete('user', 'id=' . $this->getId());

        $this->indatabase = false;
    }

    public function getId() {
        return $this->info['id'];
    }

    public function getName() {
        return $this->info['name'];
    }

    public function setName($value) {
        $this->info['name'] = $value;
    }

    public function getEmail() {
        return $this->info['email'];
    }

    public function setEmail($value) {
        $this->info['email'] = $value;
    }

    public function getNotify() {
        return $this->info['notify'];
    }

    public function setNotify($value) {
        $this->info['notify'] = $value ? 1 : 0;
    }

    public function getSource() {
        return $this->info['source_id'];
    }

    public function setSource($value) {
        $this->info['source_id'] = $value;
    }

    public function setPassword($password) {
        $this->info['password'] = sha1($password);
    }

    public function authenticate($password) {
        return sha1($password) == $this->info['password'];
    }

    public function isAdmin() {
        return $this->info['admin'] == 1;
    }

    public function setAdmin($value) {
        $this->info['admin'] = $value ? 1 : 0;
    }
}

?>