Subversion Repositories taios

Rev

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

Rev Author Line No. Line
297 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('Administration', 'admin/');
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
    {
70
        write('<p><a href="' . $this->url . $u . '">' . $t . '</a></p>');
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
 
98
        die();
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, $first = false)
116
    {
117
        $post = $this->getBlogPost($id);
118
        if ($first)
119
        {
120
            write('<h3><a href="post.php?id=' . $id . '">' . $post->title. '</a> <a href="post.php?id=' . $post->parent->ID . '">^</a></h3>');
121
        }
122
        else
123
        {
124
            write('<a href="post.php?id=' . $id . '"><h3>' . $post->title. '</h3></a>');
125
        }
126
        write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $post->datePosted) . ' by ' . $post->user->name . ' (' . $post->user->username . ')</h5>');
127
        write('<p>' . $this->replaceBBCode($post->content) . '</p>');
128
 
129
        if ($this->isUserNormal($this->getLoggedInUser()))
130
        {
131
            echo '<p class="bold"><a href="add-post.php?id=' . $id . '">Add Comment</a>';
132
            if ($this->isUserAdmin($this->getLoggedInUser()) || $this->getLoggedInUser()->ID == $post->author->ID)
133
            {
134
                echo ' &nbsp; &middot &nbsp; <a href="edit-post.php?id=' . $id . '">Edit Post</a>';
135
                echo ' &nbsp; &middot &nbsp; <a href="del-post.php?id=' . $id . '">Delete Post</a>';
136
            }
137
            write('</p><br />');
138
        }
139
 
140
        $ids = $this->findIDs('BlogPosts', 'WHERE ParentID=' . $id);
141
        for ($i = 0; $i < count($ids); $i++)
142
        {
143
            write('<div class="indent">');
144
            $this->drawBlogPostTree($ids[$i]);
145
            write('</div>');
146
        }
147
    }
148
 
149
    function drawBlogCategoriesMenu()
150
    {
151
        $cats = array();
152
 
153
        $ids = $this->findIDs('BlogPosts', 'WHERE ParentID = -1');
154
        for ($i = 0; $i < count($ids); $i++)
155
        {
156
            $cat = $this->getBlogPost($ids[$i])->category;
157
            if (!in_array($cat, $cats))
158
            {
159
                array_push($cats, $cat);
160
            }
161
        }
162
 
163
        write('<h3>Categories</h3>');
164
        for ($i = 0; $i < count($cats); $i++)
165
        {
166
            $this->drawMenuItem($cats[$i], 'blog/index.php?cat=' . $cats[$i]);
167
        }
168
    }
169
 
170
    function replaceBBCode($str)
171
    {
308 tom 172
        $newstr = str_replace("<", "[", $str);
173
        $newstr = str_replace(">", "]", $newstr);
332 tom 174
        $newstr = str_replace("\n", '</p><p>', $newstr);
362 tom 175
        $newstr = str_replace("\\'", "'", $newstr);
176
        $newstr = str_replace("\\\"",'"', $newstr);
297 freddie 177
        $newstr = str_replace('  ', '&nbsp;&nbsp;', $newstr);
178
        $newstr = str_replace(' :)', ' <img src="' . $this->url . 'data/smilies/face-smile.png" class="smiley" />', $newstr);
179
        $newstr = str_replace(' :p', ' <img src="' . $this->url . 'data/smilies/face-raspberry.png" class="smiley" />', $newstr);
180
        $newstr = str_replace(' :P', ' <img src="' . $this->url . 'data/smilies/face-raspberry.png" class="smiley" />',$newstr);
181
        $newstr = str_replace(' :|', ' <img src="' . $this->url . 'data/smilies/face-plain.png" class="smiley" />',$newstr);
182
        $newstr = str_replace(' :D', ' <img src="' . $this->url . 'data/smilies/face-laugh.png" class="smiley" />',$newstr);
183
        $newstr = str_replace(' =D', ' <img src="' . $this->url . 'data/smilies/face-laugh.png" class="smiley" />',$newstr);
184
        $newstr = str_replace(' :(', ' <img src="' . $this->url . 'data/smilies/face-sad.png" class="smiley" />',$newstr);
185
        $newstr = str_replace(' :0', ' <img src="' . $this->url . 'data/smilies/face-surprise.png" class="smiley" />',$newstr);
186
        $newstr = str_replace(' :o', ' <img src="' . $this->url . 'data/smilies/face-surprise.png" class="smiley" />',$newstr);
187
        $newstr = str_replace(' :O', ' <img src="' . $this->url . 'data/smilies/face-surprise.png" class="smiley" />',$newstr);
188
        $newstr = str_replace(' :/', ' <img src="' . $this->url . 'data/smilies/face-uncertain.png" class="smiley" />',$newstr);
189
        $newstr = str_replace(' ;)', ' <img src="' . $this->url . 'data/smilies/face-wink.png" class="smiley" />',$newstr);
190
 
191
        $bbcode = array(
192
        '/\[b\](.+?)\[\/b\]/is',
193
        '/\[i\](.+?)\[\/i\]/is',
194
        '/\[u\](.+?)\[\/u\]/is',
195
        '/\[url\](.+?)\[\/url\]/is',
360 tom 196
        '/\[url=(.+?)\](.+?)\[\/url\]/is',
297 freddie 197
        '/\[code\](.+?)\[\/code\]/is',
198
        '/\[img\](.+?)\[\/img\]/is'
199
        );
200
 
201
        $html = array(
202
        '<b>$1</b>',
203
        '<i>$1</i>',
204
        '<u>$1</u>',
205
        '<a href="$1">$1</a>',
360 tom 206
        '<a href="$1">$2</a>',
297 freddie 207
        '<div class="code">$1</div>',
208
        '<img src="$1" />'
209
        );
210
 
211
        $newstr = preg_replace($bbcode, $html, $newstr);
212
 
213
        return $newstr;
214
    }
