Browse Source

first commit

pull/40/head
Savetheinternet 14 years ago
commit
3d92990b18
  1. BIN
      img/fade-blue.png
  2. 74
      inc/config.php
  3. 121
      inc/display.php
  4. 362
      inc/functions.php
  5. 182
      inc/template.php
  6. 16
      inc/user.php
  7. 193
      index.php
  8. 65
      main.js
  9. 170
      style.css
  10. 74
      templates/index.html
  11. 14
      templates/page.html
  12. 73
      templates/thread.html

BIN
img/fade-blue.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 172 B

74
inc/config.php

@ -0,0 +1,74 @@
<?php
// Database stuff
define('MY_SERVER', 'localhost');
define('MY_USER', '');
define('MY_PASSWORD', '');
define('MY_DATABASE', '');
// The name of the session cookie (PHP's $_SESSION)
define('SESS_COOKIE', 'imgboard');
// Used to safely determine when the user was first seen, to prevent floods.
// time()
define('TIME_COOKIE', 'arrived');
// HASH_COOKIE contains an MD5 hash of TIME_COOKIE+SALT for verification.
define('HASH_COOKIE', 'hash');
// How long should the cookies last (in seconds)
define('COOKIE_EXPIRE', 15778463); //6 months
define('SALT', 'wefaw98YHEWUFuo');
// How many seconds before you can post, after the first visit
define('LURKTIME', 30);
// Max body length
define('MAX_BODY', 1800);
define('THREADS_PER_PAGE', 10);
define('MAX_PAGES', 5);
define('THREADS_PREVIEW', 5);
// Error messages
define('ERROR_LURK', 'Lurk some more before posting.');
define('ERROR_BOT', 'You look like a bot.');
define('ERROR_TOOLONG', 'The %s field was too long.');
define('ERROR_TOOLONGBODY', 'The body was too long.');
define('ERROR_TOOSHORTBODY', 'The body was too short or empty.');
define('ERROR_NOIMAGE', 'You must upload an image.');
define('ERROR_NOMOVE', 'The server failed to handle your upload.');
define('ERROR_FILEEXT', 'Unsupported image format.');
define('ERR_INVALIDIMG','Invalid image.');
// For resizing, max values
define('THUMB_WIDTH', 200);
define('THUMB_HEIGHT', 200);
define('DIR_IMG', 'src/');
define('DIR_THUMB', 'thumb/');
define('DIR_RES', 'res/');
define('ROOT', '/');
define('POST_URL', ROOT . 'index.php');
define('FILE_INDEX', 'index.html');
define('FILE_PAGE', '%d.html');
// Automatically convert things like "..." to Unicode characters ("�")
define('AUTO_UNICODE', true);
// Allowed file extensions
$allowed_ext = Array('jpg', 'jpeg', 'bmp', 'gif', 'png');
define('BUTTON_NEWTOPIC', 'New Topic');
define('BUTTON_REPLY', 'New Reply');
define('ALWAYS_NOKO', false);
define('URL_MATCH', '/^' . (@$_SERVER['HTTPS']?'https':'http').':\/\/'.$_SERVER['HTTP_HOST'] . '(\/|\/' . preg_quote(FILE_INDEX, '/') . '|\/' . str_replace('%d', '\d+', preg_quote(FILE_PAGE, '/')) . ')$/');
if(!file_exists(DIR_IMG)) mkdir(DIR_IMG);
if(!file_exists(DIR_THUMB)) mkdir(DIR_THUMB);
if(!file_exists(DIR_RES)) mkdir(DIR_RES);
?>

121
inc/display.php

