PAGE)){$this->PAGE=[];} if(!isset($this->PAGE[0])){$this->PAGE[]=[];} return $this->PAGE[array_key_last($this->PAGE)]; } function &TRow(){ $last=array_key_last($this->PAGE); if($this->PAGE[$last]==[]) return $this->PAGE[$last]; $this->PAGE[]=[]; return $this->PAGE[$last]; } function TFill($k,&$content,$span=null){ $a=&$this->_TRow();if(!isset($a[$k]))$a[$k]="";$a[$k].=$content; $content=''; if($span!=null && $span>1){ $a['span'.$k]=$span; } } function TExtra($rowextra){ $a=&$this->_TRow(); $a['extra']=$rowextra; } function TAfter(&$content){ $this->AFTER.=$content; $content=''; } function TBackup(){ if(!isset($this->PSTACK)){$this->PSTACK=[];}; $this->PSTACK[]=$this->PAGE; $this->PAGE=[]; } function TRestore($extra=""){ if(!isset($this->PSTACK) || $this->PSTACK==[]) return ""; $S=$this->GeneratePage(0,$extra); $this->PAGE=end($this->PSTACK); unset($this->PSTACK[array_key_last($this->PSTACK)]); return $S; } function ReadableTime($id){ $dt = DateTime::createFromFormat('YmdHis', $id); return $dt->format('Y/m/d H:i:s'); } function StandardTime($id){ $dt = DateTime::createFromFormat('YmdHis', $id); return $dt->format('Y-m-d\TH:i:sP'); } function FullURL(){ return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; } function T($str){ if(!$this->LanguageAppendix) return $str; foreach($this->Translations as $entry){ if($entry['zh']==$str) return $entry[$this->LanguageAppendix]; } return $str; } function SwitchLanguageAndFont(){ global $LA_GLOBAL_LANG; $this->LanguageAppendix = 'zh'; if(isset($_COOKIE['la_language'])){ $this->LanguageAppendix = $_COOKIE['la_language']; }else{ if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){ $lang = $_SERVER['HTTP_ACCEPT_LANGUAGE']; $lang = substr($lang,0,5); if(preg_match("/zh/i",$lang))$this->LanguageAppendix = 'zh'; else $this->LanguageAppendix = 'en'; } } if(isset($LA_GLOBAL_LANG)){ if($LA_GLOBAL_LANG=='en'){ $this->LanguageAppendix = 'en'; setcookie('la_language','en',time()+3600*24*7,'/'); } else if($LA_GLOBAL_LANG=='zh'){ $this->LanguageAppendix = 'zh'; setcookie('la_language','zh',time()+3600*24*7,'/'); } } if(isset($_COOKIE['la_font'])){ $this->UseRemoteFont = ($_COOKIE['la_font']!='local'); } if($this->LoggedIn && isset($_COOKIE['la_notes_view'])){ $this->NotesView=$_COOKIE['la_notes_view']; } } function SwitchWayBackMode(){ if(isset($_COOKIE['la_wayback'])){ $this->WayBack = $_COOKIE['la_wayback']; }else $this->WayBack = NULL; } function DisplayRedirectConfig(){ $s = ""; if(isset($this->Redirect) && isset($this->Redirect[0])) foreach($this->Redirect as $r){ if($r['for']=='P'){ $s.=("P ".$r['format'].":".$r['target'].";".PHP_EOL); }else if($r['for']=='S'){ $s.=("S ".$r['format'].":".$r['domain'].":".$r['target'].";".PHP_EOL); } } return $s; } function DoSiteRedirect(){ global $INDEXPHP; if(isset($this->Redirect) && isset($this->Redirect[0])) foreach($this->Redirect as $r){ if($r['for']=='S'){ if(preg_match('/'.$r['format'].'/ui', $_SERVER['HTTP_HOST'])){ if($_SERVER['REQUEST_URI']=='/'||$_SERVER['REQUEST_URI']==''){ header('Location:https://'.$r['domain'].'/'.$INDEXPHP.'?post='.$r['target']); exit; }else{ header('Location:https://'.$r['domain'].$_SERVER['REQUEST_URI']); exit; } } } } } function WriteHTACCESS(){ $conf = fopen('.htaccess','w'); fwrite($conf,"RewriteEngine on".PHP_EOL.PHP_EOL); if(isset($this->Redirect) && isset($this->Redirect[0])) foreach($this->Redirect as $r){ if($r['for']=='P'){ if(!preg_match('/[0-9]{14}/',$r['target'])){ fwrite($conf,"RewriteRule ^".$r['format'].'$ /index.php?'.$r['target'].' [R=302,L,NC]'.PHP_EOL.PHP_EOL); } fwrite($conf,"RewriteRule ^".$r['format'].'$ /index.php?post='.$r['target'].' [R=302,L,NC]'.PHP_EOL.PHP_EOL); }// do site redirect in php. } fwrite($conf, 'RewriteCond %{HTTPS} !=on'.PHP_EOL. 'RewriteCond %{HTTP_HOST} !=localhost'.PHP_EOL. 'RewriteCond %{REQUEST_URI} !^.*(jpg|png|gif)$'.PHP_EOL. 'RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NC]'.PHP_EOL.PHP_EOL); fwrite($conf,''.PHP_EOL.'deny from all'.PHP_EOL.''.PHP_EOL); fflush($conf);fclose($conf); } function BuildRedirectConfig($conf){ $this->Redirect=[]; if(preg_match_all('/P\s+(.*)\:\s*([0-9]{14}|.+)\s*;/u',$conf,$ma,PREG_SET_ORDER)){ foreach($ma as $m){ $redirect=[]; $redirect['for'] = 'P'; $redirect['format'] = $m[1]; $redirect['target'] = $m[2]; $this->Redirect[]=$redirect; } } if(preg_match_all('/S\s+(\S+)\s*\:\s*(\S+)\s*\:\s*([0-9]{14})\s*;/u',$conf,$ma,PREG_SET_ORDER)){ foreach($ma as $m){ $redirect=[]; $redirect['for'] = 'S'; $redirect['format'] = $m[1]; $redirect['domain'] = $m[2]; $redirect['target'] = $m[3]; $this->Redirect[]=$redirect; } } } function WriteTokens(){ $tf = fopen('la_tokens.php','w'); fwrite($tf,''.PHP_EOL.PHP_EOL); if(isset($this->LoginTokens) && sizeof($this->LoginTokens)) { foreach($this->LoginTokens as $t){ fwrite($tf,'- '.$t.PHP_EOL); } } fflush($tf);fclose($tf); } function WriteConfig(){ if(!isset($this->Title)) $this->Title = $this->T('那么的维基'); if(!isset($this->ShortTitle)) $this->ShortTitle = $this->T('基'); if(!isset($this->Admin)) $this->Admin = 'admin'; if(!isset($this->DisplayName)) $this->DisplayName = $this->T('管理员'); if(!isset($this->Password)) $this->Password = password_hash('Admin', PASSWORD_DEFAULT).PHP_EOL; $conf = fopen('la_config.php','w'); fwrite($conf,' '.PHP_EOL.PHP_EOL); fwrite($conf,'- Title = '.$this->Title.PHP_EOL); fwrite($conf,'- ShortTitle = '.$this->ShortTitle.PHP_EOL); fwrite($conf,'- Admin = '.$this->Admin.PHP_EOL); fwrite($conf,'- DisplayName = '.$this->DisplayName.PHP_EOL); fwrite($conf,'- Password = '.$this->Password.PHP_EOL); fwrite($conf,'- EMail = '.$this->EMail.PHP_EOL); fwrite($conf,'- SpecialNavigation = '.$this->SpecialNavigation.PHP_EOL); fwrite($conf,'- SpecialSidebar = '.$this->SpecialSidebar.PHP_EOL); fwrite($conf,'- SpecialFooter = '.$this->SpecialFooter.PHP_EOL); fwrite($conf,'- SpecialFooter2 = '.$this->SpecialFooter2.PHP_EOL); fwrite($conf,'- SpecialPinned = '.$this->SpecialPinned.PHP_EOL); fwrite($conf,'- SpecialPinnedNotes = '.$this->SpecialPinnedNotes.PHP_EOL); fwrite($conf,'- DefaultGallery = '.$this->DefaultGallery.PHP_EOL); fwrite($conf,'- SelfAuthPath = '.$this->SelfAuthPath.PHP_EOL); fwrite($conf,'- CommentEnabled = '.($this->CommentEnabled?"True":"False").PHP_EOL); fwrite($conf,'- NewsletterEnabled = '.($this->NewsletterEnabled?"True":"False").PHP_EOL); fwrite($conf,'- HereHost = '.$this->HereHost.PHP_EOL); fwrite($conf,'- HereTitle = '.$this->HereTitle.PHP_EOL); fwrite($conf,'- HereShortTitle = '.$this->HereShortTitle.PHP_EOL); fwrite($conf,'- HereAlbum = '.$this->HereAlbum.PHP_EOL); fwrite($conf,'- HereNavigation = '.$this->HereNavigation.PHP_EOL); fwrite($conf,'- HereFooter = '.$this->HereFooter.PHP_EOL); fwrite($conf,'- ExpHost = '.$this->ExpHost.PHP_EOL); fwrite($conf,'- ExpTitle = '.$this->ExpTitle.PHP_EOL); fwrite($conf,'- ExpShortTitle = '.$this->ExpShortTitle.PHP_EOL); fwrite($conf,'- ExpCaution = '.$this->ExpCaution.PHP_EOL); fwrite($conf,'- ExpAlbum = '.$this->ExpAlbum.PHP_EOL); fwrite($conf,'- ExpNavigation = '.$this->ExpNavigation.PHP_EOL); fwrite($conf,'- ExpFooter = '.$this->ExpFooter.PHP_EOL); fwrite($conf,'- MastodonToken = '.$this->MastodonToken.PHP_EOL); fwrite($conf,'- MastodonURL = '.$this->MastodonURL.PHP_EOL); fwrite($conf,'- MastodonPreferredLang = '.$this->MastodonPreferredLang.PHP_EOL); fwrite($conf,'- HostURL = '.$this->HostURL.PHP_EOL); fwrite($conf,'- APubID = '.$this->APubID.PHP_EOL); fwrite($conf,'- GalleryStep = '.$this->GalleryStep.PHP_EOL); fwrite($conf,'- AllowLanguageChoices = '.$this->AllowLanguageChoices.PHP_EOL); fflush($conf);fclose($conf); $conf = fopen('la_redirect.md','w'); fwrite($conf,$this->DisplayRedirectConfig());fflush($conf);fclose($conf); $this->WriteHTACCESS(); $this->WriteTokens(); } function Install(){ if(!file_exists('la_config.php')){ $this->WriteConfig(); } if(!is_dir('posts')) mkdir('posts'); if(!is_dir('images')) mkdir('images'); if(!is_dir('images/thumb')) mkdir('images/thumb'); if(!is_dir('styles')) mkdir('styles'); if(!is_dir('archive')) mkdir('archive'); $this->WriteStyles(); $this->WriteHTACCESS(); } function ReadFromExistingConfig(){ $f=null; if(file_exists('la_config.php')) $f='la_config.php'; else if(file_exists('la_config.md')) $f='la_config.md'; if(!isset($f)) return; $c = file_get_contents($f); if(preg_match_all('/-\s*(\S+)\s*=\s*(\S+)\s*$/um', $c, $ma, PREG_SET_ORDER)) foreach($ma as $m){ $str = $m[1]; $this->$str = $m[2]; } $this->CommentEnabled = $this->CommentEnabled=="True"; if(!isset($this->GalleryStep)) $this->GalleryStep=20; } function ReadConfig(){ $this->ReadFromExistingConfig(); if(file_exists('la_redirect.md')){ $c = file_get_contents('la_redirect.md'); $this->BuildRedirectConfig($c); } if(!file_exists('la_config.php')){ $this->Install(); } $this->Translations=[]; if(file_exists("translations.md")){ $c = file_get_contents('translations.md'); if(preg_match_all('/-\s+(\S.*)\s*\|\s*(\S.*)$/um',$c, $ma, PREG_SET_ORDER)) foreach($ma as $m){ $entry = []; $entry['zh'] = trim($m[1]); $entry['en'] = trim($m[2]); $this->Translations[] = $entry; } } if(file_exists("custom_translations.md")){ $this->CustomTranslationContent = file_get_contents('custom_translations.md'); if(preg_match_all('/-\s+(\S.*)\s*\|\s*(\S.*)$/um',$this->CustomTranslationContent, $ma, PREG_SET_ORDER)) foreach($ma as $m){ $entry = []; $entry['zh'] = trim($m[1]); $entry['en'] = trim($m[2]); $this->Translations[] = $entry; } } $this->LoginTokens=[]; if(file_exists('la_tokens.php')){ $c = file_get_contents('la_tokens.php'); if(preg_match_all('/-\s+(\S.*)\s*$/um',$c, $ma, PREG_SET_ORDER)) foreach($ma as $m){ $this->LoginTokens[] = $m[1]; } } } function MastodonPostStatus($status){ return $this->MastodonCall('/api/v1/statuses', 'POST', $status); } function MastodonPostMedia($media){ return $this->MastodonCall('/api/v1/media', 'POST', $media); } function MastodonCall($endpoint, $method, $data){ $headers = [ 'Authorization: Bearer '.$this->MastodonToken, 'Content-Type: multipart/form-data', ]; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $this->MastodonURL.$endpoint); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); $reply = curl_exec($ch); if (!$reply) { return json_encode(['ok'=>false, 'curl_error_code' => curl_errno($ch_status), 'curl_error' => curl_error(ch_status)]); } curl_close($ch); return json_decode($reply, true); } function MastodonSendPost(&$post, &$errmsg=NULL){ if(isset($post['mark_value']) && $post['mark_value']==7){ return NULL; } $this->LanguageAppendix = 'zh'; if(in_array($this->MastodonPreferredLang,['en','zh'])){ $this->LanguageAppendix = $this->MastodonPreferredLang; } $this->ConvertPost($post); $media_ids = NULL; $mastodon_post_url = NULL; $imcount = 0; if(isset($post['original_images']) && isset($post['original_images'][0])) foreach($post['original_images'] as $im){ $curl_file = curl_file_create($im, mime_content_type($im), basename($im)); $body = ['file' => $curl_file,]; $response = $this->MastodonPostMedia($body); if(isset($response['id'])){ if(!isset($media_ids)){$media_ids=[];} $media_ids[]=$response['id']; } else{ if(isset($response['error'])) $errmsg.=$response['error']."

"; } $imcount++; if($imcount>=4){ break; } } $text = strip_tags(preg_replace('/<\/(p|blockquote|h[0-9])>/u',"\n\n",$post['html'])); if(isset($this->HostURL) && $this->HostURL!=""){ $text.=("\n\n".$this->T('来自').' '.$this->HostURL.'?post='.$post['id']); } $vis = (isset($post['mark_value']) && $post['mark_value']==6)?"private":"public"; $status_data = [ 'status' => $text, 'visibility' => $vis, 'language' => $this->LanguageAppendix, ]; if(isset($post['prev']) && ($pp=&$this->GetPost($post['prev']))!=$this->NULL_POST){ if(isset($pp['mastodon_url'])){ $status_data['in_reply_to_id'] = basename($pp['mastodon_url']); } } if(isset($media_ids[0])){ $status_data['media_ids']=$media_ids; } $status_data = preg_replace('/(media_ids%5B)[0-9]+(%5D)/','$1$2', http_build_query($status_data)); $status_response = $this->MastodonPostStatus($status_data); if(isset($status_response['url']) && $status_response['url']){ $mastodon_post_url = $status_response['url']; $post['mastodon_url'] = $mastodon_post_url; $this->NeedWritePosts = 1; } if(isset($status_response['error'])) { $errmsg .= $status_response['error']; } return $mastodon_post_url; } function __construct() { $this->ReadConfig(); $this->PDE = new ParsedownExtra(); $this->PDE->SetInterlinkPath('/'); $this->Posts = []; $this->Threads = []; $this->VisitedHere = []; $this->NULL_IMAGE_DUMMY = []; $this->NULL_IMAGE_DUMMY['name']=$this->NULL_IMAGE_DUMMY['file']=$this->NULL_IMAGE_DUMMY['thumb']=""; $this->Markers=['●', '○', '✓', '×', '!', 'P', 'E', 'S', 'N']; $this->PostsPerPage = 40; $this->CommentsPerPage = 100; $this->HotPostCount = 15; $this->TIME_STRING = date('YmdHis'); $this->WayBack = NULL; $this->YearBegin = $this->YearEnd = 2000; $this->DoneReadPosts = $this->DoneReadImages = $this->DoneReadArchive = false; $this->NeedWritePosts= $this->NeedWriteImages= $this->NeedWriteArchive= false; $this->UsePosts = &$this->Posts; $this->PNUMBER=0; } function DoLogout(){ $this->LoggedIn = false; unset($_SESSION['user_id']); $this->RecordToken(true); } function RecordToken($unset_current=false){ if(isset($unset_current) && isset($_COOKIE['la_token'])){ $t = $_COOKIE['la_token']; setcookie('la_token', null, -1,'/'); unset($_COOKIE['la_token']); if (($key = array_search($t,$this->LoginTokens)) !== false) { unset($this->LoginTokens[$key]); } $this->WriteTokens(); return null; }else{ $t = uniqid('la_',true); setcookie('la_token',$t,time()+3600*24*7,'/'); $_COOKIE['la_token'] = $t; $this->LoginTokens[] = $t; $this->WriteTokens(); return $t; } } function LoginThroughToken(){ if(!isset($_COOKIE['la_token'])) return false; $t = $_COOKIE['la_token']; if (($key = array_search($t,$this->LoginTokens)) !== false) { $_SESSION['user_id']=$this->Admin; $this->LoggedIn = true; setcookie('la_token',$t,time()+3600*24*7,'/'); return true; } return false; } function DoLogin(){ session_start(); $redirect=false; if(isset($_GET['logout'])){ $this->DoLogout(); header('Location:index.php'); } else if(!isset($_SESSION['user_id'])){ if(isset($_POST['login_button'])){ $id = trim($_POST['login_id']); $pwd = trim($_POST['login_password']); if(strtolower($this->Admin)==strtolower($id)&&password_verify($pwd, $this->Password)){ $_SESSION['user_id']=$id; $this->RecordToken(false); } $redirect = true; }else if($this->LoginThroughToken()){ // nothing; } }else{ if(strtolower($_SESSION['user_id']) == strtolower($this->Admin)){ $this->LoggedIn = true; } else{ $this->DoLogout();} } if($redirect){ header('Location:index.php'.(isset($_GET['post'])?("?post=".$_GET['post']):"") .(isset($_GET['settings'])?"?settings=true":"")); } } function SetHereMainImage($im_this){ if(isset($im_this) && isset($im_this['parent'])){ $this->HereMainImage = &$this->FindImage($im_this['parent'],true);} } function RecordVisitedHere($image_or_post_name, $image_title){ $visited_here = $this->InExperimentalMode?"visited_experimental":"visited_here"; if(!isset($_SESSION[$visited_here])){ $_SESSION[$visited_here] = []; } if(!(isset($_SESSION[$visited_here][0]) && in_array($image_or_post_name,$_SESSION[$visited_here]))){ $_SESSION[$visited_here][] = $image_or_post_name; } if(isset($image_title)){ $this->HereDisplayTitle=$image_title; } $this->HereNumber = array_search($image_or_post_name,$_SESSION[$visited_here])+1; $_SESSION['here_number'] = $this->HereNumber; $this->VisitedHere = $_SESSION[$visited_here]; } function HereLinkFromNumber($number){ $number -= 1; if($number<0){ $number=0; } if($number>=sizeof($this->VisitedHere)){ $number = sizeof($this->VisitedHere)-1; } if(preg_match('/(jpg|jpeg|png|gif)/u',$this->VisitedHere[$number])){ return "?here=images/".$this->VisitedHere[$number]; } else{ return "?post=".$this->VisitedHere[$number]; } } function WriteStyles(){ $this->style=" html{font-size:18px;font-family:'Noto Serif CJK SC','Times New Roman','SimSun', Georgia, serif;} .page{overflow:none;} body{background-color:%white%;color:%black%;} sup,sub{line-height:0;} .lpctrl{display:none;} blockquote{border-left:2px solid %black%;padding-left:0.3em;} *{box-sizing:border-box;padding:0;margin:0;font-weight:normal;} b,strong,th{font-weight:bold;} select{font-size:inherit;} .page,.page_gallery{padding:1em;padding-top:0;padding-bottom:0;} .hidden_on_desktop,.hidden_on_wide{display:none;} .hidden_on_desktop_force{display:none !important;} ::file-selector-button{background:none;border:none;} a,button,::file-selector-button{text-decoration:underline;color:%black%;text-decoration-thickness:2px;text-underline-offset:0.15em;} a:hover,.button:hover,::file-selector-button:hover{text-decoration:none;color:%gray%;} .button:disabled{background-color:%gray%;pointer-events:none;} header{position:fixed;top:0;width:calc(100% - 2em);background-color:%white%;z-index:10;padding-top:0.5em;box-shadow: 0.5em 0px %white%;} header::before{content:'';position:absolute;left:0;right:0;top:0;height:1.95em;box-shadow:-2em 0em 1em -1em inset %white%;pointer-events:none;} header>div{overflow:auto;white-space:nowrap;} .header_nav{display:inline;} header a,.left a,.footer a,.clean_a,.clean_a a{text-decoration:none;} header a:hover,.button:hover{color:%gray% !important;text-decoration:underline;text-decoration-thickness:2px;text-underline-offset:0.15em;} .exp_h_f{padding-top:0.3em !important;padding-bottom:0.3em !important;line-height:1.5em !important;height:2.1em !important;} .exp_f{text-align:center;} .toc_button{position:absolute;top:0.5em;right:0;text-shadow: 0px 0px 10px %white%;background-color:%white%88;} .footer{background-color:%white%;z-index:10;position:relative;} .invert_a,.invert_a a{color:%gray%;text-decoration:none;} .invert_a:hover,.invert_a a:hover{color:%black% !important;} .gray,.gray a{color:%gray%;} hr{border:1px solid %gray%;} header ul,.small_footer ul,.small_footer span,header li,.small_footer li{display:inline-block;vertical-align:text-top;} header li::before,.small_footer li::before{content:' - '} header li ul{display:none;} header:hover li ul{display:inline;} header li ul li{display:block !important;margin-left:1em;} header li ul li a{font-size:0.9em;} //h1,h2,h3,h4,h5{font-size:1em;} //h1{text-decoration:underline;} header h1,header h2,header h3,header h4,header h5,header p{display:inline;font-size:1rem;} .main{position:relative;word-spacing:-1em;top:2em;margin-bottom:2em;} .main *{word-spacing:initial;} pre{overflow:auto;display:block;line-break:anywhere;white-space:pre-wrap;}code{font-size:0.83em;} ul{display:block;} li{display:block;} .clean_table{border:none;font-size:1em !important;}.clean_table thead{box-shadow:none;}.clean_table td{vertical-align:top;} table{width:100%;border-collapse:collapse;border-bottom:2px solid %black%;border-top:3px solid %black%;} .settings input,.post inpiut{border:none!important;} .post table img{max-width:10rem !important;} td{padding-left:0.1em;padding-right:0.1em;} td:first-child{padding-left:0;} td:last-child{padding-right:0;} tbody tr:hover{box-shadow:inset 0 -2px 0 0px %black%;} thead{box-shadow:inset 0 -1px 0 0px %black%;} .post table{font-size:0.85em;} .interesting_tbody{background:linear-gradient(90deg, %white%ff, %white%88 20em);} .interesting_tbody td{display:contents;} .interesting_tbody tr{position:relative;scroll-margin:4.5em} .interesting_tbody td>*{display:table-cell;} .interesting_tbody td>.wscroll{display:none !important;} .interesting_tbody .post_access{padding-top:0;} .interesting_tbody .post_menu_button{top:0;opacity:0;} .interesting_tbody td>img,.interesting_tbody td>.imd{position:absolute;left:1.4em;z-index:-1;height:1em;width:20em; display:flex;top:0.2em;object-fit:cover;max-width:calc(100% - 1.4em) !important;overflow:hidden;} .interesting_tbody td>.imd>a{display:flex;} .interesting_tbody img{object-fit:cover;width:100%;} .interesting_tbody .p_row{display:flex;position:absolute;left:1.4em;top:0.25em;z-index:-1;flex-wrap:nowrap;max-width:calc(100% - 1.4em);} .interesting_tbody .p_thumb{height:1em;} .interesting_tbody .p_thumb img,.interesting_tbody .p_thumb video{max-height:10rem !important;max-width:20rem !important;} tr:hover .post_menu_button{opacity:1;} .post_current_row{background-color:%graybkg%;mix-blend-mode:screen;text-shadow:0px 0px 0.1em %white%;} .align_right{text-align:right;} .left{display:inline-block;vertical-align:top;width:25%;padding-right:1.5em;padding-bottom:4rem;position:sticky;top:2em; overflow:auto;max-height:calc(100vh - 2.6em);} .center{display:inline-block;vertical-align:top;width:50%;overflow:visible;padding-bottom:4rem;} .center_slides{display:block;vertical-align:top;width:100%;overflow:visible;padding-bottom:4rem;font-size:5vmin;user-select:none;} .center_slides .print_column{display:table;position:fixed;top:0;right:0;left:0;bottom:0;width:100%;height:100%;z-index:90;} .center_slides .print_column .post{display:table-cell;vertical-align:middle;padding:5vmin !important;max-height:100vh;width:100vw;overflow:auto;} .center_slides .active_post{background-color:%white%;}.center_slides .post{background-color:%white%;} .center_slides .post_access{display:none;} .center_slides .post_menu_button{display:none !important;} .center_slides .post_width{display:block;vertical-align:middle;max-height:100vh;overflow-y:auto;overflow-x:hidden;width:100%;} .center_slides .linked_posts{display:none;}.center_slides .ref_compact{position:relative!important;display:block!important;} .slides_buttons{position:fixed;z-index:200;right:0.5rem;bottom:0.5rem;user-select:none;background-color:%white%aa;padding:0.5rem;font-family:monospace;} .slides_buttons a{text-decoration: none;} .center_slides .imd{text-align:center;pointer-events:none;} .imd_float{float:right;width:50% !important;clear:both;margin-left:0.5em !important;} .center_wide{display:inline-block;vertical-align:top;width:75%;padding-left:0.3em;overflow:visible;padding-bottom:4rem;} .center_full{display:inline-block;vertical-align:top;width:100%;overflow:visible;padding-bottom:4rem;} .center_wide .p_thumb{height:12rem;width:12rem;margin:0;margin-right:0.5rem;margin-bottom:0.5rem;box-shadow:5px 5px 15px 2px black;} .linked_posts{padding:0.5em;background-color:#0004;box-shadow:0px 0.2em 0.2em -0.2em inset %shadow%;} .active_post .linked_posts{background-color:%highlight_slice%;} input:checked~.linked_posts,input:checked~a{display:none;} .bkg_recent>.post,.bkg_section{background:%post_white%;box-shadow:0em 0em 0.5em %shadow%;margin-bottom:0.5em;} .bkg_recent>.post>.post_width :last-child{margin-bottom:0;} .sticky_title{position:sticky;top:calc(1.6rem + 2px);z-index:1;background-color:%white%;pointer-events:none;} .center_exp{display:block;width:80%;margin:0 auto;overflow:visible;padding-bottom:1em;} .table_top{position:relative;left:calc(-50% - 0.45em);width:calc(200% + 0.6em);background:%white%;z-index:1; box-shadow:0px 0px 2em 1em %white%;margin-top:2em;margin-bottom:2em;} textarea,input[type=text],input[type=password]{font-family:monospace;width:100%;display:block;font-family:inherit;max-height:60vh;font-size:inherit;} select,textarea,input[type=text],input[type=password]{font-family:monospace;background:none;border:none;border-bottom:1px solid %black%;color:%black%;} .text_highlight input{border-bottom:1px solid %white%;color:%white%;} .button{background:none;border:none;font-family:inherit;color:%black%;font-size:inherit;font-weight:bold;} .post{position:relative;scroll-margin:3.5em;} .active_post{background-color:%highlight_white%;}.active_post .post_access{background-color:%highlight_slice%;} .center_exp .post{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;} .post li,.footer_additional li,.footer_additional li,.post_dummy li {display:list-item;margin-left:1em;list-style:disc;} .post li li,.footer_additional li li,.footer_additional li li,.post_dummy li li {list-style:circle;} ol li{list-style:unset !important;} .post_width > *,.post_dummy > *,.post_ref > *{margin:0;margin-bottom:0.5rem} .post > td:nth-child(3) > *{margin:0;margin-bottom:0.5rem} .post_dummy > *{width:60%;margin:0 auto;margin-bottom:0.5rem} .post_dummy > p img{display:block;width:100%;margin:0 auto;} .gallery_left li{display:list-item;margin-left:1em;list-style:none;} .gallery_left .selected{list-style:'→';} .bkg_section .post_width{padding-top:0;padding-bottom:0;} .bkg_section .restart+.post .post_width{padding-top:0.5em;} .post_width{display:inline-block;margin-left:0.5em;vertical-align:top;} .opt_compact .post_width,.ref_compact .post_width{padding-top:0;padding-bottom:0;} .p_thumb .post_menu_button{right:0.3rem;top:0.3em;} .post_menu_button{position:absolute;display:none;right:0rem;width:1.5rem;box-shadow:0px 0px 3px %shadow%; text-align:center;border-radius:0.3em;user-select:none;cursor:pointer;z-index:10;background-color:%post_white%aa;} .pointer{cursor:pointer;} .post:hover .post_menu_button{display:block;} .pop_menu{position:absolute;top:0.3rem;z-index:95;background-color:%grayslice%; padding:0.3em;right:0.3rem;text-align:right;border-radius:0.3em;font-size:1rem; box-shadow:0px 0px 10px %shadow%;} .pop_menu li{list-style:none;margin-left:0;} .pop_menu hr{border:2px solid rgba(0,0,0,0.1);} .toc{left:60%;width:40%;top:0;position:absolute;} .paa{width:1.4rem;min-width:1.4rem;} .opt_compact .post_access,.ref_compact .post_access{border-right:2px solid %gray%;background-color:%post_white%;right:unset;left:-2em;} .active_post .opt_compact .post_access,.active_post .ref_compact .post_access{background-color:%highlight_white%;} .post_preview{overflow:hidden;margin-bottom:0.4em;background-color:%white%aa;box-shadow: 0px 0px 0.2em %shadow%;} .post_preview:hover{filter:contrast(90%);} .active_post .post_preview:hover{filter:contrast(90%);} .hide_long{max-height:12em;overflow:hidden !important;} .post .post_ref{margin:0;padding-left:1.5rem;} .post_ref_main{display:inline-block;vertical-align:top;max-height:6em;overflow:hidden;margin:0.4em;} .post_ref_images{overflow:hidden;margin:0.4em;margin-top:0;} .post_ref_hint{text-align:right;} .page_selector{padding-top:2rem;text-align:center;} .smaller{font-size:0.85em;} .bigger{font-size:1.3em;} .block{display:block;} .restart{text-align:left;padding-top:1rem;padding-bottom:0.5rem;} .opt_compact{margin-left:2rem;} .post_box_top{padding-bottom:0.3em;padding-top:0.3em;} .post_box_fixed_bottom{position:sticky;bottom:0em;background-color:%white%;z-index:5;} .spacer{height:0.5em;} .pop_right,.pop_right_big{position:fixed;top:0;right:0;bottom:0;width:30%;z-index:100;background-color:%graybkg%;display:none; transition-timing-function:ease-out;padding:1rem;overflow:auto;} @keyframes pop_slide_in{0%{right:-30%;}100%{right:0%;}} @keyframes pop_slide_out{0%{right:0%;}100%{right:-30%;}} @keyframes pop_slide_in_big{0%{right:-30%;}100%{right:0%;}} @keyframes pop_slide_out_big{0%{right:0%;}100%{right:-30%;}} .backdrop{position:fixed;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,0.5);transition-timing-function:ease-out;z-index:90;} @keyframes backdrop_fade_in{0%{opacity:0%;}100%{opacity:100%;}} @keyframes backdrop_fade_out{0%{opacity:100%;}100%{opacity:0%;}} .toc_entry_1{font-size:1.1em;} .toc_entry_2{font-size:1.0em;padding-left:0.5rem;} .toc_entry_3{font-size:0.9em;padding-left:1rem;} .toc_entry_4{font-size:0.85em;padding-left:1.5rem;} .toc_entry_5{font-size:0.8em;padding-left:2rem;} h1,h2,h3,h4,h5{scroll-margin:2.5em;} .post h1,.post h2,.post h3,.post h4,.post h5{margin-top:1rem;} .left ul h1,.left ul h2,.left ul h3,.left ul h4,.left ul h5,.left ul p{font-size:1em;} .deleted_post{color:%gray%;text-decoration:line-through;} #file_list{margin-top:0.5em;} .file_thumb img,.file_thumb video{max-height:100%;max-width:100%;object-fit:cover;min-width:100%;min-height:100%;} .file_thumb video{border:2px dashed %black%;}f #file_list li{margin-bottom:0.3em;} .ref_thumb{white-space:nowrap;overflow:hidden;} .ref_thumb .file_thumb{width:2em;height:2em;margin:0;margin-right:0.3em} .side_thumb li{margin:0.4em;display:inline-block;} .file_thumb{width:4em;height:4em;display:inline-block;line-height:0;vertical-align:middle;overflow:hidden;} .p_row{display:flex;flex-wrap:wrap;width:100%;} .p_thumb{display:flex;flex-grow:100;height:6rem;overflow:hidden;position:relative;margin-right:0.5em;margin-bottom:0.5em;} .p_thumb_narrow{width:1rem !important;flex-grow:1;opacity:0.2;} .p_thumb img,.p_thumb video{object-fit:cover;max-height:100%;min-width:100%;}.p_thumb a{display:contents;} .p_thumb:hover .post_menu_button{display:block;} .p_thumb_selected{color:%black% !important;} .p_thumb_selected{display:block;} .post .p_thumb img,.post .p_thumb video{max-height:6rem;} .p_thumb video{border-bottom:0.4em dashed %black%;border-top:0.4em dashed %black%;} .p_thumb_end{flex-grow:10000 !important;box-shadow:none;align-items:center;padding:2em !important;} .p_thumb_end:hover, .p_thumb_end a:hover{background-color:%gray%;cursor:pointer;} .big_image_box{position:fixed;top:0;bottom:0;left:0;width:75%;z-index:95;text-align:center;pointer-events:none;} .big_image_box *{pointer-events:auto;} .big_image_box img,.big_image_box video{position:absolute;margin:auto;top:0;left:0;right:0;bottom:0;cursor:unset;} .here_image_box{position:relative;width:100%;text-align:center;height:calc(100vh - 4.5em);} .here_image_box img,.here_image_box video{position:absolute;margin:auto;top:0;left:0;right:0;bottom:0;cursor:unset;} .big_side_box{position:fixed;top:0;bottom:0;right:0;width:25%;overflow:auto;z-index:98;color:%black%;padding:1rem;pointer-events:none;} .big_side_box a,.big_side_box hr,#dropping_background{color:%black%;} .big_side_box a:hover{color:%gray%;} .big_side_box *{pointer-events:auto;} .big_side_box .post_preview{border-bottom:1px dotted %black%;background-color:unset;} .image_nav{pointer-events:none;} #dropping_background{background-color:rgba(255,255,255,0.4);position:fixed;top:0;right:0;bottom:0;left:0;z-index:100;text-align:center; box-shadow:0px 0px 500px black inset;display:flex;align-items:center;} img,video{cursor:pointer;max-height:100%;max-width:100%;vertical-align:middle;} .post img,.post video{max-height:min(70vh, 20rem);max-width:min(100%, 20rem);} .post > a > img,.post > a > video{display:block;margin:0.3em auto;} .post .original_img{max-width:100%;display:inline-block;vertical-align:middle; margin-left:auto;margin-right:auto;max-width:100%;max-height:90vh;} .center_exp .post .original_img{display:block;} .original_img img,.original_img video{max-height:90vh;max-width:100%;} .p_row .original_img{margin-bottom:0;} .post_ref .original_img{margin:unset;max-width:unset;max-height:min(70vh, 20rem);max-width:min(100%, 20rem);} .imbtn{color:rgba(0,0,0,0);display:block;contain:content;padding:0.25em;margin-bottom:0.5em;text-decoration:none;} .imbtn img{display:block;object-fit:cover;position:absolute;top:0;left:0;bottom:0;right:0;margin:auto;z-index:-1; min-width:100% !important;min-height:100% !important;filter:opacity(70%);transition:0.1s;} .imbtn:hover img{filter:opacity(20%) blur(0.2em);} .imbtn:hover{color:%black% !important;} .imbtn:hover {color:%black%;text-shadow:0px 0px 5px %white%;} header .imbtn{display:inherit;border:none;padding:0em;height:unset;height:unset;margin:0em;contain:unset;} header .imbtn:hover{border:none;color:%gray% !important;} header .imbtn img{display:none;} .b ul{font-size:1.4em;} no_pop{cursor:unset;} p{min-height:0.8em;} .bold,.bold *{font-weight:bold;} .footer_additional{display:inline-block;width:50%;vertical-align:text-top;white-space:normal;} .small_footer{background-color:%white%;padding-bottom:0.5em;position:sticky;bottom:0px;z-index:10;box-shadow: 0.5em 0px %white%;} .small_footer>div{overflow:auto;white-space:nowrap;} .small_footer::before{content:'';position:absolute;left:0;right:0;bottom:0;height:1.95em;box-shadow:-2em 0em 1em -1em inset %white%;pointer-events:none;} .top_post_hint{margin-left:0.5em;font-weight:bold;} .white{color:%white%;} .full_box{border:1px solid %black% !important;padding:0.3rem;overflow:auto;} .image_nav_prev,.image_nav_next{z-index:100;position:absolute;line-height:0;height:50%;width:20%;top:25%;display:flex;align-items:center; transition:background-size .2s ease;padding:0.5em;text-shadow:0px 0px 5px black;user-select:none;pointer-events:auto;} .image_nav_prev{left:0;justify-content:left;background:linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.4)); background-repeat:no-repeat;background-size:0% 100%;} .image_nav_prev:hover,.image_nav_next:hover{background-size:100% 100%;} .image_nav_next{right:0;justify-content:right;background:linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.2)); background-repeat:no-repeat;background-size:0% 100%;transition:background-size .2s ease;background-position-x:100%;} .inquiry_buttons{position:fixed;left:0;right:25%;text-align:center;bottom:1em;margin:0 auto;width:max-content; background-color:rgba(0,0,0,0.5);z-index:110;padding:0.2em;padding-left:1em;padding-right:1em; border-radius:1em;box-shadow:0px 0px 5px;text-shadow:0px 0px 5px black;opacity:1;user-select:none;} .lr_buttons{background-color:rgba(0,0,0,0.5);padding:0.5em;padding-top:1em;padding-bottom:1em; border-radius:1em;box-shadow:0px 0px 5px;font-size:1.2rem;text-shadow:0px 0px 5px black;} .img_btn_hidden{opacity:0;transition:opacity 0.2s;} .special_alipay{background-color:#027aff;color:white;white-space:nowrap; font-family:sans-serif;font-weight:bold;border-radius:0.7em;font-size:0.75em;padding:0.25em;} .special_paypal{background-color:white;color:#253b80;white-space:nowrap; font-family:sans-serif;font-weight:bold;border-radius:2em;font-size:0.75em; padding:0.25em;padding-left:0.5em;padding-right:0.65em;font-style: italic;} .special_paypal_inner{color:#169bd7;} #waiting_bar{position:fixed;z-index:200;top:0;left:0;right:0;height:0.2em;background-color:%black%;transform:translate(-100%,0); animation:anim_loading 1s linear infinite;} @keyframes anim_loading{0%{transform:translate(-100%,0);} 100%{transform:translate(100%,0);}} .product_ref{width:32%;padding:0.2em!important;display:inline-block;text-align:center;vertical-align:top;margin-bottom:0.8em;} .product_thumb{max-height:11em;max-width:11em;display:inline-flex;margin-bottom:0.2em;background-color:%graybkg%;} .product_thumb img,{box-shadow:none;object-fit:contain;max-height:unset;max-width:unset;width:100%;margin:0 auto !important;} .product_ref p{margin-bottom:0.2em;text-align:left;} .post_preview .product_thumb{max-height:4em;max-width:6em;} .purchase_button{background-color:%black%;color:%white%;padding-left:0.5em;padding-right:0.5em;text-decoration:none;font-weight:bold;} .page_break{page-break-after:always;} .text_highlight,.text_highlight a,.text_highlight select{background-color:%black%;color:%white%;border:none;} .gray.text_highlight,.gray.text_highlight a,.gray.text_highlight select{background-color:%gray%;color:%white%;} .show_on_print{display:none;}.inline_print{display:none;} .comment{font-size:0.9em;font-family:sans-serif;overflow:auto !important;width:100%;} .comment tbody tr:hover{box-shadow:none;} .comment table{border:none;} .comment li{display:list-item;list-style:'→';padding-left:0.3em;} .comment ul{padding-left:1em;} .comment ul li *{margin-bottom:0.5em;} .history li{display:list-item;list-style:disc;padding-left:0.3em;} .history li li{list-style:circle;} .history ul{padding-left:1em;} .history a{text-decoration:underline;} .history .list{overflow:auto;white-space:nowrap;} .diff_table{table-layout:fixed;} .diff_table thead{font-size:0.9em;text-align:center;} .diff_table tbody pre{font-size:0.9rem;white-space:pre-line;} .diff_table td{vertical-align:top;} .omittable_title{display:block;width:100%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;} .wayback_close{float:right;} .wayback_expand{display:inline;} .post_selecting .post>*>*{pointer-events:none;} .post_selected{background-color:%graybkg%;} .small_pad{padding:0.2em;padding-top:0.1em;padding-bottom:0.1em;} .wscroll{scroll-margin:3.5em;padding-left:0.3em;display:none;font-weight:bold;font-size:0.75em;box-shadow: 13em 0em 4em -8em inset %gray%;color:%white%;} .wscroll:target{display:block;} .post_ref .wscroll{display:none !important;} .wayback_link{display:inline;} .imd{object-fit:cover;width:100%;} .center_exp .post>.imd,.center_exp .p_row{width:60%;} .center_exp .p_thumb img,.center_exp .p_thumb video{max-height:3rem;} .center_exp .p_thumb{max-height:3rem;filter:opacity(40%);} .center_exp .p_thumb:hover{filter:unset;} #here_buttons{display:contents;} .here_buttons_inner{position:absolute;margin:auto;top:0;left:0;right:0;bottom:0;max-height:100%;max-width:100%;} .here_btn{position:absolute;z-index:110;transform:translate(-50%,-50%); width:2em;height:2em;display:block;border:1px solid %black%;background-color:rgba(0,0,0,0.5);} .round_btn{box-shadow: 0px 0px 0px 1px inset %black%;display:inline-block;padding-left:0.4em;padding-right:0.4em;border-radius:0.5em;} .center .center{width:100%;padding-bottom:unset;} .center{border:none;} .center{overflow:auto;} .center>tbody>tr:hover{box-shadow:none;} .center>tbody>tr>td{white-space:normal;vertical-align:top;min-width:1em;} .center>tbody>tr>td:first-child{text-align:center;color:%gray%;padding-left:0.1em;} .center>tbody>tr>td:nth-child(1)>*{} .center>tbody>tr>td:nth-child(2){text-align:center;color:%gray%;} .center>tbody>tr>td:nth-child(2) a{color:%gray%;} .center>tbody>tr>td:nth-child(2) .marked{color:%black% !important;} .center>tbody>tr>td:nth-child(3){width:100%;text-align:left;} .center>tbody>tr>td:nth-child(3)>div{overflow:auto;} .center>tbody>tr>td:last-child{padding-right:0.5em;} .main>.center>tbody>tr{border-bottom:1px dotted %black%;} .ref_count{cursor:pointer;} td .ref_count{text-align:left;display:block;} .big_side_box .center{width:100%;} #big_image_upload{max-width:100%;} label{text-align:left;display:inline-block;} @media screen and (max-width:1000px) and (min-width:666px){ .left{width:35%;} .center,.center_wide{width:65%;} .center_wide .p_thumb{height:8rem;width:8rem;margin-right:0.4rem;margin-bottom:0.4rem;box-shadow:3px 3px 12px 2px black;} .post_width{width:calc(100% - 1.5rem);padding-left:0.2em;} .hidden_on_wide{display:unset;} .pop_right{width:30%;} .pop_right_big{width:40%;} @keyframes pop_slide_in{0%{right:-30%;}100%{right:0%;}} @keyframes pop_slide_out{0%{right:0%;}100%{right:-30%;}} @keyframes pop_slide_in_big{0%{right:-40%;}100%{right:0%;}} @keyframes pop_slide_out_big{0%{right:0%;}100%{right:-40%;}} .big_side_box{width:35%;} .big_image_box{width:65%;} .inquiry_buttons{right:35%;} .table_top{left:calc(-50% - 1.7em);width:calc(154% + 0.5em);} .post_dummy > *{width:80%;max-width:55rem;} .center_exp .post>.imd,.center_exp .p_row{width:80%;max-width:55rem;} .here_btn{width:1.5em;height:1.5em;} } @media screen and (max-width:666px){ .main{top:unset;margin-bottom:unset;} html{font-size:16px;} pre{max-width:85vw;} #titlectrl:checked ~ header .mobile_fold{display:block !important;} #titlectrl:checked ~ .main .mobile_fold{display:block !important;} #titlectrl:checked ~ header li ul{display:inline;} .mobile_fold{display:none !important;} .hidden_m{display:none !important;} .block_m{display:block !important;} .hidden_on_desktop{display:inherit;} .hidden_on_wide{display:inherit;} header{position:inherit;} header ul{display:block;} header li{display:block;} header li::before{content:''} header::before{box-shadow:none;display:none;} .small_footer::before{box-shadow:none;display:none;} .left{position:relative;width:100%;top:unset;height:unset;max-height:unset;padding-right:0;display:block;} .center,.center_wide,.center_full{display:block;position:relative;line-break:anywhere;left:0;top:0;width:100%;padding-left:0;} .center_wide .p_thumb{height:6rem;width:6rem;margin-right:0.3rem;margin-bottom:0.3rem;box-shadow:2px 2px 10px 1px black;} .pop_right,.pop_right_big{top:unset;right:0;bottom:0;left:0;width:100%;} .pop_right{height:30%;} .pop_right_big{height:70%;} @keyframes pop_slide_in{0%{bottom:-30%;}100%{bottom:0%;}} @keyframes pop_slide_out{0%{bottom:0%;}100%{bottom:-30%;}} @keyframes pop_slide_in_big{0%{bottom:-70%;}100%{bottom:0%;}} @keyframes pop_slide_out_big{0%{bottom:0%;}100%{bottom:-70%;}} .big_image_box{position:fixed;top:0;bottom:8.5rem;left:0;right:0;width:100%;} .side_box_mobile_inner{background:linear-gradient(to bottom, rgba(0,0,0,0), rgba(1,1,1,0.9) 20%); transition:none;background-size:100% 100%;padding:0.5rem;padding-bottom: 5em;} .side_box_mobile_inner:hover{background-size:100% 100%;} .big_side_box{position:fixed;top:0;bottom:0;right:0;left:0;width:100%; height:unset;padding:0;padding-top:calc(100vh - 8.5rem);background:none;} .p_thumb{height:3rem;} .center .post{padding-right:0rem;padding-left:0rem;} .post .p_thumb img,.post .p_thumb video{max-height:3rem;} .page,.page_gallery{padding:0.2em;padding-top:0;} header{padding-top:0.3em;} .toc_button{top:0.3em;} .small_footer{padding-bottom:0.3em;} .footer_additional{display:block;width:100%;} .album_hint{display:block;font-size:1rem;} .image_nav{position:absolute !important;} .image_nav_prev,.image_nav_next{width:25%;} .image_nav_prev:hover,.image_nav_next:hover{background-size:0% 100%;color:%black% !important;} .inquiry_buttons{position:relative;left:unset;right:unset;text-align:left;bottom:unset;margin:unset;width:unset; background-color:unset;z-index:unset;padding:unset;padding-left:unset;padding-right:unset; border-radius:unset;box-shadow:unset;text-shadow:unset;}.img_btn_hidden{opacity:1;} .lr_buttons{background-color:unset;padding:unset;padding-top:unset;padding-bottom:unset; border-radius:unset;box-shadow:unset;font-size:1.3rem;text-shadow:unset;} .opt_compact,.ref_compact{line-break:anywhere;} .table_top{left:unset;width:100%;overflow:auto;} .post table img{max-width:30vw !important;} .product_ref{width:100%;display:block;} .post_dummy > *{width:100%;max-width:25rem;} .center_exp .post>.imd,.center_exp .p_row{width:100%;max-width:25rem;} .center_exp .post .p_thumb img,.center_exp .post .p_thumb video{max-height:2rem;} .center_exp .p_thumb{height:2rem;filter:opacity(40%);} .center_exp .p_thumb:hover{filter:unset;} .sticky_title{top:0;} .small_footer{position:relative;} #upload_selector{width:100%;} .interesting_tbody{background:linear-gradient(90deg, %white%ff, %white%88 10em);} .wayback_expand{display:block;text-align:center;} .wayback_link{display:block;} .center_exp{display:block;width:100%;margin:0 auto;padding-bottom:1em;} .center_exp .post{overflow:auto;} .center_exp .imd{width:100%;} .here_btn{width:1.2em;height:1.2em;} .exp_h_f{height:unset !important;} .exp_f{margin-bottom:1em;} .linked_posts{padding-left:1em;} .center>tbody>tr>td{min-width:unset;} .center>tbody>tr>td:last-child{padding-right:0.1em;} } @media print{ .small_footer .hidden_on_print{display:none} header b,.small_footer b{font-weight:normal;} header{display:table-header-group;box-shadow:none;} .main{display:table-row-group;top:unset;margin-bottom:unset;} .small_footer{text-align:right;} header::before{box-shadow:none;display:none;} header::after{display:block;height:1em;content:' ';} .small_footer::before{box-shadow:none;display:block;height:1em;position:relative;} body,footer,header,.small_footer,a,.clean_a,.invert_a,.clean_a a,.invert_a a{background:none;color:black;} .bkg_section,.bkg_recent>.post,.active_post{background:none !important;box-shadow:none;} .post *,.post_dummy *{margin-bottom:0em;} .p_row,.post table,.post img,.post_ref img,.post_ref .original_img, .post_width>.original_img,.post pre{margin-top:0.5rem;margin-bottom:0.5rem;text-indent:0;} pre{white-space:pre-wrap;line-break:anywhere;} .post p{line-height:1.3;text-indent:2em;} .product_ref p {text-indent:0;} .post table img{margin:0 !important;} .post h1+p,.post h2+p,.post img+p,.post video+p,.post .imd+p,.post table+p,.last_wide p:first-of-type{text-indent:0;} .post ul,.post ol{margin:0.5rem !important;margin-left:1.4rem !important;margin-right: 0rem !important;} table{border-bottom:2px solid black;border-top:2px solid black;} .post table img{max-width:5em;max-width:8em !important;max-height:8em !important;} thead{box-shadow:inset 0 -1px 0 0px black;background:none;} .linked_posts{display:none;} .post_width{overflow:clip;left:0;width:100%;padding-left:0em;padding-right:0em;} .section .post h2{font-size:1.8em;margin:1.5em auto 0 !important;}.list h2,.compact h2{margin:0 !important;} .section .post h3{font-size:1.5em;margin:1.0em auto 0 !important;}.list h3,.compact h3{margin:0 !important;} .section .post h4{font-size:1.1em;margin:0.5em auto 0 !important;}.list h4,.compact h4{margin:0 !important;} .post .post{margin-bottom:0.5rem;margin-top:0.5rem;} .gray,.gray a,.deleted_post{color:rgba(0,0,0,0.5);} .left{display:none;} .center, .center_wide, .center_full{width:100%;padding:0;font-size:16px;line-height:1.3} hr{border:1px solid black;} .post_box_top{display:none;} .post_access{display:none;} .opt_compact .post_access,.ref_compact .post_access{border-right:none;display:inline;background:unset;} .text_highlight,.text_highlight a,.gray.text_highlight,.gray.text_highlight a,.purchase_button{background-color:lightgray;color:black;} .hidden_on_print{display:none !important;} .print_column{column-count:2;margin-top:0.5rem;margin-bottom:0.5rem;} .print_column .print_column{column-count:1;margin:unset;} .opt_compact{margin-left:0;left:1.5em;} .post .post_ref{padding-left:2rem;} .section .post h1:first-of-type{column-span:all;display:block;margin-top:1rem !important;margin-bottom:0.5rem !important;} .bkg_section .restart+.post .post_width{padding-top:0;} .restart{background-color:unset;padding:unset;} .opt_compact h1:first-of-type,.ref_compact h1:first-of-type{display:unset;} .table_top{position:relative;left:0;width:100%;background:none;z-index:1;box-shadow:none;} .header_nav{display:none;} .show_on_print{display:block;}.inline_print{display:inline;} blockquote{border-left:2px solid black;} .footer_additional{display:none;} .small_footer{margin-top:1rem;box-shadow:none;} .page{display:table;width:100%;} .page_selector{display:none;} .p_thumb{height:4rem;margin-bottom:0.25rem;} .post .p_thumb img,.post .p_thumb video{max-height:4rem;} .sticky_title{box-shadow:none;} .center_wide .p_thumb{display:inline-flex;height:5.8rem;width:5.8rem;margin-right:0;} .center_wide .p_row{display:block;} .interesting_tbody{background:none;} .interesting_tbody img{display:none !important;} .imd{margin-top:0.5em;margin-bottom:0.5em;line-height:0px;} .p_row .imd{margin-top:0em;margin-bottom:0em;} .center,.center>tbody,.center>tbody>tr,.center>tbody>tr>td{display:block;} .main>.center>tbody>tr{border:none;} .center>tbody>tr>td:first-child{display:none;color:rgba(0,0,0,0.5);} .center>tbody>tr>td:nth-child(2){display:none;color:rgba(0,0,0,0.5);} .center>tbody>tr>td:nth-child(2) a{display:none;color:rgba(0,0,0,0.5);} .center>tbody>tr>td:nth-child(3){margin:unset;padding:unset;} .post > td:nth-child(3) > *{margin:unset;padding:unset;} .wide_post_print{column-span:all;margin-top:1em;margin-bottom:1em;} } "; //$this->style=preg_replace('/%highlight_white%/','#5b3607',$this->style); //$this->style=preg_replace('/%highlight_slice%/','#734307',$this->style); //$this->style=preg_replace('/%grayslice%/','#442c0b',$this->style); //$this->style=preg_replace('/%post_white%/','#2d2110',$this->style); //$this->style=preg_replace('/%white%/','#231a0d',$this->style); //$this->style=preg_replace('/%black%/','#f8ca9b',$this->style); //$this->style=preg_replace('/%gray%/','#ac7843',$this->style); //$this->style=preg_replace('/%graybkg%/','#39270e',$this->style); //$this->style=preg_replace('/%shadow%/','#000000cc',$this->style); $this->style=preg_replace('/%highlight_white%/','#804a06',$this->style); $this->style=preg_replace('/%highlight_slice%/','#ae6407',$this->style); $this->style=preg_replace('/%grayslice%/','#6a491c',$this->style); $this->style=preg_replace('/%post_white%/','#4a3413',$this->style); $this->style=preg_replace('/%white%/','#2d2214',$this->style); $this->style=preg_replace('/%black%/','#f8ca9b',$this->style); $this->style=preg_replace('/%gray%/','#f8ca9b88',$this->style); $this->style=preg_replace('/%graybkg%/','#a9270e',$this->style); $this->style=preg_replace('/%shadow%/','#000000ee',$this->style); $f = fopen('styles/main.css','w'); fwrite($f,$this->style); fclose($f); } function GiveSafeEMail(){ return preg_replace('/\./u','[dot]',preg_replace('/\@/u','[at]',$this->EMail)); } function &FindImage($name, $loose=false){ if(!isset($name) || !$name){ return $this->NULL_IMAGE; } if(isset($this->Images[0])) foreach($this->Images as &$im){ if($loose) { if(preg_match('/'.preg_quote($name).'/u',$im['name'])) return $im; } else { if($im['name']==$name) return $im; } } return $this->NULL_IMAGE; } function &GiveImageInHere($rand=false){ $this->ReadImages(); $this->DetectPageType(); $album = $this->PageType=='here'?$this->HereAlbum:$this->ExpAlbum; if(!isset($album) || !$album){ if(isset($this->Images[0])) return $this->Images[0]; else return $this->NULL_IMAGE; } $imlist=[]; $imlist_fallback=[]; if(isset($this->Images[0])){ foreach($this->Images as &$im){ if(isset($im['galleries'][0]) && in_array($album,$im['galleries']) && $this->CanShowImage($im)){ if(!$rand) return $im; else { $imlist_fallback[] = $im; if(!in_array($im['name'],$this->VisitedHere)) $imlist[] = $im; } } } } if(!$rand || !isset($imlist_fallback[0])) return $this->NULL_IMAGE; if(sizeof($imlist)){ $r = random_int(0, sizeof($imlist)-1); return $imlist[$r]; }else{ $r = random_int(0, sizeof($imlist_fallback)-1); return $imlist_fallback[$r]; } } function ImageTitle($im){ $imtitle = (isset($im)&&isset($im['title']))?$im['title']:NULL; if(isset($im['parent'])&&($imp = &$this->FindImage($im['parent'],true))&&isset($imp['title'])){ $imtitle=$imp['title']; } return $imtitle; } function ImageHasHere(&$im, $here_name){ if(!isset($im['here'])||!isset($im['here'][0])) return false; foreach($im['here'] as $h) { if($h[0] == $here_name) return true; } return false; } function ReadImages($clear_non_exist = false){ $path = 'images/list.md'; if($this->DoneReadImages){ return; } if(!file_exists($path)){ $f = fopen($path,'w'); fflush($f); fclose($f); } $c = file_get_contents($path); if(preg_match_all('/GALLERY\s+(\S+)(.*)$/mu', $c, $ma, PREG_SET_ORDER)) foreach($ma as $m){ $g=[]; $g['name']=$m[1];//$g['count']=0; if(preg_match('/FEATURED([^;]*?);/u', $m[2], $arg)){ $g['featured']=true; } if(preg_match('/EXPERIMENTAL([^;]*?);/u', $m[2], $arg)){ $g['experimental']=true; } if(preg_match('/DESCRIPTION\s+([^;]+);/u', $m[2], $arg)){ $g['description']=$arg[1]; } $this->Galleries[] = $g; } if(preg_match_all('/^-\s*([^;]+)\s*?;\s*?(.*)$/mu', $c, $ma, PREG_SET_ORDER)) foreach($ma as $m){ $name = trim($m[1]); $item = []; $item['file'] = 'images/'.$name; $item['name'] = $name; if(file_exists('images/thumb/'.$name)){$item['thumb']='images/thumb/'.$name;}else{$item['thumb']='images/'.$name;} if(preg_match('/REFS\s+([^;]*);/u',$m[2],$refs) && preg_match_all('/[0-9]{14}/u',$refs[1],$rs, PREG_SET_ORDER)){ $item['refs']=[]; foreach($rs as $r){ if(!in_array($r[0], $item['refs'])) $item['refs'][] = $r[0]; } } if(preg_match('/GAL\s+([^;]*);/u',$m[2],$gals) && preg_match_all('/(\S+)/u',$gals[1],$ga, PREG_SET_ORDER)){ $item['galleries']=[]; foreach($ga as $g){ if(!in_array($g[0], $item['galleries'])) $item['galleries'][] = $g[0]; } } if(preg_match('/PRODUCT\s+([^;]*);/u',$m[2],$product)){ $item['product']=$product[1]; } if(preg_match('/PARENT\s+([^;]*);/u',$m[2],$parent)){ $item['parent']=$parent[1]; } if(preg_match('/TITLE\s+([^;]*);/u',$m[2],$title)){ $item['title']=$title[1]; } if(preg_match('/ALIGN\s+([^;]*);/u',$m[2],$align)){ $item['align']=$align[1]; } if(preg_match('/HERE\s+([^;]*);/u',$m[2],$heres) && preg_match_all('/(\S+)-(\S+)-(\S+)/u',$heres[1],$here, PREG_SET_ORDER)){ $item['here']=[]; foreach($here as $h){ if(!$this->ImageHasHere($item, $h[1])) $item['here'][] = [$h[1],$h[2],$h[3]]; } } if(preg_match('/\.mp4/u',$item['name'])){ $item['video']='video/mp4'; } $this->Images[] = $item; } $files = array_merge([],glob('images/*.jpg')); $files = array_merge($files,glob('images/*.jpeg')); $files = array_merge($files,glob('images/*.png')); $files = array_merge($files,glob('images/*.gif')); $files = array_merge($files,glob('images/*.mp4')); if(isset($files[0]))foreach($files as $file) { if(preg_match('/[0-9]{14,}\.(jpg|jpeg|gif|png|mp4)/u', $file, $m)) { $name = trim($m[0]); if(!$this->FindImage($name)){ $item = []; $item['name']=$name; $item['file'] = 'images/'.$name; if(file_exists('images/thumb/'.$name)){$item['thumb']='images/thumb/'.$name;}else{$item['thumb']='images/'.$name;} $this->Images[] = $item; } } } if($clear_non_exist){ if(isset($this->Images[0]) && isset($files[0])){ foreach($this->Images as &$im){ if(!in_array($im['file'],$files)){ $im['deleted'] = 1; } } } } function cmpf($a, $b){ if ($a['name'] == $b['name']) return 0; return (($a['name'] > $b['name']) ? 1 : -1); } function cmpaf($a, $b){ if ($a['name'] == $b['name']) return 0; return ($a['name'] > $b['name']) ? -1 : 1; } if(isset($this->Galleries[0]))usort($this->Galleries,"cmpf"); if(isset($this->Images[0]))usort($this->Images,"cmpaf"); $this->DoneReadImages = 1; } function WriteImages(){ if(isset($this->WayBack)) return; $path = 'images/list.md'; $f = fopen($path,'w'); if(isset($this->Galleries[0]))foreach($this->Galleries as &$g){ if(isset($g['deleted'])) continue; fwrite($f,'GALLERY '.$g['name']); if(isset($g['featured']) && $g['featured']!=false) { fwrite($f,' FEATURED;'); } if(isset($g['experimental']) && $g['experimental']!=false) { fwrite($f,' EXPERIMENTAL;'); } if(isset($g['description']) && $g['description']!="") { fwrite($f,' DESCRIPTION '.$g['description'].';'); } fwrite($f, PHP_EOL); } if(isset($this->Images[0]))foreach($this->Images as &$im){ if(isset($im['deleted'])) continue; fwrite($f, "- ".$im['name'].'; '); if(isset($im['refs']) && isset($im['refs'][0])){ fwrite($f, 'REFS '.implode(" ",$im['refs'])."; "); } if(isset($im['galleries']) && isset($im['galleries'][0])){ fwrite($f, 'GAL '.implode(" ",$im['galleries'])."; "); } if(isset($im['product']) && $im['product']!=''){ fwrite($f, 'PRODUCT '.$im['product']."; "); } if(isset($im['parent']) && $im['parent']!=''){ fwrite($f, 'PARENT '.$im['parent']."; "); } if(isset($im['title']) && $im['title']!=''){ fwrite($f, 'TITLE '.$im['title']."; "); } if(isset($im['align']) && $im['align']!='' && $im['align']!='middle'){ fwrite($f, 'ALIGN '.$im['align']."; "); } if(isset($im['here']) && $im['here']!=''){ fwrite($f, 'HERE '); foreach($im['here'] as $here){ fwrite($f, implode('-',$here).' '); } fwrite($f, '; '); } fwrite($f, PHP_EOL); } fflush($f); fclose($f); } function EditImage($name, $link_gallery, $do_remove = false, $product_link=NULL, $rename=NULL, $parent=NULL, $align=NULL){ if(!($im = &$this->FindImage($name))) return; if(isset($link_gallery)){ if($do_remove){ if(!isset($im['galleries']) || !isset($im['galleries'][0])) return; foreach($im['galleries'] as $key => $g){ if ($g==$link_gallery) unset($im['galleries'][$key]); } $im['galleries'] = array_merge($im['galleries']); }else{ if(!isset($im['galleries'])) $im['galleries']=[]; foreach($im['galleries'] as &$g){ if ($g==$link_gallery) return; } $im['galleries'][]=$link_gallery; } } if(isset($product_link)){ if($product_link!=''){$im['product']=$product_link;} else{unset($im['product']);} } if(isset($rename) && $rename!=$im['name']){ $ext=pathinfo($im['file'],PATHINFO_EXTENSION); rename($im['file'], 'images/'.$rename.'.'.$ext); if(isset($im['thumb'])) rename($im['thumb'], 'images/thumb/'.$rename.'.'.$ext); $im['name'] = $rename.'.'.$ext; } if(isset($parent) && $parent!=$im['parent']){ if($parent==''){ unset($im['parent']); } else{ $im['parent'] = $parent; } } if(isset($align) && in_array($align,['top','middle','bottom'])){ if($align=='middle'){ unset($im['align']); } else{ $im['align']=$align; } } $this->NeedWriteImages = 1; } function RegenerateThumbnails(){ $glob = glob('images/*.jpg'); if(!is_dir('images/thumb')) mkdir('images/thumb'); foreach($glob as $file) { $thumb_destination = 'images/thumb/'.basename($file); $img = new Imagick($file); $geo=$img->getImageGeometry(); $width=$geo['width']; $height=$geo['height']; $lim=400; $scale = $lim / min($width,$height); if($scale<1){ $img->resizeImage($width*$scale,$height*$scale,imagick::FILTER_GAUSSIAN,0.7); } $img->setImageFormat('jpeg'); $img->setInterlaceScheme(Imagick::INTERLACE_PLANE); $img->setImageCompressionQuality(90); $img->writeImage($thumb_destination); } } function CleanupImageCompression($run=false){ $glob = glob('images/*.jpg'); if(!$run){ echo $this->T("将重新压缩下列文件:")."".$this->T("立即执行").""; exit; } } function CompressImage($source, $destination, $thumb_destination, $quality, $sizelim, $abs_max, $ext) { $img = new Imagick($source); $geo=$img->getImageGeometry(); $img2 = clone $img; $width=$geo['width']; $height=$geo['height']; $lim=400; $scale = $lim / min($width,$height); if($scale<1){ $img->resizeImage($width*$scale,$height*$scale,imagick::FILTER_GAUSSIAN,0.7); } $img->setImageFormat('jpeg'); $img->setInterlaceScheme(Imagick::INTERLACE_PLANE); $img->setImageCompressionQuality($quality); $img->writeImage($thumb_destination); $scale = min( $sizelim / min($width,$height), $abs_max / max($width,$height)); if($scale<0.98 || ($ext!='jpg'&&$ext!='jpeg')){ $img2->resizeImage($width*$scale,$height*$scale,imagick::FILTER_GAUSSIAN,0.5); $img2->setImageFormat('jpeg'); $img2->setImageCompressionQuality($quality); $img2->setInterlaceScheme(Imagick::INTERLACE_PLANE); $img2->writeImage($destination); }else{ rename($source,$destination); } } function DoUpload(){ if(!isset($_FILES['upload_file_name'])) return 0; if(!is_dir('images/thumb')) mkdir('images/thumb'); if($_FILES['upload_file_name']['error']>0){ echo"file upload err code ".$_FILES['upload_file_name']['error']; exit; return -1; }else{ $ext=strtolower(pathinfo($_FILES['upload_file_name']['name'],PATHINFO_EXTENSION)); if(!in_array($ext,['jpg','jpeg','png','gif','mp4'])) return 0; $fp = fopen('.la_lock',"w"); while (!flock($fp, LOCK_EX| LOCK_NB)){ usleep(10000); } $num=date('YmdHis'); $replace=0; if(isset($_POST['image_replace_button']) && isset($_GET['pic']) && preg_match('/([0-9]{14,})/u',$_GET['pic'],$mim)){ $num = $mim[1]; $replace=1; } $base = 'images/'.$num; $thumb = 'images/thumb/'.$num; $use_ext=($ext=='gif' || $ext=='mp4')?('.'.$ext):('.jpg'); $final_path = $base.$use_ext; $final_thumb = $thumb.$use_ext; $i=0; if(!$replace) while(file_exists($final_path)){ $final_path = $base.strval($i).$use_ext; $final_thumb = $thumb.strval($i).$use_ext; $i++; } if($ext!='gif' && $ext!='mp4'){ $compress = (isset($_GET['compress'])&&$_GET['compress']); $this->CompressImage($_FILES['upload_file_name']['tmp_name'], $final_path, $final_thumb, 90, $compress?800:1920, $compress?1920:2560, $ext); }else{ move_uploaded_file($_FILES['upload_file_name']['tmp_name'], $final_path); } flock($fp, LOCK_UN); fclose($fp); $this->ReadImages(true); $this->WriteImages(); echo ''.pathinfo($final_path,PATHINFO_BASENAME).""; if(isset($_POST['image_replace_button'])){ header('Location: '.$_SERVER['REQUEST_URI']);exit; } exit; return 1; } return 0; } function &GetGallery($name){ if(isset($this->Galleries[0])) foreach($this->Galleries as &$g){ if($g['name'] == $name) return $g; } return $this->NULL_GALLERY; } function EditGallery($name, $new_name=null, $delete=false, $do_rw=true, $set_featured=null, $set_experimental=null,$desc=null){ $this->ReadImages(); $gallery = &$this->GetGallery($name); if(!isset($gallery)){ if(!isset($new_name) || preg_match('/main|trash|\s/u',$new_name))return; $g = []; $g['name']=$new_name; $this->Galleries[]=$g; }else{ if(isset($new_name)) { if(preg_match('/main|trash|\s/u',$new_name))return; $gallery['name'] = $new_name; foreach ($this->Images as &$im){ if(isset($im['galleries'])&&isset($im['galleries'][0]))foreach($im['galleries'] as &$g){ if($g == $name){ $g = $new_name; } } } } //if(isset($count)) $gallery['count'] = $count; if(isset($delete) && $delete) $gallery['deleted'] = true; if(isset($set_featured)) $gallery['featured'] = $set_featured; if(isset($set_experimental)) $gallery['experimental'] = $set_experimental; if(isset($desc)) $gallery['description'] = $desc; } if($do_rw) { $this->NeedWriteImages = 1; } } function ClearData(){ $this->Posts = []; $this->Threads = []; $this->Images = []; $this->Archive = []; $this->ArchiveHandles = []; } function InsertArchivePost(&$post){ $a = NULL; if(($a = &$this->GetArchiveHandle($post['id']))==$this->NULL_POST){ $ah = []; $ah['id'] = $post['id']; $ah['list'] = []; $this->ArchiveHandles[] = &$ah; $a = &$ah; } $a['list'][] = $post; $this->Archive[] = $post; } function ReadArchiveFromFile($path){ if(!file_exists($path)){ return; } $c = file_get_contents($path); if(preg_match_all('/\[LAMDWIKIPOST\s+([0-9]{14})\s*;\s*([\s\S]*?)\]([\S\s]*?)(?=\[LAMDWIKIPOST|$)/u',$c,$matches,PREG_SET_ORDER)){ foreach($matches as $m){ $post = []; $post['id'] = $m[1]; $post['content'] = trim($m[3]); if(preg_match('/VER\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['version'] = $n[1]; if(preg_match('/MSTDN\s+(\S+)\s*;/u', $m[2], $n)) $post['mastodon_url'] = $n[1]; if(preg_match('/FROM\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['merged_from'] = $entries; } } if(preg_match('/HASP\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['hasp'] = $entries; } } if(preg_match('/HASI\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14}\.(jpg|jpeg|png|gif))/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['hasi'] = $entries; } } if(preg_match('/HASTAG\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['hastag'] = $entries; } } if(preg_match('/INTO\s*([0-9]{14})\s*V\s*([0-9]{14})\s*;/u', $m[2], $n)){ $post['merged_into'] = [trim($n[1]),trim($n[2])]; } if(preg_match('/MTHREAD\s*([^;|]+)\s*\|\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['merged_thread'][0] = $entries; } $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[2],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['merged_thread'][1] = $entries; } } $this->InsertArchivePost($post); } } } function SortArchive(){ $cmpac = function($a, $b){ if ($a['id'] == $b['id']) return 0; return (($a['id'] > $b['id']) ? 1 : -1); }; $cmpap = function($a, $b){ if ($a['id'] == $b['id']) return ((($a['version'] > $b['version']) ? 1 : -1)); return (($a['id'] > $b['id']) ? 1 : -1); }; if(isset($this->Archive[0])){ usort($this->Archive,$cmpap); $year_begin = substr($this->Archive[0]['id'],0,4); $this->YearBegin = ($year_begin<$this->YearBegin)?$year_begin:$this->YearBegin; } if(isset($this->ArchiveHandles[0])){ usort($this->ArchiveHandles,$cmpac); foreach($this->ArchiveHandles as &$a){ if(isset($a['list'])){ usort($a['list'],$cmpap); $last_valid=NULL; foreach($a['list'] as &$ver){ $ver['archive']= &$a; if(isset($ver['merged_thread'])){ $ver['content']=$last_valid; } else{ $last_valid = $ver['content']; } } if(isset($a['list'][0]['version'])&&$a['list'][0]['version']>$a['list'][0]['id']){ /* if early versions missing. */ $origin=$a['list'][0]; $origin['version']=$origin['id']; array_unshift($a['list'], $origin); } } if(($p = &$this->GetPost($a['id'],true))!=NULL){ $p['archive'] = &$a; } } } } function ReadPostsFromFile($path){ if(!file_exists($path)){ $f = fopen($path,'w'); fclose($f); } $c = file_get_contents($path); if(preg_match_all('/\[LAMDWIKIPOST\s+([0-9]{14})\s*;\s*([\s\S]*?)\]([\S\s]*?)(?=\[LAMDWIKIPOST|$)/u',$c,$matches,PREG_SET_ORDER)){ foreach($matches as $m){ $post = []; $post['id'] = $m[1]; $post['real_content'] = trim($m[3]); $post['content'] = &$post['real_content']; if(preg_match('/COMMENT\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['comment_to'] = $n[1]; if(preg_match('/EMAIL\s+([^;]+)\s*;/u', $m[2], $n)) $post['email'] = $n[1]; if(preg_match('/NAME\s+([^;]+)\s*;/u', $m[2], $n)) $post['name'] = $n[1]; if(preg_match('/LINK\s+([^;]+)\s*;/u', $m[2], $n)) $post['link'] = $n[1]; if(preg_match('/IP\s+([^;]+)\s*;/u', $m[2], $n)) $post['ip'] = $n[1]; if(preg_match('/NEXT\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['next'] = $n[1]; if(preg_match('/PREV\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['prev'] = $n[1]; if(preg_match('/VER\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['version'] = $n[1]; if(preg_match('/MDEL\s*;/u', $m[2])) $post['mark_delete'] = True; if(preg_match('/MVAL\s*([^;]+);/u', $m[2], $n)) $post['mark_value'] = trim($n[1]); if(preg_match('/MSTDN\s+(\S+)\s*;/u', $m[2], $n)) $post['mastodon_url'] = $n[1]; if(preg_match('/REFS\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['refs'] = $entries; } } if(preg_match('/HASP\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['hasp'] = $entries; } } if(preg_match('/HASI\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14}\.(jpg|jpeg|png|gif))/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['hasi'] = $entries; } } if(preg_match('/HASTAG\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['hastag'] = $entries; } } if(preg_match('/FROM\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['merged_from'] = $entries; } } if(preg_match('/INTO\s*([0-9]{14})\s*V\s*([0-9]{14})\s*;/u', $m[2], $n)){ $post['merged_into'] = [trim($n[1]),trim($n[2])]; } if(preg_match('/MTHREAD\s*([^;|]+)\s*\|\s*([^;]+);/u', $m[2], $ma)){ $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['merged_thread'][0] = $entries; } $entries = []; if(preg_match_all('/([0-9]{14})/u',$ma[2],$links,PREG_SET_ORDER)){ foreach($links as $l){ $entries[] = $l[1]; } $post['merged_thread'][1] = $entries; } } if(preg_match('/NUM\s+([0-9]{1,})\s*;/u', $m[2], $n)){ $post['number']=$n[1]; $this->PNUMBER=max($post['number'],$this->PNUMBER); } else{ $this->PNUMBER++; $post['number']=$this->PNUMBER; } //$this->PNUMBER++; $post['number']=$this->PNUMBER; if(isset($post['mark_value']) && $post['mark_value']==5){ $post['product']=[]; } /* marks add here */ $this->Posts[] = $post; if(isset($post['comment_to']) && ($target_post = &$this->GetPost($post['comment_to'],true))){ if(!isset($target_post['comments']) || !isset($target_post['comments'][0])) $target_post['comments']=[]; $target_post['comments'][]=&$this->Posts[count($this->Posts) - 1]; } } } } function SortPosts($wayback=false){ $cmpp = function($a, $b){ if ($a['id'] == $b['id']) return 0; return (($a['id'] > $b['id']) ? 1 : -1); }; $sortlist = &$this->Posts; if($wayback) $sortlist = &$this->WaybackPosts; if(isset($sortlist[0])){ usort($sortlist,$cmpp); $this->YearEnd = substr($this->TIME_STRING,0,4); $this->YearBegin = substr($sortlist[0]['id'],0,4); } } function ReadPosts(){ if ((!file_exists('la_config.md') || is_readable('la_config.md') == false) || (!file_exists('la_config.php') || is_readable('la_config.php') == false) || (!is_dir('posts') || is_readable('posts') == false) || (!is_dir('archive') || is_readable('archive') == false) || (!is_dir('images') || is_readable('images') == false) || (!is_dir('styles') || is_readable('styles') == false)){ $this->Install(); } if($this->DoneReadPosts){ return; } $file_list = []; $glob = glob('posts/*'); foreach($glob as $file) { if(preg_match('/[0-9]{6}\.md/', $file)) { $file_list[] = $file; } } sort($file_list, SORT_NATURAL | SORT_FLAG_CASE); foreach($file_list as $f) { $this->ReadPostsFromFile($f); } $this->SortPosts(); $this->DetectThreads(); $this->DoneReadPosts=1; } function UpdatePostRefsForWayback(){ if(!isset($this->WayBack)) return; if(isset($this->Images[0])) foreach($this->Images as &$i){ unset($i['refs']); } if(!isset($this->WaybackPosts[0])) return; foreach($this->WaybackPosts as &$p){ unset($p['refs']); } foreach($this->WaybackPosts as &$p){ if(isset($p['hasp']) && isset($p['hasp'][0])) foreach($p['hasp'] as $r){ $pr = &$this->GetPost($r); if(isset($pr)){ if(!isset($pr['refs'])) $pr['refs']=[]; if(!in_array($p['id'],$pr['refs'])){ $pr['refs'][] = $p['id']; } } } if(isset($p['hasi']) && isset($p['hasi'][0])) foreach($p['hasi'] as $r){ $ir = &$this->FindImage($r); if(isset($ir)){ if(!isset($ir['refs'])) $ir['refs']=[]; if(!in_array($p['id'],$ir['refs'])){ $ir['refs'][] = $p['id'];} } } if(isset($p['hasp']) && isset($p['hasp'][0])) foreach($p['hasp'] as $t){ if(!preg_match("/[0-9]{14}/u",$t)) continue; $pt=&$this->GetPost($t,false,true); if(isset($pt) && isset($pt['hastag']) && isset($pt['hastag'][0]) && in_array($t,$pt['hastag'])){ if(!isset($pt['refs']))$pt['refs']=[]; $pt['refs'][]=$p['id']; } } } } function ReadArchive(){ if (!is_dir('archive') || is_readable('archive') == false){ $this->Install(); } if ($this->DoneReadArchive) return; $file_list = []; $glob = glob('archive/*'); foreach($glob as $file) { if(preg_match('/[0-9]{6}\.md/', $file)) { $file_list[] = $file; } } sort($file_list, SORT_NATURAL | SORT_FLAG_CASE); foreach($file_list as $f) { $this->ReadArchiveFromFile($f); } $this->SortArchive(); $this->DoneReadArchive=1; $this->UpdateThreadForWayback(); $this->UpdatePostRefsForWayback(); } function GetThreadForPost(&$post){ if(isset($post['tid'])) return; $th = []; $iterp = NULL; $post['tid'] = &$th; $th['first'] = &$post; $th['last'] = &$post; if(!(isset($post['prev']) || isset($post['next']))) { $this->Threads[] = &$th; return; } if(isset($post['prev']))for($p = $post['prev']; $p!=NULL; $p = $iterp){ $np = &$this->GetPost($p,true); if(!$np) { break; }//err $np['tid'] = &$th; $th['first'] = &$np; $iterp = isset($np['prev'])?$np['prev']:NULL; } if(isset($post['next']))for($p = $post['next']; $p!=NULL; $p = $iterp){ $np = &$this->GetPost($p,true); if(!$np) { break; }//err $np['tid'] = &$th; $th['last'] = &$np; $iterp = isset($np['next'])?$np['next']:NULL; } if(isset($th['first']['mark_value'])){ if($th['first']['mark_value']==6) $th['exp'] = true; else if($th['first']['mark_value']>=7) $th['slf'] = true; if($th['first']['mark_value']==8) $th['sln'] = true; } if($th['first'] == $th['last']){ unset($post['tid']); return; } $this->Threads[] = &$th; } function IdentifyThreadCategory(&$th,&$first_post){ unset($th['categories']);unset($th['interesting']);unset($th['reversed']); if(preg_match('/^\s*\@(.*?)$/mu',$first_post['content'],$m)){ $first_post['categories']=[]; if(preg_match_all('/(\S+)(\s|$)/u',$m[1],$matches,PREG_SET_ORDER)){ foreach($matches as $ma){ $first_post['categories'][] = $ma[1]; } } if(isset($th) && $th){ $th['categories'] = &$first_post['categories']; } } if(preg_match('/\{\s*WIDE\s*\}/imu',$first_post['content'],$m)){ $first_post['wide'] = true; } if(preg_match('/\{\s*NO_TIME\s*\}/imu',$first_post['content'],$m)){ $first_post['no_time'] = true; } if(preg_match('/\{\s*NO_TITLE\s*\}/imu',$first_post['content'],$m)){ $first_post['no_title'] = true; } if(preg_match('/\{\s*SLIDES\s*\}/imu',$first_post['content'],$m)){ $first_post['slides'] = true; } if(preg_match('/\{\s*HEADER\s+(.*?)\}/imu',$first_post['content'],$m)){ $first_post['header'] = trim($m[1]); } if(preg_match('/\{\s*FOOTER\s+(.*?)\}/imu',$first_post['content'],$m)){ $first_post['footer'] = trim($m[1]); } if(!isset($th)) return; if(isset($first_post['wide'])) $th['wide']=$first_post['wide']; if(isset($first_post['header'])) $th['header']=$first_post['header']; if(isset($first_post['footer'])) $th['footer']=$first_post['footer']; if(isset($first_post['no_time'])) $th['no_time']=$first_post['no_time']; if(isset($first_post['slides'])) $th['slides']=$first_post['slides']; if(isset($first_post['no_title'])) $th['no_title']=$first_post['no_title']; if(preg_match('/\{\s*INTERESTING\s+(.*?)\}/imu',$first_post['content'],$m)){ $th['interesting'] = []; if(preg_match_all('/(\S+)(\s|$)/u',$m[1],$matches,PREG_SET_ORDER)){ foreach($matches as $ma){ $th['interesting'][] = $ma[1]; } } } if(preg_match('/\{\s*REVERSED(\s+.*?)?\}/imu',$first_post['content'],$m)){ $th['reversed'] = 'm'; if(isset($m[1])&&preg_match('/^\s*(y|m|d|p)/iu',$m[1],$ma)){ $th['reversed']=$ma[1]; } } } function IsInterestingPost(&$p){ if(isset($p['tid']) && isset($p['tid']['interesting']) && isset($p['tid']['interesting'][0])) return true; return false; } function IsReversedThread(&$th){ if(isset($th['reversed']) && $th['reversed']!=false) return true; return false; } function GiveAllMergedPosts(&$po,&$arr){ if(isset($po['merged_from'])&&isset($po['merged_from'][0])) foreach($po['merged_from'] as $pm){ $mp=&$this->GetPost($pm); if(isset($mp)){ if(!in_array($mp['id'],$arr)) $arr[]=$mp['id']; $this->GiveAllMergedPosts($mp,$arr);} } if(isset($po['archive']) && isset($po['archive']['list'])){ foreach($po['archive']['list'] as &$ver){ if(isset($ver['merged_from'])&&isset($ver['merged_from'][0])) foreach($ver['merged_from'] as $pm){ $mp=&$this->GetPost($pm); if(isset($mp)){ if(!in_array($mp['id'],$arr)) $arr[]=$mp['id']; $this->GiveAllMergedPosts($mp,$arr); } } } } } function ThreadMakeWayback(&$th){ if(!isset($th['arr'][0])) return; if(isset($this->WayBack)){ $remlist = []; foreach($th['arr'] as &$pi){ $po = &$this->GetPost($pi['id'],true); if(!isset($po)){continue;/*merged*/} if(isset($po['merged_thread']) && isset($po['version']) && $po['version']>$this->WayBack){ $remlist = array_unique(array_merge($remlist,$po['merged_thread'][0])); } $ah = &$this->GetArchiveHandle($po['id']); if(isset($ah)) foreach(array_reverse($ah['list']) as &$ver){ if(!isset($ver['merged_thread'])) continue; if((isset($ver['version']) && $ver['version'] > $this->WayBack) || (!isset($ver['version']) && $ver['id'] > $this->WayBack)){ $remlist = array_unique(array_merge($remlist,$ver['merged_thread'][0])); } } } if(isset($remlist[0]) && isset($th['arr'][0])){ foreach($remlist as $rem){ $this->GiveAllMergedPosts($this->GetPost($rem,true),$remlist); } foreach($th['arr'] as $key => $pr){ foreach($remlist as $rem){ if($pr['id'] == $rem) { unset($th['arr'][$key]); break; } } } $new_th = []; $new_arr = []; foreach($remlist as $rem){ $np=&$this->GetPost($rem); if(isset($np)){$new_arr[]=&$np;} } $new_th['arr'] = &$new_arr; $this->WaybackThreads[] = &$new_th; $this->ThreadMakeWayback($new_th); } } } function AddMergedPosts(&$p, &$array){ if(isset($p['archive']) && isset($p['archive']['list'])){ foreach($p['archive']['list'] as &$ver){ if(isset($ver['merged_from'])&&isset($ver['merged_from'][0])) foreach($ver['merged_from'] as $po){ $mp=&$this->GetPost($po); if(isset($mp)){ $array[]=&$mp; $this->WaybackPosts[]=&$mp; $this->AddMergedPosts($mp, $array); } } } } if(isset($p['merged_from'])&&isset($p['merged_from'][0])) foreach($p['merged_from'] as $po){ $mp=&$this->GetPost($po); if(isset($mp)){ $array[]=&$mp; $this->WaybackPosts[]=&$mp; $this->AddMergedPosts($mp, $array); } } } function &array_shift_ref(&$array){if(count($array)>0){$key=key($array);$first=&$array[$key];}else{$first=null;}array_shift($array);return $first;} function FinalizeThread(&$th, $relink_posts=false, $now=0){ $nextp=NULL; $arr=[]; $lasttime=NULL; if(!isset($th['arr'])){ for($p = &$th['first']; $p!=$this->NULL_POST; $p = &$this->GetPost(isset($p['next'])?$p['next']:NULL,true)){ $arr[]=&$p; } $th['arr'] = &$arr; if(isset($this->WayBack) && $this->DoneReadArchive){ $new_arr=[]; foreach($arr as &$p){ $pa = &$this->GetPost($p['id']); if(isset($pa)) {$new_arr[]=&$pa;$this->WaybackPosts[]=&$pa;} } foreach($arr as &$p){ $this->AddMergedPosts($p,$new_arr); } $arr=&$new_arr; $th['arr']=&$new_arr; $this->ThreadMakeWayback($th); } } $cmppt = function($a, $b){ if ($a['id'] == $b['id']) return 0; return (($a['id'] > $b['id']) ? 1 : -1); }; if(isset($th['arr'][0])){ usort($th['arr'],$cmppt); } $th['count'] = sizeof($th['arr']); if($relink_posts){ $count = $th['count']; $arr = &$th['arr']; for($i=0; $i<$count; $i++){ if($i>0) $arr[$i]['prev'] = $arr[$i-1]['id']; if($i<$count-1) $arr[$i]['next'] = $arr[$i+1]['id']; $arr[$i]['tid']=&$th;} $th['first'] = &$arr[0]; $th['last'] = &$arr[$count-1]; unset($arr[0]['prev']); unset($arr[$count-1]['next']); } $th['score'] = 0; if(!isset($th['first'])){ return; } $this->IdentifyThreadCategory($th, $th['first']); if(isset($this->WayBack)) $lasttime=$this->WayBack; if(!isset($last_time)) $lasttime = DateTime::createFromFormat('YmdHis', $th['last']['id']); $diff_days = ($now - date_timestamp_get($lasttime))/3600/24; $th['score'] = (float)$th['count']*0.2 - min($diff_days,200); if(isset($th['reversed'])){ $chunks=[]; $last_id=$last_y=$last_m=$last_d=0; $mo=$th['reversed']; $final=[]; $first_post=&$this->array_shift_ref($th['arr']); $ch=[]; while($n=&$this->array_shift_ref($th['arr'])){ $this_id=$n['id']; $this_y=substr($this_id,0,4); $this_m=substr($this_id,4,2); $this_d=substr($this_id,6,2); if($mo=='y'&&$this_y!=$last_y){ if(isset($ch[0])){$chunks[]=$ch;$ch=[];} $n['restart']=$this_y; } if($mo=='m'&&$this_m!=$last_m){ if(isset($ch[0])){$chunks[]=$ch;$ch=[];} $n['restart']=$this_y.'/'.$this_m; } if($mo=='d'&&$this_d!=$last_d){ if(isset($ch[0])){$chunks[]=$ch;$ch=[];} $n['restart']=$this_y.'/'.$this_m.'/'.$this_d; } if($mo=='p'){ if(isset($ch[0])){$chunks[]=$ch;$ch=[];} } $ch[]=&$n; $last_id=$this_id; $last_y=$this_y; $last_m=$this_m; $last_d=$this_d; }if(isset($ch[0])){$chunks[]=$ch;} if(isset($chunks[0])){$use_chunks=array_reverse($chunks);} $final[]=&$first_post; foreach($use_chunks as &$ch){ foreach($ch as &$p){ $final[]=&$p;} } $th['arr']=$final; } } function SortThreads(){ if (!function_exists('cmpt')) { function cmpt($a, $b){ if ($a['score'] == $b['score']) return 0; return ($a['score'] > $b['score']) ? -1 : 1; } } usort($this->Threads,"cmpt"); } function DetectThreads(){ foreach($this->Posts as &$p){ if(isset($p['tid'])) { continue; } $this->GetThreadForPost($p); if(!isset($p['tid'])) { $this->IdentifyThreadCategory($this->NULL_POST, $p); } } if(!isset($this->Threads) || !isset($this->Threads[0])) return; $now = date_timestamp_get(date_create()); foreach($this->Threads as &$t){ $this->FinalizeThread($t,false,$now); } if(isset($this->WaybackThreads[0])) foreach($this->WaybackThreads as &$th){ $this->FinalizeThread($th,false,$now); $this->Threads[] = &$th; } $this->SortThreads(); } function UpdateThreadForWayback(){$now = date_timestamp_get(date_create()); if(!isset($this->WayBack) || !$this->DoneReadArchive){ return; } foreach($this->Threads as &$t){ unset($t['arr']); $this->FinalizeThread($t,true,$now); } if(isset($this->WaybackThreads[0])) foreach($this->WaybackThreads as &$th){ $this->FinalizeThread($th,true,$now); $this->Threads[] = &$th; } $this->SortThreads(); $this->SortPosts(true); $this->UsePosts = &$this->WaybackPosts; } function &GetMergedPost($id){ $this->ReadArchive(); $ah = &$this->GetArchiveHandle($id); if(!isset($ah) || !isset($ah['list']) || !isset($ah['list'][0])){ return $this->NULL_POST; } $ver = &$ah['list'][sizeof($ah['list'])-1]; if(!isset($ver['merged_into'])) return $this->GetPost($id); [$tp, $tver] = $ver['merged_into']; if(isset($this->WayBack)){ if($tver <= $this->WayBack) return $this->GetMergedPost($tp); else return $this->GetPost($id); /* should not happen directly. */ } return $this->GetMergedPost($tp); } function &GetPost($id, $latest_only=false, $find_merged=false){ if(!isset($id)) return $this->NULL_POST; $found=&$this->NULL_POST; if(isset($this->Posts[0])) foreach($this->Posts as &$p){ if($p&& $p['id'] == $id) { $found = &$p; break; } if($find_merged && isset($p['hastag'][0]) && in_array($id, $p['hastag'])){ $found = &$p; break; } } if($latest_only || !isset($this->WayBack)){ return $found; } else{ if(isset($found)){ if(!isset($found['archive'])&&!isset($found['archive']['list'])) { if($found['id'] > $this->WayBack) return $this->NULL_POST; else return $found; } $last_ver = &$this->NULL_POST; if(isset($found['archive']['list'][0])) foreach($found['archive']['list'] as &$ver){ if($ver['version'] > $this->WayBack) return $last_ver; $last_ver = &$ver; } if(isset($found['version']) && $found['version'] <= $this->WayBack) return $found; else return $last_ver; }else{ $ah = &$this->GetArchiveHandle($id); $last_ver = &$this->NULL_POST; if(isset($ah) && isset($ah['list']) && isset($ah['list'][0])) foreach($ah['list'] as &$ver){ if($ver['version'] > $this->WayBack) return $last_ver; $last_ver = &$ver; } if(!isset($last_ver['merged_into'])) return $last_ver; else{ [$tp, $tver] = $last_ver['merged_into']; if($tver <= $this->WayBack) { if($find_merged && $tp!=$id) return $this->GetPost($tp); return $this->NULL_POST; } return $last_ver; } } } return $this->NULL_POST; } function &GetArchiveHandle($id){ if(!isset($id)) return $this->NULL_POST; if(isset($this->ArchiveHandles[0])) foreach($this->ArchiveHandles as &$p){ if($p && $p['id'] == $id) { return $p; } } return $this->NULL_POST; } function &GetArchive($id){ if(!isset($id)) return $this->NULL_POST; if(isset($this->Archive[0])) foreach($this->Archive as &$p){ if($p && $p['id'] == $id) { return $p; } } return $this->NULL_POST; } function &GetArchiveVersion(&$ah, $version, &$next_ver, &$last_ver){ if(!isset($ah)) return $this->NULL_POST; $found = NULL; $last_verp=NULL; if(isset($ah['list'][0])) foreach($ah['list'] as &$p){ if(isset($found)){ $next_ver = $p; $last_ver = $last_verp; return $found; } if($p && $p['version'] == $version) { $found = &$p; continue; } $last_verp = &$p; } if(isset($found)) { $next_ver=NULL; $last_ver = $last_verp; return $found; } return $this->NULL_POST; } function CacheArchiveOwnLinks(){ if(isset($this->WayBack)) return; if(isset($this->Archive[0])) foreach($this->Archive as &$p){ $this->ConvertPost($p); unset($p['hasp']); unset($p['hasi']); unset($p['hastag']); if(preg_match_all('/]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>.*?<\/a>/u',$p['html'],$matches,PREG_SET_ORDER)){ foreach($matches as $m){ if(!isset($p['hasp']))$p['hasp']=[]; if(!in_array($m[1],$p['hasp'])){ $p['hasp'][]=$m[1]; } } } if(preg_match_all('/\/\/([0-9]{14})/u', $p['content'],$matches,PREG_SET_ORDER)){ foreach($matches as $m){ if(!isset($p['hastag']))$p['hastag']=[]; if(!in_array($m[1],$p['hastag'])){ $p['hastag'][]=$m[1]; } } } if(preg_match_all('/!\[([^\]]*)\]\(images\/([0-9]{14,}\.(jpg|jpeg|png|gif))\)/u', $p['content'],$matches,PREG_SET_ORDER)){ foreach($matches as $m){ if(!isset($p['hasi']))$p['hasi']=[]; if(!in_array($m[2],$p['hasi'])){ $p['hasi'][]=$m[2]; } } } } } function WriteArchive(){ if(isset($this->WayBack)) return; $cf = NULL;$opened =NULL; $this->SortArchive(); $this->CacheArchiveOwnLinks(); if(isset($this->Archive[0])) foreach($this->Archive as $p){ $nid = substr($p['id'], 0,6); if($cf != $nid){ if($opened){ fflush($opened); fclose($opened); } $cf = $nid; $opened = fopen("archive/$cf.md", 'w'); } $info = "[LAMDWIKIPOST {$p['id']}; ". "VER {$p['version']}; ". ((isset($p['merged_thread']) && isset($p['merged_thread'][0]))? ("MTHREAD ".implode(" ",$p['merged_thread'][0])." | ".implode(" ",$p['merged_thread'][1]).";"):""). ((isset($p['merged_from']) && isset($p['merged_from'][0]))?("FROM ".implode(" ",$p['merged_from'])."; "):""). ((isset($p['merged_into']) && isset($p['merged_into'][0]))?("INTO {$p['merged_into'][0]}V{$p['merged_into'][1]}; "):""). ((isset($p['hasp']) && isset($p['hasp'][0]))?("HASP ".implode(" ",$p['hasp'])."; "):""). ((isset($p['hasi']) && isset($p['hasi'][0]))?("HASI ".implode(" ",$p['hasi'])."; "):""). ((isset($p['hastag']) && isset($p['hastag'][0]))?("HASTAG ".implode(" ",$p['hastag'])."; "):""). ']'; if(isset($p['merged_thread'])){ $p['content']=""; } fwrite($opened, $info.PHP_EOL.PHP_EOL.$p['content'].PHP_EOL.PHP_EOL); } } function WritePosts(){ if(isset($this->WayBack)) return; $cf = NULL;$opened =NULL; $this->SortPosts(); if(isset($this->Posts[0])) foreach($this->Posts as $p){ $nid = substr($p['id'], 0,6); if($cf != $nid){ if($opened){ fflush($opened); fclose($opened); } $cf = $nid; $opened = fopen("posts/$cf.md", 'w'); } $info = "[LAMDWIKIPOST {$p['id']}; ". ((isset($p['number']) && $p['number'])?"NUM {$p['number']}; ":""). ((isset($p['version']) && $p['version'])?"VER {$p['version']}; ":""). ((isset($p['merged_from']) && isset($p['merged_from'][0]))?("FROM ".implode(" ",$p['merged_from'])."; "):""). ((isset($p['merged_into']) && isset($p['merged_into'][0]))?("INTO {$p['merged_into'][0]}V{$p['merged_into'][1]}; "):""). ((isset($p['merged_thread']) && isset($p['merged_thread'][0]))? ("MTHREAD ".implode(" ",$p['merged_thread'][0])." | ".implode(" ",$p['merged_thread'][1])."; "):""). ((isset($p['comment_to']) && $p['comment_to'])?"COMMENT {$p['comment_to']}; ":""). ((isset($p['email']) && $p['email'])?"EMAIL {$p['email']}; ":""). ((isset($p['name']) && $p['name'])?"NAME {$p['name']}; ":""). ((isset($p['link']) && $p['link'])?"LINK {$p['link']}; ":""). ((isset($p['ip']) && $p['ip'])?"IP {$p['ip']}; ":""). ((isset($p['mark_delete']) && $p['mark_delete'])?"MDEL; ":""). ((isset($p['mark_value']) && $p['mark_value']>=0)?"MVAL {$p['mark_value']}; ":""). ((isset($p['next']) && $p['next'])?"NEXT {$p['next']}; ":""). ((isset($p['prev']) && $p['prev'])?"PREV {$p['prev']}; ":""). ((isset($p['refs']) && isset($p['refs'][0]))?("REFS ".implode(" ",$p['refs'])."; "):""). ((isset($p['hasp']) && isset($p['hasp'][0]))?("HASP ".implode(" ",$p['hasp'])."; "):""). ((isset($p['hastag']) && isset($p['hastag'][0]))?("HASTAG ".implode(" ",$p['hastag'])."; "):""). ((isset($p['hasi']) && isset($p['hasi'][0]))?("HASI ".implode(" ",$p['hasi'])."; "):""). ((isset($p['mastodon_url']) && isset($p['mastodon_url']))?("MSTDN ".$p['mastodon_url']."; "):""). ']'; fwrite($opened, $info.PHP_EOL.PHP_EOL.$p['real_content'].PHP_EOL.PHP_EOL); } } function CachePostLinks(){ if(isset($this->WayBack)) return; if(isset($this->Posts) && isset($this->Posts[0]))foreach ($this->Posts as &$post){ $this->ConvertPost($post); unset($post['refs']);unset($post['hasp']);unset($post['hasi']);unset($post['hastag']); //discard lost old version //if(!isset($post['archive']) && $this->DoneReadArchive && isset($post['version'])){ unset($post['version']); } }else return; if(isset($this->Images) && isset($this->Images[0])) foreach ($this->Images as &$im){ unset($im['refs']); unset($im['here']); unset($im['title']); } foreach ($this->Posts as &$post){ if(preg_match_all('/]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>.*?<\/a>/u',$post['html'],$matches,PREG_SET_ORDER)){ foreach($matches as $m){ $ref = &$this->GetPost($m[1],true); if($ref!=NULL){ if(!isset($ref['refs']))$ref['refs']=[]; if(!in_array($post['id'],$ref['refs']))$ref['refs'][]=$post['id']; } if(!isset($post['hasp']))$post['hasp']=[]; if(!in_array($m[1],$post['hasp']))$post['hasp'][]=$m[1]; } } if(preg_match_all('/\/\/([0-9]{14})/u', $post['content'],$matches,PREG_SET_ORDER)){ foreach($matches as $m){ if(!isset($post['hastag']))$post['hastag']=[]; if(!in_array($m[1],$post['hastag']))$post['hastag'][]=$m[1]; } } if(preg_match_all('/!\[([^\]]*)\]\(images\/([0-9]{14,}\.(jpg|jpeg|png|gif|mp4))\)/u', $post['content'],$matches,PREG_SET_ORDER)){ foreach($matches as $m){ if(($im = &$this->FindImage($m[2]))!=NULL){ if(!isset($im['refs']))$im['refs']=[]; if(!in_array($post['id'], $im['refs']))$im['refs'][] = $post['id']; } if(!isset($post['hasi']))$post['hasi']=[]; if(!in_array($m[2],$post['hasi']))$post['hasi'][]=$m[2]; } } if(preg_match("/(\!\[.*?\]\(\s*images\/([0-9]{14,}\.(jpg|jpeg|png|gif|mp4))\))(\R*(\R(-|\*).+){1,})/u", $post['content'],$matches)){ $use_img_name = $matches[2]; if(($im = &$this->FindImage($use_img_name))!=NULL){ if(preg_match_all("/(-|\*)\s+here\s*:\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s+images\/([0-9]{14,}\.(jpg|jpeg|png|gif|mp4))/u", $matches[4],$mah,PREG_SET_ORDER)){ foreach($mah as $ma){ if(!isset($im['here']))$im['here']=[]; if(!$this->ImageHasHere($item, $ma[4])){ $here = [$ma[4], $ma[2], $ma[3]]; $im['here'][] = $here; } } } } } }foreach($this->Posts as &$post){ if(isset($post['hasp']) && isset($post['hasp'][0])) foreach($post['hasp'] as $t){ if(!preg_match("/[0-9]{14}/u",$t)) continue; $pt=&$this->GetPost($t,false,true); if(isset($pt) && isset($pt['hastag']) && isset($pt['hastag'][0]) && in_array($t,$pt['hastag'])){ if(!isset($pt['refs']))$pt['refs']=[]; $pt['refs'][]=$post['id']; } } } if(isset($this->Images) && isset($this->Images[0])) foreach ($this->Images as &$im){ $min_id = '99999999999999'; if(isset($im['refs']) && isset($im['refs'][0])) foreach ($im['refs'] as &$ref){ $r = &$this->GetPost($ref,true); if(isset($r)) $title = $this->GetPostTitle($r,true,false); if($title && $ref<$min_id) { $im['title'] = preg_replace('/;/u',' ',trim($title)); $min_id=$r['id']; } } } } function CreatePostAnchor(&$post){ $that=&$this; $post['html'] = preg_replace_callback('/(.+?)(?=<\/h[0-9]>)/u', function ($ma) use ($that){ $id = '_heading_'.sizeof($this->Anchors); $entry=[(int)$ma[1], $id, $ma[2]]; $that->Anchors[] = $entry; return "{$ma[2]}"; }, $post['html']); } function RenamePost(&$post, $rename){ foreach($this->Posts as &$p){ if($p['id']==$rename && $p!==$post) { return; /* don't overwrite */ } } foreach($this->Posts as &$p){ if(isset($p['prev']) && $p['prev']==$post['id']) { $p['prev']=$rename; } if(isset($p['next']) && $p['next']==$post['id']) { $p['next']=$rename; } } $post['id'] = $rename; } function DetachPost(&$th,&$post){ $p0=$p1=NULL;foreach($th['arr'] as $a) echo $a['id']." "; echo '   -'.$post['id']."
"; if(isset($post['prev'])){$p0=&$this->GetPost($post['prev'],true);} if(isset($post['next'])){$p1=&$this->GetPost($post['next'],true);} if(isset($p0)){ $p0['next']=$p1['id']; }else{ $th['first']=$p1['id']; } if(isset($p1)){ $p1['prev'] =$p0['id']; }else{ $th['last']=$p0['id']; } foreach($this->Posts as $key => $p){ if ($p==$post) unset($this->Posts[$key]); } unset($th['arr']); $now = date_timestamp_get(date_create()); $this->FinalizeThread($th, true, $now); } function PushPostVersion(&$post, $optime_id, $mode=1, $info=NULL){ $a = &$this->GetArchiveHandle($post['id']); $ap = []; $ap['id'] = $post['id']; $ap['content'] = $post['real_content']; $ap['version'] = isset($post['version'])?$post['version']:$ap['id']; if(isset($post['merged_from'])) { $ap['merged_from'] = $post['merged_from']; unset($post['merged_from']); } if(isset($post['merged_into'])) { $ap['merged_into'] = $post['merged_into']; unset($post['merged_into']); } if(isset($post['merged_thread'])) { $ap['merged_thread'] = $post['merged_thread']; unset($post['merged_thread']); } $post['version'] = $optime_id; if($mode==1){ $this->InsertArchivePost($ap); }else if($mode==2){ $post['merged_from'] = $info; $this->InsertArchivePost($ap); }else if($mode==3){ $ap['merged_into'] = $info; $this->InsertArchivePost($ap); if(isset($post['tid']) && $post['tid']['first']!=$post['tid']['last'] && $post!=$post['tid']['first']){ $this->DetachPost($post['tid'], $post); } }else if($mode==4){ $post['merged_thread'] = $info; $this->InsertArchivePost($ap); } } function &MergeThreads($post_id, $post_into_id){ $this->ReadPosts(); $po = &$this->GetPost($post_id, true); $pt = &$this->GetPost($post_into_id, true); if (!isset($po) || !isset($pt) || !isset($po['tid']) || !isset($pt['tid']) || !isset($po['tid']['arr'][0]) || !isset($pt['tid']['arr'][0])){ return $this->NULL_POST; } $po = &$po['tid']['arr'][0]; $pt = &$pt['tid']['arr'][0]; $th = &$po['tid']; $tt = &$pt['tid']; $info=[[],[]]; if($po['id'] < $pt['id']){ $temp = &$th; $th=&$tt; $tt=&$temp; $temp = &$po; $po=&$pt; $pt=&$temp; } foreach($th['arr'] as &$p){ $info[0][]=$p['id']; } foreach($tt['arr'] as &$p){ $info[1][]=$p['id']; } $this->EditPost($pt['id'], NULL, NULL, NULL, false, NULL, NULL, 4, $info,NULL); $arr_combined = array_merge($tt['arr'],$th['arr']); $cmppmt = function($a, $b){ if ($a['id'] == $b['id']) return 0; return (($a['id'] > $b['id']) ? 1 : -1); }; if(isset($arr_combined[0])){ usort($arr_combined,$cmppmt); } $tt['arr']=&$arr_combined; $tt['count'] = sizeof($tt['arr']); $this->FinalizeThread($tt, true, $this->TIME_STRING); $first_post = &$this->NULL_POST; if(isset($tt['arr'][0])) $first_post= &$tt['arr'][0]; $this->NeedWritePosts=1; $this->NeedWriteArchive=1; return $first_post; } function &MergePosts($ids_string){ $ids = explode(" ", $ids_string); $combined_content = ""; $first_id=NULL; $this->ReadPosts(); $child_list=[]; foreach($ids as $id){ if(!preg_match('/[0-9]{14}/u',$id) || $this->GetPost($id,true)==$this->NULL_POST) continue; if(!isset($first_id)) { $first_id = $id; } else { $combined_content.=PHP_EOL.PHP_EOL."//".$id.PHP_EOL; $child_list[]=$id; } $combined_content.=$this->EditPost($id, NULL, NULL, NULL, true, NULL, NULL, false, NULL,NULL); } if(!isset($child_list[0])) return $this->NULL_POST; $first_post = &$this->EditPost($first_id, $combined_content, NULL, NULL, false, NULL, NULL, 2, $child_list,NULL); foreach($child_list as $id){ $this->EditPost($id, NULL, NULL, NULL, false, NULL, NULL, 3, [$first_id,$this->TIME_STRING],NULL); } $this->NeedWritePosts=1; $this->NeedWriteArchive=1; return $first_post; } /* push_version: 1 edit 2 post merged from ids list 3 post end into id-ver */ function &EditPost($id_if_edit, $content, $mark_delete, $reply_to, $get_original_only=false, $mark_value=NULL, $rename=NULL, $push_version=false, $version_info=NULL, $mastodon_url=NULL){ $this->ReadImages(); $this->ReadPosts(); if(isset($push_version) && $push_version){ $this->ReadArchive(); } $p_success = NULL; if(isset($id_if_edit)){ $post = &$this->GetPost($id_if_edit,true); if($post===$this->NULL_POST) return $this->NULL_POST; if($get_original_only){ return $post['real_content']; } if(isset($push_version) && $push_version){ $this->PushPostVersion($post,$this->TIME_STRING,$push_version,$version_info); } if(isset($content)) {$post['real_content'] = $content; $post['content'] = &$post['real_content'];} if(isset($mark_delete)) $post['mark_delete'] = $mark_delete; if(isset($mark_value)) $post['mark_value'] = $mark_value; if(isset($rename) && preg_match('/^[0-9]{14}$/u',$rename)) $this->RenamePost($post,$rename); if(isset($mastodon_url)) { if($mastodon_url!='') $post['mastodon_url']=$mastodon_url; else unset($post['mastodon_url']); } $p_success = &$post; }else{ if(!isset($content)) return $this->NULL_POST; $id = date('YmdHis'); if($this->GetPost($id,true)!== $this->NULL_POST) return $this->NULL_POST; $post = []; $post['id'] = $id; $post['real_content'] = $content; $post['content'] = &$post['real_content']; if(isset($mark_value) && $mark_value!==NULL) $post['mark_value'] = $mark_value; if(isset($reply_to) && ($rep = &$this->GetPost($reply_to,true))!== $this->NULL_POST){ while($rep !== $this->NULL_POST && isset($rep['next']) && $rep['next']){ $rep = &$this->GetPost($rep['next'],true); } if($rep !== $this->NULL_POST){ $rep['next'] = $id; $post['prev'] = $rep['id']; } } $this->Posts[] = $post; $p_success = &$this->Posts[count($this->Posts) - 1]; } $this->NeedWritePosts=1; $this->NeedWriteImages=1; if(isset($push_version) && $push_version){ $this->NeedWriteArchive=1; } return $p_success; } function &EditComment($id_if_edit, $comment_to_id, $content, $email, $name, $link=NULL, $ip=NULL){ $this->ReadPosts(); $p_success = NULL; if(isset($id_if_edit)){ $post = &$this->GetPost($id_if_edit,true); if($post===$this->NULL_POST || !isset($post['comment_to'])) return $this->NULL_POST; if(isset($content)) $post['content'] = $content; if(isset($comment_to_id)) $post['comment_to'] = $comment_to_id; if(isset($email)) $post['email'] = $email; if(isset($name)) $post['name'] = $name; if(isset($link)) $post['link'] = $link; if(isset($ip)) $post['ip'] = $ip; $p_success = &$post; }else{ if(!isset($content) || !isset($comment_to_id)) return $this->NULL_POST; $id = date('YmdHis'); if($this->GetPost($id,true)!== $this->NULL_POST) return $this->NULL_POST; if(!($to_post=$this->GetPost($comment_to_id,true))) return $this->NULL_POST; $post = []; $post['id'] = $id; $post['content'] = $content; $post['comment_to'] = $comment_to_id; if(isset($email)) $post['email'] = $email; if(isset($name)) $post['name'] = $name; if(isset($link)) $post['link'] = $link; if(isset($ip)) $post['ip'] = $ip; $this->Posts[] = $post; $p_success = &$this->Posts[count($this->Posts) - 1]; } $this->NeedWritePosts=1; return $p_success; } function InsertReplacementSymbols($MarkdownContent, &$post_for_it_is_here){ $replacement = preg_replace('//U',"",$MarkdownContent); $replacement = preg_replace_callback("/(```|`)([^`]*)(?1)/U", function($matches){ $rep = preg_replace('/->/','-@>',$matches[0]); $rep = preg_replace('/=>/','=@>',$rep); $rep = preg_replace('/<=/','<@=',$rep); $rep = preg_replace('/<-/','<@-',$rep); $rep = preg_replace('/\R([+]{3,})\R/',PHP_EOL.'@$1'.PHP_EOL,$rep); $rep = preg_replace('/\[-/','[@-',$rep); $rep = preg_replace('/\{/','{@',$rep); $rep = preg_replace('/(en|zh|any)\|(en|zh|any)/','$1@|$2',$rep); return $rep; }, $replacement); $replacement = preg_replace("/<[-]+>/","↔",$replacement); $replacement = preg_replace("/([^-])->/","$1→",$replacement); $replacement = preg_replace("/<-([^-])/","←$1",$replacement); $replacement = preg_replace("/([^-])[-]+->/","$1⟶",$replacement); $replacement = preg_replace("/<-[-]+([^-])/","⟵$1",$replacement); $replacement = preg_replace("/<[=]+>/","⇔",$replacement); $replacement = preg_replace("/[=]+>/","⇒",$replacement); $replacement = preg_replace("/<[=]+/","⇐",$replacement); $replacement = preg_replace("/\R([+]{3,})\R/","
",$replacement); $replacement = preg_replace("/\[-(.*)-\]/U","$1",$replacement); $replacement = preg_replace("/{支付宝(\s+[^}]*?)?}/u","支付宝$1",$replacement); $replacement = preg_replace("/{PayPal(\s+[^}]*?)?}/ui", "PayPal$1",$replacement); $replacement = preg_replace("/\/\/([0-9]{14})/imu","

