Added canonical URL's on /page/'s
[dylansserver.git] / index.php
1 <?php
2
3 abstract class cms {
4
5 private $config_file = '/etc/dylanstestserver.ini';
6 protected $db;
7 protected $recaptcha_publickey;
8 protected $recaptcha_privatekey;
9 public $title;
10 public $home_link;
11
12 public function __construct() {
13 $config = parse_ini_file($this->config_file, true);
14 $this->db = new mysqli(
15 $config[database]['domain'],
16 $config[database]['user'],
17 $config[database]['password'],
18 $config[database]['database']);
19 if (mysqli_connect_errno()) {
20 echo "Problem connecting to database: ";
21 echo mysqli_connect_error();
22 exit();
23 }
24 $this->recaptcha_publickey = $config['recaptcha']['publickey'];
25 $this->recaptcha_privatekey = $config['recaptcha']['privatekey'];
26 $this->title = $config['site']['default_title'];
27 $this->home_link = $config['site']['home_link'];
28 ob_start();
29 }
30
31 public static function determine_type() {
32 if (isset($_GET['page']) && is_numeric($_GET['page'])) {
33 return 'page';
34 } else if (isset($_GET['year'])) {
35 return 'archive';
36 } else if (isset($_GET['note'])) {
37 return 'note';
38 } else if ($_SERVER['REQUEST_URI'] == '/') {
39 return 'index';
40 } else if (isset($_GET['project'])) {
41 return 'project';
42 } else if (isset($_GET['challenge'])) {
43 return 'captcha';
44 }
45 }
46
47 public function query() {
48 $args = func_get_args();
49 $statement = $this->db->prepare($args[0]);
50 $args = array_slice($args, 1);
51 call_user_func_array(array($statement, 'bind_param'), &$args);
52 $statement->execute();
53 $return = array();
54 $statement->store_result();
55 $row = array();
56 $data = $statement->result_metadata();
57 $fields = array();
58 $fields[0] = &$statement;
59 while($field = $data->fetch_field()) {
60 $fields[] = &$row[$field->name];
61 }
62 call_user_func_array("mysqli_stmt_bind_result", $fields);
63 $i = 0;
64 while ($statement->fetch()) {
65 foreach ($row as $key=>$value) $return[$i][$key] = $value;
66 $i++;
67 }
68 $statement->free_result();
69 return $return;
70 }
71
72 public function display_head($title = "dylanstestserver",
73 $home_link = "/") {
74 $scripts = "";
75 $stylesheets = "<link href='/includes/style.css' rel='stylesheet' type='text/css'>";
76 if (cms::determine_type() == "index") {
77 $scripts = "<script type='text/javascript' src='/includes/all.js'></script>";
78 $home_link = "http://validator.w3.org/unicorn/check?ucn_uri=dylanstestserver.com&amp;ucn_task=conformance#";
79 } else if ($this->determine_type() == 'note') {
80 $scripts = "<script type='text/javascript' src='http://www.google.com/recaptcha/api/js/recaptcha_ajax.js'></script>";
81 $scripts .= "<script type='text/javascript' src='/includes/jquery-core.js'></script>";
82 $scripts .= "<script type='text/javascript' src='/includes/jquery-all-components.js'></script>";
83 $scripts .= "<script type='text/javascript' src='/includes/ajax.js'></script>";
84 }
85 echo <<<END_OF_HEAD
86 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
87 "http://www.w3.org/TR/html4/loose.dtd">
88
89 <html>
90 <head>
91 <meta name="generator" content=
92 "HTML Tidy for Linux (vers 25 March 2009), see www.w3.org">
93 <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
94
95 <title>$this->title</title>
96 <link rel="icon" href="favicon.ico" type="image/png">
97 $stylesheets
98 $scripts
99 </head>
100
101 <body>
102 <div id="structure">
103 <div id="banner">
104 <a href="$this->home_link">
105 <img src="/images/dylanstestserver.png" alt="dylanstestserver"
106 border="0"></a>
107 </div>
108
109 <div id="content">
110 END_OF_HEAD;
111 }
112
113 public function display_contact() {
114 echo <<<END_OF_CONTACT
115 <div id="contact_me"><h1><a href=
116 "mailto:dylan@psu.edu">dylan</a></h1><a href=
117 "mailto:dylan@psu.edu">@psu.edu</a>
118 </div>
119 END_OF_CONTACT;
120 }
121
122 public function display_close($show_contact = true) {
123 if ($show_contact) {
124 $this->display_contact();
125 }
126 echo <<<END_OF_CLOSE
127 </div>
128 <br>
129 <br>
130 </div>
131 </body>
132 </html>
133 END_OF_CLOSE;
134 ob_flush();
135 }
136
137 }
138
139
140 class index extends cms {
141
142 public function display() {
143 $this->display_head();
144 $this->display_exhibits();
145 echo "<ul id='portfolio' style='text-align:right'>";
146 $this->list_projects();
147 echo <<<OTHER_PROJECTS
148 <h3>things i've done for others:</h3>
149 </li>
150
151 <li><a href=
152 "http://activehamptons.com">activehamptons.com</a></li>
153
154 <li><a href=
155 "http://transfishing.com">transfishing.com</a></li>
156
157 <li>
158 <h3>something i've worked on:</h3>
159 </li>
160
161 <li><a href=
162 "http://tempositions.com">tempositions.com</a></li>
163
164 <li>
165 <h3>my repositories:</h3>
166 </li>
167
168 <li><a href=
169 "git">git://dylanstestserver.com</a></li>
170
171 <li>
172 <h3>some notes:</h3>
173 </li>
174
175 <li><a href=
176 "/notes/">here</a></li>
177
178 <li>
179 </li>
180 OTHER_PROJECTS;
181 // Because of the CSS necessary for the animations,
182 // the contact link needs to be in #portfolio to clear
183 // the floats.
184 echo "<li>";
185 $this->display_contact();
186 echo "</li>";
187 echo "</ul>";
188 $this->display_close($show_contact = false);
189 }
190
191 protected function display_exhibits() {
192 echo "<div id='exhibit'>";
193 $sql = "SELECT text FROM projects";
194 $result = $this->db->query($sql);
195 while ($entry = $result->fetch_object()) {
196 echo $entry->text;
197 }
198 echo "</div>";
199 }
200
201 private function list_projects() {
202 echo <<<HEREDOC
203 <li>
204 <h3>my projects:</h3>
205 </li>
206 HEREDOC;
207 $sql = "SELECT title FROM projects";
208 $result = $this->db->query($sql);
209 while ($entry = $result->fetch_object()) {
210 echo "<li><a class='tab' href='$entry->title'>$entry->title</a></li>";
211 }
212 }
213
214 }
215
216
217 class project extends index {
218
219 protected function display_exhibits() {
220 echo "<div id='exhibit'>";
221 $sql = "SELECT text FROM projects
222 WHERE title = ?";
223 $result = $this->query($sql, "s", $_GET['project']);
224 if ($result = $result[0]['text']) {
225 $text = str_replace("class='exhibit'", "class='exhibit' style='display:block;'", $result);
226 echo $text;
227 echo "</div>";
228 } else {
229 throw new notFound();
230 }
231 }
232
233 }
234
235
236 class page extends cms {
237
238 private $page = 1;
239 private $offset = 0;
240 private $notes_per_page = 4;
241 private $number_of_pages = 1;
242
243 public function __construct() {
244 parent::__construct();
245 $this->page_offset();
246 }
247
248 private function page_offset() {
249 $sql = "SELECT COUNT(*) FROM notes";
250 $result = $this->db->query($sql);
251 $result = $result->fetch_array();
252 $this->number_of_pages = ceil($result[0] / $this->notes_per_page);
253 if (isset($_GET['page']) && is_numeric($_GET['page'])) {
254 $this->page = (int) $_GET['page'];
255 } else {
256 throw new notFound();
257 }
258 if ($this->page > $this->number_of_pages) {
259 throw new notFound();
260 }
261 if ($this->page < 1) {
262 throw new notFound();
263 }
264 $this->offset = ($this->page - 1) * $this->notes_per_page;
265 }
266
267 public function display() {
268 $this->display_head();
269 echo "<div id='notes'>";
270 $sql = "SELECT date_posted, title, url, text
271 FROM notes ORDER BY date_posted DESC
272 LIMIT ?, ?";
273 $result = $this->query($sql, "ii",
274 $this->offset,
275 $this->notes_per_page);
276 foreach ($result as $row => $entry) {
277 $title = $entry['title'];
278 $url = '/note/' . $entry['url'];
279 $date_posted = explode("-", $entry['date_posted']);
280 $year_posted = $date_posted[0];
281 $month_posted = $date_posted[1];
282 $datetime_posted = explode(' ', $date_posted[2]);
283 $day_posted = $datetime_posted[0];
284 $text = $entry['text'];
285 echo <<<END_NOTE
286 <div class='note'>
287 <h1>
288 <span class='date'>
289 $year_posted/$month_posted/$day_posted/
290 </span><a rel="canonical" href='$url'>$title</a>
291 </h1>
292 $text
293 </div>
294 END_NOTE;
295 }
296 echo "</div>";
297 $this->write_navigation();
298 $this->display_close();
299 }
300
301 private function write_navigation() {
302 echo "<div id='navigation'>";
303 echo "<h1>";
304 if($this->page > 1){
305 $previous_page = $this->page - 1;
306 echo "<a href='/notes/page/$previous_page'>prev</a>";
307 }
308 if($this->page < $this->number_of_pages) {
309 $forward_page = $this->page + 1;
310 echo " <a href='/notes/page/$forward_page'>next</a>";
311 }
312 echo "</h1>";
313 echo "</div>";
314 }
315
316 }
317
318
319 class note extends cms {
320
321 private $id;
322 private $comments_enabled = false;
323 private $failed_captcha;
324 public $url;
325 public $title;
326 public $year_posted;
327 public $month_posted;
328 public $day_posted;
329 public $text;
330 public $number_of_comments;
331
332 public function __construct() {
333 parent::__construct();
334 if (isset($_GET['comments'])) {
335 $this->comments_enabled = true;
336 }
337 $url = htmlspecialchars($_SERVER['REQUEST_URI']);
338 if (isset($_GET['verify'])) {
339 $url = substr($url, 0, (strlen($url)-6));
340 }
341 $this->url = $url;
342 $sql = "SELECT title, date_posted, text, id
343 FROM notes WHERE url = ?";
344 $result = $this->query($sql, "s",
345 $_GET['note']);
346 if ($result) {
347 $entry = $result[0];
348 $this->id = $entry["id"];
349 $this->title = $entry["title"];
350 $date_posted = explode("-", $entry["date_posted"]);
351 $this->year_posted = $date_posted[0];
352 $this->month_posted = $date_posted[1];
353 $datetime_posted = explode(' ', $date_posted[2]);
354 $this->day_posted = $datetime_posted[0];
355 $this->text = $entry["text"];
356 } else {
357 throw new notFound();
358 }
359 $sql = "SELECT COUNT(*) FROM comments
360 WHERE note = $this->id";
361 $result = $this->db->query($sql);
362 $result = $result->fetch_array();
363 $this->number_of_comments = $result[0];
364 if (isset($_GET['verify'])) {
365 $this->verify();
366 }
367 }
368
369 public function display() {
370 $this->display_head();
371 $this->display_note();
372 if ($this->comments_enabled) {
373 $this->display_comments();
374 $this->display_comment_form();
375 }
376 $this->write_navigation();
377 $this->display_close();
378 }
379
380 private function verify() {
381 if (!isset($_POST['captcha'])) {
382 require_once('includes/recaptchalib.php');
383 echo "<br>";
384 $resp = recaptcha_check_answer ($this->recaptcha_privatekey,
385 $_SERVER["REMOTE_ADDR"],
386 $_POST["recaptcha_challenge_field"],
387 $_POST["recaptcha_response_field"]);
388 if (!$resp->is_valid) {
389 $this->failed_captcha = true;
390 }
391 }
392 if (isset($_POST['captcha']) || $resp->is_valid) {
393 $sql = ("INSERT INTO comments (date_posted, author,
394 text, note)
395 VALUES(NOW(), ?, ?, ?)");
396 $stmt = $this->db->prepare($sql);
397 // Checks are needed here (no blank text,
398 // and a default author needs to be set
399 // for no-javascript users.
400 $stmt->bind_param('sss',
401 htmlspecialchars($_POST['name']),
402 htmlspecialchars($_POST['text']),
403 $this->id);
404 $stmt->execute();
405 }
406 }
407
408 private function display_note() {
409 echo <<<END_OF_NOTE
410 <div id='note'>
411 <h1><span class='date'>$this->year_posted/$this->month_posted/$this->day_posted/</span>$this->title</h1>
412 $this->text
413 </div>
414 END_OF_NOTE;
415 }
416
417 private function write_navigation() {
418 echo <<<END_OF_NAVIGATION
419 <br>
420 <div id='navigation'>
421 <h1>
422 END_OF_NAVIGATION;
423 if (!$this->comments_enabled) {
424 $this->display_comment_link();
425 }
426 echo <<<END_OF_NAVIGATION
427 <a href="/notes/">back to notes</a>/
428 </h1>
429 </div>
430 END_OF_NAVIGATION;
431 }
432
433 private function display_comment_link() {
434 if ($this->number_of_comments > 0) {
435 $anchor_text = "comments($this->number_of_comments)/";
436 } else {
437 $anchor_text = "comment?";
438 }
439 if (substr($this->url, (strlen($this->url)-1), strlen($this->url)) == '/') {
440 $url = $this->url . 'comments/';
441 } else {
442 $url = $this->url . '/comments/';
443 }
444 echo "<a id='comment_link' href='$url'>$anchor_text</a>";
445 }
446
447 private function display_comments() {
448 echo "<div id='comments'>";
449 $sql= "SELECT date_posted, author, text
450 FROM comments WHERE note = ?
451 ORDER BY date_posted DESC";
452 $result = $this->query($sql, 'd', $this->id);
453 foreach ($result as $row => $entry) {
454 $date_posted = $entry['date_posted'];
455 $author = $entry['author'];
456 $text = htmlspecialchars($entry['text']);
457 $head = "<h3>$author</h3>";
458 echo <<<END_OF_COMMENT
459 <div class='comment'>
460 $head
461 $text
462 </div>
463 END_OF_COMMENT;
464 }
465 echo "</div>";
466 }
467
468 private function display_comment_form() {
469 $publickey = $this->recaptcha_publickey;
470 echo <<<END_CAPTCHA_STYLE
471 <script type="text/javascript">
472 Recaptcha.create("$publickey",
473 "recaptcha_div",
474 {
475 theme : 'custom',
476 custom_theme_widget: 'recaptcha_widget',
477 callback: Recaptcha.focus_response_field
478 });
479 </script>
480 END_CAPTCHA_STYLE;
481 require_once('includes/recaptchalib.php');
482 $url = $this->url . "verify";
483 echo "<form id='comment_form' method='post' action='$url'>";
484 echo <<<END_OF_FORM
485 <div id="comment">
486 <h3>comment:</h3>
487 <textarea rows="10" cols="70" name="text" id="comment_text"></textarea>
488 <h3>name:</h3>
489 <input type=text name="name" id="comment_name">
490
491 <nowiki>
492 <div id="recaptcha_widget">
493 <h3 class="recaptcha_only_if_image"><b>what's this say</b>?</h3>
494 <h3 class="recaptcha_only_if_audio"><b>enter the numbers you hear</b>:</h3>
495 <span style="font-size:80%;">
496 ( <a href="javascript:Recaptcha.reload()">another</a> /
497 <span class="recaptcha_only_if_image"><a href="javascript:Recaptcha.switch_type('audio')">audio</a></span> /
498 <span class="recaptcha_only_if_audio"><a href="javascript:Recaptcha.switch_type('image')">image</a></span><a href="javascript:Recaptcha.showhelp()">help</a> )
499 </span>
500 <br><br>
501 <input type="text" id="recaptcha_response_field" name="recaptcha_response_field" />
502 <br><br>
503 <div style="float:right;position:relative;width:100px;">
504 <div id="recaptcha_image"></div>
505 </div>
506 <br><br><br><br>
507 </div>
508 END_OF_FORM;
509 echo recaptcha_get_html($this->recaptcha_publickey);
510 if ($this->failed_captcha) {
511 echo <<<END_OF_ERRORS
512 <div id="not_human">
513 reCAPTCHA said you're not human, <br>
514 try again?
515 </div>
516 <input id="submit" class="submit" type="submit" value="post comment">
517 </form>
518 </div>
519 END_OF_ERRORS;
520 } else {
521 echo <<<END_OF_ERRORS
522 <div id="not_human">
523 reCAPTCHA said you're not human, <br>
524 try again?
525 </div>
526 <div id="blank_comment">
527 but you didn't write anything! <br>
528 </div>
529 END_OF_ERRORS;
530 }
531 echo <<<END_OF_FORM
532 <input id="submit" class="submit" type="submit" value="post comment">
533 </form>
534 </div>
535 END_OF_FORM;
536 }
537 }
538
539
540 class archive extends cms {
541
542 public function __construct() {
543 parent::__construct();
544 }
545
546 private function check_exists() {
547 $sql = "SELECT COUNT(*) FROM notes
548 WHERE url = ?";
549 $results = $this->query($sql, "s", $_GET['note']);
550 if ($results[0]["COUNT(*)"] != 1) {
551 $this->not_found();
552 }
553 }
554
555 public function display() {
556 $this->display_head();
557 switch (true) {
558 case (isset($_GET['year']) && !isset($_GET['month'])
559 && !isset($_GET['day'])):
560 $sql = "SELECT title, url, date_posted, text
561 FROM notes WHERE YEAR(date_posted) = ?
562 ORDER BY date_posted DESC";
563 $result = $this->query($sql, "d",
564 $_GET['year']);
565 break;
566 case (isset($_GET['year']) && isset($_GET['month'])
567 && !isset($_GET['day'])):
568 $sql = "SELECT title, url, date_posted, text
569 FROM notes WHERE YEAR(date_posted) = ?
570 AND MONTH(date_posted) = ?
571 ORDER BY date_posted DESC";
572 $result = $this->query($sql, "dd",
573 $_GET['year'], $_GET['month']);
574 break;
575 case (isset($_GET['year']) && isset($_GET['month'])
576 && isset($_GET['day'])):
577 $sql = "SELECT title, url, date_posted, text
578 FROM notes WHERE YEAR(date_posted) = ?
579 AND MONTH(date_posted) = ?
580 AND DAY(date_posted) = ?
581 ORDER BY date_posted DESC";
582 $result = $this->query($sql, "ddd",
583 $_GET['year'], $_GET['month'],
584 $_GET['day']);
585 break;
586 }
587 if (count($result) >= 1) {
588 echo "<div id='notes'>";
589 foreach ($result as $row => $entry) {
590 $title = $entry['title'];
591 $url = '/note/' . $entry['url'];
592 $date_posted = explode("-", $entry['date_posted']);
593 $year_posted = $date_posted[0];
594 $month_posted = $date_posted[1];
595 $datetime_posted = explode(' ', $date_posted[2]);
596 $day_posted = $datetime_posted[0];
597 echo "<div class='note'>";
598 echo "<h1><span class='date'>";
599 echo "$year_posted/$month_posted/$day_posted/";
600 echo "</span><a href='$url'>$title</a></h1>";
601 echo $entry['text'];
602 echo "</div>";
603 }
604 echo "</div>";
605 $this->write_navigation();
606 } else {
607 echo "<br>";
608 echo "<h1>sorry, nothing here</h2>";
609 echo "<pre>Empty set (0.00 sec)</pre>";
610 }
611 $this->display_close();
612 }
613
614 private function write_navigation() {
615 echo "<br>";
616 echo "<div id='navigation'>";
617 // fill me in!
618 echo "</div>";
619 }
620
621 }
622
623
624 class notFound extends Exception {
625
626 public function __construct() {
627 header('HTTP/1.0 404 Not Found');
628 ob_end_clean();
629 include('404.php');
630 exit();
631 }
632
633 }
634
635
636 class captcha extends cms {
637
638 public function display() {
639 $challenge = $_GET['challenge'];
640 $response = $_GET['response'];
641 $remoteip = $_SERVER['REMOTE_ADDR'];
642 $curl = curl_init('http://api-verify.recaptcha.net/verify?');
643 curl_setopt ($curl, CURLOPT_POST, 4);
644 curl_setopt ($curl, CURLOPT_POSTFIELDS, "privatekey=$this->recaptcha_privatekey&remoteip=$remoteip&challenge=$challenge&response=$response");
645 $result = curl_exec ($curl);
646 curl_close ($curl);
647 }
648
649 }
650
651
652 ## now actually do something:
653 switch (cms::determine_type()) {
654 case 'index':
655 $index = new index();
656 $index->display();
657 break;
658 case 'project':
659 $project = new project();
660 $project->display();
661 break;
662 case 'note':
663 $note = new note;
664 $note->display();
665 break;
666 case 'page':
667 $page = new page;
668 $page->display();
669 break;
670 case 'archive':
671 $archive = new archive;
672 $archive->display();
673 break;
674 case "captcha":
675 $captcha = new captcha;
676 $captcha->display();
677 break;
678 }
679
680 ?>