@ -0,0 +1,121 @@
<?php
/*
Shit to help with the display.
*/
/*
[email protected]
http://www.php.net/manual/en/function.filesize.php#100097
*/
function format_bytes($size) {
$units = array(' B', ' KB', ' MB', ' GB', ' TB');
for ($i = 0; $size >= 1024 && $i < 4; $i++) $size /= 1024;
return round($size, 2).$units[$i];
}
function error($message) {
die(Element('page.html', Array('index' => ROOT, 'title'=>'Error', 'subtitle'=>'An error has occured.', 'body'=>"<h1>$message</h1><p style=\"text-align:center;\"><a href=\"" . ROOT . FILE_INDEX . "\">Go back</a>.</p>")));
}
class Post {
public function __construct($id, $thread, $subject, $email, $name, $trip, $body, $time, $thumb, $thumbx, $thumby, $file, $filex, $filey, $filesize, $filename) {
$this->id = $id;
$this->thread = $thread;
$this->subject = $subject;
$this->email = $email;
$this->name = $name;
$this->trip = $trip;
$this->body = $body;
$this->time = $time;
$this->thumb = $thumb;
$this->thumbx = $thumbx;
$this->thumby = $thumby;
$this->file = $file;
$this->filex = $filex;
$this->filey = $filey;
$this->filesize = $filesize;
$this->filename = $filename;
}
public function build($index=false) {
$built = '
<div class="post reply"' . (!$index?' id="reply_' . $this->id . '"':'') . '>
<p class="intro"' . (!$index?' id="' . $this->id . '"':'') . '>
<span class="subject">
'.$this->subject.'
</span>
' . ( !empty($this->email) ? '<a class="email" href="mailto:' . $this->email . '">':'') .
'<span class="name">'
. $this->name .
'</span>' . (!empty($this->trip) ? ' <span class="trip">'.$this->trip.'</span>':'')
. ( !empty($this->email) ? '</a>':'')
. ' ' . date('m/d/y (D) H:i:s', $this->time).'
<a class="post_no"' . ($index?'':' onclick="highlightReply(' . $this->id . ');"') . ' href="' . ROOT . DIR_RES . $this->thread . '.html' . '#' . $this->id . '">No.</a><a class="post_no"' . ($index?'':'onclick="citeReply(' . $this->id . ');"') . 'href="' . ($index?ROOT . DIR_RES . $this->thread . '.html' . '#q' . $this->id:'javascript:void(0);') . '">'.$this->id.'</a>
</p>
'.(!empty($this->file)?'<p class="fileinfo">
File: <a href="' . ROOT . $this->file.'">'.basename($this->file).'</a> <span class="unimportant">('.format_bytes($this->filesize).', '.$this->filex.'x'.$this->filey.', '.$this->filename.')</span>
</p>
<a href="' . ROOT . $this->file.'"><img src="' . ROOT . $this->thumb.'" style="width:'.$this->thumbx.'px;height:'.$this->thumby.'px;" /></a>':'').'
<p class="body">
'.$this->body.'
</p>
</div><br class="clear"/>';
return $built;
}
};
class Thread {
public $omitted = 0;
public function __construct($id, $subject, $email, $name, $trip, $body, $time, $thumb, $thumbx, $thumby, $file, $filex, $filey, $filesize, $filename) {
$this->id = $id;
$this->subject = $subject;
$this->email = $email;
$this->name = $name;
$this->trip = $trip;
$this->body = $body;
$this->time = $time;
$this->thumb = $thumb;
$this->thumbx = $thumbx;
$this->thumby = $thumby;
$this->file = $file;
$this->filex = $filex;
$this->filey = $filey;
$this->filesize = $filesize;
$this->filename = $filename;
$this->omitted = 0;
$this->posts = Array();
}
public function add(Post $post) {
$this->posts[] = $post;
}
public function build($index=false) {
$built = '<p class="fileinfo">
File: <a href="' . ROOT . $this->file.'">'.basename($this->file).'</a> <span class="unimportant">('.format_bytes($this->filesize).', '.$this->filex.'x'.$this->filey.', '.$this->filename.')</span>
</p>
<a href="' . ROOT . $this->file.'"><img src="' . ROOT . $this->thumb.'" style="width:'.$this->thumbx.'px;height:'.$this->thumby.'px;" /></a>
<div class="post op">
<p class="intro">
<span class="subject">
'.$this->subject.'
</span>
' . ( !empty($this->email) ? '<a class="email" href="mailto:' . $this->email . '">':'') .
'<span class="name">'
. $this->name .
'</span>' . (!empty($this->trip) ? ' <span class="trip">'.$this->trip.'</span>':'')
. ( !empty($this->email) ? '</a>':'')
. ' ' . date('m/d/y (D) H:i:s', $this->time). '
<a class="post_no"' . ($index?'':' onclick="highlightReply(' . $this->id . ');"') . ' href="' . ROOT . DIR_RES . $this->id . '.html' . '#' . $this->id . '">No.</a><a class="post_no"' . ($index?'':'onclick="citeReply(' . $this->id . ');"') . 'href="' . ($index?ROOT . DIR_RES . $this->id . '.html' . '#q' . $this->id:'javascript:void(0);') . '">'.$this->id.'</a>' . ($index ? '<a href="' . ROOT . DIR_RES . $this->id . '.html">[Reply]</a>' : '') .
'</p>'
.$this->body.'
' . ($this->omitted ? '<span class="omitted">' . $this->omitted . ' post' . ($this->omitted==1?'':'s') . ' omitted. Click reply to view.</span>':'') . '
</div>';
foreach($this->posts as &$post) {
$built .= $post->build($index);
}
$built .= '<br class="clear"/><hr/>';
return $built;
}
};
?>

362
inc/functions.php

