Subversion Repositories taios

Rev

Rev 57 | Rev 59 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
33 freddie 1
<?php
2
 
3
require '_config.php';
4
 
5
class Taios_Page
6
{
7
    function __construct($title, $url = "")
8
    {
9
        $this->title = $title;
10
        $this->url = $url;
11
 
12
        $this->drawnHeader = false;
13
        $this->drawnMiddle = false;
14
        $this->drawnFooter = false;
15
 
16
        $this->db = mysql_connect(MYSQL_HOST, MYSQL_USER, MYSQL_PASSWORD);
17
        if (!$this->db)
18
        {
19
            $this->drawError('Failed to connect to database: ' . mysql_error());
20
        }
21
 
22
        if (!mysql_select_db('Tim32'))
23
        {
24
            $this->drawError('Failed to select database: ' . mysql_error());
25
        }
26
    }
27
 
28
    function drawHeader()
29
    {
30
        if (!$this->drawnHeader)
31
        {
32
            write('<!DOCTYPE html>');
33
            write('<html>');
34
            write('<head>');
35
            write('<meta http-equiv="Content-Type" content="text/html;charset=utf-8">');
36
            write('<title>Tim32 &middot; ' . $this->title . '</title>');
37
            write('<link href="' . $this->url . 'styles.css" rel="stylesheet" type="text/css" media="screen">');
38
            write('</head>');
39
            write('<body>');
40
            write('<div class="sidebar">');
41
            write('<div class="sidebar-header">');
42
            write('<h1>Tim32</h1>');
43
            write('</div>');
44
            write('<div class="sidebar-menu">');
45
            $this->drawMenuItem('Home', 'index.php');
46
            $this->drawMenuItem('Blog', 'blog/');
47
            $this->drawMenuItem('Projects', 'projects/');
48
            $this->drawMenuItem('Forums', 'forums/');
49
            $this->drawMenuItem('Wiki', 'wiki/');
50
            $this->drawMenuItem('Photos', 'photos/');
51
            write('<br />');
52
            if ($this->isLoggedIn())
53
            {
54
                $this->drawMenuItem('Manage Account', 'admin/account.php?id=' . $this->getLoggedInUser()->ID);
55
                $this->drawMenuItem('Logout', 'logout-do.php');
56
            }
57
            else
58
            {
59
                $this->drawMenuItem('Login', 'login.php');
60
                $this->drawMenuItem('Register', 'register.php');
61
            }
62
            write('<br />');
63
 
64
            $this->drawnHeader = true;
65
        }
66
    }
67
 
68
    function drawMenuItem($t, $u)
69
    {
49 tom 70
        write('<p><a href="' . $this->url . $u . '">' . $t . '</a></p>');
33 freddie 71
    }
72
 
73
    function drawMiddle()
74
    {
75
        if (!$this->drawnMiddle)
76
        {
77
            write('<br />');
78
            write('</div>');
79
            write('</div>');
80
            write('<div class="content">');
81
            write('<h2>' . $this->title . '</h2>');
82
 
83
            $this->drawnMiddle = true;
84
        }
85
    }
86
 
87
    function drawFooter()
88
    {
89
        if (!$this->drawnFooter)
90
        {
91
            write('</div>');
92
            write('</body>');
93
            write('</html>');
94
 
95
            $this->drawnFooter = true;
96
        }
97
 
52 tom 98
        die();
33 freddie 99
    }
100
 
101
    function drawError($text, $die = true)
102
    {
103
        $this->drawHeader();
104
        $this->drawMiddle();
105
 
106
        write('<h4 style="color: red;">Error: ' . $text . '</h4>');
107
 
108
        if ($die)
109
        {
110
            $this->drawFooter();
111
            die();
112
        }
113
    }
114
 
115
    function drawBlogPostTree($id)
116
    {
117
        $post = $this->getBlogPost($id);
118
        write('<h3>' . $post->title. '</h3>');
119
        write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $post->datePosted) . ' by ' . $post->user->name . ' (' . $post->user->username . ')</h5>');
120
        write('<p>' . $post->content . '</p>');
121
 
43 freddie 122
        $ids = $this->findIDs('BlogPosts', 'WHERE ParentID=' . $id);
33 freddie 123
        for ($i = 0; $i < count($ids); $i++)
124
        {
52 tom 125
            write('<div class="indent">');
43 freddie 126
            $this->drawBlogPostTree($ids[$i]);
52 tom 127
            write('</div>');
33 freddie 128
        }
129
    }
57 tom 130
 
58 tom 131
    function drawBlogCategoriesMenu()
57 tom 132
    {
133
        $cats = array();
134
 
135
        $ids = $this->findIDs('BlogPosts');
136
        for ($i = 0; $i < count($ids); $i++)
137
        {
138
            $cat = $this->getBlogPost($ids[$i])->category;
139
            if (!in_array($cat, $cats))
140
            {
141
                array_push($cats, $cat);
142
            }
143
        }
144
 
145
        for ($i = 0; $i < count($cats); $i++)
146
        {
147
            $this->drawMenuItem($cats[$i], $this->url . 'blog/index.php?cat=' . $cats[$i]);
148
        }
149
    }
33 freddie 150
 
151
    function redirect($url)
152
    {
153
        header('Location: ' . $url);
154
        die();
155
    }
