Subversion Repositories taios

Rev

Rev 152 | Rev 156 | 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
            {
77 tom 54
                $this->drawMenuItem('Administration', 'admin/');
33 freddie 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
 
90 freddie 115
    function drawBlogPostTree($id, $first = false)
33 freddie 116
    {
117
        $post = $this->getBlogPost($id);
90 freddie 118
        if ($first)
95 freddie 119
            write('<h3><a href="post.php?id=' . $id . '">' . $post->title. '</a> <a href="post.php?id=' . $post->parent->ID . '">^</a></h3>');
90 freddie 120
        else
121
            write('<a href="post.php?id=' . $id . '"><h3>' . $post->title. '</h3></a>');
33 freddie 122
        write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $post->datePosted) . ' by ' . $post->user->name . ' (' . $post->user->username . ')</h5>');
123
        write('<p>' . $post->content . '</p>');
74 tom 124
        write('<br />');
73 tom 125
        if ($this->isUserNormal($this->getLoggedInUser()))
72 tom 126
        {
116 freddie 127
            echo '<p class="bold"><a href="add-post.php?id=' . $id . '">Add Comment</a>';
117 freddie 128
            if ($this->isUserAdmin($this->getLoggedInUser()) || $this->getLoggedInUser() == $post->author->ID)
129
                echo ' &middot <a href="del-post.php?id=' . $id . '">Delete Post</a>';
116 freddie 130
            write('</p><br />');
72 tom 131
        }
33 freddie 132
 
43 freddie 133
        $ids = $this->findIDs('BlogPosts', 'WHERE ParentID=' . $id);
33 freddie 134
        for ($i = 0; $i < count($ids); $i++)
135
        {
52 tom 136
            write('<div class="indent">');
43 freddie 137
            $this->drawBlogPostTree($ids[$i]);
52 tom 138
            write('</div>');
33 freddie 139
        }
140
    }
57 tom 141
 
58 tom 142
    function drawBlogCategoriesMenu()
57 tom 143
    {
144
        $cats = array();
145
 
62 tom 146
        $ids = $this->findIDs('BlogPosts', 'WHERE ParentID = -1');
57 tom 147
        for ($i = 0; $i < count($ids); $i++)
148
        {
149
            $cat = $this->getBlogPost($ids[$i])->category;
150
            if (!in_array($cat, $cats))
151
            {
152
                array_push($cats, $cat);
153
            }
154
        }
155
 
61 tom 156
        write('<h3>Categories</h3>');
57 tom 157
        for ($i = 0; $i < count($cats); $i++)
158
        {
65 tom 159
            $this->drawMenuItem($cats[$i], 'blog/index.php?cat=' . $cats[$i]);
57 tom 160
        }
161
    }
137 tom 162
 
163
    function replaceBBCode($str)