@ -0,0 +1,362 @@
<?php
function sql_open() {
global $sql;
$sql = @mysql_connect(MY_SERVER, MY_USER, MY_PASSWORD) or error('Database error.');
@mysql_select_db(MY_DATABASE, $sql) or error('Database error.');
}
function sql_close() {
global $sql;
@mysql_close($sql);
}
function mysql_safe_array(&$array) {
foreach($array as &$item) {
$item = mysql_real_escape_string($item);
}
}
function index($page) {
global $sql, $board;
$body = '';
$offset = round($page*THREADS_PER_PAGE-THREADS_PER_PAGE);
sql_open();
$query = mysql_query('SELECT * FROM `posts` WHERE `thread` IS NULL ORDER BY `bump` DESC LIMIT ' . $offset . ',' . THREADS_PER_PAGE, $sql) or error(mysql_error($sql));
if(mysql_num_rows($query) < 1 && $page > 1) return false;
while($th = mysql_fetch_array($query)) {
$thread = new Thread($th['id'], $th['subject'], $th['email'], $th['name'], $th['trip'], $th['body'], $th['time'], $th['thumb'], $th['thumbwidth'], $th['thumbheight'], $th['file'], $th['filewidth'], $th['fileheight'], $th['filesize'], $th['filename']);
$newposts = mysql_query(sprintf(
"SELECT `id`, `subject`, `email`, `name`, `trip`, `body`, `time`, `thumb`, `thumbwidth`, `thumbheight`, `file`, `filewidth`, `fileheight`, `filesize`, `filename` FROM `posts` WHERE `thread` = '%s' ORDER BY `time` DESC LIMIT %d",
$th['id'],
THREADS_PREVIEW
), $sql) or error(mysql_error($sql));
if(mysql_num_rows($newposts) == THREADS_PREVIEW) {
$count_query = mysql_query(sprintf(
"SELECT COUNT(`id`) as `num` FROM `posts` WHERE `thread` = '%s'",
$th['id']
), $sql) or error(mysql_error($sql));
$count = mysql_fetch_array($count_query);
$omitted = $count['num'] - THREADS_PREVIEW;
$thread->omitted = $omitted;
mysql_free_result($count_query);
unset($count);
unset($omitted);
}
while($po = mysql_fetch_array($newposts)) {
$thread->add(new Post($po['id'], $th['id'], $po['subject'], $po['email'], $po['name'], $po['trip'], $po['body'], $po['time'], $po['thumb'], $po['thumbwidth'], $po['thumbheight'], $po['file'], $po['filewidth'], $po['fileheight'], $po['filesize'], $po['filename']));
}
mysql_free_result($newposts);
$thread->posts = array_reverse($thread->posts);
$body .= $thread->build(true);
}
mysql_free_result($query);
return Array('button'=>BUTTON_NEWTOPIC, 'board'=>$board, 'body'=>$body, 'post_url' => POST_URL, 'index' => ROOT);
}
function buildIndex() {
global $sql;
sql_open();
$res = mysql_query("SELECT COUNT(`id`) as `num` FROM `posts` WHERE `thread` IS NULL", $sql) or error(mysql_error($sql));
$arr = mysql_fetch_array($res);
$count = floor($arr['num'] / THREADS_PER_PAGE);
$pages = Array();
for($x=0;$x<=$count && $x<=MAX_PAGES;$x++) {
$pages[] = Array('num' => $x+1, 'link' => $x==0 ? ROOT . FILE_INDEX : ROOT . sprintf(FILE_PAGE, $x+1));
}
mysql_free_result($res);
unset($arr);
unset($count);
$page = 1;
while($page <= MAX_PAGES && $content = index($page)) {
$filename = $page==1 ? FILE_INDEX : sprintf(FILE_PAGE, $page);
$md5 = md5_file($filename);
$content['pages'] = $pages;
file_put_contents($filename, Element('index.html', $content));
if($md5 == md5_file($filename)) {
break;
}
$page++;
}
if($page < MAX_PAGES) {
for(;$page<=MAX_PAGES;$page++) {
$filename = $page==1 ? FILE_INDEX : sprintf(FILE_PAGE, $page);
unlink($filename);
}
}
}
function markup(&$body) {
global $sql;
if(AUTO_UNICODE) {
$body = str_replace('...', '…', $body);
$body = str_replace('<--', '', $body);
$body = str_replace('--', '—', $body);
$body = str_replace('...', '…', $body);
}
$body = utf8tohtml($body, true);
$temp = $body;
$previous_length = 0;
$previous_match = 1;
while(preg_match('/(^|\s)&gt;&gt;([0-9]+?)(\s|$)/', $body, $r, PREG_OFFSET_CAPTURE, $previous_match+$previous_length-1)) {
sql_open();
$id = $r[2][0];
$result = mysql_query(sprintf("SELECT `thread`,`id` FROM `posts` WHERE `id` = '%d'", $id), $sql);
if($post = mysql_fetch_array($result)) {
$temp = str_replace($r[0][0], $r[1][0].'<a onclick="highlightReply(\''.$r[2][0].'\');" href="' . ROOT . DIR_RES . ($post['thread']?$post['thread']:$post['id']) . '.html#' . $id . '">&gt;&gt;' . $r[2][0] . '</a>'.$r[3][0], $temp);
}
mysql_free_result($result);
$previous_match = strpos($body, $r[0][0]);
$previous_length = strlen($r[0][0]);
}
$body = $temp;
$body = str_replace("\r", '', $body);
$body = preg_replace("/(^|\n)([\s]+)?(&gt;)([^\n]+)?($|\n)/m", '$1$2<span class="quote">$3$4</span>$5', $body);
$body = preg_replace("/(^|\n)==(.+?)==\n?/m", "<h2>$2</h2>", $body);
$body = preg_replace("/'''(.+?)'''/m", "<strong>$1</strong>", $body);
$body = preg_replace("/\n/", '<br/>', $body);
}
function utf8tohtml($utf8, $encodeTags=true) {
$result = '';
for ($i = 0; $i < strlen($utf8); $i++) {
$char = $utf8[$i];
$ascii = ord($char);
if ($ascii < 128) {
// one-byte character
$result .= ($encodeTags) ? htmlentities($char) : $char;
} else if ($ascii < 192) {
// non-utf8 character or not a start byte
} else if ($ascii < 224) {
// two-byte character
$result .= htmlentities(substr($utf8, $i, 2), ENT_QUOTES, 'UTF-8');
$i++;
} else if ($ascii < 240) {
// three-byte character
$ascii1 = ord($utf8[$i+1]);
$ascii2 = ord($utf8[$i+2]);
$unicode = (15 & $ascii) * 4096 +
(63 & $ascii1) * 64 +
(63 & $ascii2);
$result .= "&#$unicode;";
$i += 2;
} else if ($ascii < 248) {
// four-byte character
$ascii1 = ord($utf8[$i+1]);
$ascii2 = ord($utf8[$i+2]);
$ascii3 = ord($utf8[$i+3]);
$unicode = (15 & $ascii) * 262144 +
(63 & $ascii1) * 4096 +
(63 & $ascii2) * 64 +
(63 & $ascii3);
$result .= "&#$unicode;";
$i += 3;
}
}
return $result;
}
function buildThread($id) {
global $sql, $board;
$id = round($id);
$query = mysql_query(sprintf(
"SELECT `id`,`thread`,`subject`,`name`,`email`,`trip`,`body`,`time`,`thumb`,`thumbwidth`,`thumbheight`,`file`,`filewidth`,`fileheight`,`filesize`,`filename` FROM `posts` WHERE (`thread` IS NULL AND `id` = '%s') OR `thread` = '%s' ORDER BY `thread`,`time`",
$id,
$id
), $sql) or error(mysql_error($sql));
while($post = mysql_fetch_array($query)) {
if(!isset($thread)) {
$thread = new Thread($post['id'], $post['subject'], $post['email'], $post['name'], $post['trip'], $post['body'], $post['time'], $post['thumb'], $post['thumbwidth'], $post['thumbheight'], $post['file'], $post['filewidth'], $post['fileheight'], $post['filesize'], $post['filename'], false);
} else {
$thread->add(new Post($post['id'], $thread->id, $post['subject'], $post['email'], $post['name'], $post['trip'], $post['body'], $post['time'], $post['thumb'], $post['thumbwidth'], $post['thumbheight'], $post['file'], $post['filewidth'], $post['fileheight'], $post['filesize'], $post['filename']));
}
file_put_contents(DIR_RES . $id . '.html', Element('thread.html', Array('button'=>BUTTON_REPLY, 'board'=>$board, 'body'=>$thread->build(), 'post_url' => POST_URL, 'index' => ROOT, 'id' => $id)));
}
mysql_free_result($query);
}
// A lot of the bellow of from BBSchan (An old project by savetheinternet)
function generate_tripcode ( $name, $length = 10 ) {
$name = stripslashes ( $name );
$t = explode('#', $name);
$nameo = $t[0];
if ( isset ( $t[1] ) || isset ( $t[2] ) ) {
$trip = ( ( strlen ( $t[1] ) > 0 ) ? $t[1] : $t[2] );
if ( ( function_exists ( 'mb_convert_encoding' ) ) ) {
# mb_substitute_character('none');
$recoded_cap = mb_convert_encoding ( $trip, 'Shift_JIS', 'UTF-8' );
}
$trip = ( ( ! empty ( $recoded_cap ) ) ? $recoded_cap : $trip );
$salt = substr ( $trip.'H.', 1, 2 );
$salt = preg_replace ( '/[^\.-z]/', '.', $salt );
$salt = strtr ( $salt, ':;<=>?@[\]^_`', 'ABCDEFGabcdef' );
if ( isset ( $t[2] ) ) {
// secure
$trip = '!!' . substr ( crypt ( $trip, '@#$%^&*()' ), ( -1 * $length ) );
} else {
// insecure
$trip = '!' . substr ( crypt ( $trip, $salt ), ( -1 * $length ) );
}
}
if ( isset ( $trip ) ) {
return array ( $nameo, $trip );
} else {
return array ( $nameo );
}
}
/*********************************************/
/* Fonction: imagecreatefrombmp */
/* Author: DHKold */
/* Contact: [email protected] */
/* Date: The 15th of June 2005 */
/* Version: 2.0B */
/*********************************************/
function imagecreatefrombmp($filename) {
if (! $f1 = fopen($filename,"rb")) return FALSE;
$FILE = unpack("vfile_type/Vfile_size/Vreserved/Vbitmap_offset", fread($f1,14));
if ($FILE['file_type'] != 19778) return FALSE;
$BMP = unpack('Vheader_size/Vwidth/Vheight/vplanes/vbits_per_pixel'.
'/Vcompression/Vsize_bitmap/Vhoriz_resolution'.
'/Vvert_resolution/Vcolors_used/Vcolors_important', fread($f1,40));
$BMP['colors'] = pow(2,$BMP['bits_per_pixel']);
if ($BMP['size_bitmap'] == 0) $BMP['size_bitmap'] = $FILE['file_size'] - $FILE['bitmap_offset'];
$BMP['bytes_per_pixel'] = $BMP['bits_per_pixel']/8;
$BMP['bytes_per_pixel2'] = ceil($BMP['bytes_per_pixel']);
$BMP['decal'] = ($BMP['width']*$BMP['bytes_per_pixel']/4);
$BMP['decal'] -= floor($BMP['width']*$BMP['bytes_per_pixel']/4);
$BMP['decal'] = 4-(4*$BMP['decal']);
if ($BMP['decal'] == 4) $BMP['decal'] = 0;
$PALETTE = array();
if ($BMP['colors'] < 16777216)
{
$PALETTE = unpack('V'.$BMP['colors'], fread($f1,$BMP['colors']*4));
}
$IMG = fread($f1,$BMP['size_bitmap']);
$VIDE = chr(0);
$res = imagecreatetruecolor($BMP['width'],$BMP['height']);
$P = 0;
$Y = $BMP['height']-1;
while ($Y >= 0)
{
$X=0;
while ($X < $BMP['width'])
{
if ($BMP['bits_per_pixel'] == 24)
$COLOR = unpack("V",substr($IMG,$P,3).$VIDE);
elseif ($BMP['bits_per_pixel'] == 16)
{
$COLOR = unpack("n",substr($IMG,$P,2));
$COLOR[1] = $PALETTE[$COLOR[1]+1];
}
elseif ($BMP['bits_per_pixel'] == 8)
{
$COLOR = unpack("n",$VIDE.substr($IMG,$P,1));
$COLOR[1] = $PALETTE[$COLOR[1]+1];
}
elseif ($BMP['bits_per_pixel'] == 4)
{
$COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1));
if (($P*2)%2 == 0) $COLOR[1] = ($COLOR[1] >> 4) ; else $COLOR[1] = ($COLOR[1] & 0x0F);
$COLOR[1] = $PALETTE[$COLOR[1]+1];
}
elseif ($BMP['bits_per_pixel'] == 1)
{
$COLOR = unpack("n",$VIDE.substr($IMG,floor($P),1));
if (($P*8)%8 == 0) $COLOR[1] = $COLOR[1] >>7;
elseif (($P*8)%8 == 1) $COLOR[1] = ($COLOR[1] & 0x40)>>6;
elseif (($P*8)%8 == 2) $COLOR[1] = ($COLOR[1] & 0x20)>>5;
elseif (($P*8)%8 == 3) $COLOR[1] = ($COLOR[1] & 0x10)>>4;
elseif (($P*8)%8 == 4) $COLOR[1] = ($COLOR[1] & 0x8)>>3;
elseif (($P*8)%8 == 5) $COLOR[1] = ($COLOR[1] & 0x4)>>2;
elseif (($P*8)%8 == 6) $COLOR[1] = ($COLOR[1] & 0x2)>>1;
elseif (($P*8)%8 == 7) $COLOR[1] = ($COLOR[1] & 0x1);
$COLOR[1] = $PALETTE[$COLOR[1]+1];
}
else
return FALSE;
imagesetpixel($res,$X,$Y,$COLOR[1]);
$X++;
$P += $BMP['bytes_per_pixel'];
}
$Y--;
$P+=$BMP['decal'];
}
fclose($f1);
return $res;
}
function resize($type, $source_pic, $destination_pic, $max_width, $max_height) {
$return = Array();
switch($type) {
case 'jpg':
case 'jpeg':
$src = imagecreatefromjpeg($source_pic);
break;
case 'png':
$src = imagecreatefrompng($source_pic);
break;
case 'gif':
$src = imagecreatefromgif($source_pic);
break;
case 'bmp':
$src = imagecreatefrombmp($source_pic);
break;
default:
error('Unknwon file extension.');
}
list($width,$height)=getimagesize($source_pic);
$x_ratio = $max_width / $width;
$y_ratio = $max_height / $height;
if(($width <= $max_width) && ($height <= $max_height)) {
$tn_width = $width;
$tn_height = $height;
} elseif (($x_ratio * $height) < $max_height) {
$tn_height = ceil($x_ratio * $height);
$tn_width = $max_width;
} else {
$tn_width = ceil($y_ratio * $width);
$tn_height = $max_height;
}
$return['width'] = $tn_width;
$return['height'] = $tn_height;
$tmp=imagecreatetruecolor($tn_width,$tn_height);
imagecopyresampled($tmp,$src,0,0,0,0,$tn_width, $tn_height,$width,$height);
imagejpeg($tmp,$destination_pic,100);
imagedestroy($src);
imagedestroy($tmp);
return $return;
}
?>

