LanguageAppendix) return $str; foreach($this->Translations as $entry){ if($entry['zh']==$str) return $entry[$this->LanguageAppendix]; } return $str; } function SwitchLanguage(){ 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'; } } } 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(){ 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'].'/index.php?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'){ fwrite($conf,"RewriteRule ^".$r['format'].'$ /index.php?post='.$r['target'].' [R=302,L]'.PHP_EOL.PHP_EOL); }// do site redirect in php. } fwrite($conf, 'RewriteCond %{HTTP:X-Forwarded-Proto} !https'.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]'.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.md','w'); 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.md','w'); 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,'- SpecialFooter = '.$this->SpecialFooter.PHP_EOL); fwrite($conf,'- SpecialFooter2 = '.$this->SpecialFooter2.PHP_EOL); fwrite($conf,'- SpecialPinned = '.$this->SpecialPinned.PHP_EOL); fwrite($conf,'- DefaultGallery = '.$this->DefaultGallery.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.md')){ $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'); $this->WriteStyles(); $this->WriteHTACCESS(); } function ReadConfig(){ if(!file_exists('la_config.md')){ $this->Install(); } $c = file_get_contents('la_config.md'); if(preg_match('/-\s*Title\s*=\s*(\S+)\s*$/um', $c, $m)) $this->Title = $m[1]; else $this->Title=$this->T("那么的维基"); if(preg_match('/-\s*ShortTitle\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ShortTitle = $m[1]; else $this->Title=$this->T("基"); if(preg_match('/-\s*Admin\s*=\s*(\S+)\s*$/um', $c, $m)) $this->Admin = $m[1]; if(preg_match('/-\s*Password\s*=\s*(\S+)\s*$/um', $c, $m)) $this->Password = $m[1]; if(preg_match('/-\s*DisplayName\s*=\s*(\S+)\s*$/um', $c, $m)) $this->DisplayName = $m[1]; if(preg_match('/-\s*EMail\s*=\s*(\S+)\s*$/um', $c, $m)) $this->EMail = $m[1]; if(preg_match('/-\s*SpecialNavigation\s*=\s*(\S+)\s*$/um', $c, $m)) $this->SpecialNavigation = $m[1]; if(preg_match('/-\s*SpecialFooter\s*=\s*(\S+)\s*$/um', $c, $m)) $this->SpecialFooter = $m[1]; if(preg_match('/-\s*SpecialFooter2\s*=\s*(\S+)\s*$/um', $c, $m)) $this->SpecialFooter2 = $m[1]; if(preg_match('/-\s*SpecialPinned\s*=\s*(\S+)\s*$/um', $c, $m)) $this->SpecialPinned = $m[1]; if(preg_match('/-\s*DefaultGallery\s*=\s*(\S+)\s*$/um', $c, $m)) $this->DefaultGallery = $m[1]; if(file_exists('la_redirect.md')){ $c = file_get_contents('la_redirect.md'); $this->BuildRedirectConfig($c); } $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.md')){ $c = file_get_contents('la_tokens.md'); if(preg_match_all('/-\s+(\S.*)\s*$/um',$c, $ma, PREG_SET_ORDER)) foreach($ma as $m){ $this->LoginTokens[] = $m[1]; } } } function __construct() { $this->ReadConfig(); $this->PDE = new ParsedownExtra(); $this->PDE->SetInterlinkPath('/'); $this->Posts = []; $this->Threads = []; $this->Markers=['●', '○', '✓', '×', '!', 'P']; $this->PostsPerPage = 40; $this->HotPostCount = 15; } 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 WriteStyles(){ $this->style=" html{font-size:18px;font-family:'Noto Serif CJK SC','Times New Roman','SimSun',Georgia,serif;} body{background-color:%white%;color:%black%;} sup,sub{line-height:0;} blockquote{border-left:2px solid %black%;padding-left:0.3em;} *{box-sizing:border-box;padding:0;margin:0;} .page,.page_gallery{padding:1em;padding-top:0;} .hidden_on_desktop, .hidden_on_wide{display:none;} ::file-selector-button{background:none;border:none;} a,button,::file-selector-button{text-decoration:underline;color:%black%;} a:hover,button:hover,::file-selector-button:hover{text-decoration:none;color:%gray%;} header{position:sticky;top:0;background-color:%white%;z-index:10;padding-top:1em;} header a,.left a,.footer a,.clean_a,.clean_a a{text-decoration:none;} header a:hover,.button:hover{color:%gray% !important;} .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{display:inline-block;} header li{display:inline-block;} header li::before{content:' - '} header h1,header h2,header h3,header h4,header h5,header p{display:inline;font-size:1rem;} .main{position:relative;word-spacing:-1em;} .main *{word-spacing:initial;} pre{overflow:auto;max-width:100%;display:block;} ul{display:block;} li{display:block;} table{width:100%;border-collapse:collapse;border-bottom:2px solid %black%;border-top:2px solid %black%;} table input{border:none!important;} 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{border-bottom:1px solid %black%;} .left{display:inline-block;vertical-align:top;width:25%;height:calc(100vh - 5.2em); position:sticky;top:2.5em;overflow:auto;padding-right:0.2em;padding-bottom:50vh;} .center{display:inline-block;vertical-align:top;width:50%;padding-left:0.3em;overflow:visible;padding-bottom:50vh;} .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;} .right{display:inline-block;vertical-align:top;width:25%;position:sticky;top:2.5em;padding-left:0.5em;height:calc(100vh - 2.6em);overflow:auto;padding-bottom:50vh;} textarea,input[type=text],input[type=password]{width:100%;display:block;font-family:inherit;max-height:60vh;} select,textarea,input[type=text],input[type=password]{background:none;border:none;border-bottom:1px solid %black%;color:%black%;} .button{background:none;border:none;font-family:inherit;color:%black%;font-size:inherit;font-weight:bold;} .post{position:relative;scroll-margin:2.5em;border-radius:0.3em; padding-right:0.5rem;padding-left:0rem;padding-top:0.3rem;padding-bottom:0.3rem;margin-top:0.2em;margin-bottom:0.2em;} .post_width li,.post_width_big li,.footer_additional li,.footer_additional li{display:list-item;margin-left:1em;list-style:disc;} .post_width li li,.post_width_big li li,.footer_additional li li,.footer_additional li li{list-style:circle;} .post_width > *,.post_width_big > *{margin:0;margin-bottom:0.5em} .post_width > *:last-child,.post_width_big > *:last-child{margin-bottom:0em;} .post_width h1,.post h2,.post h3,.post h4{margin-bottom:0.5rem} .gallery_left li{display:list-item;margin-left:1em;list-style:none;} .gallery_left .selected{list-style:'→';} .gallery_left ul{font-size:1.4em;} .focused_post{font-size:1.2em;margin-top:0.1em;margin-bottom:0.1em;padding:0.5rem;border:2px dashed #ac7843;} .post_width{position:relative;left:1.4rem;width:calc(100% - 1.7rem);padding-left:0.2em;overflow:visible;} .post_width_big{position:relative;left:0;width:100%;overflow:visible;} .post .post{padding:0;padding-top:0.3rem;} .post_menu_button{position:absolute;display:none;right:0rem;width:1.5rem; text-align:center;border-radius:0.3em;user-select:none;cursor:pointer;} .pointer{cursor:pointer;} .post:hover .post_menu_button{display:block;} .pop_menu{position:absolute;top:0.3rem;z-index:95;background-color:%lighterbkg%; padding:0.3em;right:0.3rem;text-align:right;border-radius:0.3em;font-size:1rem; box-shadow:0px 0px 10px rgb(0, 0, 0);} .pop_menu hr{border:2px solid rgba(0,0,0,0.1);} .toc{left:60%;width:40%;top:0;position:absolute;} .post_access{width:1.4rem;top:0;position:absolute;height:100%;text-align:center; font-weight:bold;border-right:2px solid transparent;padding-top:0.3rem;} .post_access:hover{background-color:%lightopbkg%;border-top-left-radius:0.3em;border-bottom-left-radius:0.3em; border-right:2px solid %black% !important;} .opt_compact .post_access,.ref_compact .post_access{padding-top:0.2rem;border-right:2px solid %gray%;} .post_box{border:1px solid %gray%;border-radius:0.3em;padding:0.3em;} .post_box:hover,.post_menu_button:hover{background-color:%lightopbkg%} #big_image_info .post_box:hover{background-color:%graybkg%;} .post_preview{font-size:0.9rem;overflow:hidden;} .post .post_ref{margin:0;padding-left:1.7rem;} .post_ref_main{display:inline-block;vertical-align:top;} .post_preview .post_ref_main{max-height:6rem;overflow:hidden;} .post_ref_images{overflow:hidden;} .post_ref_images img{max-height:4em !important;max-width:4em !important;} .page_selector{padding-top:2rem;text-align:center;} .smaller{font-size:0.85em;} .block{display:block;} .opt_compact,.ref_compact{margin-top:0;} .opt_compact{margin-left:1.9em;} .opt_compact .post_width {margin-left:0.3em;} .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:1.5em;} {display:inline} .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{max-height:100%;max-width:100%;object-fit:cover;min-width:100%;min-height:100%;} #file_list li{margin-bottom:0.3em;} .ref_thumb{white-space:nowrap;overflow:hidden;} .ref_thumb .file_thumb{width:3em;height:3em;} .side_thumb li{margin:0.4em;display:inline-block;} .file_thumb{width:4em;height:4em;display:inline-block;box-shadow:0px 0px 10px rgb(0, 0, 0); line-height:0;vertical-align:middle;overflow:hidden;} .p_row{display:flex;flex-wrap:wrap;margin-left:0.25rem;margin-top:0.25rem;} .p_thumb{display:flex;flex-grow:1;height:6rem;margin-right:0.25rem;margin-bottom:0.25rem; box-shadow:0px 0px 10px rgb(0, 0, 0);overflow:hidden;position:relative;} .p_thumb img{object-fit:cover;max-height:100%;min-width:100%;} .ref_count,.p_thumb .post_menu_button{text-shadow: 0px 0px 10px rgb(0, 0, 0);} .p_thumb:hover .post_menu_button{display:block;} .p_thumb_selected{color:%black% !important;} .p_thumb_selected{display:block;} .post .p_thumb img{max-height:8rem;} .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{position:absolute;margin:auto;top:0;left:0;right:0;bottom:0;box-shadow: 0px 0px 30px black;cursor:unset;} .big_side_box{position:fixed;top:0;bottom:0;right:0;width:25%;overflow:auto;z-index:98;color:%black%;padding:1rem; background:linear-gradient(to right, rgba(0,0,0,0), rgb(1, 1, 1));transition:background-size .2s linear;background-size: 300% 100%;} .big_side_box:hover{background-size: 100% 100%;} .big_side_box a,.big_side_box hr,#dropping_background{color:%black%;} .big_side_box a:hover{color:%gray%;} #dropping_background{background-color:rgba(0,0,0,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{cursor:pointer;max-height:100%;max-width:100%;} .post img{box-shadow:0px 0px 10px rgb(0, 0, 0);max-height:min(70vh, 20rem);;max-width:min(100%, 20rem);} .post .original_img{max-width:100%;max-height:70vh;} .b ul{font-size:1.4em;} no_pop{cursor:unset;} p{min-height:0.8em;} .bold{font-weight:bold;} .footer_additional{display:inline-block;width:50%;vertical-align:text-top;white-space:normal;} .small_footer{position:sticky;bottom:0em;background-color:%white%;padding-bottom:1em;z-index:10;} .top_post_hint{margin-left:1.5em;font-weight:bold;} .white{color:%white%;} .full_box{border:1px solid %black%;padding:0.3rem;overflow:auto;} .image_nav_prev,.image_nav_next{z-index:100;position:absolute;line-height:0;height:100%;width:20%;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.2)); 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:15em;max-width:15em;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%;} .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{background-color:%black%;color:%white%;} .gray.text_highlight,.gray.text_highlight a{background-color:%gray%;color:%white%;} @media screen and (max-width:1000px){ .left{width:35%;} .center{width:65%;} .right{display:none;} .post_width{width:calc(100% - 1.5rem);padding-left:0.2em;} .post_width_big{left:0;width:100%;} .hidden_on_wide{display:unset;} .hidden_on_narrow{display:none;} .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);} } @media screen and (max-width:666px){ .hidden_on_mobile{display:none !important;} .block_on_mobile{display:block !important;} .hidden_on_desktop{display:unset;} header ul{display:block;} header li{display:block;} header li::before{content:''} .left{position:relative;width:100%;position:relative;top:unset;height:unset;min-height:80vh;padding-right:0;display:block;} .center{position:relative;left:0;top:0;width:100%;padding-left:0;display:block;} .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;} .post{padding-right:0.3rem;padding-left:0.3rem;} .post .p_thumb img{max-height:3rem;} .page,.page_gallery{padding:0.2em;padding-top:0;} header{padding-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;} .post_width,.post_width_big{overflow:auto;} .table_top{left:unset;width:100%;overflow:auto;} table img{max-width:30vw !important;} .product_ref{width:100%;display:block;} } "; $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('/%lightopbkg%/','#daae8010',$this->style); $this->style=preg_replace('/%lighterbkg%/','#675340',$this->style); $this->style=preg_replace('/%focusedbkg%/','#482f0c',$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){ if(isset($this->Images[0]))foreach($this->Images as &$im){ if($im['name']==$name) return $im; } return $this->NULL_IMAGE; } function ReadImages($clear_non_exist = false){ $path = 'images/list.md'; 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; } $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]; } $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')); if(isset($files[0]))foreach($files as $file) { if(preg_match('/[0-9]{14,}\.(jpg|jpeg|gif|png)/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"); } function WriteImages(){ $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;'); } 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']."; "); } fwrite($f, PHP_EOL); } fflush($f); fclose($f); } function EditImage($name, $link_gallery, $do_remove = false, $product_link=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']);} } } function RegenerateThumbnails(){ $glob = glob('images/*.jpg'); if(!is_dir('images/thumb')) mkdir('images/thumb'); foreach($glob as $file) { $thumb_destination = 'images/thumb/'.basename($file); $image = imagecreatefromjpeg($file); list($width, $height) = getimagesize($file); $filter = IMG_BICUBIC; if(max($width,$height)<800){$filter = IMG_BICUBIC_FIXED;} $sizelim=400; $anychanged=false; if ($width > $sizelim) { $newwidth = $sizelim; $newheight = ($height / $width) * $newwidth; $anychanged = true;$width=$newwidth;$height=$newheight; } if ($height > $sizelim) { $newheight = $sizelim; $newwidth = ($width / $height) * $newheight; $anychanged = true; } if($anychanged){ $thumbimage = imagescale($image, $newwidth,$newheight, $filter); imagejpeg($thumbimage, $thumb_destination,80); } imagedestroy($image); } } function CompressImage($source, $destination, $thumb_destination, $quality, $sizelim) { $info = getimagesize($source); if ($info['mime'] == 'image/jpeg') $image = imagecreatefromjpeg($source); else if ($info['mime'] == 'image/png') $image = imagecreatefrompng($source); else return; list($width, $height) = getimagesize($source); $newwidth = $width; $newheight = $height; $anychanged = false; if ($width > $sizelim) { $newwidth = $sizelim; $newheight = ($height / $width) * $newwidth; $anychanged = true;$width=$newwidth;$height=$newheight; } if ($height > $sizelim) { $newheight = $sizelim; $newwidth = ($width / $height) * $newheight; $anychanged = true; } $newimage=$image; if($anychanged){ $newimage = imagescale($image, $newwidth,$newheight, IMG_BICUBIC); } imagejpeg($newimage, $destination, $quality); $sizelim=400; $anychanged=false; if ($width > $sizelim) { $newwidth = $sizelim; $newheight = ($height / $width) * $newwidth; $anychanged = true;$width=$newwidth;$height=$newheight; } if ($height > $sizelim) { $newheight = $sizelim; $newwidth = ($width / $height) * $newheight; $anychanged = true; } if($anychanged){ $thumbimage = imagescale($image, $newwidth,$newheight, IMG_BICUBIC); imagejpeg($thumbimage, $thumb_destination, $quality); } #imagedestroy($image); #imagedestroy($newimage); #imagedestroy($thumbimage); } 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){ return -1; }else{ $fp = fopen('.la_lock',"w"); while (!flock($fp, LOCK_EX| LOCK_NB)){ usleep(10000); } $num=date('YmdHis'); $base = 'images/'.$num; $thumb = 'images/thumb/'.$num; $ext=pathinfo($_FILES['upload_file_name']['name'],PATHINFO_EXTENSION); if($ext=='png') $ext='jpg'; $final_path = $base.'.'.$ext; $final_thumb = $thumb.'.'.$ext; $i=0; while(file_exists($final_path)){ $final_path = $base.strval($i).'.'.$ext; $final_thumb = $thumb.strval($i).'.'.$ext; $i++; } if($ext!='gif'){ $this->CompressImage($_FILES['upload_file_name']['tmp_name'], $final_path, $final_thumb, 80, (isset($_GET['compress'])&&$_GET['compress'])?800:1920); }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).""; 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){ if($do_rw) $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($do_rw) { $this->WriteImages(); $this->ClearData(); } } function ClearData(){ $this->Posts = []; $this->Threads = []; $this->Images = []; } 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['content'] = trim($m[3]); 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('/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('/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(isset($post['mark_value']) && $post['mark_value']==5){ $post['product']=[]; } /* marks add here */ $this->Posts[] = $post; } } } function ReadPosts(){ if ((!file_exists('la_config.md') || is_readable('la_config.md') == false) || (!is_dir('posts') || is_readable('posts') == false) || (!is_dir('images') || is_readable('images') == false) || (!is_dir('styles') || is_readable('styles') == false)){ $this->Install(); } $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->DetectThreads(); } function GetThreadForPost(&$post){ if(isset($post['tid'])) return; if(!(isset($post['prev']) || isset($post['next']))) return; $th = []; $post['tid'] = &$th; $th['first'] = $th['last'] = &$post; $iterp = NULL; $count = 1; if(isset($post['prev']))for($p = $post['prev']; $p!=NULL; $p = $iterp){ $np = &$this->GetPost($p); $np['tid'] = &$th; $th['first'] = &$np; $iterp = isset($np['prev'])?$np['prev']:NULL; $count++; } if(isset($post['next']))for($p = $post['next']; $p!=NULL; $p = $iterp){ $np = &$this->GetPost($p); $np['tid'] = &$th; $th['last'] = &$np; $iterp = isset($np['next'])?$np['next']:NULL; $count++; } $th['count'] = $count; $this->Threads[] = $th; } function DetectThreads(){ foreach($this->Posts as &$p){ if(isset($p['tid'])) continue; $this->GetThreadForPost($p); } if(!isset($this->Threads) || !isset($this->Threads[0])) return; $now = date_timestamp_get(date_create()); foreach($this->Threads as &$t){ $lasttime = DateTime::createFromFormat('YmdHis', $t['last']['id']); $diff_days = ($now - date_timestamp_get($lasttime))/3600/24; $t['score'] = (float)$t['count']*0.2 - min($diff_days,200); } function cmp($a, $b){ if ($a['score'] == $b['score']) return 0; return ($a['score'] > $b['score']) ? -1 : 1; } usort($this->Threads,"cmp"); } function &GetPost($id){ if(!isset($id)) return $this->NULL_POST; $i=0; $found=0; if(isset($this->Posts[0])) foreach($this->Posts as $p){ if($p['id'] == $id) { $found = 1; break; } $i++; } if($found) return $this->Posts[$i]; return $this->NULL_POST; } function WritePosts(){ $cf = NULL;$opened =NULL; 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['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'])."; "):""). ']'; fwrite($opened, $info.PHP_EOL.PHP_EOL.$p['content'].PHP_EOL.PHP_EOL); } } function CachePostLinks(){ if(isset($this->Posts) && isset($this->Posts[0]))foreach ($this->Posts as &$post){ $this->ConvertPost($post); unset($post['refs']); }else return; if(isset($this->Images) && isset($this->Images[0])) foreach ($this->Images as &$im){ unset($im['refs']); } 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]); if($ref!=NULL){ if(!isset($ref['refs']))$ref['refs']=[]; if(!in_array($post['id'],$ref['refs'])){ $ref['refs'][]=$post['id']; } } } } if(preg_match_all('/!\[([^\]]*)\]\(images\/([0-9]{14,}\.(jpg|jpeg|png|gif))\)/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']; } } } } } 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 &EditPost($id_if_edit, $content, $mark_delete, $reply_to, $get_original_only=false, $mark_value=NULL){ $this->ReadImages(); $this->ReadPosts(); $p_success = NULL; if(isset($id_if_edit)){ $post = &$this->GetPost($id_if_edit); if($post===$this->NULL_POST) return $this->NULL_POST; if($get_original_only){ return $post['content']; } if(isset($content)) $post['content'] = $content; if(isset($mark_delete)) $post['mark_delete'] = $mark_delete; if(isset($mark_value)) $post['mark_value'] = $mark_value; $p_success = &$post; }else{ if(!isset($content)) return $this->NULL_POST; $id = date('YmdHis'); if($this->GetPost($id)!== $this->NULL_POST) return $this->NULL_POST; $post = []; $post['id'] = $id; $post['content'] = $content; if(isset($reply_to) && ($rep = &$this->GetPost($reply_to))!== $this->NULL_POST){ if(!(isset($rep['next']) && $rep['next'])){$rep['next'] = $id; $post['prev'] = $rep['id'];} else $post['content'] = "[引用的文章]($reply_to)".$post['content']; } $this->Posts[] = $post; $p_success = &$this->Posts[count($this->Posts) - 1]; } $this->CachePostLinks(); $this->WritePosts(); $this->WriteImages(); $this->ClearData(); return $p_success; } function InsertReplacementSymbols($MarkdownContent){ $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); 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_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); return $rep; }, $replacement); return $replacement; } function ProcessRequest(&$message=NULL, &$redirect=NULL){ if(isset($_GET['gallery']) && $_GET['gallery']=='default'){ $redirect = "index.php?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='index.php';return 0; } if(isset($_GET['post'])){ $this->CurrentPostID = $_GET['post']; } if(isset($_GET['offset'])){ $this->CurrentOffset = $_GET['offset']; } if(isset($_GET['part'])){ if($_GET['part'] == 'hot') $this->ExtraScripts.="ShowLeftSide();"; else if ($_GET['part'] == 'recent') $this->ExtraScripts.="ShowCenterSide();"; } if(isset($_GET['post'])){ $this->ExtraScripts.="window.addEventListener('load', (event) => {ScrollToPost('".$_GET['post']."');});"; } if(isset($_POST['search_content'])){ $redirect='index.php?search='.$_POST['search_content'];return 0; } if(isset($_GET['image_info'])){ $m=$_GET['image_info']; $this->ReadImages(); $this->ReadPosts(); $im = &$this->FindImage($m); if($im==NULL || !isset($im['refs']) || !isset($im['refs'][0])){ echo "not_found"; exit; } echo "".sizeof($im['refs']).""; echo "
    "; foreach($im['refs'] as $ref){ $this->MakeSinglePost($this->GetPost($ref), false, true, "post_preview", true, false, false, false, true);""; } echo "