215
 
216
    function redirect($u)
217
    {
218
        header('Location: ' . $u);
219
        die();
220
    }
221
 
222
    function isLoggedIn()
223
    {
224
        $cookie = $_COOKIE['Tim32_Login'];
225
        if (!empty($cookie))
226
        {
227
            $clist = explode('|~|', $cookie);
228
            $user = $this->getUserByUsername($clist[0]);
229
            if ($user)
230
            {
231
                if ($user->password == $clist[1])
232
                {
233
                    return true;
234
                }
235
            }
236
        }
237
 
238
        return false;
239
    }
240
 
241
    function isUserAdmin()
242
    {
243
        if ($this->isLoggedIn())
244
        {
245
            if ($this->getLoggedInUser()->accessID <= 0)
246
            {
247
                return true;
248
            }
249
        }
250
 
251
        return false;
252
    }
253
 
254
    function isUserGM()
255
    {
256
        if ($this->isLoggedIn())
257
        {
258
            if ($this->getLoggedInUser()->accessID <= 1)
259
            {
260
                return true;
261
            }
262
        }
263
 
264
        return false;
265
    }
266
 
267
    function isUserNormal()
268
    {
269
        if ($this->isLoggedIn())
270
        {
271
            if ($this->getLoggedInUser()->accessID <= 2)
272
            {
273
                return true;
274
            }
275
        }
276
 
277
        return false;
278
    }
279
 
280
    function checkLoggedIn()
281
    {
282
        if (!$this->isLoggedIn())
283
        {
284
            $this->drawError('You need to be logged in.');
285
        }
286
    }
287
 
288
    function query($query)
289
    {
290
        $result = mysql_query($query);
291
        if (!$result)
292
        {
293
            $this->drawError('Query Failed: ' . $query . "\n" . 'MySQL Error: ' . mysql_error());
294
        }
295
 
296
        return $result;
297
    }
298
 
299
    function findIDs($table, $query = '')
300
    {
301
        $array = array();
302
 
303
        $result = $this->query('SELECT ID FROM ' . $table . ' ' . $query);
304
        while ($row = mysql_fetch_array($result))
305
        {
306
            array_push($array, $row['ID']);
307
        }
308
 
309
        return $array;
310
    }
311
 
312
    function getUserByID($id)
313
    {
314
        $result = $this->query('SELECT * FROM Users WHERE ID = ' . $id);
315
        while ($row = mysql_fetch_array($result))
316
        {
317
            $user = new User;
318
            $user->ID = $row['ID'];
319
            $user->accessID = $row['AccessID'];
320
            $user->username = $row['Username'];
321
            $user->password = $row['Password'];
322
            $user->emailAddress = $row['EmailAddress'];
323
            $user->name = $row['Name'];
324
            $user->challengeID = $row['ChallengeID'];
325
 
326
            return $user;
327
        }
328
 
329
        return false;
330
    }
331
 
332
    function getUserByUsername($username)
333
    {
334
        $result = $this->query('SELECT * FROM Users WHERE Username = "' . $username . '"');
335
        while ($row = mysql_fetch_array($result))
336
        {
337
            return $this->getUserByID($row['ID']);
338
        }
339
 
340
        return false;
341
    }
342
 
343
    function getLoggedInUser()
344
    {
345
        if ($this->isLoggedIn())
346
        {
347
            $clist = explode('|~|', $_COOKIE['Tim32_Login']);
348
            return $this->getUserByUsername($clist[0]);
349
        }
350
 
351
        return false;
352
    }
353
 
354
    function getBlogPost($id)