182
inc/template.php

@ -0,0 +1,182 @@
<?php
// PHP Template Preprocessor by Savetheinternet
// http://codecanyon.net/user/Savetheinternet
// [email protected]
// -----------------------------------------------------
// Standard configuration
//
// Folder where the template files are kept
$templateDir = './templates';
//
// Enable global things like %gentime, etc.
$templateGlobals = true;
// If $templateGlobals is enabled.
// Do not change the keys, but the values (if you must), or it will not work. (Prefixed with %)
$templateGlobalsNames = Array(
'gentime' => 'gentime',
'template' => 'template'
);
// Allow {$phpvar}, etc, to be placed in the template file. This will use a (global) variable defined in PHP.
// Requires eval() to be enabled. Might be a security risk, so ensure your template files aren't writable before
// enabling this. (Prefixed with $)
$templateVariables = false;
// End config
// -----------------------------------------------------
//'/\{(!?[$%]?[\w\[\]]+)(([=\?:])(([^{^}]|\{.+?\})?)?\}/s'
// Don't change this if you don't know what you're doing.
// EXTREMELY CONFUSING RECURSION!
$templateRegex = '/\{(!?[$%]?[\w\[\]]+)(([=\?:])((?>[^{^}]|\{[^{^}]+\}|(?R))+?))?\}/s';
function templateParse($template, array $options, $globals = null, $templateFile = null) {
global $templateGlobals, $templateGlobalsNames, $templateVariables, $templateRegex;
//For the global variable {%gentime}
if($globals == null) {
$globals = Array();
if(isset($templateFile)) $globals['template'] = $templateFile;
$globals['gentime'] = microtime(true);
}
// What we'll end up finishing with
$templateBody = '';
$previousPosition = 0;
// Find the matches
if(preg_match_all($templateRegex, $template, $templateMatch)) {
//Iterate through matches
for($matchIndex=0;$matchIndex<count($templateMatch[0]);$matchIndex++) {
$optionName = $templateMatch[1][$matchIndex];
$optionValue = $templateMatch[0][$matchIndex];
$optionDelim = $templateMatch[3][$matchIndex];
$optionBlock = $templateMatch[4][$matchIndex];
$option = (isset($options[$optionName])?$options[$optionName]:null);
$position = strpos($template, $templateMatch[0][$matchIndex]);
// Replace the found string with "xxxx[...]". ("Bug fix"; allows duplicate tags)
$template = substr_replace($template, str_repeat('x', strlen($templateMatch[0][$matchIndex])), $position, strlen($templateMatch[0][$matchIndex]));
if($optionName[0] == '!') {
$optionReversed = true;
$optionName = substr($optionName, 1);
} else $optionReversed = false;
if($optionName[0] == '%') {
$tmpOptionName = substr($optionName, 1);
// $templateGlobals
if($tmpOptionName == $templateGlobalsNames['gentime']) {
$option = microtime(true)-$globals['gentime'].'s';
} elseif(isset($globals[$tmpOptionName])) {
$option = $globals[$tmpOptionName];
}
unset($tmpOptionName);
}
if(preg_match('/(.+?)\[/', $optionName, $optionArrayMatches)) {
$optionArrayKey = $optionArrayMatches[1];
$arrayOptionsTemp = $options[$optionArrayKey];
if(is_array($arrayOptionsTemp)) {
if(preg_match_all('/\[(.+?)\]/', $optionName, $optionArrayMatches)) {
for($optionArrayIndex=0;$optionArrayIndex<count($optionArrayMatches[0]);$optionArrayIndex++) {
if(isset($arrayOptionsTemp[$optionArrayMatches[1][$optionArrayIndex]])) {
$arrayOptionsTemp = $arrayOptionsTemp[$optionArrayMatches[1][$optionArrayIndex]];
$option = $arrayOptionsTemp;
} else break;
}
}
}
}
if($optionDelim==':') {
if(isset($option) && $option) {
if(is_array($option)) {
$optionValue = '';
for($optionIndex=0;$optionIndex<count($option);$optionIndex++) {
$tmpOption = $option[$optionIndex];
$tmpOptions = $options;
$tmpOptions[$optionName] = $tmpOption;
if($optionIndex == count($option)-1)
$globals['last'] = true;
else {
unset($globals['last']);
if($optionIndex == 0)
$globals['first'] = true;
else
unset($globals['first']);
}
$optionValue .= templateParse($optionBlock, $tmpOptions, $globals);
}
unset($tmpOption);
unset($tmpOptions);
unset($optionIndex);
unset($globals['first']);
unset($globals['last']);
} else {
$optionValue = templateParse($optionBlock, $options, $globals);
}
} else {
$optionValue = '';
}
} elseif($optionDelim=='?') {
// Conditionals
if((!$optionReversed && isset($option) && $option) || ($optionReversed && (!isset($option) || !$option))) {
/*echo print_r(Array(
$optionReversed?'reversed':'no',
isset($option)?'exists':'does not exist',
$option,
$optionName
));*/
$optionValue = templateParse($optionBlock, $options, $globals);
} else {
$optionValue = '';
}
} elseif(isset($option)) {
// If the value is specified...
if(is_array($option)) {
$optionValue = implode($option);
} else {
$optionValue = $option;
}
} elseif($optionDelim=='=') {
// If it has a default
$optionValue = templateParse($optionBlock, $options, $globals);
$options[$optionName] = $optionValue;
} elseif($templateVariables && $optionName[0] == '$') {
// Conditionals
$optionValue = eval("global ${optionName}; return ${optionName};");
}
// Append it to the body
$templateBody .= substr($template, $previousPosition, $position-$previousPosition).$optionValue;
$previousPosition = $position+strlen($templateMatch[0][$matchIndex]);
unset($position);
unset($optionValue);
}
}
// Append the rest of the template
$templateBody .= substr($template, $previousPosition);
return $templateBody;
}
function Element($templateFile, array $options) {
global $templateDir;
// Read the template file
if($template = @file_get_contents("${templateDir}/${templateFile}")) {
return templateParse($template, $options, null, $templateFile);
} else {
throw new Exception("Template file '${templateFile}' does not exist or is empty in '${templateDir}'!");
}
}
?>