156
 
157
    function isLoggedIn()
158
    {
159
        $cookie = $_COOKIE['Tim32_Login'];
160
        if (!empty($cookie))
161
        {
162
            $clist = explode('|~|', $cookie);
163
            $user = $this->getUserByUsername($clist[0]);
164
            if ($user)
165
            {
166
                if ($user->password == $clist[1])
167
                {
168
                    return true;
169
                }
170
            }
171
        }
172
 
173
        return false;
174
    }
175
 
176
    function isUserAdmin()
177
    {
178
        if ($this->isLoggedIn())
179
        {
180
            if ($this->getLoggedInUser()->accessID <= 0)
181
            {
182
                return true;
183
            }
184
        }
185
 
186
        return false;
187
    }
188
 
189
    function isUserGM()
190
    {
191
        if ($this->isLoggedIn())
192
        {
193
            if ($this->getLoggedInUser()->accessID <= 1)
194
            {
195
                return true;
196
            }
197
        }
198
 
199
        return false;
200
    }
201
 
202
    function isUserNormal()
203
    {
204
        if ($this->isLoggedIn())
205
        {
206
            if ($this->getLoggedInUser()->accessID <= 2)
207
            {
208
                return true;
209
            }
210
        }
211
 
212
        return false;
213
    }
214
 
215
    function checkLoggedIn()
216
    {
217
        if (!$this->isLoggedIn())
218
        {
219
            $this->drawError('You need to be logged in.');
220
        }
221
    }
222
 
223
    function query($query)
224
    {
225
        $result = mysql_query($query);
226
        if (!$result)
227
        {
228
            $this->drawError('MySQL Error: ' . mysql_error());
229
        }
230
 
231
        return $result;
232
    }
233
 
234
    function findIDs($table, $query = '')
235
    {
236
        $array = array();
237
 
238
        $result = $this->query('SELECT ID FROM ' . $table . ' ' . $query);
239
        while ($row = mysql_fetch_array($result))
240
        {
241
            array_push($array, $row['ID']);
242
        }
243
 
244
        return $array;
245
    }
246
 
247
    function getUserByID($id)
248
    {
249
        $result = $this->query('SELECT * FROM Users WHERE ID = ' . $id);
250
        while ($row = mysql_fetch_array($result))
251
        {
252
            $user = new User;
253
            $user->ID = $row['ID'];
254
            $user->accessID = $row['AccessID'];
255
            $user->username = $row['Username'];
256
            $user->password = $row['Password'];
257
            $user->emailAddress = $row['EmailAddress'];
258
            $user->name = $row['Name'];
259
            $user->challengeID = $row['ChallengeID'];
260
 
261
            return $user;
262
        }
263
 
264
        return false;
265
    }
266
 
267
    function getUserByUsername($username)
268
    {
269
        $result = $this->query('SELECT * FROM Users WHERE Username = "' . $username . '"');
270
        while ($row = mysql_fetch_array($result))
271
        {
272
            return $this->getUserByID($row['ID']);
273
        }
274
 
275
        return false;
276
    }
277
 
278
    function getLoggedInUser()
279
    {
280
        if ($this->isLoggedIn())
281
        {
282
            $clist = explode('|~|', $_COOKIE['Tim32_Login']);
283
            return $this->getUserByUsername($clist[0]);
284
        }
285
 
286
        return false;
287
    }
288
 
289
    function getBlogPost($id)
290
    {
291
        $result = $this->query('SELECT * FROM BlogPosts WHERE ID = ' . $id);
292
        while ($row = mysql_fetch_array($result))
293
        {
294
            $post = new BlogPost;
295
            $post->ID = $row['ID'];
296
            if ($row['ParentID'] == -1)
297
            {
298
                $post->parent = -1;
299
            }
300
            else
301
            {
302
                $post->parent = $this->getBlogPost($row['ParentID']);
303
            }
304
            $post->user = $this->getUserByID($row['AuthorID']);
305
            $post->title = $row['Title'];
306
            $post->content = $row['Content'];
307
            $post->datePosted = strtotime($row['DatePosted']);
308
            $post->category = $row['Category'];
309
            $post->spam = $row['Spam'];
310
 
311
            return $post;
312
        }
313
 
314
        $this->drawError('Cannot find blog post, #' . $id);
315
    }
316
 
317
    function getGetID()
318
    {
319
        $id = $_GET['id'];
320
        if (empty($id))
321
        {
322
            $id = 1;
323
        }
324
 
325
        return $id;
326
    }
327
 
328
    function getPostID()
329
    {
41 freddie 330
        $id = $_POST['id'];
33 freddie 331
        if (empty($id))
332
        {
333
            $id = 1;
334
        }
335
 
336
        return $id;
337
    }
338
 
339
}
340
 
341
class User
342
{
343
    public $ID;
344
    public $accessID;
345
    public $username;
346
    public $password;
347
    public $emailAddress;
348
    public $name;
349
    public $challengeID;
350
}
351
 
352
class BlogPost
353
{
354
    public $ID;
355
    public $parent;
356
    public $author;
357
    public $title;
358
    public $content;
359
    public $datePosted;
360
    public $category;
361
    public $spam;
362
}
363
 
364
function write($str)
365
{
366
    echo $str;
367
    echo "\n";
368
}
369
 
370
?>