|
| 1 | +<?php |
| 2 | +// |
| 3 | +// Pot.js / PotLite.js |
| 4 | +// Simple script compiler |
| 5 | +// |
| 6 | + |
| 7 | +pot_build(); |
| 8 | + |
| 9 | +class Pot_Builder { |
| 10 | + |
| 11 | + const POT_SETTINGS = 'pot.package.json'; |
| 12 | + const POTLITE_SETTINGS = 'potlite.package.json'; |
| 13 | + const SOURCE_DIR = '../src/'; |
| 14 | + |
| 15 | + private $debug; |
| 16 | + private $version; |
| 17 | + private $date; |
| 18 | + private $year; |
| 19 | + private $type; |
| 20 | + private $settings; |
| 21 | + private $code; |
| 22 | + private $enclosureCode; |
| 23 | + private $fileName; |
| 24 | + |
| 25 | + function __construct() { |
| 26 | + $this->init(); |
| 27 | + if (empty($_GET)) { |
| 28 | + die('Error: Need to access with HTTP GET.'); |
| 29 | + } |
| 30 | + $this->type = isset($_GET['type']) ? strtolower($_GET['type']) : 'full'; |
| 31 | + if ($this->type === 'lite') { |
| 32 | + $path = self::POTLITE_SETTINGS; |
| 33 | + define('POTLITE', true, true); |
| 34 | + define('POT', false, true); |
| 35 | + } else { |
| 36 | + $this->type = 'full'; |
| 37 | + $path = self::POT_SETTINGS; |
| 38 | + define('POTLITE', false, true); |
| 39 | + define('POT', true, true); |
| 40 | + } |
| 41 | + $this->settings = json_decode(file_get_contents($path)); |
| 42 | + $this->fileName = $this->settings->fileName; |
| 43 | + if (isset($_GET['debug'])) { |
| 44 | + $this->debug = (bool)preg_match('{^(?:true|1|on|yes)$}i', $_GET['debug']); |
| 45 | + } else if (isset($this->settings->debug)) { |
| 46 | + $this->debug = (bool)$this->settings->debug; |
| 47 | + } else { |
| 48 | + $this->debug = false; |
| 49 | + } |
| 50 | + if (!empty($_GET['version'])) { |
| 51 | + $this->version = $_GET['version']; |
| 52 | + } else if (isset($this->settings->version)) { |
| 53 | + $this->version = (string)$this->settings->version; |
| 54 | + } else { |
| 55 | + $this->version = '$Version$'; |
| 56 | + } |
| 57 | + $this->code = ''; |
| 58 | + $this->date = date('Y-m-d'); |
| 59 | + $this->year = date('Y'); |
| 60 | + } |
| 61 | + |
| 62 | + function init() { |
| 63 | + error_reporting(E_ALL); |
| 64 | + @ini_set('display_errors', 1); |
| 65 | + @ini_set('log_errors', false); |
| 66 | + @ini_set('track_errors', false); |
| 67 | + @ini_set('default_charset', 'UTF-8'); |
| 68 | + if (function_exists('date_default_timezone_set') && |
| 69 | + function_exists('date_default_timezone_get')) { |
| 70 | + @date_default_timezone_set(@date_default_timezone_get()); |
| 71 | + } |
| 72 | + header('Content-Type: application/javascript'); |
| 73 | + } |
| 74 | + |
| 75 | + function build() { |
| 76 | + $this->load(); |
| 77 | + $this->flush(); |
| 78 | + } |
| 79 | + |
| 80 | + function load() { |
| 81 | + $codes = array(); |
| 82 | + foreach ($this->settings->files as $file) { |
| 83 | + $code = file_get_contents(self::SOURCE_DIR . $file); |
| 84 | + $codes[] = $this->assign($code); |
| 85 | + } |
| 86 | + if ($this->debug) { |
| 87 | + $this->code = implode("\x0A", $codes); |
| 88 | + $wrap = file_get_contents(self::SOURCE_DIR . $this->settings->enclosure); |
| 89 | + $enclosure = $this->evaluate($this->assign($wrap)); |
| 90 | + file_put_contents(sprintf('%s-~obj.js', $this->fileName), $enclosure); |
| 91 | + unset($wrap, $enclosure); |
| 92 | + } |
| 93 | + $this->code = $this->evaluate(implode("\x0A", $codes)); |
| 94 | + $code = file_get_contents(self::SOURCE_DIR . $this->settings->enclosure); |
| 95 | + $this->enclosureCode = $this->assign($code); |
| 96 | + $this->code = $this->evaluate($this->enclosureCode); |
| 97 | + file_put_contents($this->fileName, $this->code); |
| 98 | + } |
| 99 | + |
| 100 | + function flush() { |
| 101 | + echo $this->code; |
| 102 | + flush(); |
| 103 | + } |
| 104 | + |
| 105 | + function evaluate($code) { |
| 106 | + ob_start(); |
| 107 | + echo eval(sprintf('?>%s', $code)); |
| 108 | + $code = ob_get_contents(); |
| 109 | + ob_end_clean(); |
| 110 | + return $this->normalize($code); |
| 111 | + } |
| 112 | + |
| 113 | + function normalize($code) { |
| 114 | + return preg_replace('{(\x0D\x0A|\x0A|\x0D)}', "\x0A", $code); |
| 115 | + } |
| 116 | + |
| 117 | + function assign($code) { |
| 118 | + if (preg_match('{<[?]|[?]>}', $code)) { |
| 119 | + die('Error: Invalid code'); |
| 120 | + } |
| 121 | + $code = preg_replace_callback( |
| 122 | + '< |
| 123 | + (?:/(?:/[\x09\x20]*|[*])|) |
| 124 | + \{\#\s*(\$|)(\w+)\s*([^\}]*)\s*\} |
| 125 | + (?:[*]/|) |
| 126 | + (\x0D\x0A|\x0A|\x0D|) |
| 127 | + >sx', |
| 128 | + array($this, 'assignCallback'), |
| 129 | + $code |
| 130 | + ); |
| 131 | + return $code; |
| 132 | + } |
| 133 | + |
| 134 | + function assignCallback($matches) { |
| 135 | + $result = 'throw new Error("error!")'; |
| 136 | + $nl = "\x0A"; |
| 137 | + if ($matches[1] === '$') { |
| 138 | + $result = sprintf('<?php echo $this->%s ?>%s%s', $matches[2], $nl, $matches[4]); |
| 139 | + } else { |
| 140 | + $expr = ''; |
| 141 | + switch (strtolower($matches[2])) { |
| 142 | + case 'if': |
| 143 | + $expr = sprintf('if(%s):', $matches[3]); |
| 144 | + break; |
| 145 | + case 'else': |
| 146 | + $expr = sprintf('else:'); |
| 147 | + break; |
| 148 | + case 'elseif': |
| 149 | + $expr = sprintf('elseif(%s):', $matches[3]); |
| 150 | + break; |
| 151 | + case 'end': |
| 152 | + case 'endif': |
| 153 | + $expr = sprintf('endif;'); |
| 154 | + break; |
| 155 | + case 'code': |
| 156 | + $expr = sprintf('echo $this->code'); |
| 157 | + break; |
| 158 | + default: |
| 159 | + $expr = sprintf('%s', $matches[3]); |
| 160 | + break; |
| 161 | + } |
| 162 | + $result = sprintf('<?php %s ?>%s%s', $expr, $nl, $matches[4]); |
| 163 | + } |
| 164 | + return $result; |
| 165 | + } |
| 166 | +} |
| 167 | + |
| 168 | +function pot_build() { |
| 169 | + $pb = new Pot_Builder(); |
| 170 | + $pb->build(); |
| 171 | + $pb = null; |
| 172 | + unset($pb); |
| 173 | +} |
| 174 | + |
0 commit comments