16
inc/user.php

@ -0,0 +1,16 @@
<?php
session_name(SESS_COOKIE);
session_start();
if(!isset($_SESSION['created'])) $_SESSION['created'] = time();
if(!isset($_COOKIE[HASH_COOKIE]) || !isset($_COOKIE[TIME_COOKIE]) || $_COOKIE[HASH_COOKIE] != md5($_COOKIE[TIME_COOKIE].SALT)) {
$time = time();
setcookie(TIME_COOKIE, $time, time()+COOKIE_EXPIRE, '/', null, false, true);
setcookie(HASH_COOKIE, md5(time().SALT), time()+COOKIE_EXPIRE, '/', null, false, true);
$user = Array('valid' => false, 'appeared' => $time);
} else {
$user = Array('valid' => true, 'appeared' => $_COOKIE[TIME_COOKIE]);
}
?>

193
index.php

@ -0,0 +1,193 @@
<?php
require 'inc/config.php';
require 'inc/functions.php';
require 'inc/display.php';
require 'inc/template.php';
require 'inc/user.php';
$board = Array(
'url' => '/b/',
'name' => 'Beta',
'title' => 'In devleopment.');
$body = '';
if(isset($_POST['post'])) {
if( !isset($_POST['name']) ||
!isset($_POST['email']) ||
!isset($_POST['subject']) ||
!isset($_POST['body']) ||
!isset($_POST['password'])
) error(ERROR_BOT);
$post = Array();
if(isset($_POST['thread'])) {
$OP = false;
$post['thread'] = round($_POST['thread']);
} else $OP = true;
if(!(($OP && $_POST['post'] == BUTTON_NEWTOPIC) || (!$OP && $_POST['post'] == BUTTON_REPLY))) error(ERROR_BOT);
// Check the referrer
if($OP) {
if(!isset($_SERVER['HTTP_REFERER']) || !preg_match(URL_MATCH, $_SERVER['HTTP_REFERER'])) error(ERROR_BOT);
}
// TODO: Since we're now using static HTML files, we can't give them cookies on their first page view
// Find another anti-spam method.
/*
// Check if he has a valid cookie.
if(!$user['valid']) error(ERROR_BOT);
// Check how long he has been here.
if(time()-$user['appeared']<LURKTIME) error(ERROR_LURK);
*/
// Check for a file
if($OP) {
if(!isset($_FILES['file']['tmp_name']) || empty($_FILES['file']['tmp_name'])) error(ERROR_NOIMAGE);
}
$post['name'] = (!empty($_POST['name'])?$_POST['name']:'Anonymous');
$post['subject'] = utf8tohtml($_POST['subject']);
$post['email'] = utf8tohtml($_POST['email']);
$post['body'] = $_POST['body'];
$post['password'] = $_POST['password'];
$post['filename'] = $_FILES['file']['name'];
$post['has_file'] = $OP || !empty($_FILES['file']['tmp_name']);
$trip = generate_tripcode($post['name']);
$post['name'] = utf8tohtml($trip[0]);
$post['trip'] = (isset($trip[1])?$trip[1]:'');
if($post['email'] == 'noko') {
$noko = true;
$post['email'] = '';
} else $noko = false;
if($post['has_file']) {
$post['extension'] = substr($post['filename'], strrpos($post['filename'], '.') + 1);
$post['file_id'] = rand(0, 1000000000);
$post['file'] = DIR_IMG . $post['file_id'] . '.' . $post['extension'];
$post['thumb'] = DIR_THUMB . $post['file_id'] . '.jpg';
if(!in_array($post['extension'], $allowed_ext)) error(ERROR_FILEEXT);
}
// Check string lengths
if(strlen($post['name']) > 25) error(sprintf(ERROR_TOOLONG, 'name'));
if(strlen($post['email']) > 30) error(sprintf(ERROR_TOOLONG, 'email'));
if(strlen($post['subject']) > 25) error(sprintf(ERROR_TOOLONG, 'subject'));
if(strlen($post['body']) > MAX_BODY) error(ERROR_TOOLONGBODY);
if(!(!$OP && $post['has_file']) && strlen($post['body']) < 1) error(ERROR_TOOSHORTBODY);
if(strlen($post['password']) > 20) error(sprintf(ERROR_TOOLONG, 'password'));
markup($post['body']);
if($post['has_file']) {
// Just trim the filename if it's too long
if(strlen($post['filename']) > 30) $post['filename'] = substr($post['filename'], 0, 27).'…';
// Move the uploaded file
if(!@move_uploaded_file($_FILES['file']['tmp_name'], $post['file'])) error(ERROR_NOMOVE);
$size = @getimagesize($post['file']);
$post['width'] = $size[0];
$post['height'] = $size[1];
if($post['width'] < 1 || $post['height'] < 1) {
unlink($post['file']);
error(ERR_INVALIDIMG);
}
$post['filesize'] = filesize($post['file']);
$thumb = resize($post['extension'], $post['file'], $post['thumb'], THUMB_WIDTH, THUMB_HEIGHT);
$post['thumbwidth'] = $thumb['width'];
$post['thumbheight'] = $thumb['height'];
}
// Todo: Validate some more, remove messy code, allow more specific configuration
// MySQLify
sql_open();
mysql_safe_array($post);
if($OP) {
mysql_query(
sprintf("INSERT INTO `posts` VALUES ( NULL, NULL, '%s', '%s', '%s', '%s', '%s', '%d', '%d', '%s', '%d', '%d', '%s', '%d', '%d', '%d', '%s', '%s', '%s' )",
$post['subject'],
$post['email'],
$post['name'],
$post['trip'],
$post['body'],
time(),
time(),
$post['thumb'],
$post['thumbwidth'],
$post['thumbheight'],
$post['file'],
$post['width'],
$post['height'],
$post['filesize'],
$post['filename'],
$post['password'],
mysql_real_escape_string($_SERVER['REMOTE_ADDR'])
), $sql) or error(mysql_error($sql));
} else {
mysql_query(
sprintf("INSERT INTO `posts` VALUES ( NULL, '%d', '%s', '%s', '%s', '%s', '%s', '%d', '%d', '%s', '%d', '%d', '%s', '%d', '%d', '%d', '%s', '%s', '%s' )",
$post['thread'],
$post['subject'],
$post['email'],
$post['name'],
$post['trip'],
$post['body'],
time(),
time(),
$post['has_file']?$post['thumb']:null,
$post['has_file']?$post['thumbwidth']:null,
$post['has_file']?$post['thumbheight']:null,
$post['has_file']?$post['file']:null,
$post['has_file']?$post['width']:null,
$post['has_file']?$post['height']:null,
$post['has_file']?$post['filesize']:null,
$post['has_file']?$post['filename']:null,
$post['password'],
mysql_real_escape_string($_SERVER['REMOTE_ADDR'])
), $sql) or error(mysql_error($sql));
}
$id = mysql_insert_id($sql);
buildThread(($OP?$id:$post['thread']));
if(!$OP) {
mysql_query(
sprintf("UPDATE `posts` SET `bump` = '%d' WHERE `id` = '%s' AND `thread` IS NULL",
time(),
$post['thread']
), $sql) or error(mysql_error($sql));
}
buildIndex();
sql_close();
if(ALWAYS_NOKO || $noko) {
header('Location: ' . DIR_RES . ($OP?$id:$post['thread']) . '.html' . (!$OP?'#'.$id:''), true, 302);
} else {
header('Location: ' . ROOT . FILE_INDEX, true, 302);
}
exit;
} else {
if(!file_exists(FILE_INDEX)) {
buildIndex();
sql_close();
}
header('Location: ' . ROOT . FILE_INDEX, true, 302);
}
?>