164
    {
165
        $newstr = str_replace("\n", '</p><p>', $str);
144 tom 166
        $newstr = str_replace('  ', '&nbsp;&nbsp;', $newstr);
152 tom 167
        $newstr = str_replace(' :)', ' <img src="' . $this->url . 'data/smilies/face-smile.png" style="vertical-align: middle;" />', $newstr);
168
        $newstr = str_replace(' :p', ' <img src="' . $this->url . 'data/smilies/face-raspberry.png" style="vertical-align: middle;" />', $newstr);
169
        $newstr = str_replace(' :P', ' <img src="' . $this->url . 'data/smilies/face-raspberry.png" style="vertical-align: middle;" />',$newstr);
170
        $newstr = str_replace(' :|', ' <img src="' . $this->url . 'data/smilies/face-plain.png" style="vertical-align: middle;" />',$newstr);
171
        $newstr = str_replace(' :D', ' <img src="' . $this->url . 'data/smilies/face-laugh.png" style="vertical-align: middle;" />',$newstr);
172
        $newstr = str_replace(' =D', ' <img src="' . $this->url . 'data/smilies/face-laugh.png" style="vertical-align: middle;" />',$newstr);
173
        $newstr = str_replace(' :(', ' <img src="' . $this->url . 'data/smilies/face-sad.png" style="vertical-align: middle;" />',$newstr);
174
        $newstr = str_replace(' :0', ' <img src="' . $this->url . 'data/smilies/face-surprise.png" style="vertical-align: middle;" />',$newstr);
175
        $newstr = str_replace(' :o', ' <img src="' . $this->url . 'data/smilies/face-surprise.png" style="vertical-align: middle;" />',$newstr);
176
        $newstr = str_replace(' :O', ' <img src="' . $this->url . 'data/smilies/face-surprise.png" style="vertical-align: middle;" />',$newstr);
177
        $newstr = str_replace(' :/', ' <img src="' . $this->url . 'data/smilies/face-uncertain.png" style="vertical-align: middle;" />',$newstr);
178
        $newstr = str_replace(' ;)', ' <img src="' . $this->url . 'data/smilies/face-wink.png" style="vertical-align: middle;" />',$newstr);
137 tom 179
 
139 tom 180
        $bbcode = array(
143 tom 181
        '/\[b\](.+?)\[\/b\]/is',
141 tom 182
        '/\[i\](.+?)\[\/i\]/is',
183
        '/\[u\](.+?)\[\/u\]/is',
184
        '/\[url\](.+?)\[\/url\]/is',
155 tom 185
        '/\[code\](.+?)\[\/code\]/is',
186
        '/\[img\](.+?)\[\/img\]/is'
139 tom 187
        );
188
 
189
        $html = array(
190
        '<b>$1</b>',
141 tom 191
        '<i>$1</i>',
192
        '<u>$1</u>',
193
        '<a href="$1">$1</a>',
155 tom 194
        '<img src="$1" />'
139 tom 195
        );
196
 
197
        $newstr = preg_replace($bbcode, $html, $newstr);
198
 
137 tom 199
        return $newstr;
200
    }
33 freddie 201
 
64 tom 202
    function redirect($u)
33 freddie 203
    {
64 tom 204
        header('Location: ' . $u);
33 freddie 205
        die();
206
    }
207
 
208
    function isLoggedIn()
209
    {
210
        $cookie = $_COOKIE['Tim32_Login'];
211
        if (!empty($cookie))
212
        {
213
            $clist = explode('|~|', $cookie);
214
            $user = $this->getUserByUsername($clist[0]);
215
            if ($user)
216
            {
217
                if ($user->password == $clist[1])
218
                {
219
                    return true;
220
                }
221
            }
222
        }
223
 
224
        return false;
225
    }
226
 
227
    function isUserAdmin()
228
    {
229
        if ($this->isLoggedIn())
230
        {
231
            if ($this->getLoggedInUser()->accessID <= 0)
232
            {
233
                return true;
234
            }
235
        }
236
 
237
        return false;
238
    }
239
 
240
    function isUserGM()
241
    {
242
        if ($this->isLoggedIn())
243
        {
244
            if ($this->getLoggedInUser()->accessID <= 1)
245
            {
246
                return true;
247
            }
248
        }
249
 
250
        return false;
251
    }
252
 
253
    function isUserNormal()
254
    {
255
        if ($this->isLoggedIn())
256
        {
257
            if ($this->getLoggedInUser()->accessID <= 2)
258
            {
259
                return true;
260
            }
261
        }
262
 
263
        return false;
264
    }
265
 
266
    function checkLoggedIn()
267
    {
268
        if (!$this->isLoggedIn())
269
        {
270
            $this->drawError('You need to be logged in.');
271
        }
272
    }
273
 
274
    function query($query)
275
    {
276
        $result = mysql_query($query);
277
        if (!$result)
278
        {
279
            $this->drawError('MySQL Error: ' . mysql_error());
280
        }
281
 
282
        return $result;
283
    }
284
 
285
    function findIDs($table, $query = '')