"; exit; } if($this->LoggedIn){ $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_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_default_gallery'])) $this->DefaultGallery=$_POST['settings_default_gallery']; 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 = 'index.php?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 = 'index.php?extras=true'; return 0; } if(isset($_GET['post'])){ if(isset($_GET['post_original'])){ echo $this->EditPost($_GET['post'],NULL,false,NULL,true,NULL); exit; } } if(isset($_GET['mark_delete']) && isset($_GET['target'])){ $this->EditPost($_GET['target'],NULL,$_GET['mark_delete']=='true',NULL,false,NULL); if(isset($_GET['post'])) $redirect='?post='.$_GET['target']; else $redirect='index.php'; return 0; } if(isset($_GET['set_mark']) && isset($_GET['target'])){ $this->EditPost($_GET['target'],NULL,NULL,NULL,NULL,$_GET['set_mark']); if(isset($_GET['post'])) $redirect='?post='.$_GET['target']; else $redirect='index.php'; return 0; } if(isset($_POST['post_button']) && 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; if(($edited = $this->EditPost($edit_id, $c, NULL, $reply_to,NULL,NULL))!=NULL){ $redirect='?post='.$edited['id']; 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!=''){ $this->EditGallery($old_name, $new_name, false, true, null); $redirect='?gallery='.$new_name; }else{ $this->EditGallery(null, $new_name, false, true, null); if(isset($_GET['gallery'])) $redirect='?gallery='.$_GET['gallery']; else $redirect='index.php'; } return 0; } if(isset($_GET['gallery_edit_delete'])&&$_GET['gallery_edit_delete']!=null){ $this->EditGallery($_GET['gallery_edit_delete'], null, true, true, null); if(isset($_GET['gallery'])) $redirect='?gallery=main'; else $redirect='index.php'; 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); } $this->WriteImages(); $this->ClearData(); } if(isset($_GET['gallery'])) $redirect='?gallery='.$_GET['gallery']; else $redirect='index.php'; return 0; } if(isset($_GET['gallery_set_featured'])&&isset($_GET['value'])){ $this->EditGallery($_GET['gallery_set_featured'], null, false, true, $_GET['value']!='false'); if(isset($_GET['gallery'])) $redirect='?gallery='.$_GET['gallery']; else $redirect='index.php'; return 0; } if(isset($_GET['image_list'])&&$_GET['image_list']!=""){ $this->ReadImages(); $gallery = $_GET['image_list']; foreach($this->Images as $im){ if($gallery=='main'){ echo "[".$im['name'].",".(isset($im['thumb'])?$im['thumb']:$im['name'])."]"; continue; } if(isset($im['galleries']) && isset($im['galleries'][0]) && in_array($gallery,$im['galleries'])) { echo "[".$im['name'].",".(isset($im['thumb'])?$im['thumb']:$im['name'])."]"; } } exit; } if(isset($_POST['image_button'])&&isset($_POST['image_ops_product_link'])){ if(preg_match('/([0-9]{14,}\.(jpg|png|jpeg|gif))/u',$_SERVER['REQUEST_URI'],$ma)){ $this->ReadImages(); $this->EditImage($ma[1], NULL, false, $_POST['image_ops_product_link']); $this->WriteImages(); $redirect=$_SERVER['REQUEST_URI']; 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['clear_all_logins'])){ $this->LoginTokens=[]; $this->WriteTokens(); } } return 0; } function PostProcessHTML($html,&$added_images=null,$do_product_info=false, &$product_info=null){ $html = preg_replace("/(]*href=[\'\"])([0-9]{14})([\'\"][^>]*>)(.*?<\/a>)/u","$1?post=$2$3$4",$html); $html = preg_replace("/(]*href=[\'\"])((.*?:\/\/).*?)([\'\"][^>]*)(>)(.*?)(<\/a>)/u", "$1$2$4 target='_blank'$5$6$7",$html); $images = []; $images_noclick = []; $html = preg_replace_callback("/(]*)src=[\'\"])(images\/([0-9]{14,}\.(jpg|png|jpeg|gif)))([\'\"][^>]*)>/u", function($m) use (&$images,&$images_noclick) { $orig_src = $src = $m[4]; $keep = false; $original = false; if (preg_match('/alt=[\'\"].*keep_inline.*[\'\"]/u',$m[2]) || preg_match('/alt=[\'\"].*keep_inline.*[\'\"]/u',$m[6])) { $keep=true; } if ($keep && preg_match('/alt=[\'\"].*original.*[\'\"]/u',$m[2]) || preg_match('/alt=[\'\"].*original.*[\'\"]/u',$m[6])) { $original=true; } if(($im = &$this->FindImage($m[4]))!=NULL && isset($im['thumb'])){ $src = $im['thumb']; $orig_src=$im['file']; } $click = $m[1].($original?$orig_src:$src).$m[6]." data-imgsrc='".$m[4]."'". (isset($im['product'])?" data-product='".$im['product']."'":""). ($original?" class='original_img'":"").">"; $images_noclick[]=$m[1].$src.$m[6].">"; if($keep) return $click; else {$images[] = $click; return "";} },$html,-1,$count); $html = preg_replace('/

\s*<\/p>/u',"", $html); if(sizeof($images)){ if(sizeof($images)==1){$html.=$images[0];} else{ $html.="

"; foreach($images as $img){ $html.="
".$img."
"; } $html.="
"; } } if(sizeof($images_noclick)){ $added_images = $images_noclick; } 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); } return $html; } function ConvertPost(&$post){ if(!isset($post['html'])){ $info=[]; $post['html'] = $this->PostProcessHTML($this->PDE->text($this->InsertReplacementSymbols($post['content'])), $post['images'], isset($post['product']), $info); if(isset($post['product'])) $post['product']=$info; } } function DetectPageType(){ 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($this->CurrentPostID)) $this->PageType = "post"; else $this->PageType = "main"; } function MakeHeader(&$p){?> <?=$this->T($this->Title)?>

MakeNavButtons($p); ?>
LoggedIn && in_array($this->PageType,['main','post'])){ ?>
([^><]+?)".$this->T($ma[1])."<"; }, $html); return $html; } function MakeNavButtons(&$p){?> T($this->Title)?> T($this->ShortTitle)?>... PageType=='post'){ ?> [\s]*]*href=[\'\"]\?post=([0-9]{14})[\'\"]>(.*)<\/a>[\s]*<\/p>/u', function($m){ $rp = &$this->GetPost($m[1]); $s="
". "
".$m[2]."
". ($rp!==NULL?$this->TranslatePostParts( $this->GenerateSinglePost($rp,false,false,false,true,$this->NULL_POST,true)):$this->T("未找到该引用。")). "
"; 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]); $s="
    ". ($rp!==NULL?$this->TranslatePostParts( $this->GenerateSinglePost($rp,true,false,false,true,$this->NULL_POST,true)):$this->T("未找到该引用。")). "
    "; return $s; }, $ht ); return $ht; } function ExtractBigTables($html, &$table_out){ $table = NULL; $new_html = preg_replace_callback('/

    \s*\{big_table\}\s*<\/p>\s*([\s\S]*?<\/table>)/u', function ($m) use (&$table){ $table = $m[1]; return ""; }, $html); $table_out = $table; return $new_html; } function GenerateSinglePost(&$post, $strip_tags, $generate_anchor=false, $generate_refs=false, $generate_thumbs=false, &$table_out, $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($table_out!==$this->NULL_POST){ $table = NULL; $ht = $this->ExtractBigTables($ht,$table); $table_out = $table; }else{ $ht = preg_replace('/

    \s*\{big_table\}\s*<\/p>/u','',$ht); } } if ($strip_tags && $generate_thumbs && isset($post['images']) && isset($post['images'][0])){ $ht.="

      "; foreach($post['images'] as $im){ $ht.="
    • ".$im."
    • "; } $ht.="
    "; } return $ht; } function MakeSinglePost(&$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){ $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; $big_table = ($show_thread_link)?$this->NULL_POST:""; $is_product = isset($post['mark_value'])&&$post['mark_value']==5; ?>
  • ' data-post-id='' > =0 && !$show_link && $mark_value!='P'){?>
    T('标记')?>
    T('置顶帖子')?>
    ":""?> ":""?> '>
    Markers[$post['mark_value']]:($ref_count?"":"→")?>
    NULL_POST && !$side){ echo "
  • ".$big_table.'
    '; ?>
    • ' >
      T('回复给主题帖:')?>
      TranslatePostParts( $this->GenerateSinglePost($post['tid']['first'], false, false, false, true,$this->NULL_POST,true));?>
      '>
      Markers[$post['tid']['first']['mark_value']]:"→"?>
      '> T('个回复')?>
    • T('继续补充该话题:')?>
      T('发送')?> onclick='ShowWaitingBar();' /> | T('图片')?>

      T('搜索'):$this->T('最近')?>

      T('搜索')?> LoggedIn){ ?>
      MakePostingFields(NULL,false); ?>
        SpecialPinned) && ($p = &$this->GetPost($this->SpecialPinned))!=NULL && !$this->CurrentOffset)){ $this->MakeSinglePost($p, true, false, false, false, true, false, false, false, true); } $i = 0; foreach(array_reverse($this->Posts) as &$p){ if(isset($search_term)){ if ($search_term=='' || !preg_match("/".preg_quote($search_term)."/u", $p['content'])) continue; }else{ if(in_array($p['id'], [$this->SpecialPinned,$this->SpecialFooter,$this->SpecialFooter2,$this->SpecialNavigation])) continue; if(isset($p['tid'])){ if(isset($p['tid']['displayed'])) continue; $p['tid']['displayed'] = True; } } if($i < $this->PostsPerPage * $this->CurrentOffset) {$i++; continue;} $this->MakeSinglePost($p, true, false, NULL, false, true, false, false, false, false); $i++; if($i >= $this->PostsPerPage * (1+$this->CurrentOffset)) {break;} }?>
       

      T('热门')?>

        Threads as &$th){ if($i>=$this->HotPostCount) break; $this->MakeSinglePost($th['first'], false, true, "post_preview", true, false, true, false, true, false); $i++; } ?>
      >T('链接')?>

    T('个引用:')?>
      GetPost($pr); if(isset($post['mark_value']) && $post['mark_value']==5){ $count_product++; continue; } $this->MakeSinglePost($this->GetPost($pr), false, true, "post_preview", true, false, false, false, true, false); } ?>
    T('和').' '.$count_product.' '.$this->T('个商品')?> T('没有帖子链接到这里。')?> Anchors = []; ?>

    T('话题')?>

    T('详细')?>

      NULL_POST; $p = &$this->GetPost(isset($p['next'])?$p['next']:NULL)){ $use_class=($p == $post)?'focused_post':''; $show_link = ($p == $post)?false:true; $this->MakeSinglePost($p,$show_link,false,$use_class,false, false, false, true, false, false); if($p == $post){?> MakeSinglePost($post,false, false, 'focused_post',false, false, false, true, false, false); ?>
    LoggedIn){ ?>
    MakePostingFields($is_thread?$th['last']['id']:$post['id'], true);?>

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

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

    T('就绪')?>
    >T('上传列表中的文件')?>

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

    T('前往')?>
    LoggedIn){?>
    MakeUploader(false); ?>

    T('选择了')?> 0 T('个图片。')?> T('清除')?>

    T('添加到')?> T('执行')?>

    T('或者')?>T('从相册移除')?>

     

    Images[0])) foreach($this->Images as $im){ if($_GET['gallery']=='trash') $name='trash'; if($_GET['gallery']!='main'){ if(!isset($im['galleries']) || !in_array($name, $im['galleries'])) continue;} ?>
    LoggedIn){ ?>
    ' data-imgsrc=''/>
    LoggedIn){ ?>
    Anchors[0])){?>

    T('目录')?>

    T('目录')?>

    T('未找到目录')?>

    T('设置')?>

    LoggedIn){ ?>
    T('选项')?>T('值')?>
    T('网站标题')?>
    T('短标题')?>
    T('显示名称')?>
    T('电子邮件')?>
    T('导航栏')?> SpecialNavigation)?"":""?>
    T('脚注')?> 1SpecialFooter)?"":""?>
    T('脚注')?> 2SpecialFooter2)?"":""?>
    T('置顶文')?>SpecialPinned)?"":""?>
    T('默认相册')?>
    T('附加操作')?>T('进入')?>
     
    T('管理员')?> T('登出')?>
    T('帐号')?>
    T('新密码')?>
    T('再次输入')?>
    T('旧密码')?>
    T('请登录')?>
    T('帐号')?>
    T('密码')?>
    LoggedIn){ ?> ' /> ' />

  • T('附加操作')?>

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

     

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

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

     

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

    T('填写格式:')?>
    - 语言 | Language
    ' />

     

    T('当心!下列操作将立即执行:')?>

     

    DoSiteRedirect(); $la->DoLogin(); $err = $la->ProcessRequest($message, $redirect); $la->SwitchLanguage(); if($err){ echo $message; exit(); } if(isset($redirect)){ header('Location: '.$redirect); exit(); } $la->DetectPageType(); $la->ReadImages(false); $la->ReadPosts(); $p = &$la->GetPost($la->CurrentPostID); $la->MakeHeader($p); $la->MakeMainBegin(); 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){ //if(isset($p['mark_value']) && $p['mark_value']==5){ //} $la->MakeLinkedPosts($p); $la->MakePostSection($p); $la->MakeTOC(); }else{ echo "

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

    ".$_SERVER['REQUEST_URI']. "

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


    "; } }else if($la->PageType=='search'){ $la->MakeHotPosts(true); $la->MakeRecentPosts($_GET['search']); }else{ $la->MakeHotPosts(); $la->MakeRecentPosts(); } $la->MakeMainEnd(); $la->MakeFooter(); ?>