65
main.js

@ -0,0 +1,65 @@
function highlightReply(id)
{
var divs = document.getElementsByTagName('div');
for (var i = 0; i < divs.length; i++)
{
if (divs[i].className.indexOf('post') != -1)
divs[i].className = divs[i].className.replace(/highlighted/, '');
}
console.log('reply_'+id);
if (id)
document.getElementById('reply_'+id).className += ' highlighted';
}
function focusId(id)
{
document.getElementById(id).focus();
init();
}
function dopost(form) {
localStorage.name = form.name.value;
localStorage.email = form.email.value;
return form.body.value != "" || (typeof form.thread != "undefined" && form.file.value != "");
}
function citeReply(id) {
document.getElementById('body').value += '>>' + id + '\n';
}
function init()
{
if (window.location.hash.indexOf('q') == 1)
citeReply(window.location.hash.substring(2));
else if (window.location.hash.substring(1))
highlightReply(window.location.hash.substring(1));
if(localStorage.name)
document.getElementsByTagName('form')[0].name.value = localStorage.name;
if(localStorage.email)
document.getElementsByTagName('form')[0].email.value = localStorage.email;
link = document.getElementsByTagName('a');
for ( i in link ) {
if(typeof link[i] == "object" && link[i].childNodes[0].src) {
link[i].onclick = function() {
if(!this.tag) {
this.tag = this.childNodes[0].src;
this.childNodes[0].src = this.href;
this.childNodes[0].style.width = 'auto';
this.childNodes[0].style.height='auto';
} else {
this.childNodes[0].src = this.tag;
this.childNodes[0].style.width = 'auto';
this.childNodes[0].style.height='auto';
this.tag = '';
}
return false;
}
console.log(link[i].childNodes[0]);
console.log(link[i].onclick);
}
}
}
window.onload = init;