286
    {
287
        $array = array();
288
 
289
        $result = $this->query('SELECT ID FROM ' . $table . ' ' . $query);
290
        while ($row = mysql_fetch_array($result))
291
        {
292
            array_push($array, $row['ID']);
293
        }
294
 
295
        return $array;
296
    }
297
 
298
    function getUserByID($id)
299
    {
300
        $result = $this->query('SELECT * FROM Users WHERE ID = ' . $id);
301
        while ($row = mysql_fetch_array($result))
302
        {
303
            $user = new User;
304
            $user->ID = $row['ID'];
305
            $user->accessID = $row['AccessID'];
306
            $user->username = $row['Username'];
307
            $user->password = $row['Password'];
308
            $user->emailAddress = $row['EmailAddress'];
309
            $user->name = $row['Name'];
310
            $user->challengeID = $row['ChallengeID'];
311
 
312
            return $user;
313
        }
314
 
315
        return false;
316
    }
317
 
318
    function getUserByUsername($username)
319
    {
320
        $result = $this->query('SELECT * FROM Users WHERE Username = "' . $username . '"');
321
        while ($row = mysql_fetch_array($result))
322
        {
323
            return $this->getUserByID($row['ID']);
324
        }
325
 
326
        return false;
327
    }
328
 
329
    function getLoggedInUser()
330
    {
331
        if ($this->isLoggedIn())
332
        {
333
            $clist = explode('|~|', $_COOKIE['Tim32_Login']);
334
            return $this->getUserByUsername($clist[0]);
335
        }
336
 
337
        return false;
338
    }
339
 
340
    function getBlogPost($id)
341
    {
342
        $result = $this->query('SELECT * FROM BlogPosts WHERE ID = ' . $id);
343
        while ($row = mysql_fetch_array($result))
344
        {
345
            $post = new BlogPost;
346
            $post->ID = $row['ID'];
347
            if ($row['ParentID'] == -1)
348
            {
349
                $post->parent = -1;
350
            }
351
            else
352
            {
353
                $post->parent = $this->getBlogPost($row['ParentID']);
354
            }
104 tom 355
            $post->author = $this->getUserByID($row['AuthorID']);
105 tom 356
            $post->user = $this->getUserByID($row['AuthorID']); // For some older pages
33 freddie 357
            $post->title = $row['Title'];
137 tom 358
            $post->content = $this->replaceBBCode($row['Content']);
33 freddie 359
            $post->datePosted = strtotime($row['DatePosted']);
360
            $post->category = $row['Category'];
361
            $post->spam = $row['Spam'];
362
 
363
            return $post;
364
        }
365
 
366
        $this->drawError('Cannot find blog post, #' . $id);
367
    }
368
 
113 freddie 369
    function delBlogPost($id)
370
    {
371
        $ids = $this->findIDs('BlogPosts', 'WHERE ParentID=' . $id);
372
        for ($i = 0; $i < count($ids); $i++)
373
            $this->delBlogPost($ids[$i]);
374
 
375
        $this->query('delete from BlogPosts where ID=' . $id);
376
    }
377
 
33 freddie 378
    function getGetID()
379
    {
380
        $id = $_GET['id'];
381
        if (empty($id))
382
        {
383
            $id = 1;
384
        }
385
 
386
        return $id;
387
    }
388
 
389
    function getPostID()
390
    {
41 freddie 391
        $id = $_POST['id'];
33 freddie 392
        if (empty($id))
393
        {
394
            $id = 1;
395
        }
396
 
397
        return $id;
398
    }
399
 
400
}
401
 
402
class User
403
{
404
    public $ID;
405
    public $accessID;
406
    public $username;
407
    public $password;
408
    public $emailAddress;
409
    public $name;
410
    public $challengeID;
411
}
412
 
413
class BlogPost
414
{
415
    public $ID;
416
    public $parent;
417
    public $author;
418
    public $title;
419
    public $content;
420
    public $datePosted;
421
    public $category;
422
    public $spam;
423
}
424
 
425
function write($str)
426
{
427
    echo $str;
428
    echo "\n";
429
}
430
 
431
?>