355
    {
356
        $result = $this->query('SELECT * FROM BlogPosts WHERE ID = ' . $id);
357
        while ($row = mysql_fetch_array($result))
358
        {
359
            $post = new BlogPost;
360
            $post->ID = $row['ID'];
361
            if ($row['ParentID'] == -1)
362
            {
363
                $post->parent = -1;
364
            }
365
            else
366
            {
367
                $post->parent = $this->getBlogPost($row['ParentID']);
368
            }
369
            $post->author = $this->getUserByID($row['AuthorID']);
370
            $post->user = $this->getUserByID($row['AuthorID']); // For some older pages
371
            $post->title = $row['Title'];
372
            $post->content = $row['Content'];
373
            $post->datePosted = strtotime($row['DatePosted']);
374
            $post->category = $row['Category'];
375
            $post->spam = $row['Spam'];
376
 
377
            return $post;
378
        }
379
 
380
        $this->drawError('Cannot find blog post, #' . $id);
381
    }
382
 
383
    function getProject($id)
384
    {
385
        $result = $this->query('SELECT * FROM Projects WHERE ID = ' . $id);
386
        while ($row = mysql_fetch_array($result))
387
        {
388
            $project = new Project;
389
 
390
            $project->ID = $row['ID'];  
391
            $project->author = $this->getUserByID($row['AuthorID']);
392
            $project->title = $row['Title'];
393
            $project->description = $row['Description'];
394
            $project->logoURL = $row['LogoURL'];
395
            $project->downloadURL = $row['DownloadURL'];
396
            $project->websiteURL = $row['WebsiteURL'];
397
            $project->latestVersion = $row['LatestVersion'];
398
            $project->lastUpdate = strtotime($row['LastUpdate']);          
399
 
400
            return $project;
401
        }
402
 
403
        return false;
404
    }
405
 
406
    function getForumCategory($id)
407
    {
408
        $result = $this->query('SELECT * FROM ForumCategories WHERE ID = ' . $id);
409
        while ($row = mysql_fetch_array($result))
410
        {
411
            $f = new ForumCategory;
412
 
413
            $f->ID = $row['ID'];
414
            $f->parent = $this->getForumCategory($row['ParentID']);
415
            $f->title = $row['Title'];
416
            $f->description = $row['Description'];
417
 
418
            return $f;
419
        }
420
 
421
        return false;
422
    }
423
 
424
    function getForumPost($id)
425
    {
426
        $result = $this->query('SELECT * FROM ForumPosts WHERE ID = ' . $id);
427
        while ($row = mysql_fetch_array($result))
428
        {
429
            $f = new ForumPost;
430
 
431
            $f->ID = $row['ID'];
432
            $f->author = $this->getUserByID($row['AuthorID']);
433
            $f->category = $this->getForumCategory($row['CategoryID']);
434
            $f->parent = $this->getForumPost($row['ParentID']);
435
            $f->title = $row['Title'];
436
            $f->content = $row['Content'];
437
            $f->datePosted = strtotime($row['DatePosted']);
438
            $f->spam = $row['Spam'];
439
 
440
            return $f;
441
        }
442
 
443
        return false;
444
    }
445
 
446
    function delBlogPost($id)
447
    {
448
        $ids = $this->findIDs('BlogPosts', 'WHERE ParentID=' . $id);
449
        for ($i = 0; $i < count($ids); $i++)
450
        {
451
            $this->delBlogPost($ids[$i]);
452
        }
453
 
454
        $this->query('DELETE FROM BlogPosts WHERE ID=' . $id);
455
    }
456
 
457
    function getGetID()
458
    {
459
        $id = $_GET['id'];
460
        if (empty($id))
461
        {
462
            $id = 1;
463
        }
464
 
465
        return $id;
466
    }
467
 
468
    function getPostID()
469
    {
470
        $id = $_POST['id'];
471
        if (empty($id))
472
        {
473
            $id = 1;
474
        }
475
 
476
        return $id;
477
    }
478
 
479
}
480
 
481
class User
482
{
483
    public $ID;
484
    public $accessID;
485
    public $username;
486
    public $password;
487
    public $emailAddress;
488
    public $name;
489
    public $challengeID;
490
}
491
 
492
class BlogPost
493
{
494
    public $ID;
495
    public $parent;
496
    public $author;
497
    public $title;
498
    public $content;
499
    public $datePosted;
500
    public $category;
501
    public $spam;
502
}
503
 
504
class Project
505
{
506
    public $ID;
507
    public $author;
508
    public $title;
509
    public $description;
510
    public $logoURL;
511
    public $downloadURL;
512
    public $websiteURL;
513
    public $latestVersion;
514
    public $lastUpdate;
515
}
516
 
517
class ForumCategory
518
{
519
    public $ID;
520
    public $parent;
521
    public $title;
522
    public $description;
523
}
524
 
525
class ForumPost
526
{
527
    public $id;
528
    public $author;
529
    public $category;
530
    public $parent;
531
    public $title;
532
    public $content;
533
    public $datePosted;
534
    public $spam;
535
}
536
 
537
function write($str)
538
{
539
    echo $str;
540
    echo "\n";
541
}
542
 
543
?>