170
style.css

@ -0,0 +1,170 @@
body {
background: #EEF2FF url('/img/fade-blue.png') repeat-x 50% 0%;
color: black;
font-family: arial, helvetica, sans-serif;
font-size: 10pt;
margin: 0 8px;
padding-left: 5px;
padding-right: 5px;
}
table * {
margin: 0;
}
a:link, a:visited {
text-decoration: underline;
color: #34345C;
}
a:link:hover, a:visited:hover {
color: #ff0000;
}
a.post_no {
color: black;
text-decoration: none;
margin: 0;
padding: 0;
}
p.intro a.post_no, p.intro a.email {
margin: 0;
}
p.intro a.email span.name {
color: #34345C;
}
p.intro a.email:hover span.name {
color: #ff0000;
}
h2 {
color: #AF0A0F;
font-size: 11pt;
margin: 0px;
padding: 0px;
}
h1 {
font-family: tahoma;
letter-spacing: -2px;
font-size: 20pt;
margin-bottom: 0;
}
div.title, h1 {
color: #AF0A0F;
text-align: center;
}
div.title {
font-size: 8pt;
margin-bottom: 2em;
}
form {
margin-bottom: 4em;
}
form table {
margin: auto;
}
form table input {
height: auto;
}
input[type="text"], input[type="password"], textarea {
border: 1px solid darkGray;
text-indent: 0px;
text-shadow: none;
text-transform: none;
word-spacing: normal;
}
form table tr td {
text-align: left;
margin: 0px;
padding: 0px;
}
form table tr th {
text-align: left;
padding: 4px;
}
form table tr th {
background: #98E;
}
.unimportant, .unimportant * {
font-size: 10px;
}
p.fileinfo {
display: block;
margin: 0px;
}
div.banner {
background-color: #E04000;
font-size: 12pt;
font-weight: bold;
text-align: center;
margin: 1em 0;
}
div.banner, div.banner a {
color: white;
}
div.banner a:hover {
color: #EEF2FF;
text-decoration: none;
}
img {
display: block;
float: left;
margin: 10px 20px;
border: none;
}
div.post img {
padding: 5px;
margin: 5px 20px 0 0;
}
div.post.op {
margin-right: 20px;
margin-bottom: 5px;
}
p.intro {
margin: 0.5em 0;
padding: 0;
padding-bottom: 0.2em;
}
p.intro span.subject {
color: #0F0C5D;
font-weight: bold;
}
p.intro span.name {
color: #117743;
font-weight: bold;
}
p.intro a {
margin-left: 8px;
}
div.post.reply p {
margin: 0.3em 0 0 0;
}
div.post.reply p.body {
margin-left: 1.8em;
margin-top: 0.8em;
padding-right: 3em;
padding-bottom: 0.3em;
}
div.post.reply.highlighted {
background: #D6BAD0;
}
div.post.reply p.body a {
color: #D00;
}
div.post.reply {
background: #D6DAF0;
float: left;
margin: 0.2em 40px;
padding: 0.2em 0.3em 0.5em 0.6em;
border-width: 1px;
border-style: none solid solid none;
border-color: #B7C5D9;
}
span.trip {
color: #228854;
}
span.quote {
color: #789922;
}
span.omitted {
display: block;
margin-top: 1em;
}
br.clear {
clear: left;
}