".$this->T("链接位置")."

",$replacement); $replacement = preg_replace_callback("/(```|`)([^`]*)(?1)/U", function($matches){ $rep = preg_replace('/-@>/','->',$matches[0]); $rep = preg_replace('/<@-/','<-',$rep); $rep = preg_replace('/=@>/','=>',$rep); $rep = preg_replace('/<@=/','<=',$rep); $rep = preg_replace('/\R@([+]{3,})\R/',PHP_EOL.'$1'.PHP_EOL,$rep); $rep = preg_replace('/\[@-/','[-',$rep); $rep = preg_replace('/\{@/','{',$rep); $rep = preg_replace('/(en|zh|any)@\|(en|zh|any)/','$1|$2',$rep); return $rep; }, $replacement); $replacement = preg_replace_callback("/(\!\[.*?\]\(\s*images\/([0-9]{14,}\.(jpg|jpeg|png|gif))\))(\R*(\R.+){1,})/u", function($matches) use (&$post_for_it_is_here){ $rep = preg_replace("/(-|\*)\s+here\s*:\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s+images\/([0-9]{14,}\.(jpg|jpeg|png|gif))/u","", $matches[4]); return $matches[1].$rep; }, $replacement); return $replacement; } function CanShowPost(&$p,$in_recent=false){ if(!isset($p) || isset($p['comment_to'])) return false; $is_mark_exp = (isset($p['tid'])&&isset($p['tid']['exp'])&&$p['tid']['exp']) || (isset($p['mark_value'])&&$p['mark_value']==6); $is_mark_slf = (isset($p['tid'])&&isset($p['tid']['slf'])&&$p['tid']['slf']) || (isset($p['mark_value'])&&$p['mark_value']>=7); $is_mark_sln = (isset($p['tid'])&&isset($p['tid']['sln'])&&$p['tid']['sln']) || (isset($p['mark_value'])&&$p['mark_value']==8); if($is_mark_slf && !$this->LoggedIn){ return false; } if(isset($this->WayBack)){ if(isset($p['version'])) { if ($p['version']>$this->WayBack) return false; } else if ($p['id']>$this->WayBack) return false; } if(!$this->InExperimentalMode){ if(!$this->LoggedIn){ if($is_mark_exp) return false; return true; } if($this->NotesView && !$is_mark_sln && $in_recent){ return false; } return true; }else{ if($is_mark_exp) return true; return false; } } function SkipProduct(&$p){ if($this->LoggedIn) return false; return (isset($p['mark_value']) && $p['mark_value']==5); } function GetRedirect($args=NULL, $force_index=NULL){ global $INDEXPHP; $str = (isset($force_index)?$force_index:$INDEXPHP).'?'; if(isset($args['post'])) $str.='&post='.$args['post']; else if(isset($_GET['post'])) $str.='&post='.$_GET['post']; if(isset($args['gallery'])) $str.='&gallery='.$args['gallery']; else if(isset($_GET['gallery'])) $str.='&gallery='.$_GET['gallery']; if(isset($args['pic'])) $str.='&pic='.$args['pic']; else if(isset($_GET['pic'])) $str.='&pic='.$_GET['pic']; if(isset($args['settings'])) $str.='&settings='.$args['settings']; else if(isset($_GET['settings'])) $str.='&settings='.$_GET['settings']; if(isset($args['statistics'])) $str.='&statistics='.$args['statistics']; else if(isset($_GET['statistics'])) $str.='&statistics='.$_GET['statistics']; if(isset($args['extras'])) $str.='&extras='.$args['extras']; else if(isset($_GET['extras'])) $str.='&extras='.$_GET['extras']; if(isset($args['category'])) $str.='&category='.$args['category']; else if(isset($_GET['category'])) $str.='&category='.$_GET['category']; if(isset($args['history'])) $str.='&history='.$args['history']; else if(isset($_GET['history'])) $str.='&history='.$_GET['history']; if(isset($args['version'])) $str.='&version='.$args['version']; else if(isset($_GET['version'])) $str.='&version='.$_GET['version']; if(isset($args['search'])) $str.='&search='.$args['search']; else if(isset($_GET['search'])) $str.='&search='.$_GET['search']; if(isset($args['here'])) $str.='&here='.$args['here']; else if(isset($_GET['here'])) $str.='&here='.$_GET['here']; return $str; } function WriteAsNecessary(){ if(!$this->LoggedIn || isset($this->WayBack)){return;} if($this->NeedWritePosts){ $this->CachePostLinks(); $this->WritePosts(); } if($this->NeedWriteImages){ $this->WriteImages(); } if($this->NeedWriteArchive){ $this->WriteArchive(); } } function APubEnsureWebfinger($name, $host){ if(!is_dir('.well-known')) mkdir('.well-known'); if(!is_dir('.well-known/webfinger')) mkdir('.well-known/webfinger'); $f = fopen('.well-known/webfinger/index.php',"w"); $without_protocol = parse_url($host, PHP_URL_HOST); $finger = ["subject"=>"acct:".$name.'@'.$without_protocol, "links"=>[["rel"=>"self", "type"=>"application/activity+json", "href"=>$host."?apub_actor=1"]]]; fwrite($f, ""); fclose($f); if(!file_exists('.well-known/apub_public_key.pem') || !file_exists('.well-known/apub_private_key.php')){ $res = openssl_pkey_new(); $this->APubPublicKey = openssl_pkey_get_details($res)['key']; openssl_pkey_export($res, $this->APubPrivateKey); $f = fopen('.well-known/apub_public_key.pem',"w"); fwrite($f, $this->APubPublicKey); fclose($f); $f = fopen('.well-known/apub_private_key.php',"w"); fwrite($f, "".PHP_EOL.PHP_EOL.$this->APubPrivateKey); fclose($f); } } function APubInit(){ $kf = file_get_contents('.well-known/apub_private_key.php'); if($kf===false) return; preg_match("/(-----BEGIN PRIVATE KEY-----[\s\S]*)/",$kf,$ma); $this->APubPrivateKey=$ma[1]; } function APubEnsureInfo(){ if(!isset($this->APubID) || !isset($this->HostURL)) return; if(!file_exists('.well-known/apub_public_key.pem')){$this->APubEnsureWebfinger($this->APubID, $this->HostURL);} $pk = file_get_contents('.well-known/apub_public_key.pem'); //$pk = preg_replace('/\n/u','\\n',$pk); $actor = ["@context"=>["https://www.w3.org/ns/activitystreams","https://w3id.org/security/v1"], "id"=> $this->HostURL."?apub_actor=1", "type"=> "Person", "name"=> $this->DisplayName, "url"=> $this->HostURL, "summary"=> "Lazy... No summary", "preferredUsername"=> $this->APubID, "inbox"=> $this->HostURL."?apub_inbox=1", "outbox"=> $this->HostURL."?apub_outbox=1", "publicKey"=> ["id"=> $this->HostURL."?apub_actor=1#main-key", "owner"=> $this->HostURL."?apub_actor=1", "publicKeyPem"=>$pk]]; $this->APubActor = json_encode($actor, JSON_UNESCAPED_SLASHES); } function APubMakeOutbox(){ $this->ReadPosts();$this->ReadImages(); $obj = ["@context"=>"https://www.w3.org/ns/activitystreams", "id"=>$this->HostURL."?apub_outbox=1", "type"=>"OrderedCollection"]; $items=[]; $i=0; foreach(array_reverse($this->Posts) as &$p){ $this->ConvertPost($p); $text = strip_tags(preg_replace('/<\/(p|blockquote|h[0-9])>/u',"\n\n",$p['html'])); $time = DateTime::createFromFormat('YmdHis', $p['id'], new DateTimeZone('+0800')); $ob = ["@context"=>"https://www.w3.org/ns/activitystreams", "type"=> "Create", "id"=> $this->HostURL."?post=".$p['id']."?apub_object=1", "published"=> $time->format('Y-m-d\TH:i:s\Z'), //"to"=> ["https://chatty.example/ben/"], "actor"=> $this->HostURL."?apub_actor=1", "to"=> ["https://www.w3.org/ns/activitystreams#Public"], "object"=> ["type"=> "Note", "id"=> $this->HostURL."?post=".$p['id'], "published"=> $time->format('Y-m-d\TH:i:s\Z'), "attributedTo"=> $this->HostURL."?apub_actor=1", "to"=> ["https://www.w3.org/ns/activitystreams#Public"], "content"=> $text]]; $items[] = $ob; $i++; if($i>20) break; } $obj['orderedItems'] = $items; $obj["totalItems"] = sizeof($items); return json_encode($obj, JSON_UNESCAPED_SLASHES); } function APubDeliver($body,$target){ $head_digest = base64_encode(hash("sha256",$body,true)); $body_digest = "SHA-256=".$head_digest; // rfc standards require the timezone be declared as GMT and PHP's built-in formats all say UTC // so we gotta do it manually $d = new DateTimeImmutable("now", new DateTimeZone('Asia/Shanghai')); $d=$d->setTimezone(new DateTimeZone('UTC')); $date=$d->format("D, d M Y H:i:s")." GMT"; $data = "(request-target): post ".parse_url($target,PHP_URL_PATH) ."\nhost: ".parse_url($target,PHP_URL_HOST) ."\ndate: $date" ."\ndigest: $body_digest"; if (openssl_sign($data, $signature, $this->APubPrivateKey, OPENSSL_ALGO_SHA256) === FALSE) { http_response_code(500); die('unable to sign'); } $signature = base64_encode($signature); $keyid = 'keyId="'.$this->HostURL.'?apub_actor=1#main-key"'; $algo = 'algorithm="rsa-sha256"'; $headers = 'headers="(request-target) host date digest"'; $signature = "signature=\"$signature\""; $h = array( 'Content-Type: application/activity+json', 'Accept: application/activity+json', //"Content-Length: ".strlen($body), "Host: ". parse_url($target,PHP_URL_HOST), "Date: $date", "Digest: $body_digest", "Signature: $keyid,$algo,$headers,$signature" ); $ch = curl_init($target); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $body); curl_setopt($ch, CURLOPT_HTTPHEADER, $h); curl_setopt($ch, CURLOPT_USERAGENT, "laMDWiki APub"); $result = curl_exec($ch); curl_close($ch); echo "
";
        print_r($body); echo "\n\n".$target."\n\n";
        print_r($result); echo "\n\n"; print_r($h);
        echo "\n\n"; print_r(curl_getinfo($ch)); echo "
"; exit; return $result; } function APubTestDeliver(){ $this->APubInit(); $obj=[]; $obj['published']=gmdate("Y-m-d\TH:i:s\Z"); $obj['id']=""; //<------------------- $obj['url']=$this->HostURL.""; //<------------------- $obj['type']='Note'; $obj['attributedTo']=$this->HostURL."?apub_actor=1"; $tag=[]; $tag['type']='Mention'; $tag['name']="@chengdulittlea"; $tag['href']="https://mastodon.art/users/chengdulittlea"; $obj['tag']=[$tag]; // must have cc to have notification in mastodon. $obj['cc']=["https://mastodon.art/users/chengdulittlea"]; $obj['content']="

@chengdulittlea Hello activitypub from laMDWiki!

"; $obj['to']="https://www.w3.org/ns/activitystreams#Public"; $obj['inReplyTo']=""; //<------------------- $arr=[]; $arr['@context']="https://www.w3.org/ns/activitystreams"; $arr['id']=""; //<------------------- $arr['actor']=$this->HostURL."?apub_actor=1"; $arr['type']="Create"; $arr['to']="https://www.w3.org/ns/activitystreams#Public"; $arr['object']=$obj; $this->APubDeliver(json_encode($arr),"https://mastodon.example/inbox"); //<------------------- } function APubProcessInbox(){ $r = file_get_contents('php://input'); file_put_contents('postdump.txt',$r); } function MakeRSS(){ $this->ReadPosts();$this->ReadImages(); $posts = []; if(isset($this->UsePosts[0])){ $posts = array_reverse($this->UsePosts); $last_updated = $this->StandardTime($posts[0]['id']); }else{ $last_updated= $this->StandardTime("20000101000000"); } $author = "".$this->DisplayName."".$this->EMail."".$this->HostURL.""; $all_content="". "".$this->HostURL."/?rss". "".$last_updated."". "".$this->T($this->Title)."". "". "".$author; $i=0; if(isset($posts[0])) foreach($posts as &$p){ if($i>100) break; if(!$this->CanShowPost($p) || $this->SkipProduct($p)) continue; if(isset($p['tid'])){ /* Should always be set. */ $th = &$p['tid']; if($p['tid']['count']==0) continue; } if(in_array($p['id'], [$this->SpecialPinned,$this->SpecialPinnedNotes,$this->SpecialFooter,$this->SpecialFooter2,$this->SpecialNavigation,$this->SpecialSidebar])) continue; if(isset($p['tid'])){ if(isset($p['tid']['displayed'])) continue; $p['tid']['displayed'] = True; } $is_thread = isset($p['tid']['count'])&&($p['tid']['count']>1); $is_reversed=false; $content=""; $title = NULL; if($is_thread){ $use_arr = $th['arr']; $is_reversed=$this->IsReversedThread($th); $hinted=false; if($is_reversed){ $use_arr=array_reverse($th['arr']); $fp=array_pop($use_arr); array_unshift($use_arr,$fp); } foreach($use_arr as &$po){ $this->ConvertPost($po); if(!isset($title)){$title = htmlspecialchars($this->GetPostTitle($po, false, false)); if(!$title){$title='untitled';} $content.="".$this->HostURL."/?post=".$po['id'].""; $content.="".$title.""; $content.="".$this->StandardTime($po['id']).""; $content.="".$this->StandardTime(isset($po['tid']['last']['version'])? $po['tid']['last']['version']:$po['tid']['last']['id'])."".$author; $content.=""; } $content.= htmlspecialchars($po['html']); //if(isset($po['images'])&&isset($po['images'][0])) foreach($po['images'] as $im){ $content.=htmlspecialchars($im); } } $content.=$this->ReadableTime($p['tid']['first']['id'])." - ". $this->ReadableTime(isset($p['tid']['last']['version'])? $p['tid']['last']['version']:$p['tid']['last']['id']); $content.=""; }else{ $this->ConvertPost($p); if(!isset($title)){$title = htmlspecialchars($this->GetPostTitle($p, false, false)); if(!$title){$title='untitled';} $content.="".$this->HostURL."/?post=".$p['id'].""; $content.="".$title.""; $content.="".$this->StandardTime($p['id']).""; $content.="".$this->StandardTime(isset($p['tid']['last']['version'])? $p['tid']['last']['version']:$p['tid']['last']['id'])."".$author;} $content.= "".htmlspecialchars($p['html']); //if(isset($p['images'])&&isset($p['images'][0])) foreach($p['images'] as $im){ $content.=htmlspecialchars($im); } $content.=$this->ReadableTime($p['id'])." - ". $this->ReadableTime(isset($p['version'])?$p['version']:$p['id']); $content.=""; } $i++; $content.=""; $all_content.=$content; } $all_content.=""; header( "Content-type: text/xml"); echo $all_content; } function MakeHereButtons($im, $insert_here){ if(isset($im['here'])&&isset($im['here'][0])){ $size=getimagesize($im['file']); $aspect=$size[0]/$size[1]; echo ($insert_here?"":"")."
"; foreach($im['here'] as $here){ if($insert_here){ echo ""; }else{ echo ""; } } echo "
".($insert_here?"
":""); } } function ProcessRequest(&$message=NULL, &$redirect=NULL){ global $INDEXPHP; if(isset($_GET['gallery_continue']) && $_GET['gallery']){ $this->ReadImages(); $this->GetImageBatch($_GET['gallery_continue'],0); exit; } if(isset($_GET['gallery']) && $_GET['gallery']=='default'){ $redirect = "$INDEXPHP?gallery=".(isset($this->DefaultGallery)&&$this->DefaultGallery!=''?$this->DefaultGallery:"main"); return 0; } if(isset($_GET['set_language'])){ setcookie('la_language',$_GET['set_language'],time()+3600*24*7,'/'); $_COOKIE['la_language'] = $_GET['set_language']; $redirect=$this->GetRedirect(); return 0; } if(isset($_GET['rss'])){ if(in_array($_GET['rss'],['en','zh'])){$this->LanguageAppendix=$_GET['rss'];} $this->MakeRSS(); exit; } if(isset($_GET['toggle_font'])){ $use_font='local'; if(!isset($_COOKIE['la_font']) || $_COOKIE['la_font']!='remote') $use_font='remote'; setcookie('la_font',$use_font,time()+3600*24*7,'/'); $_COOKIE['la_font'] = $use_font; $redirect=$this->GetRedirect(); return 0; } if(isset($_GET['set_wayback'])){ if($_GET['set_wayback']!='false'){ $wayback= date('YmdHis'); if($_GET['set_wayback']=='post'){ if(isset($_POST['wayback_year'])) $wayback=substr_replace($wayback,str_pad($_POST['wayback_year'],4,"0",STR_PAD_LEFT),0,4); if(isset($_POST['wayback_month'])) $wayback=substr_replace($wayback,str_pad($_POST['wayback_month'],2,"0",STR_PAD_LEFT),4,2); if(isset($_POST['wayback_day'])) $wayback=substr_replace($wayback,str_pad($_POST['wayback_day'],2,"0",STR_PAD_LEFT),6,2); if(isset($_POST['wayback_hour'])) $wayback=substr_replace($wayback,str_pad($_POST['wayback_hour'],2,"0",STR_PAD_LEFT),8,2); if(isset($_POST['wayback_minute'])) $wayback=substr_replace($wayback,str_pad($_POST['wayback_minute'],2,"0",STR_PAD_LEFT),10,2); }else{ if(preg_match('/[0-9]{14}/u', $_GET['set_wayback'])) $wayback = $_GET['set_wayback']; } setcookie('la_wayback',$wayback,'/'); $_COOKIE['la_wayback'] = $wayback; }else{ setcookie('la_wayback', null, -1,'/'); unset($_COOKIE['la_wayback']); } $redirect=$this->GetRedirect(); return 0; } if(isset($_GET['post'])){ $this->CurrentPostID = $_GET['post']; $this->TagID = $this->CurrentPostID; } if(isset($_GET['here'])){ $this->HereID = $_GET['here']; } if(isset($_GET['offset'])){ $this->CurrentOffset = $_GET['offset']; } if(isset($_GET['post'])){ $this->ExtraScripts.="window.addEventListener('load', (event) => {ScrollToPost('".$_GET['post']."');});"; } if(isset($_GET['random_here'])){ $this->DoIdentifyExperimental(); $this->DetectPageType(); $im = &$this->GiveImageInHere(true); if(isset($im)){ $redirect='?here=images/'.$im['name']; return 0; } } if(isset($_POST['search_content'])){ $redirect=$INDEXPHP.'?search='.$_POST['search_content'];return 0; } if(isset($_GET['image_info']) || isset($_GET['show_image'])){ $m=isset($_GET['image_info'])?$_GET['image_info']:$_GET['show_image']; $direct_return = !isset($_GET['show_image']); $this->ReadImages(); $this->ReadPosts(); $this->SwitchWayBackMode(); if(isset($this->WayBack)){$this->ReadArchive();} $im = &$this->FindImage($m); if($im==NULL || !isset($im['refs']) || !isset($im['refs'][0])){ echo "not_found"; exit; } if($direct_return){ echo "".sizeof($im['refs']).""; echo ""; }else{ ob_start(); } $STR=""; $this->TBackup(); foreach(array_reverse($im['refs']) as $ref){ $p = $this->GetPost($ref); if(!$p || !$this->CanShowPost($p)) continue; $this->MakeSinglePostV2($p, false, true, "post_preview", true, false, false, false, true); } $STR=$this->TRestore(" compact"); if($direct_return){ echo $STR; echo ""; $this->MakeHereButtons($im, true); }else{ $str = $STR; $this->MakePageBegin($this->NULL_POST); $side = ""; if(isset($im['refs'])&&isset($im['refs'][0])){ $side.="".$this->T('该图片出现在')." ".sizeof($im['refs'])." ".$this->T('个帖子中').""; }else{$side.="".$this->T('该图片未被引用')."";} $static_image = isset($im['video'])?NULL:$im['file']; $static_video = isset($im['video'])?$im['file']:NULL; $this->MakeImageOverlay($side."
    ".$str."
",$static_image,$static_video); $this->MakePageEnd(); } exit; } if(isset($_GET['confirm_enter']) && $_GET['confirm_enter']!=false){ setcookie('la_experimental','confirmed','/'); $_COOKIE['la_experimental'] = $_GET['confirmed']; $redirect=$INDEXPHP.(isset($_GET['post'])?'?post='.$_GET['post']:"");return 0; } if(isset($_GET['apub_actor'])){ $this->APubEnsureInfo(); header('Content-Type: application/json'); header('Cache-Control no-store, no-cache, must-revalidate'); echo $this->APubActor; exit; } if(isset($_GET['apub_outbox'])){ $this->APubEnsureInfo(); header('Content-Type: application/json'); header('Cache-Control no-store, no-cache, must-revalidate'); echo $this->APubMakeOutbox(); exit; } if(isset($_GET['apub_inbox'])){ $this->APubProcessInbox(); http_response_code(202); exit; } if($this->LoggedIn){ if(isset($_GET['TestAPubDeliver'])){ $this->APubTestDeliver(); } if(isset($_GET['set_notes_view'])){ setcookie('la_notes_view',$_GET['set_notes_view'],time()+3600*24*7,'/'); $_COOKIE['la_notes_view'] = $_GET['set_notes_view']; $redirect=$this->GetRedirect(); return 0; } $this->DoUpload(); if(isset($_POST['settings_button'])){ if(isset($_POST['settings_title'])) $this->Title=$_POST['settings_title']; if(isset($_POST['settings_short_title'])) $this->ShortTitle=$_POST['settings_short_title']; if(isset($_POST['settings_display_name'])) $this->DisplayName=$_POST['settings_display_name']; if(isset($_POST['settings_email'])) $this->EMail=$_POST['settings_email']; if(isset($_POST['settings_special_navigation'])) $this->SpecialNavigation=$_POST['settings_special_navigation']; if(isset($_POST['settings_special_sidebar'])) $this->SpecialSidebar=$_POST['settings_special_sidebar']; if(isset($_POST['settings_special_footer'])) $this->SpecialFooter=$_POST['settings_special_footer']; if(isset($_POST['settings_special_footer2'])) $this->SpecialFooter2=$_POST['settings_special_footer2']; if(isset($_POST['settings_special_pinned'])) $this->SpecialPinned=$_POST['settings_special_pinned']; if(isset($_POST['settings_special_pinned_notes'])) $this->SpecialPinnedNotes=$_POST['settings_special_pinned_notes']; if(isset($_POST['settings_default_gallery'])) $this->DefaultGallery=$_POST['settings_default_gallery']; if(isset($_POST['settings_selfauth_path'])) $this->SelfAuthPath=$_POST['settings_selfauth_path']; if(isset($_POST['settings_enable_comments'])) $this->CommentEnabled=True; else $this->CommentEnabled=False; if(isset($_POST['settings_enable_newsletter'])) $this->NewsletterEnabled=True; else $this->NewsletterEnabled=False; if(isset($_POST['settings_gallery_step'])) $this->GalleryStep=$_POST['settings_gallery_step']; if(isset($_POST['settings_here_host'])) $this->HereHost=$_POST['settings_here_host']; if(isset($_POST['settings_here_title'])) $this->HereTitle=$_POST['settings_here_title']; if(isset($_POST['settings_here_short_title'])) $this->HereShortTitle=$_POST['settings_here_short_title']; if(isset($_POST['settings_here_album'])) $this->HereAlbum=$_POST['settings_here_album']; if(isset($_POST['settings_here_navigation'])) $this->HereNavigation=$_POST['settings_here_navigation']; if(isset($_POST['settings_here_footer'])) $this->HereFooter=$_POST['settings_here_footer']; if(isset($_POST['settings_exp_host'])) $this->ExpHost=$_POST['settings_exp_host']; if(isset($_POST['settings_exp_title'])) $this->ExpTitle=$_POST['settings_exp_title']; if(isset($_POST['settings_exp_short_title'])) $this->ExpShortTitle=$_POST['settings_exp_short_title']; if(isset($_POST['settings_exp_caution'])) $this->ExpCaution=$_POST['settings_exp_caution']; if(isset($_POST['settings_exp_album'])) $this->ExpAlbum=$_POST['settings_exp_album']; if(isset($_POST['settings_exp_navigation'])) $this->ExpNavigation=$_POST['settings_exp_navigation']; if(isset($_POST['settings_exp_footer'])) $this->ExpFooter=$_POST['settings_exp_footer']; if(isset($_POST['settings_allow_language'])) $this->AllowLanguageChoices=True; else $this->AllowLanguageChoices=False; if(isset($_POST['settings_mastodon_token'])) $this->MastodonToken=$_POST['settings_mastodon_token']; if(isset($_POST['settings_mastodon_url'])) $this->MastodonURL=$_POST['settings_mastodon_url']; if(isset($_POST['settings_mastodon_lang'])) $this->MastodonPreferredLang=$_POST['settings_mastodon_lang']; if(isset($_POST['settings_host_url'])) $this->HostURL=$_POST['settings_host_url']; if(isset($_POST['settings_apub_id']) && isset($this->HostURL)) { $this->APubID=$_POST['settings_apub_id']; $this->APubEnsureWebfinger($this->APubID,$this->HostURL); } if(isset($_POST['settings_old_password'])&&password_verify($_POST['settings_old_password'], $this->Password)){ if(isset($_POST['settings_id'])) $this->Admin=$_POST['settings_id']; if(isset($_POST['settings_new_password']) && isset($_POST['settings_new_password_redo']) && $_POST['settings_new_password'] = $_POST['settings_new_password_redo']) {$this->Password=password_hash($_POST['settings_new_password'], PASSWORD_DEFAULT);} $redirect=$_SERVER['REQUEST_URI']; $this->DoLogout(); } $this->WriteConfig(); return 0; } if(isset($_POST['settings_save_redirect'])){ if(isset($_POST['settings_redirect'])){ $this->BuildRedirectConfig($_POST['settings_redirect']); } $this->WriteConfig(); $redirect = $INDEXPHP.'?extras=true'; return 0; } if(isset($_POST['settings_save_translation'])){ if(isset($_POST['settings_translation'])){ $f = fopen("custom_translations.md", "w"); fwrite($f,$_POST['settings_translation']); fflush($f); fclose($f); } $redirect = $INDEXPHP.'?extras=true'; return 0; } if(isset($_GET['post'])){ if(isset($_GET['post_original'])){ echo $this->EditPost($_GET['post'],NULL,false,NULL,true,NULL,NULL,false,NULL,NULL); exit; } } if(isset($_GET['mark_delete']) && isset($_GET['target'])){ $this->EditPost($_GET['target'],NULL,$_GET['mark_delete']=='true',NULL,false,NULL,NULL,false,NULL,NULL); if(isset($_GET['post'])) $redirect='?post='.$_GET['target']; else $redirect=$this->GetRedirect(); return 0; } if(isset($_GET['set_mark']) && isset($_GET['target'])){ $this->EditPost($_GET['target'],NULL,NULL,NULL,NULL,$_GET['set_mark'],NULL,false,NULL,NULL); if(isset($_GET['post'])) $redirect='?post='.$_GET['target']; else $redirect=$this->GetRedirect(); return 0; } if((isset($_POST['post_button'])||isset($_POST['post_button_note'])) && isset($_POST['post_content'])){ $c = $_POST['post_content']; if('有什么想说的' == $c){ return 0;} if(preg_match('/\[LAMDWIKIPOST/u',$c)) { $message='Can\'t use character sequence"[LAMDWIKIPOST" anywhere in the post...'; return 1; } $reply_to = (isset($_POST['post_reply_to'])&&$_POST['post_reply_to']!="")?$_POST['post_reply_to']:NULL; $edit_id = (isset($_POST['post_edit_target'])&&$_POST['post_edit_target']!="")?$_POST['post_edit_target']:NULL; $push_history = (isset($edit_id) && isset($_POST['post_record_edit'])); $postmark=NULL; if(isset($_POST['post_button_note'])){ $postmark=8; } if(($edited = $this->EditPost($edit_id, $c, NULL, $reply_to,NULL,$postmark,NULL,$push_history,NULL,NULL))!=NULL){ $redirect='?post='.$edited['id']; return 0; }; } if(isset($_POST['post_rename_confirm']) && isset($_POST['post_rename_name']) && isset($_GET['rename_post'])){ if(($edited =$this->EditPost($_GET['rename_post'],NULL,NULL,NULL,NULL,NULL,$_POST['post_rename_name'],false,NULL,NULL))!=NULL){ $redirect='?post='.$edited['id']; return 0; }; } if(isset($_POST['post_mastodon_confirm']) && isset($_POST['post_mastodon_url']) && isset($_GET['mastodon_post'])){ if(($edited =$this->EditPost( $_GET['mastodon_post'],NULL,NULL,NULL,NULL,NULL,$_POST['post_rename_name'],false,NULL,$_POST['post_mastodon_url']))!=NULL){ $redirect='?post='.$edited['id']; return 0; }; } if(isset($_GET['mastodon_send_post']) && preg_match('/([0-9]{14})/u',$_GET['mastodon_send_post'],$m)){ $this->ReadImages(); $this->ReadPosts(); $post = &$this->GetPost($m[1]); $err=$this->T("未知错误"); if(isset($post)){ if($mastodon_url = $this->MastodonSendPost($post, $err)){ $this->NeedWritePosts = 1; $this->WritePosts(); // for mastodon url echo "SUCCESS ".$mastodon_url; }else{ echo $err; } } exit; } if(isset($_GET['merge_threads'])&&$_GET['merge_threads']!=""){ if(preg_match('/([0-9]{14})\s+([0-9]{14})/u',$_GET['merge_threads'],$m)){ if(($pe = &$this->MergeThreads($m[1],$m[2]))!=$this->NULL_POST){ $redirect='?post='.$pe['id']; return 0; } } } if(isset($_GET['merge_posts'])&&$_GET['merge_posts']!=""){ if(($pe = &$this->MergePosts($_GET['merge_posts']))!=$this->NULL_POST){ $redirect='?post='.$pe['id']; return 0; } } if ($this->CommentEnabled && isset($_POST['comment_confirm']) && (isset($_GET['comment_to'])) && isset($_POST['comment_box']) && isset($_POST['comment_email']) && isset($_POST['comment_name'])){ $c = $_POST['comment_box']; if(preg_match('/\[LAMDWIKIPOST/u',$c)) { $message='Can\'t use character sequence"[LAMDWIKIPOST" anywhere in the post...'; return 1; } $comment_to = ($_GET['comment_to']!="")?$_GET['comment_to']:NULL; if(($edited = $this->EditComment(NULL, $_GET['comment_to'], $c, $_POST['comment_email'], $_POST['comment_name'], isset($_POST['comment_link'])?$_POST['comment_link']:NULL, $_SERVER['REMOTE_ADDR']))!=NULL){ $redirect='?post='.$_GET['post']; return 0; }; } if(isset($_POST['gallery_edit_confirm']) && isset($_POST['gallery_edit_new_name']) && $_POST['gallery_edit_new_name']!=''){ $old_name = isset($_POST['gallery_edit_old_name'])?$_POST['gallery_edit_old_name']:""; $new_name = $_POST['gallery_edit_new_name']; if($old_name!=''){ $desc=isset($_POST['gallery_edit_description'])?$_POST['gallery_edit_description']:null; if(!preg_match('/[0-9]{14}/',$desc))$desc=""; $this->EditGallery($old_name, $new_name, false, true, null, null,$desc); $redirect='?gallery='.$new_name; }else{ $this->EditGallery(null, $new_name, false, true, null,null); if(isset($_GET['gallery'])) $redirect=$INDEXPHP.'?gallery='.$_GET['gallery']; else $redirect=$INDEXPHP; } return 0; } if(isset($_GET['gallery_edit_delete'])&&$_GET['gallery_edit_delete']!=null){ $this->EditGallery($_GET['gallery_edit_delete'], null, true, true, null, null,null); if(isset($_GET['gallery'])) $redirect=$INDEXPHP.'?gallery=main'; else $redirect=$INDEXPHP; return 0; } if(isset($_POST['gallery_move_ops'])&&isset($_POST['gallery_move_ops'])){ if(preg_match('/^(REM|ADD)\s+(\S+)\s+(.*)$/u', $_POST['gallery_move_ops'], $ma)){ $this->ReadImages(); if(preg_match_all('/(\S+)/u', $ma[3], $files, PREG_SET_ORDER)) foreach($files as $name){ $this->EditImage($name[1], $ma[2], ($ma[1]=='REM'), NULL, NULL, NULL, NULL); } } if(isset($_GET['gallery'])) $redirect=$INDEXPHP.'?gallery='.$_GET['gallery']; else $redirect=$INDEXPHP; return 0; } if(isset($_GET['gallery_set_featured'])&&isset($_GET['value'])){ $this->EditGallery($_GET['gallery_set_featured'], null, false, true, $_GET['value']!='false', null); if(isset($_GET['gallery'])) $redirect=$INDEXPHP.'?gallery='.$_GET['gallery']; else $redirect=$INDEXPHP; return 0; } if(isset($_GET['gallery_set_experimental'])&&isset($_GET['value'])){ $this->EditGallery($_GET['gallery_set_experimental'], null, false, true, null, $_GET['value']!='false'); if(isset($_GET['gallery'])) $redirect=$INDEXPHP.'?gallery='.$_GET['gallery']; else $redirect=$INDEXPHP; return 0; } if(isset($_GET['image_list'])&&$_GET['image_list']!=""){ $this->ReadImages(); $gallery = $_GET['image_list']; $count=0; foreach($this->Images as $im){ if($count>25){ break; } if($gallery=='main'){ echo "[".$im['name'].",".(isset($im['thumb'])?$im['thumb']:$im['name'])."]"; $count++; continue; } if(isset($im['galleries']) && isset($im['galleries'][0]) && in_array($gallery,$im['galleries'])) { echo "[".$im['name'].",".(isset($im['thumb'])?$im['thumb']:$im['name'])."]"; $count++; } } exit; } $do_image_redirect = 0; if (isset($_POST['image_button']) && isset($_GET['pic']) && preg_match('/([0-9]{14,}\.(jpg|png|jpeg|gif|mp4))/u',$_GET['pic'],$ma)){ $this->ReadImages(); $pic = $ma[1]; $picext=$ma[2]; if(isset($_POST['image_ops_product_link'])){ $this->EditImage($pic, NULL, false, $_POST['image_ops_product_link'], NULL, NULL, NULL); $redirect=$_SERVER['REQUEST_URI']; $do_image_redirect = 1; } if(isset($_POST['image_edit_new_name']) && preg_match('/\s*([0-9]{14,})\s*/u',$_POST['image_edit_new_name'],$man)){ $this->EditImage($pic, NULL, false, NULL, $man[1], NULL, NULL); $redirect=$this->GetRedirect(['pic'=>'images/'.$man[1].'.'.$picext]); $do_image_redirect = 1; } if(isset($_POST['image_parent'])){ $parent=""; if(preg_match('/\s*([0-9]{14,})\s*/u',$_POST['image_parent'],$man)){ $parent = $man[1]; } $this->EditImage($pic, NULL, false, NULL, NULL, $parent, NULL); $redirect=$_SERVER['REQUEST_URI']; $do_image_redirect = 1; } if(isset($_POST['image_align'])){$val=$_POST['image_align']; $this->EditImage($pic, NULL, false, NULL, NULL, NULL, $val); $redirect=$_SERVER['REQUEST_URI']; $do_image_redirect = 1; } $this->NeedWriteImages = 1; if($do_image_redirect) return 0; } if(isset($_GET['rewrite_styles'])){ $this->WriteStyles(); $redirect='?extras=true'; return 0; } if(isset($_GET['regenerate_thumbnails'])){ $this->RegenerateThumbnails(); $redirect='?extras=true'; return 0; } if(isset($_GET['cleanup_image_compression'])){ $run=false; if(isset($_GET['run'])){ $run=true; } $this->CleanupImageCompression($run); $redirect='?extras=true'; return 0; } if(isset($_GET['clear_all_logins'])){ $this->LoginTokens=[]; $this->WriteTokens(); } if($_SERVER['HTTP_HOST']=='localhost'){$this->WriteStyles();} } return 0; } function PostProcessHTML($html,&$added_images=null,$do_product_info=false, &$product_info=null, &$orig_src_list=null, &$end_wide=null, &$print_wide=null){ if(!$this->LoggedIn){ $html = preg_replace("/(]*href=[\'\"])(.*?)([\'\"][^>]*)>(\#.*?<\/a>)/u","",$html); } $html = preg_replace("/(]*href=[\'\"])([0-9]{14})([\'\"][^>]*)>(.*?<\/a>)/u","$1?post=$2$3 onclick='ShowWaitingBar()'>$4",$html); $html = preg_replace("/(]*href=[\'\"])\@(.*?)([\'\"][^>]*)>(.*?<\/a>)/u","$1?category=$2$3 onclick='ShowWaitingBar()'>$4",$html); $html = preg_replace("/(]*href=[\'\"])((.*?:\/\/).*?)([\'\"][^>]*)(>)(.*?)(<\/a>)/u", "$1$2$4 target='_blank'$5$6$7",$html); $html = preg_replace("/

\s*\@.*?<\/p>/mu","",$html); $html = preg_replace("/\{\s*(REVERSED|INTERESTING|HEADER|FOOTER)\s+(.*?)\}/imu","",$html); $html = preg_replace("/\{\s*(REVERSED|NO_TIME|NO_TITLE|SLIDES)\s*\}/imu","",$html); $html = preg_replace("/\{\s*WIDE\s*\}/imu","",$html,-1,$rep_count); if($rep_count){$print_wide=true;} $images = []; $images_noclick = []; $images_orig_src_list = []; $html = preg_replace_callback( "/(

\s*|\s*)?(]*)src=[\'\"])(images\/([0-9]{14,}\.(jpg|png|jpeg|gif|mp4)))([\'\"][^>]*)\/>(\s*<\/p>)?/u", function($m) use (&$images,&$images_noclick,&$images_orig_src_list) { if(isset($m[1])&&$m[1]&&$m[1][1]=='a'){ $height=""; if(preg_match("/([0-9]{1,2})em/u",$m[0],$hm)){$height=' style="height:'.$hm[1].'em;"';} return "FindImage($m[5]))!=NULL && isset($im['thumb'])){ $src = $im['thumb']; $orig_src=$im['file']; }if($im == NULL){ $im = &$this->NULL_IMAGE_DUMMY; } $media_start = $m[2]; $media_end = $m[7]; $dataset = " data-imgsrc='".$m[5]."'". (isset($im['product'])?" data-product='".$im['product']."'":""). (isset($im['parent'])?" data-parent='".$im['parent']."'":""). (isset($im['align'])?' data-align="'.$im["align"].'" style="object-position:'.$im['align'].';"':""). ($original?" class='original_img'":""); if(isset($im['video']) && isset($im['video'])!=''){ $media_start = "

"; $ret=""; if($keep) { $ret = $click; } else { $images[] = $click; } return $ret; }else{ $click =""; $images_noclick[]=$media_start.$src.$media_end.">"; $images_orig_src_list[]=$orig_src; $ret = ""; if($keep) { $ret = $click; } else { $images[] = $click; } if(isset($m[1])&&isset($m[8])&&$m[1]&&$m[8]) return $ret; else return ((isset($m[1])&&$m[1]?$m[1]:"").$ret.(isset($m[8])&&$m[8]?$m[8]:"")); } },$html,-1,$count); $html = preg_replace('/

\s*<\/p>/u',"", $html); if($html==""){$html="

 

";} if(sizeof($images)){ if((!$this->InHereMode) && sizeof($images)==1){$html.= $images[0]; } else{ $html.="
"; foreach($images as $img){ $html.="
".$img."
"; } $html.="
"; } } if(sizeof($images_noclick)){ $added_images = $images_noclick; } if(sizeof($images_orig_src_list)) { $orig_src_list = $images_orig_src_list; } if($do_product_info){ $html = preg_replace_callback("/\{PRICE\s+([^]]+?)\}/u", function($m) use (&$product_info) { $product_info['price']=$m[1];return ""; },$html); $html = preg_replace_callback("/\{SHORT\s+([^]]+?)\}/u", function($m) use (&$product_info) { $product_info['short']=$m[1];return ""; },$html); $html = preg_replace('/

\s*<\/p>/u',"", $html); if (preg_match('/(.+?)<\/h/u',$html,$title)){ $product_info['title']=$title[1]; } else { $product_info['title'] = $this->T('商品'); } if(!isset($product_info['price'])) $product_info['price']=$this->T('未设置价格'); $html = preg_replace_callback("/\{PURCHASE\s+([^]]+?)\}/u",function($m) use (&$product_info) { return "T($this->DisplayName)."<".$this->EMail.">?subject=". $this->T('购买').' '.$product_info['title']. "&body=".$this->T('你好!我想购买').$product_info['title'].urlencode(PHP_EOL.PHP_EOL). $this->FullURL().urlencode(PHP_EOL.PHP_EOL)."\">".$m[1].""; },$html); } if(preg_match("/(<\/div>|<\/table>|<\/video>)\s*$/u",$html)){$end_wide=true;} return $html; } function ConvertPost(&$post){ if(!isset($post['html'])){ $info=[]; $post['html'] = $this->TranslatePostParts($this->PostProcessHTML($this->ChoosePartsByLanguage($this->PDE->text($this->InsertReplacementSymbols($post['content'], $post)),true), $post['images'], isset($post['product']), $info, $post['original_images'], $post['end_wide'], $post['wide'])); if(isset($post['product'])) $post['product']=$info; } } function GetPostTitle(&$post, $h1_only=false, $add_unamed=true){ if($h1_only){ if(preg_match('/^#\s+(.*?)$/mu',$post['content'],$m)) return strip_tags($this->TranslatePostParts($m[1])); else return NULL; } if(!isset($post['title'])){ if(preg_match('/^#{1,6}\s+(.*?)$/mu',$post['content'],$m)){$post['title']=$m[0];} else{ $post['title'] = $add_unamed?$this->T('未命名'):""; if(preg_match('/(.*)$/mu',$post['content'],$m)){ $post['title'].=($add_unamed?' (':'').$this->PDE->text($m[1]).($add_unamed?')':''); } } } return strip_tags($this->TranslatePostParts($this->PDE->text($post['title']))); } function DetectPageType(){ if ($this->InExperimentalMode) $this->PageType='experimental'; else if($this->InHereMode) $this->PageType='here'; else if(isset($_GET['history'])) $this->PageType='history'; else if(isset($_GET['extras'])) $this->PageType='extras'; else if(isset($_GET['settings'])) $this->PageType='settings'; else if(isset($_GET['gallery'])) $this->PageType='gallery'; else if(isset($_GET['search'])) $this->PageType='search'; else if(isset($_GET['category'])) $this->PageType='category'; else if(isset($this->CurrentPostID)) $this->PageType = "post"; else if(isset($_GET['comments'])) $this->PageType='comments'; else if(isset($_GET['statistics'])) $this->PageType='statistics'; else $this->PageType = "main"; $visited_here = $this->InExperimentalMode?"visited_experimental":"visited_here"; if(!isset($_SESSION[$visited_here])){ $_SESSION[$visited_here] = []; } $this->VisitedHere = $_SESSION[$visited_here]; } function MakePageBegin(&$p){ $title=$this->InExperimentalMode?$this->T($this->ExpTitle): ($this->InHereMode?$this->T($this->HereTitle):$this->T($this->Title)) ?> <?=$title?> GetPostTitle($p)):"")?>"> "> UseRemoteFont){ ?> SelfAuthPath)&&$this->SelfAuthPath!=""){ ?>

MakePageBegin($p) ?> InHereMode?' class="exp_h_f"':''?>>
InHereMode){ $this->MakeExpNavButtons($p); }else{ $this->MakeNavButtons($p); if(isset($p['tid']['header'])){ ?>
ChoosePartsByLanguage($p['tid']['header']);?>
"; } ?> WayBack)){ $time=(isset($_COOKIE['la_wayback']) && preg_match('/[0-9]{14}/u',$_COOKIE['la_wayback']))?$_COOKIE['la_wayback']:date('YmdHis'); $year=substr($time,0,4);$month=substr($time,4,2);$day=substr($time,6,2); $hour=substr($time,8,2);$minute=substr($time,10,2);?>
  + T('正以过去的日期浏览')?>


:
InHereMode){ ?>
LoggedIn && in_array($this->PageType,['main','post'])){ ?>
\s*':'').'((en|zh|any)\|(en|zh|any))'.($use_p?'<\/p>\s*':'').'/u',$content, -1, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE); $lang = $this->LanguageAppendix; $last_lang='0'; $reduced=""; if($split) for($i=0;$i=sizeof($split)){ $this_lang = $last_lang; }else{ $this_lang = $split[$i+2]; } if($this_lang==$lang || $this_lang=='any'){ $reduced.=$split[$i]; } if($i+3(\s*)([^><]+?)(\s*)ChoosePartsByLanguage($ma[2], false); return ">".$ma[1].$this->T($reduced).$ma[3]."<"; }, $html); return $html; } function MakeNavButtons(&$p){ global $INDEXPHP; $interesting=$this->IsInterestingPost($p); $no_title=isset($p['tid']['first']['no_title']);?> T($this->Title);?>  ":""?>
InExperimentalMode?$this->T($this->ExpTitle):$this->T($this->HereTitle)?> InExperimentalMode?$this->T($this->ExpShortTitle):$this->T($this->HereShortTitle)?> InExperimentalMode){ ?> HereNumber==1?"class='gray'":("href=".$this->HereLinkFromNumber($this->HereNumber-1))?>>← HereNumber.'/'.sizeof($this->VisitedHere);?> T("随机")?>
  •  
  • T('主页')?>
  • InExperimentalMode && isset($this->ExpNavigation) && ($p = &$this->GetPost($this->ExpNavigation))!=NULL){ echo $this->GenerateSinglePost($p, false, false, false, false); }else if($this->InHereMode && isset($this->HereNavigation) && ($p = &$this->GetPost($this->HereNavigation))!=NULL){ echo $this->GenerateSinglePost($p, false, false, false, false); } ?> AllowLanguageChoices){ ?>
  •  
  • LanguageAppendix=='zh'){ ?>
  • '>汉语/English
  • '>汉语/English
  •  Google Translate 
WayBack)){ $STR.="{$this->T('以过去日期浏览时不能发帖。')}"; $this->TFill(2,$STR); $this->TRow(); return; } $STR.="
{$this->T('继续补充该话题:')}
| {$this->T('图片')} "; if($reply_to){ $STR.=""; } $this->TFill(2,$STR);$this->TExtra("class='hidden_on_print'"); $this->TRow(); } function MakeLinkedPostsV2(&$p){ $STR=""; $has_ref = isset($p['refs'])&&isset($p['refs'][0]); if(!$has_ref)return; $count=0; $STR.=""; $count_product=0; $STR.="
"; $refs=sizeof($p["refs"]); $STR.="
"; foreach(array_reverse($p['refs']) as &$pr){ $po = $this->GetPost($pr); if(!$this->CanShowPost($po)){ continue; } $count++; $this->TBackup(); $this->MakeSinglePostV2($po, false, true, 0, true, true, false, false, true, false, false); $STR.=$this->TRestore(" compact"); } $STR.="
"; $this->TFill(0,$S0); $this->TFill(1,$STR,2);$this->TExtra("style='border-bottom:none;'"); $this->TRow(); } function MakeSinglePostV2(&$post, $show_link=false, $side=false, $extra_class_string=NULL, $strip_tags=false, $show_thread_link=false, $show_reply_count=false, $generate_anchor=false, $generate_thumb = false, $is_top = false, $force_hide_long=false){ $STR=""; $EXTRA="";$S0=""; $S1=""; $is_deleted = (isset($post['mark_delete'])&&$post['mark_delete']); $mark_value = isset($post['mark_value'])?$this->Markers[$post['mark_value']]:-1; $ref_count = isset($post['refs'])?sizeof($post['refs']):0; $is_product = isset($post['mark_value'])&&$post['mark_value']==5; $number = isset($post['number'])?$post['number']:0; $title = $generate_anchor?$this->ChoosePartsByLanguage($this->GetPostTitle($post, true)):NULL; $this->ConvertPost($post);// NEEDED FOR WIDE; $is_wide = (isset($post['wide'])&&$post['wide']) || (isset($post['tid']) && isset($post['tid']['wide']) && $post['tid']['wide']); if($show_link && (!$side)){ $this->MakeLinkedPostsV2($post); } $EXTRA.="class='post $extra_class_string".($is_deleted?" deleted_post":"").($is_wide?" wide_post_print":"")."'"; if(!$side) $EXTRA.=(" data-post-id='".$post['id']."'"); if($is_deleted) $EXTRA.=" data-mark-delete='true'"; if(!$side&&isset($post['mastodon_url'])) $EXTRA.=(" data-mastodon_url='".$post['mastodon_url']."'"); //if($is_wide) $EXTRA.=" class=''"; if(!$side && !$strip_tags && $show_link){ $STR.="
+
"; } $this->TFill(2,$STR); $symbol=isset($post['mark_value'])?$this->Markers[$post['mark_value']]:"#"; $S1.="". $symbol."".$number.""; if($ref_count && !$side){ $S0.=""; } if($is_product&&!$generate_anchor){ $STR.="

".$this->T('商品')."

";} $STR.=$this->GenerateSinglePost($post, $strip_tags, $generate_anchor, $show_link, $generate_thumb,($show_thread_link||$side||$force_hide_long)); if($show_thread_link && (!$side) && isset($post['tid']) && $this->CanShowPost($post['tid']['first']) && $post['tid']['first']['id']!=$post['id']){ $STR.="
"; $STR.="
{$this->T('回复给主题帖:')}
"; $this->TBackup(); $this->MakeSinglePostV2($post['tid']['first'], false, false, false, false, false, false,false, true, false, false); $STR.=$this->TRestore(" compact"); $STR.="
"; } if($show_reply_count && isset($post['tid'])){ $STR.="{$post['tid']['count']} {$this->T('个回复')}"; } $this->TFill(2,$STR); $this->TFill(1,$S1); $this->TFill(0,$S0); $this->TExtra($EXTRA); $this->TRow(); } function MakePostSectionV2(&$post){ $STR=""; $is_thread = isset($post['tid']['count'])&&$post['tid']['count']>1; $this->Anchors = []; if(isset($post['slides']) || ($is_thread&&isset($post['tid']['slides']))) $centerclass='center_slides'; else $centerclass='center'; if(isset($this->TagID)){ $STR.=<<{$this->CssNumberID($this->TagID)}{display:block;} EOT; } $th=NULL; $STR.="

"; $is_wide = (isset($post['wide'])&&$post['wide']) || ($is_thread && isset($post['tid']['wide']) && $post['tid']['wide']); if($is_thread){ $th = $post['tid']; $STR.=$this->T('话题'); }else{ $STR.=$this->T('话题');$this->T('详细'); } $STR.="

"; $this->TFill(2,$STR); $this->TExtra("class='hidden_on_print'"); $this->TRow(); $cat = NULL; if($is_thread) { if(isset($th['categories']) && isset($th['categories'][0])){ $cat = $th['categories']; } } else { if(isset($post['categories']) && isset($post['categories'][0])) { $cat = $post['categories']; } } $this->MakePostTools(); if($cat){ $STR=<<{$this->T('分类')} | EOT; foreach($cat as $c){ $STR.=("".($c=='none'?$this->T('未分类'):$this->T($c))." "); } $STR.="

"; } $STR.="
"; $this->TFill(2,$STR); $this->TRow(); $is_reversed=false; if($is_thread){ $use_arr = $th['arr']; $hinted=false; $last_end_wide = true; $is_reversed=$this->IsReversedThread($th); foreach($use_arr as &$p){$use_class="";if($p==$post){$use_class.=" active_post";} if($last_end_wide){$use_class.=" last_wide";} $make_title = ($p == $post); if(isset($p['restart'])){ $STR="
  • {$p['restart']} …

  • "; $this->TFill(0,$STR,3); $this->TRow(); } $this->MakeSinglePostV2($p,true,false,$use_class,false, false, false, true, false, false); if($make_title){ $STR.=''; $this->TFill(2,$STR); } if($is_reversed && !$hinted){ $hinted = true; if($this->LoggedIn && (!$this->InHereMode)){ $STR.="
    "; $STR.=$this->MakePostingFieldsV2($is_thread?$th['last']['id']:$post['id'], true); $STR.="

    "; } } $last_end_wide = isset($p['end_wide']) && $p['end_wide']; } }else{ $this->MakeSinglePostV2($post,true, false,"active_post",false, false, false, true, false, false); $STR.=''; $this->TFill(2,$STR); $this->TRow(); } $STR=""; $class_add=""; if(isset($post['tid']['first']['no_time'])){ $class_add=' hidden_on_print'; } $STR.="
    ".$this->ReadableTime($post['tid']['first']['id'])."
    ". $this->ReadableTime(isset($post['tid']['last']['version'])?$post['tid']['last']['version']:$post['tid']['last']['id'])."
    "; $this->TFill(2,$STR); $this->TRow(); $STR=""; if(!$is_reversed && ($this->LoggedIn && (!$this->InHereMode))){ $STR.="

    {$this->MakePostingFieldsV2($is_thread?$th['last']['id']:$post['id'], true)}
    "; $this->TFill(2,$STR); $this->TRow(); } if($this->NewsletterEnabled){ $STR=$this->MakeSubscription(); $this->TFill(2,$STR); $this->TRow(); } //$this->MakeCommentSection($post); $STR=""; if(isset($post['slides']) || ($is_thread&&isset($post['tid']['slides']))){ $STR.=<< T- T+  << < 1/1 > X
    EOL; $this->TAfter($STR); } } function MakeSubscription($smaller=false){ $STR="";$STR.="
    {$this->T("订阅我的新闻")} {$this->T("输入您的邮件:")} T("订阅")}>
    "; return $STR; } function MakeRecentPostsV2($search_term=NULL, $category=NULL){ global $INDEXPHP; $STR=""; $tmppinned=$this->SpecialPinned; if($this->LoggedIn && $this->NotesView){ $this->SpecialPinned=$this->SpecialPinnedNotes; } if(!isset($search_term) && !isset($category) && (isset($this->SpecialPinned) && ($p = &$this->GetPost($this->SpecialPinned))!=NULL && !$this->CurrentOffset) && $this->CanShowPost($p,true)){ $this->MakeSinglePostV2($p, true, false, "active_post", false, true, false, false, false, true, false); } $this->SpecialPinned=$tmppinned; if($this->NewsletterEnabled && !isset($category) && !isset($search_term) && !$this->NotesView){ $STR=$this->MakeSubscription(); $this->TFill(2,$STR); $this->TRow(); $STR=''; } $STR.="

    ".(isset($search_term)?$this->T('搜索'): (isset($category)?("".$this->T('分类')." ". ($category=='none'?$this->T('未分类'):$this->T($category))):($this->NotesView?$this->T('备忘录'):$this->T('最近')). "".//"". ($this->LoggedIn?" N ". "@ %":"")."")). "


    "; $this->TFill(2,$STR); $this->TRow(); if(isset($search_term)){ $STR.="". "". ""; $this->TFill(2,$STR); $this->TRow(); }else if(isset($category)){ $STR.="
    "; $this->TFill(2,$STR); $this->TRow(); }else if($this->LoggedIn){ $this->TFill(2,$STR); $this->TRow(); $this->MakePostingFieldsV2(NULL,false); } $this->PostsPerPage=20; $i = 0; $last_end_wide = true; if(isset($this->UsePosts[0])) foreach(array_reverse($this->UsePosts) as &$p){ if(!$this->CanShowPost($p,true) || $this->SkipProduct($p)) continue; if(isset($p['tid'])){ /* Should always be set. */ $th = &$p['tid']; if($p['tid']['count']==0) continue; if(!isset($search_term)) { $p = &$th['last']; } } if(isset($search_term)){ if ($search_term=='' || !preg_match("/".preg_quote($search_term)."/iu", $p['content'])) continue; }else if(isset($category)){ $cat = isset($p['tid'])?(isset($p['tid']['categories'])?($p['tid']['categories']):[]): (isset($p['categories'])?($p['categories']):[]); if ($category=='none') { if($cat!=[]) continue; } else{ if ($category=='' || !in_array($category, $cat)) continue; } if(isset($p['tid'])){ if(isset($p['tid']['displayed'])) continue; $p['tid']['displayed'] = True; } }else{ if(in_array($p['id'], [$this->SpecialPinned,$this->SpecialPinnedNotes,$this->SpecialFooter,$this->SpecialFooter2,$this->SpecialNavigation,$this->SpecialSidebar])) continue; if(isset($p['tid'])){ if(isset($p['tid']['displayed'])) continue; $p['tid']['displayed'] = True; } } if($i < $this->PostsPerPage * $this->CurrentOffset) {$i++; continue;} if($last_end_wide){$use_class="last_wide";}else{$use_class="";} $this->MakeSinglePostV2($p, true, false, $use_class, false, !isset($search_term), false, false, false, false, isset($search_term)); $i++; if($i >= $this->PostsPerPage * (1+$this->CurrentOffset)) {break;} $last_end_wide = sizeof($p['tid']['arr'])==1 && isset($p['end_wide']) && $p['end_wide']; } $STR=""; $EXTRA="class='clean_a'"; $STR.="

    ". "CurrentOffset>0?("href='".$INDEXPHP."?offset=".($this->CurrentOffset-1). (isset($search_term)?"&search=".$search_term:(isset($category)?"&category=".$category:""))."'"):""). ($this->CurrentOffset==0?" class='gray'":"").">{$this->T('上一页')} ← "; $STR.=" [ ".($this->CurrentOffset+1)." ] "; $STR.="". " → {$this->T('下一页')}"; $this->TFill(0,$STR,3); $this->TExtra($EXTRA); $this->TRow(); } function GeneratePage($is_section=false,$extra_classes=""){ $S=""; $S.=""; foreach($this->PAGE as $r){ $S.=""; $spantotal=0; $sp=""; if(isset($r['span0'])){$sp=" colspan='".$r['span0']."'"; $spantotal+=$r['span0']; }else{ $spantotal++; }; if($spantotal<=3){ $S.=""; if(isset($r[0])){ $S.=$r[0]; } $S.=""; } if(isset($r['span1'])){$sp=" colspan='".$r['span1']."'"; $spantotal+=$r['span1']; }else{ $spantotal++; }; if($spantotal<=3){ $S.=""; if(isset($r[1])){ $S.=$r[1]; } $S.=""; } if(isset($r['span2'])){$sp=" colspan='".$r['span2']."'"; $spantotal+=$r['span2']; }else{ $spantotal++; }; if($spantotal<=3){ $S.=""; if(isset($r[2])){ $S.=$r[2]; } $S.=""; } $S.=""; } $S.=""; return $S; } function GenerateLinkedPosts($ht){ $ht = preg_replace_callback('/

    [\s]*]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>(.*)<\/a>[\s]*<\/p>/u', function($m){ if(preg_match('/^\s*GetPost($m[1], false, true); $STR=$this->T("未找到该引用。"); if($rp!==NULL && $this->CanShowPost($rp)){ $this->TBackup(); $this->MakeSinglePostV2($rp, false, false, false, false, false, false,false, true, false, false); $STR=$this->TRestore(" compact"); } $s="".$m[2]."

    ".$STR."
    "; return $s; }, $ht ); $ht = preg_replace_callback('/
  • [\s]*]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>PRODUCT\s+(.*)<\/a>[\s]*<\/li>/u', function($m){ $rp = &$this->GetPost($m[1], false, true); $s="
    ". (($rp!==NULL && $this->CanShowPost($rp))? $this->GenerateSinglePost($rp,true,false,false,true,true):$this->T("未找到该引用。")). "
    "; return $s; }, $ht ); return $ht; } function GenerateSinglePost(&$post, $strip_tags, $generate_anchor=false, $generate_refs=false, $generate_thumbs=false, $hide_long = false){ $this->ConvertPost($post); if($generate_anchor){ $this->CreatePostAnchor($post); } $ht = $post['html']; if(isset($post['mark_value']) && $post['mark_value']==5 && ($generate_thumbs || !$generate_anchor)){ $ht="
    ".$post['images'][0]."
    ". "

    ".$post['product']['title']."

    ". (isset($post['product']['short'])?("

    ".$post['product']['short']."

    "):""). "

    ".$post['product']['price']."

    "; return $ht; } if($hide_long){ $ht = preg_replace('/

    \s*\{read_more\}\s*<\/p>[\s\S]*/u',"

    [".$this->T("阅读更多")."]

    ", $ht); }else{ $ht = preg_replace('/

    \s*\{read_more\}\s*<\/p>/u',"", $ht); } if ($strip_tags){ $ht = strip_tags($ht,'

    '); $ht = preg_replace('/

    \s*<\/p>/u',"", $ht); $ht = $ht; } else{ if($generate_refs) $ht = $this->GenerateLinkedPosts($ht); } if ($strip_tags && $generate_thumbs){ $ht="

    ".$ht."
    "; if(isset($post['images']) && isset($post['images'][0])){ $ht.="
      "; foreach($post['images'] as $im){ $ht.="
    • ".$im."
    • "; } $ht.="
    "; } } return $ht; } function MakeSinglePostExp(&$post){ ?>
  • GenerateSinglePost($post, false, false, true, false, false); ?>
  • Markers[$post['mark_value']]:-1; $ref_count = isset($post['refs'])?sizeof($post['refs']):0; $is_product = isset($post['mark_value'])&&$post['mark_value']==5; $title = $generate_anchor?$this->ChoosePartsByLanguage($this->GetPostTitle($post, true)):NULL; $this->ConvertPost($post);// NEEDED FOR WIDE; $is_wide = (isset($post['wide'])&&$post['wide']) || (isset($post['tid']) && isset($post['tid']['wide']) && $post['tid']['wide']); ?>

    ".$title."

    ":""?> WayBack)){ ?> T('以过去日期浏览时不能发帖。')?>
    T('继续补充该话题:')?>
    T('发送')?> onclick='ShowWaitingBar();' /> | T('图片')?> LoggedIn) return; ?>

    T('评论')?>

    CommentEnabled){ echo "

     ".$this->T("已关闭评论")." 


    "; } ?>
      Posts) as $p){ if(!isset($p['comment_to'])) continue; if($i < $this->CommentsPerPage * $this->CurrentOffset) {$i++; continue;} $ht = $this->GenerateSinglePost($p, false, false, false, false, false); $name = isset($p['link'])?("".$p['name']."↗"):$p['name']; $post_to = $this->GetPost($p['comment_to']); $post_title = $this->GetPostTitle($post_to); if(!$post_to) $post_title = "?"; $mail = " ". "@ ". (isset($p['ip'])?$p['ip']:"?")." 
      ". "(".$post_title.")
      "; echo "
    • ".$name.":".$mail."

      ".$ht."
    • "; $i++; } ?>


    SpecialPinned) && ($p = &$this->GetPost($this->SpecialPinned))!=NULL && !$this->CurrentOffset) && $this->CanShowPost($p)){ ?>

    T('搜索'): (isset($category)?("".$this->T('分类')." ". ($category=='none'?$this->T('未分类'):$this->T($category))):($this->NotesView?$this->T('备忘录'):$this->T('最近')). " ".//"". ($this->LoggedIn?"@ %":"")."")?>


    T('搜索')?>
    LoggedIn){ ?>
    MakePostingFields(NULL,false); ?>
      GetPost($pr); if(!$this->CanShowPost($po)){ continue; } $count++; $this->MakeSinglePost($po, false, true, "post_preview invert_a", true, false, false, false, true, false, false); } ?>

    InExperimentalMode){ ?> >T('链接')?>

    T('个引用:')?>
    T('和').' '.$count_product.' '.$this->T('个商品')?>
    T('没有帖子链接到这里。')?>
     
    WayBack) && $latest_ver>$this->WayBack) $can_show=0; $title = NULL; if(!isset($ah) || ($show_latest && $can_show)) { $title=$this->T($this->GetPostTitle($post, false)); } else{ $ver = &$ah['list'][sizeof($ah['list'])-1]; $title= $this->GetPostTitle($ver); } if(!isset($title)) $title=$this->T('未命名'); if(!isset($ah)){ ?>

    T('没有历史记录')?>

    T('帖子')?> '>

    T('历史记录')?>

    T('帖子')?> '>
    • ReadableTime($latest_ver)?> T('长度').' '.strlen($post['content'])?>
        GetArchiveHandle($from); if(!isset($fromah)) continue; $ver = &$fromah['list'][sizeof($fromah['list'])-1];?>
      • &history=1'> GetPostTitle($ver);?> T('长度').' '.strlen($ver['content'])?>
      GetArchiveHandle($pm); $mver = &$this->GetPost($pm); if(!isset($mver) && isset($mah)) $mver = &$mah['list'][sizeof($mah['list'])-1]; ?>
    • WayBack) && $ver['version']>$this->WayBack) continue; if(isset($ver['history_displayed']) && $ver['history_displayed']) continue; ?> > '>ReadableTime($ver['version'])?> T('长度').' '.strlen($ver['content'])?> GetArchiveHandle($pm); $mver = &$this->GetPost($pm); if(!isset($mver) && isset($mah)) $mver = &$mah['list'][sizeof($mah['list'])-1]; ?>
        GetArchiveHandle($from); if(!isset($fromah)) continue; $ver = &$fromah['list'][sizeof($fromah['list'])-1];?>
      • &history=1'> GetPostTitle($ver);?> T('长度').' '.strlen($ver['content'])?>

    T('版本不存在')?>

    T('差异')?>

    GetArchiveHandle($pm); $mver = &$this->GetPost($pm); if(!isset($mver) && isset($mah)) $mver = &$mah['list'][sizeof($mah['list'])-1]; ?>

    T('话题')?> &history=1'>GetPostTitle($mver)?> T('并入这里')?>
    T('个帖子')?>

    T('没有更旧的版本')?> T('上一个版本')?>
    ReadableTime($last_ver['version'])?>
    T('选择的版本')?>
    ReadableTime($this_ver['version'])?>

    &set_wayback='>T('前往该版本时间')?> ← GetArchiveHandle($this->CurrentPostID); $p = &$post; if(!isset($post)){ $p=&$ah['list'][0]; } $show_latest = isset($ah)?(!isset($ah['list'][sizeof($ah['list'])-1]['merged_into'])):true; ?>
    MakePostHistoryList($ah, $p, $version, $show_latest); }else{ echo " "; } ?>
    MakePostHistoryList($ah, $p, NULL, $show_latest); }else{ $this_ver = NULL; $next_ver = NULL; $last_ver=NULL; $this_ver = &$this->GetArchiveVersion($ah, $version, $next_ver, $last_ver); if(!isset($this_ver)){$this_ver = $p; $last_ver=$ah['list'][sizeof($ah['list'])-1];} $this->MakePostDiff($this_ver, $last_ver, $p); } ?>
    CommentEnabled){ return; } $to_post = isset($post['tid'])?$post['tid']['first']:$post; $comment_count = (isset($to_post['comments']) && isset($to_post['comments'][0]))?count($to_post['comments']):0; ?>

    T('评论')?> ()

    "; foreach($to_post['comments'] as $p){ $ht = $this->GenerateSinglePost($p, false, false, false, false, false); $name = isset($p['link'])?("".$p['name']."↗"):$p['name']; $mail = $this->LoggedIn?(" ". "@ "):""; echo "
  • ".$name.":".$mail."

    ".$ht."
  • "; } echo ""; } else { echo $this->T('还没有评论'); } ?>

     T('写评论');?> 

    Anchors = []; $c = &$th['first']['content']; $this->ConvertPost($th['first']); $ht = $th['first']['html']; ?>
    MakePostTools(); ?>

    T('分类')?> | ".($c=='none'?$this->T('未分类'):$this->T($c))." "; } ?>

    T('有趣')?> '>→

    • '>
      +

      T('引用')?>:

        GetPost($ref); if(isset($post['mark_value']) && $post['mark_value']==5){ $count_product++; continue; } if(!$this->CanShowPost($po)){ continue; } echo "
      • ".$this->GetPostTitle($po)."
      • "; } ?>
      LoggedIn && (!$this->InHereMode)){ ?>

      MakePostingFields($th['last']['id'], true);?>
      ConvertPost($p); $mark_value = isset($p['mark_value'])?$this->Markers[$p['mark_value']]:-1; $ref_count = isset($p['refs'])?sizeof($p['refs']):0; $is_current = $p['id']==$this->CurrentPostID; $is_deleted = (isset($p['mark_delete'])&&$p['mark_delete']); ?> ' onDblClick='ClickImage(this)'>0){ ?>
      T($header);?>
      + class='clean_a paa'>
      Markers[$p['mark_value']]:($ref_count?"":"→")?>

       

        GetPost($ref); if(isset($post['mark_value']) && $post['mark_value']==5){ $count_product++; continue; } if(!$this->CanShowPost($po)){ continue; } echo "
      • ".$this->GetPostTitle($po)."
      • "; } ?>

    MakeCommentSection($th['first']); ?>
    LoggedIn && !isset($this->WayBack)){ $STR=<< {$this->T('工具')}:
    EOT; } $this->TFill(2,$STR); $this->TRow(); } function MakeSidebar(){ ?>
    SpecialSidebar) && ($p = &$this->GetPost($this->SpecialSidebar))!=NULL){ ?>
    GenerateSinglePost($p, false, false, false, false); }?> NewsletterEnabled){ $STR=$this->MakeSubscription(1); echo $STR; }?>

    1; $this->Anchors = []; if(isset($post['slides']) || ($is_thread&&isset($post['tid']['slides']))) $centerclass='center_slides'; else $centerclass='center'; if(isset($this->TagID)){ ?>

    T('话题')?> T('详细')?>

    MakePostTools(); if($cat){ ?>

    T('分类')?> | ".($c=='none'?$this->T('未分类'):$this->T($c))." "; } ?>


    ReadableTime($post['tid']['first']['id']);?>
    ReadableTime(isset($post['tid']['last']['version'])? $post['tid']['last']['version']:$post['tid']['last']['id']);?>
    LoggedIn && (!$this->InHereMode))){ ?>

    MakePostingFields($is_thread?$th['last']['id']:$post['id'], true);?>
    MakeCommentSection($post); ?>
    T- T+  << < 1/1 > X
    Anchors = []; $is_thread = isset($post['tid']); ?>

      IsReversedThread($th); $hinted=false; foreach($use_arr as &$p){ $this->MakeSinglePostExp($p); if($p == $th['first']){?>
    •  


      T('该话题最新帖子在前')?>

       

    • MakeSinglePostExp($post); ?>
    NULL_IMAGE); ?>
    T('请稍候'):$this->T('未找到图像')?>
    MakeHereButtons($im, false); ?>

    T('点击图片以插入:')?>

    T('选择、粘贴或者拖动到页面以上传图片。')?>

    T('就绪')?>
    >T('上传列表中的文件')?> LoggedIn&&!$this->InExperimentalMode) && isset($g['experimental']) && $g['experimental']) return false; return true; } function CanShowImage(&$im){ if((!$this->LoggedIn&&!$this->InExperimentalMode) && isset($im['galleries']) && isset($im['galleries'][0])) foreach($im['galleries'] as $ga){ if(($g=$this->GetGallery($ga)) && isset($g['experimental']) && $g['experimental']) return false; } if(isset($this->WayBack) && substr($im['name'],0,14)>$this->WayBack) return false; return true; } function GetImageBatch($from,$show_all){ if(!isset($_GET['gallery'])) return; $name=NULL; if($_GET['gallery']!='main' && $_GET['gallery']!='trash'){$name=$_GET['gallery'];} $reached=0; $count=0; if(isset($this->Images[0])) foreach($this->Images as $im){ if(isset($from)&&!$reached){ if($from==$im['name']){ $reached=1; } continue; } if(!$this->CanShowImage($im)){ continue; } if($_GET['gallery']=='trash') $name='trash'; if($_GET['gallery']!='main'){ if(!isset($im['galleries']) || !in_array($name, $im['galleries'])) continue;} ?> =$this->GalleryStep)){ break; } } if($count<$this->GalleryStep){ ?>
    END_GALLERY

    GetGallery($name))!=NULL)? ("".$this->T('相册').":".$this->T($name)): ($_GET['gallery']=='trash'?$this->T('垃圾桶'):$this->T('画廊'))?>

    T('前往')?>
    LoggedIn){?> GetPost($description):null; if(isset($desc)){ ?>
    ReadPosts(); $this->ReadImages(); $this->ReadArchive(); $list=[]; $last_date=null; $info=[]; $info['count']=0; $info['edits']=0; $info['length']=0; $imlist=[]; $imlast_date=null; $iminfo=[]; $iminfo['count']=0; $maxposts=0; $maxlength=0; $maximages=0; foreach($this->Posts as &$p){ $is_ref=0; $this_date=substr($p['id'],0,8); if($last_date!=null && $last_date!=$this_date){ if($maxposts<$info['count']+$info['edits'])$maxposts=$info['count']+$info['edits']; if($maxlength<$info['length'])$maxlength=$info['length']; $list[]=$info; $info=[]; $info['count']=0; $info['edits']=0; $info['length']=0; } $ah = &$this->GetArchiveHandle($p['id']); if(isset($ah)&&isset($ah['list'][0])) $info['edits']+=count($ah['list']); $info['count']++; $info['id']=$this_date; if(isset($p['content']))$info['length']+=strlen($p['content']); $last_date=$this_date; } $last_date=null; foreach($this->Images as &$im){ $is_ref=0; $this_date=substr($im['name'],0,8); if($last_date!=null && $last_date!=$this_date){ if($maximages<$iminfo['count'])$maximages=$iminfo['count']; $imlist[]=$iminfo; $iminfo=[]; $iminfo['count']=0; } $iminfo['count']++; $iminfo['id']=$this_date; $last_date=$this_date; } if($info!=[]) $list[]=$info; if($iminfo!=[]) $imlist[]=$iminfo; if(!isset($list[0])) return; $earliest=DateTimeImmutable::createFromFormat('!Ymd',$list[0]['id']); $ey=substr($list[0]['id'],0,4); $latest=DateTimeImmutable::createFromFormat('!Ymd',end($list)['id']); $ly=substr(end($list)['id'],0,4); $days=$earliest->diff($latest)->days; $lw=2.0; $dw=$days*$lw; $spw=20; ?>

    T('统计')?>


    diff($earliest); $ds=$lw/2+$lw*$itv->days*($itv->invert?1:-1); $p1=100.0*(1-$info['count']/$maxposts); $p2=$p1-100.0*$info['edits']/$maxposts; $p3=100.0*$info['length']/$maxlength+$spw+100; ?> 0){ ?> 0){ ?> diff($earliest); $ds=$lw/2+$lw*$itv->days*($itv->invert?1:-1); $p1=100+$spw+100.0*($im['count']/$maximages); ?> diff($earliest); $ds=$lw/2+$lw*$itv->days*($itv->invert?1:-1);?> diff($earliest); $dds=$lw/2+$lw*$itv2->days*($itv2->invert?1:-1); if($dds<0||$dds>$lw/2+$dw) continue; ?> T('新增')?> T('改动')?> T('媒体')?> T('长度')?>


    T('设置')?>

    LoggedIn){ ?>
    T('选项')?>T('值')?>
    T('网站标题')?>
    T('短标题')?>
    T('显示名称')?>
    T('电子邮件')?>
    T('导航栏')?> SpecialNavigation)?"":""?>
    T('侧边栏')?> SpecialSidebar)?"":""?>
    T('脚注')?> 1SpecialFooter)?"":""?>
    T('脚注')?> 2SpecialFooter2)?"":""?>
    T('置顶文')?>SpecialPinned)?"":""?>
    T('置顶备忘')?>SpecialPinnedNotes)?"":""?>
    T('默认相册')?>
    T('相册单步')?>
    T('SelfAuth 路径')?>
    T('启用评论')?> CommentEnabled?"checked":""?>/>
    T('启用新闻')?> NewsletterEnabled?"checked":""?>/>
    T('附加操作')?>T('进入')?>
     
    T('长毛象')?>
    T('长毛象实例')?>
    T('长毛象令牌')?>
    T('偏好语言')?>
    T('本站地址')?>
     
    T('Activity Pub')?>
    T('用户名')?>
     
    T('这里访问')?>
    T('主机')?>
    T('网站标题')?>
    T('短标题')?>
    T('相册')?>
    T('导航栏')?> HereNavigation)?"":""?>
    T('脚注')?>HereFooter)?"":""?>
     
    T('实验访问')?>
    T('主机')?>
    T('网站标题')?>
    T('短标题')?>
    T('首次提示')?>ExpCaution)?"":""?>
    T('相册')?>
    T('导航栏')?> ExpNavigation)?"":""?>
    T('脚注')?>ExpFooter)?"":""?>
    T('允许选择语言')?> AllowLanguageChoices?"checked":""?>/>
     
    T('管理员')?> T('登出')?>
    T('帐号')?>
    T('新密码')?>
    T('再次输入')?>
    T('旧密码')?>
    T('请登录')?>
    T('帐号')?>
    T('密码')?>
    LoggedIn){ ?> ' /> ' />

    T('附加操作')?>

    T('返回一般设置')?>

     

    T('自动重定向')?>

    T('P为帖子跳转,匹配REQUEST_URI跳到目标文章;S为站点跳转,可以重定向来源域名,例子:')?>
    P discount:20001001010101;
    S old_domain:www.new_domain.com:20001001010101;
    ' />

     

    T('自定义翻译')?>

    T('填写格式:')?>
    - 语言 | Language
    ' /> NewsletterEnabled){ $subs=file_get_contents("all_subscribers.php"); ?>

    T('邮件订阅者')?>


    T('ActivityPub 测试:')?>

    LoggedIn && (!$this->InHereMode)){ ?> ondrop="_dropHandler(event);" ondragover="_dragOverHandler(event);">
    HereDisplayTitle)?('"'.trim($this->T($this->ChoosePartsByLanguage($this->HereDisplayTitle))).'"'):NULL; if(!isset($exptitle)) $exptitle=$this->InExperimentalMode?$this->T($this->ExpTitle):$this->T($this->HereTitle);?>
    >
    T('请稍候')?>
    />

     

    MakeImageOverlay(); $this->MakePageEnd(); ?> ExpHost) && $this->ExpHost && preg_match('/'.preg_quote($this->ExpHost).'/u', $_SERVER['HTTP_HOST'])){ $this->InExperimentalMode=True; $this->InHereMode=True; if(!$this->AllowLanguageChoices){ $this->LanguageAppendix='en'; } } if(isset($this->HereHost) && $this->HereHost && preg_match('/'.preg_quote($this->HereHost).'/u', $_SERVER['HTTP_HOST'])){ $this->InHereMode=True; } //$this->InHereMode=True; } function DoExperimentalTopLink($p){ if($this->InHereMode && $p){ if(isset($p['tid']) && $p['tid']['first']!=$p){ header('Location: ?post='.$p['tid']['first']['id']); exit(); } } } function MakeExperimentalConfirm(){ global $INDEXPHP; if(isset($_COOKIE['la_experimental']) && $_COOKIE['la_experimental'] == 'confirmed'){ return false; } $caution_html = $confirm = "  ".$this->T('继续')."  "; ?>
    ExpCaution) && ($p=$this->GetPost($this->ExpCaution,true)))$this->MakeSinglePostExp($p); else echo "
  • ".$this->TranslatePostParts("

    注意

    您将进入实验站。

    ")."
  • "; ?>
  • DoSiteRedirect(); $la->DoLogin(); $la->SwitchLanguageAndFont(); $err = $la->ProcessRequest($message, $redirect); $la->WriteAsNecessary(); $la->DoIdentifyExperimental(); $la->SwitchWayBackMode(); if($err){ echo $message; exit(); } if(isset($redirect)){ header('Location: '.$redirect); exit(); } $la->DetectPageType(); $la->ReadImages(false); $la->ReadPosts(); if(isset($la->WayBack)){ $la->ReadArchive(); } $im = NULL; if(isset($la->HereID) && preg_match('/images\/(.*)/u',$la->HereID,$imname) && ($im = &$la->FindImage($imname[1]))){ if(!$la->CanShowImage($im)) { $im=&$la->NULL_IMAGE; } } $p = &$la->GetPost($la->CurrentPostID); if(!isset($p)){ $p = &$la->GetMergedPost($la->CurrentPostID); } if(isset($p) && !$la->CanShowPost($p)) $p=NULL; else{ $la->DoExperimentalTopLink($p); } if(isset($p)){ $la->ActualPostID = $p['id']; } if($la->PageType=='here' ||$la->PageType=='experimental'){ if($im){ $la->SetHereMainImage($im); $la->RecordVisitedHere($im['name'],$im?$la->ImageTitle($im):NULL); }else if($p){ $la->RecordVisitedHere($p['id'],NULL); }else { $im = &$la->GiveImageInHere(false); if($im){ $la->SetHereMainImage($im); $la->RecordVisitedHere($im['name'],$la->ImageTitle($im)); } } } $la->MakeHeader($p); $la->MakeMainBegin(); if($la->PageType=='here' ||$la->PageType=='experimental'){ if(($la->PageType=='experimental' && (!$la->MakeExperimentalConfirm())) || $la->PageType=='here'){ if($im){ $la->MakeHereSection($im); }else if($p){ $la->MakePostSectionExp($p); $la->MakeLinkedPostsExp($p); }else { if($im){ $la->MakeHereSection($im); }else{ echo "

    ".$la->T('未找到这个帖子')."

    ".$_SERVER['REQUEST_URI']. "

    ".$la->T('返回首页')."


    "; } } } $la->MakeMainEnd(); $la->MakeExpFooter(); }else{ if($la->PageType=='extras'){ $la->MakeExtraOperations(); }else if($la->PageType=='settings'){ $la->MakeSettings(); }else if($la->PageType=='gallery'){ $la->MakeGalleryLeft(); $la->MakeGallerySection(); }else if($la->PageType=='post'){ if($p){ $made_interesting = false; if($la->IsInterestingPost($p)){ $la->MakeInterestingSection($p['tid']); } else{ $la->MakeSidebar(); $la->MakePostSectionV2($p); echo $la->GeneratePage(1," section"); //$la->MakePostSection($p); } }else{ echo "

    ".$la->T('未找到这个帖子')."

    ".$_SERVER['REQUEST_URI']. "

    ".$la->T('返回首页')."


    "; } }else if($la->PageType=='history'){ $la->ReadArchive(); $la->MakePostHistory($p, $_GET['version']??NULL); }else if($la->PageType=='search'){ $la->MakeSidebar(); $la->MakeRecentPostsV2($_GET['search']); echo $la->GeneratePage(); }else if($la->PageType=='category'){ $la->MakeSidebar(); $la->MakeRecentPostsV2(NULL,$_GET['category']); echo $la->GeneratePage(); }else if($la->PageType=='comments'){ $la->MakeCommentPosts(); }else if($la->PageType=='statistics'){ $la->MakeStatistics(); }else{ $la->MakeSidebar(); $la->MakeRecentPostsV2(); echo $la->GeneratePage(); } $la->MakeMainEnd(); $la->MakeFooter($p); } ?>