Files
OMS/app/base/lib/misc/t2t.php
2025-12-28 23:13:25 +08:00

181 lines
4.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class base_misc_t2t{
var $_blocks = array('_');
var $_in_pre = false;
var $_in_table = false;
var $_in_p = false;
var $res_path = '';
function __destruct(){
if($this->handle){
fclose($this->handle);
}
}
function load($file){
$this->handle = @fopen($file, "r");
$this->title = fgets($this->handle,1024);
fgets($this->handle,512);
fgets($this->handle,512);
}
function fetch(){
return $this->display(1);
}
function display($fetch=false){
if ($this->handle) {
if($fetch){
ob_start();
}
while (!feof($this->handle)) {
echo $this->process(fgets($this->handle, 4096));
}
if($fetch){
$return = ob_get_contents();
ob_end_clean();
return $return;
}
}
}
function parse($content){
ob_start();
foreach(explode("\n",$content) as $line){
$line =trim($line);
echo $this->process($line."\n");
}
$return = ob_get_contents();
ob_end_clean();
return $return;
}
function process($line){
if($this->_in_pre){
if(trim($line)=="```"){
$this->_in_pre = false;
return '</pre>';
}else{
return htmlspecialchars($line);
}
}
if(trim($line)==''){
if($this->_last_line_is_empty){
if(($this->_blocks[0]=='ol' || $this->_blocks[0]=='ul')){
return '</'.array_shift($this->_blocks).'>';
}else{
return '<br />';
}
}
$this->_last_line_is_empty = true;
return '</p>';
}
$this->_last_line_is_empty = false;
foreach($this->block_re() as $pattern =>$func){
if(preg_match($pattern,$line,$match)){
if($this->_in_table && $func!='table'){
$this->_in_table = false;
echo '</table>';
}
return $this->{'proc_'.$func}($match);
}
}
if($this->_in_table){
$this->_in_table = false;
echo '</table>';
}
if(trim($line)=="```"){
$this->_in_pre = true;
return '<pre>';
}
if(!$this->_in_p){
$this->_in_p = true;
echo '<p>';
}
return $this->fixline($line);
}
function block_re(){
return array(
'/^%/'=>'skip',
'/^\+(=+).*?(=+)(\+)\s*$/'=>'title',
'/^(=+).*?(=+)()\s*$/'=>'title',
'/^([-+])\s(.*)/'=>'list',
'/^(\|{1,2})\s(.+)\s\|{1,2}\s*$/'=>'table',
);
}
function proc_table($match){
$code = $match[1]=='|'?'td':'th';
$line = '<tr>';
foreach(explode(' | ',$match[2]) as $col){
$line .= '<'.$code.'>'.$this->fixline($col).'</'.$code.'>';
}
$line.='</tr>';
if(!$this->_in_table){
$this->_in_table = true;
return '<table border="1">'.$line;
}else{
return $line;
}
}
function proc_skip(){}
function proc_list($match){
$list_code = $match[1]=='-'?'ul':'ol';
$return = '<li>'.$this->fixline($match[2]);
if($this->_blocks[0]!=$list_code){
array_unshift($this->_blocks,$list_code);
$return = '<'.$list_code.'>'.$return;
}
return $return;
}
function proc_title($match){
$depth = min(strlen($match[1]),strlen($match[2]));
$text = trim($match[0]);
if($match[3]=='+'){
$prefix = ++$this->seq[$depth];
for($i=$depth+1;$i<10;$i++){
$this->seq[$i] = 0; //重置子节点计数器
}
$prefix .= '. ';
$text = substr($text,1,-1);
}else{
$prefix = '';
}
return '<h'.($depth+1).'>'.
$prefix.$this->fixline(substr($text,$depth,0-$depth))
.'</h'.($depth+1).'>';
}
function fixline($line){
$re = array(
'/``(.+?)``/'=>'<code>\1</code>',
'/\*\*(.+?)\*\*/'=>'<strong>\1</strong>',
'/\[(.+)\.(gif|jpg|png)\]/'=>'<img src="'.$this->res_path.'\1.\2" />',
);
$line = htmlspecialchars($line);
return preg_replace(array_keys($re),$re,$line);
}
function output($line){
echo $line;
}
}