74
templates/index.html

@ -0,0 +1,74 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" media="screen" href="{index}style.css"/>
<title>{board[url]} - {board[name]}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<script type="text/javascript" src="{index}main.js"></script>
</head>
<body>
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]}</div>
<form onsubmit="return dopost(this);" enctype="multipart/form-data" action="{post_url}" method="post">
<table>
<tr>
<th>
Name
</th>
<td>
<input type="text" name="name" size="25" maxlength="25" autocomplete="off" />
</td>
</tr>
<tr>
<th>
Email
</th>
<td>
<input type="text" name="email" size="25" maxlength="30" autocomplete="off" />
</td>
</tr>
<tr>
<th>
Subject
</th>
<td>
<input style="float:left;" type="text" name="subject" size="25" maxlength="25" autocomplete="off" />
<input style="float:right;" type="submit" name="post" value="{button=New Topic}" />
</td>
</tr>
<tr>
<th>
Comment
</th>
<td>
<textarea name="body" id="body" rows="5" cols="30"></textarea>
</td>
</tr>
<tr>
<th>
File
</th>
<td>
<input type="file" name="file"/>
</td>
</tr>
<tr>
<th>
Password
</th>
<td>
<input type="password" name="password" size="12" maxlength="18" />
<span class="unimportant">(For file deletion.)</span>
</td>
</tr>
</table>
</form>
<hr/>
{body}
Pages: {pages:
<a href="{pages[link]}">{pages[num]}</a>
}
<p class="unimportant" style="text-align:center;">Copyright &copy; 2010 <a href="http://omegadev.org/">OmegaSDG</a></p>
</body>
</html>

14
templates/page.html

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" media="screen" href="{index}style.css"/>
<title>{title}</title>
</head>
<body>
<h1>{title}</h1>
{subtitle?<div class="title">{subtitle}</div>}
{body}
<hr/>
<p class="unimportant" style="text-align:center;">Copyright &copy; 2010 <a href="http://omegadev.org/">OmegaSDG</a></p>
</body>
</html>

73
templates/thread.html

@ -0,0 +1,73 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" media="screen" href="{index}style.css"/>
<title>{board[url]} - {board[name]}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<script type="text/javascript" src="{index}main.js"></script>
</head>
<body>
<h1>{board[url]} - {board[name]}</h1>
<div class="title">{board[title]}</div>
<div class="banner">Posting mode: Reply <a class="unimportant" href="{index}">[Return.]</a></div>
<form onsubmit="return dopost(this);" enctype="multipart/form-data" action="{post_url}" method="post">
<input type="hidden" name="thread" value="{id}" />
<table>
<tr>
<th>
Name
</th>
<td>
<input type="text" name="name" size="25" maxlength="25" autocomplete="off" />
</td>
</tr>
<tr>
<th>
Email
</th>
<td>
<input type="text" name="email" size="25" maxlength="30" autocomplete="off" />
</td>
</tr>
<tr>
<th>
Subject
</th>
<td>
<input style="float:left;" type="text" name="subject" size="25" maxlength="25" autocomplete="off" />
<input style="float:right;" type="submit" name="post" value="{button=New Topic}" />
</td>
</tr>
<tr>
<th>
Comment
</th>
<td>
<textarea name="body" id="body" rows="5" cols="30"></textarea>
</td>
</tr>
<tr>
<th>
File
</th>
<td>
<input type="file" name="file"/>
</td>
</tr>
<tr>
<th>
Password
</th>
<td>
<input type="password" name="password" size="12" maxlength="18" />
<span class="unimportant">(For file deletion.)</span>
</td>
</tr>
</table>
</form>
<hr/>
{body}
<p class="unimportant" style="text-align:center;">Copyright &copy; 2010 <a href="http://omegadev.org/">OmegaSDG</a></p>
</body>
</html>
Loading…
Cancel
Save