|
@@ -0,0 +1,3687 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+include 'Parsedown.php';
|
|
|
+include 'ParsedownExtra.php';
|
|
|
+
|
|
|
+ini_set('display_errors', '1');
|
|
|
+ini_set('display_startup_errors', '1');
|
|
|
+error_reporting(E_ALL);
|
|
|
+
|
|
|
+class LA{
|
|
|
+
|
|
|
+ protected $PDE;
|
|
|
+
|
|
|
+ protected $style;
|
|
|
+
|
|
|
+ /* config */
|
|
|
+ protected $Title;
|
|
|
+ protected $ShortTitle;
|
|
|
+ protected $Admin;
|
|
|
+ protected $Password;
|
|
|
+ protected $DisplayName;
|
|
|
+ protected $EMail;
|
|
|
+ protected $SpecialNavigation;
|
|
|
+ protected $SpecialFooter;
|
|
|
+ protected $SpecialFooter2;
|
|
|
+ protected $SpecialPinned;
|
|
|
+ protected $DefaultGallery;
|
|
|
+ protected $ExpHost;
|
|
|
+ protected $ExpTitle;
|
|
|
+ protected $ExpShortTitle;
|
|
|
+ protected $ExpCaution;
|
|
|
+ protected $ExpIndex;
|
|
|
+ protected $ExpNavigation;
|
|
|
+ protected $ExpFooter;
|
|
|
+ protected $CommentEnabled;
|
|
|
+
|
|
|
+ protected $Redirect;
|
|
|
+ protected $Translations;
|
|
|
+ protected $CustomTranslationContent;
|
|
|
+
|
|
|
+ protected $CurrentOffset;
|
|
|
+ protected $PostsPerPage;
|
|
|
+ protected $HotPostCount;
|
|
|
+
|
|
|
+ protected $LoggedIn;
|
|
|
+ protected $LoginTokens;
|
|
|
+ protected $InExperimentalMode;
|
|
|
+ protected $LanguageAppendix;
|
|
|
+
|
|
|
+ protected $Posts;
|
|
|
+ protected $Threads; // [ keys: first last displayed count]
|
|
|
+ protected $Images;
|
|
|
+ protected $Galleries;
|
|
|
+ protected $Anchors;
|
|
|
+
|
|
|
+ protected $Markers;
|
|
|
+
|
|
|
+ protected $ExtraScripts;
|
|
|
+
|
|
|
+ protected $NULL_POST;
|
|
|
+ protected $NULL_IMAGE;
|
|
|
+ protected $NULL_Gallery;
|
|
|
+
|
|
|
+ public $PageType;
|
|
|
+ public $CurrentPostID;
|
|
|
+
|
|
|
+ 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 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 %{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]'.PHP_EOL.PHP_EOL);
|
|
|
+ fwrite($conf, 'RewriteCond %{HTTP_HOST} !^www\.'.PHP_EOL.
|
|
|
+ 'RewriteCond %{HTTP_HOST} !=localhost'.PHP_EOL.
|
|
|
+ 'RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]'.PHP_EOL.PHP_EOL);
|
|
|
+ fwrite($conf,'<Files ~ "\.md$">'.PHP_EOL.'deny from all'.PHP_EOL.'</Files>'.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);
|
|
|
+ fwrite($conf,'- CommentEnabled = '.($this->CommentEnabled?"True":"False").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,'- ExpIndex = '.$this->ExpIndex.PHP_EOL);
|
|
|
+ fwrite($conf,'- ExpNavigation = '.$this->ExpNavigation.PHP_EOL);
|
|
|
+ fwrite($conf,'- ExpFooter = '.$this->ExpFooter.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->ShortTitle=$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(preg_match('/-\s*CommentEnabled\s*=\s*(\S+)\s*$/um', $c, $m)) $this->CommentEnabled = ($m[1]=="True");
|
|
|
+ if(preg_match('/-\s*ExpHost\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpHost = $m[1];
|
|
|
+ if(preg_match('/-\s*ExpTitle\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpTitle = $m[1]; else $this->ExpTitle=$this->T("实验访问");
|
|
|
+ if(preg_match('/-\s*ExpShortTitle\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpShortTitle = $m[1]; else
|
|
|
+ $this->ExpShortTitle = $this->ExpTitle;
|
|
|
+ if(preg_match('/-\s*ExpCaution\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpCaution = $m[1];
|
|
|
+ if(preg_match('/-\s*ExpIndex\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpIndex = $m[1];
|
|
|
+ if(preg_match('/-\s*ExpNavigation\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpNavigation = $m[1];
|
|
|
+ if(preg_match('/-\s*ExpFooter\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpFooter = $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', 'E', 'S'];
|
|
|
+
|
|
|
+ $this->PostsPerPage = 40;
|
|
|
+ $this->CommentsPerPage = 100;
|
|
|
+ $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;}
|
|
|
+.hidden_on_desktop_force{display:none !important;}
|
|
|
+::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%;}
|
|
|
+.button:disabled{background-color:%gray%;pointer-events:none;}
|
|
|
+header{position:sticky;top:0;background-color:%white%;z-index:10;padding-top:0.5em;max-height:100vh;overflow:auto;z-index:30;}
|
|
|
+.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;}
|
|
|
+.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{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;font-size:0.75em;}
|
|
|
+ul{display:block;}
|
|
|
+li{display:block;}
|
|
|
+table{width:100%;border-collapse:collapse;border-bottom:2px solid %black%;border-top:3px 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{box-shadow:inset 0 -1px 0 0px %black%;position:sticky;top:2rem;background-color:%white%;z-index:5;}
|
|
|
+.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:3.5em}
|
|
|
+.interesting_tbody td>*{display:table-cell;}
|
|
|
+.interesting_tbody .post_access{padding-top:0;}
|
|
|
+.interesting_tbody .post_menu_button{top:0;opacity:0;}
|
|
|
+.interesting_tbody td>img{position:absolute;left:1.4em;z-index:-1;height:1em;width:20em;
|
|
|
+display:block;top:0.2em;object-fit:cover;max-width:calc(100% - 1.4em) !important;}
|
|
|
+.interesting_tbody .p_row{display:flex;position:absolute;left:1.4em;top:0;z-index:-1;flex-wrap:nowrap;max-width:calc(100% - 1.4em);}
|
|
|
+.interesting_tbody .p_thumb{height:1em;}
|
|
|
+.interesting_tbody .p_thumb img{max-height:10rem !important;max-width:20rem !important;}
|
|
|
+tr:hover .post_menu_button{opacity:1;}
|
|
|
+.post_current_row{background-color:%lightopbkg%;}
|
|
|
+.align_right{text-align:right;}
|
|
|
+.left{display:inline-block;vertical-align:top;width:25%;height:calc(100vh - 5.2em);top:2em;
|
|
|
+position:sticky;overflow:auto;padding-right:0.2em;padding-bottom:4rem;}
|
|
|
+.center{display:inline-block;vertical-align:top;width:50%;padding-left:0.3em;overflow:visible;padding-bottom:4rem;}
|
|
|
+.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:10rem;}
|
|
|
+.sticky_title{position:sticky;top:1.35em;z-index:1;box-shadow:6em 3.5em 0.75em -3em inset %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;}
|
|
|
+.right{display:inline-block;vertical-align:top;width:25%;position:sticky;top:2em;
|
|
|
+padding-left:0.5em;height:calc(100vh - 2.6em);overflow:auto;padding-bottom:4rem;}
|
|
|
+textarea,input[type=text],input[type=password]{width:100%;display:block;font-family:inherit;max-height:60vh;font-size:inherit;}
|
|
|
+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:0rem;padding-left:0rem;padding-top:0.3rem;padding-bottom:0.3rem;margin-top:0.2em;margin-bottom:0.2em;}
|
|
|
+.center_exp .post{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;border-radius:0;}
|
|
|
+.post_width li,.post_width_big li,.footer_additional li,.footer_additional li,.post_dummy 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,.post_dummy li li{list-style:circle;}
|
|
|
+.post_width > *,.post_width_big > *,.post_dummy > *,.post_ref > *{margin:0;margin-bottom:0.5em}
|
|
|
+.post_width > *:last-child,.post_width_big > *:last-child,.post_dummy > *:last-child,.post_ref > *:last-child{margin-bottom:0em;}
|
|
|
+.post_dummy > *{width:60%;margin:0 auto;margin-bottom:0.5em}
|
|
|
+.post_dummy > p img{display:block;width:100%;margin:0 auto;}
|
|
|
+.post 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:'→';}
|
|
|
+.focused_post{font-size:1.2em;margin-top:0.1em;margin-bottom:0.1em;padding:0.5rem !important;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;z-index:10;}
|
|
|
+.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 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;}
|
|
|
+.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;}
|
|
|
+.paa{width:1.4rem;min-width:1.4rem;}
|
|
|
+.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;}
|
|
|
+.page_selector{padding-top:2rem;text-align:center;}
|
|
|
+.smaller{font-size:0.85em;}
|
|
|
+.bigger{font-size:1.3em;}
|
|
|
+.block{display:block;}
|
|
|
+.opt_compact,.ref_compact{margin-top:0;}
|
|
|
+.opt_compact{margin-left:1.6rem;}
|
|
|
+.opt_compact .post_width {margin-left:0.3em;width: calc(100% - 1.8rem);}
|
|
|
+.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;line-height:0;vertical-align:middle;overflow:hidden;}
|
|
|
+.p_row{display:flex;flex-wrap:wrap;}
|
|
|
+.p_thumb{display:flex;flex-grow:1;height:6rem;margin-right:0.25rem;margin-bottom:0.25rem;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:6rem;}
|
|
|
+.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;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{max-height:min(70vh, 20rem);max-width:min(100%, 20rem);}
|
|
|
+.post > a > img{display:block;margin:0.3em auto;}
|
|
|
+.post .original_img{max-width:100%;display:block;margin-left:auto;margin-right:auto;max-width:100%;max-height:90vh;}
|
|
|
+.original_img img{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);}
|
|
|
+.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:0.5em;z-index:10;overflow:auto;white-space:nowrap;}
|
|
|
+.top_post_hint{margin-left:1.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: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: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{background-color:%black%;color:%white%;}
|
|
|
+.gray.text_highlight,.gray.text_highlight a{background-color:%gray%;color:%white%;}
|
|
|
+.print_title{display:none;}
|
|
|
+.show_on_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;}
|
|
|
+
|
|
|
+@media screen and (max-width:1000px){
|
|
|
+.left{width:35%;}
|
|
|
+.center,.center_wide{width:65%;}
|
|
|
+.center_wide .p_thumb{height:8rem;}
|
|
|
+.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);}
|
|
|
+.center_exp{display:block;width:100%;margin:0 auto;overflow:none;padding-bottom:1em;}
|
|
|
+.center_exp .post{overflow:auto;}
|
|
|
+}
|
|
|
+
|
|
|
+@media screen and (max-width:666px){
|
|
|
+html{font-size:16px;}
|
|
|
+.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,.center_wide,.center_full{position:relative;left:0;top:0;width:100%;padding-left:0;display:block;}
|
|
|
+.center_wide .p_thumb{height:6rem;}
|
|
|
+.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{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;}
|
|
|
+.post_dummy > *{width:100%;max-width:25rem;}
|
|
|
+.sticky_title{top:1.2em;}
|
|
|
+#upload_selector{width:100%;}
|
|
|
+.focused_post{padding:0.3rem !important;}
|
|
|
+.interesting_tbody{background:linear-gradient(90deg, %white%ff, %white%88 10em);}
|
|
|
+}
|
|
|
+
|
|
|
+@media print{
|
|
|
+body,footer,header,.small_footer,a,.clean_a,.invert_a,.clean_a a,.invert_a a{background:none;color:black;}
|
|
|
+table{border-bottom:2px solid black;border-top:2px solid black;}
|
|
|
+table img{max-width:5em;max-width:8em !important;max-height:8em !important;}
|
|
|
+thead{box-shadow:inset 0 -1px 0 0px black;background:none;}
|
|
|
+.post,.focused_post{padding:0 !important;margin-top:0.3em;margin-bottom:0.5em;}
|
|
|
+.post_width,.post_width_big{overflow:hidden;left:0;width:100%;padding-left:0em;}
|
|
|
+.post h1,.post h2,.post h3,.post h4{margin-top:0.5rem;}
|
|
|
+.gray,.gray a,.deleted_post{color:rgba(0,0,0,0.5);}
|
|
|
+.left,.right{display:none;}
|
|
|
+.center, .center_wide, .center_full{width:100%;padding:0;display:block;font-size:16px;line-height:1.3}
|
|
|
+hr{border:1px solid black;}
|
|
|
+.post_box_top{display:none;}
|
|
|
+.opt_compact .post_access,.ref_compact .post_access{border-right:none;display:inline;}
|
|
|
+.text_highlight,.text_highlight a,.gray.text_highlight,.gray.text_highlight a,.purchase_button{background-color:lightgray;color:black;}
|
|
|
+.focused_post{border:none;font-size:1em;}
|
|
|
+.hidden_on_print{display:none;}
|
|
|
+.print_column{column-count:2;margin-top:0.5rem;margin-bottom:0.5rem;}
|
|
|
+.post_access{display:none;}
|
|
|
+.opt_compact{margin-left:0;}
|
|
|
+.opt_compact .post_width{left:1.4rem;width:calc(100% - 1.7rem);padding-left:0.2em;}
|
|
|
+.print_title{column-span:all;display:block;margin-top:2em;margin-bottom:0.5rem;font-size:1.2em;}
|
|
|
+.print_title:first-of-type{margin-top:1em;}
|
|
|
+.print_title+.post h1:first-of-type{display:none;}
|
|
|
+.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;margin-top:0.2em;margin-bottom:0.2em;}
|
|
|
+.header_nav{display:none;}
|
|
|
+.show_on_print{display:block;}
|
|
|
+blockquote{border-left:2px solid black;}
|
|
|
+.footer_additional{display:none;}
|
|
|
+.small_footer{margin-top:1rem;}
|
|
|
+.page_selector{display:none;}
|
|
|
+.p_thumb{height:4rem;}
|
|
|
+.post .p_thumb img{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;}
|
|
|
+}
|
|
|
+";
|
|
|
+ $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; }
|
|
|
+ if(preg_match('/EXPERIMENTAL([^;]*?);/u', $m[2], $arg)){ $g['experimental']=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;'); }
|
|
|
+ if(isset($g['experimental']) && $g['experimental']!=false) { fwrite($f,' EXPERIMENTAL;'); }
|
|
|
+ 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, $rename=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)){
|
|
|
+ $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;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ 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->setImageCompressionQuality(90);
|
|
|
+ $img->writeImage($thumb_destination);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function CompressImage($source, $destination, $thumb_destination, $quality, $sizelim, $abs_max) {
|
|
|
+ $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->setImageCompressionQuality($quality);
|
|
|
+ $img->writeImage($thumb_destination);
|
|
|
+
|
|
|
+ $scale = min( $sizelim / min($width,$height), $abs_max / max($width,$height));
|
|
|
+ if($scale<1){
|
|
|
+ $img2->resizeImage($width*$scale,$height*$scale,imagick::FILTER_GAUSSIAN,0.5);
|
|
|
+ }
|
|
|
+ $img2->setImageFormat('jpeg');
|
|
|
+ $img2->setImageCompressionQuality($quality);
|
|
|
+ $img2->writeImage($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=pathinfo($_FILES['upload_file_name']['name'],PATHINFO_EXTENSION);
|
|
|
+ if(!in_array($ext,['jpg','jpeg','png','gif'])) 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;
|
|
|
+ if($ext=='png') $ext='jpg';
|
|
|
+ $final_path = $base.'.'.$ext; $final_thumb = $thumb.'.'.$ext; $i=0;
|
|
|
+ if(!$replace) while(file_exists($final_path)){
|
|
|
+ $final_path = $base.strval($i).'.'.$ext; $final_thumb = $thumb.strval($i).'.'.$ext; $i++;
|
|
|
+ }
|
|
|
+ if($ext!='gif'){
|
|
|
+ $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);
|
|
|
+ }else{
|
|
|
+ move_uploaded_file($_FILES['upload_file_name']['tmp_name'], $final_path);
|
|
|
+ }
|
|
|
+ flock($fp, LOCK_UN);
|
|
|
+ fclose($fp);
|
|
|
+ $this->ReadImages(true);
|
|
|
+ $this->WriteImages();
|
|
|
+ echo '<uploaded>'.pathinfo($final_path,PATHINFO_BASENAME)."</uploaded>";
|
|
|
+ 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){
|
|
|
+ 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(isset($set_experimental)) $gallery['experimental'] = $set_experimental;
|
|
|
+ }
|
|
|
+ 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('/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('/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;
|
|
|
+
|
|
|
+ if(isset($post['comment_to']) && ($target_post = &$this->GetPost($post['comment_to']))){
|
|
|
+ if(!isset($target_post['comments']) || !isset($target_post['comments'][0])) $target_post['comments']=[];
|
|
|
+ $target_post['comments'][]=&$this->Posts[count($this->Posts) - 1];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function SortPosts(){
|
|
|
+ $cmpp = function($a, $b){
|
|
|
+ if ($a['id'] == $b['id']) return 0;
|
|
|
+ return (($a['id'] > $b['id']) ? 1 : -1);
|
|
|
+ };
|
|
|
+ if(isset($this->Posts[0]))usort($this->Posts,$cmpp);
|
|
|
+ }
|
|
|
+
|
|
|
+ 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->SortPosts();
|
|
|
+
|
|
|
+ $this->DetectThreads();
|
|
|
+ }
|
|
|
+
|
|
|
+ function GetThreadForPost(&$post){
|
|
|
+ if(isset($post['tid'])) return;
|
|
|
+ if(!(isset($post['prev']) || isset($post['next']))) return;
|
|
|
+ $th = [];
|
|
|
+ $post['tid'] = &$th; $th['first'] = &$post; $th['last'] = &$post;
|
|
|
+ $iterp = NULL; $count = 1;
|
|
|
+ if(isset($post['prev']))for($p = $post['prev']; $p!=NULL; $p = $iterp){
|
|
|
+ $np = &$this->GetPost($p); if(!$np) { $post['prev']=NULL; break; }
|
|
|
+ $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); if(!$np) { $post['next']=NULL; break; }
|
|
|
+ $np['tid'] = &$th;
|
|
|
+ $th['last'] = &$np;
|
|
|
+ $iterp = isset($np['next'])?$np['next']:NULL;
|
|
|
+ $count++;
|
|
|
+ }
|
|
|
+ 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'] == $th['last']){ unset($post['tid']); return; }
|
|
|
+ $th['count'] = $count;
|
|
|
+ $this->Threads[] = &$th;
|
|
|
+ }
|
|
|
+
|
|
|
+ function IdentifyThreadCategory(&$th,&$first_post){
|
|
|
+ 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(isset($th) && 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]; }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function IsInterestingPost(&$p){
|
|
|
+ if(isset($p['tid']) && isset($p['tid']['interesting']) && isset($p['tid']['interesting'][0])) return true;
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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); }
|
|
|
+ }
|
|
|
+ foreach($this->Threads as &$th){
|
|
|
+ $this->IdentifyThreadCategory($th, $th['first']);
|
|
|
+ }
|
|
|
+ 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&& $p['id'] == $id) { $found = 1; break; }
|
|
|
+ $i++;
|
|
|
+ }
|
|
|
+ if($found) return $this->Posts[$i];
|
|
|
+ return $this->NULL_POST;
|
|
|
+ }
|
|
|
+
|
|
|
+ function WritePosts(){
|
|
|
+ $cf = NULL;$opened =NULL;
|
|
|
+ $this->SortPosts();
|
|
|
+ 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['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'])."; "):"").
|
|
|
+ ']';
|
|
|
+
|
|
|
+ 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('/<a[^>]*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])>(.+?)(?=<\/h[0-9]>)/u', function ($ma) use ($that){
|
|
|
+ $id = '_heading_'.sizeof($this->Anchors);
|
|
|
+ $entry=[(int)$ma[1], $id, $ma[2]];
|
|
|
+ $that->Anchors[] = $entry;
|
|
|
+ return "<h${ma[1]} id='${id}'>${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 &EditPost($id_if_edit, $content, $mark_delete, $reply_to, $get_original_only=false, $mark_value=NULL, $rename=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;
|
|
|
+ if(isset($rename) && preg_match('/^[0-9]{14}$/u',$rename)) $this->RenamePost($post,$rename);
|
|
|
+ $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 &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);
|
|
|
+ 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)!== $this->NULL_POST) return $this->NULL_POST;
|
|
|
+ if(!($to_post=$this->GetPost($comment_to_id))) 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->WritePosts();
|
|
|
+ $this->ClearData();
|
|
|
+ return $p_success;
|
|
|
+ }
|
|
|
+
|
|
|
+ function InsertReplacementSymbols($MarkdownContent){
|
|
|
+ $replacement = preg_replace('/<!--[\s\S]*-->/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/","<div class='page_break'></div>",$replacement);
|
|
|
+ $replacement = preg_replace("/\[-(.*)-\]/U","<span class='text_highlight'>$1</span>",$replacement);
|
|
|
+ $replacement = preg_replace("/{支付宝(\s+[^}]*?)?}/u","<span class='special_alipay'>支付宝$1</span>",$replacement);
|
|
|
+ $replacement = preg_replace("/{PayPal(\s+[^}]*?)?}/ui",
|
|
|
+ "<span class='special_paypal'>Pay<span class='special_paypal_inner'>Pal</span>$1</span>",$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 CanShowPost(&$p){
|
|
|
+ if(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);
|
|
|
+ if($is_mark_slf && !$this->LoggedIn){ return false; }
|
|
|
+ if(!$this->InExperimentalMode){
|
|
|
+ if(!$this->LoggedIn){
|
|
|
+ if($is_mark_exp) return false;
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ 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){
|
|
|
+ $str = 'index.php?';
|
|
|
+ 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['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'];
|
|
|
+ return $str;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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=$this->GetRedirect(); 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 "<ref>".sizeof($im['refs'])."</ref>";
|
|
|
+ echo "<insert><ul>";
|
|
|
+ foreach(array_reverse($im['refs']) as $ref){
|
|
|
+ $p = $this->GetPost($ref);
|
|
|
+ if(!$p || !$this->CanShowPost($p)) continue;
|
|
|
+ $this->MakeSinglePost($p, false, true, "post_preview", true, false, false, false, true);"</li>";
|
|
|
+ }
|
|
|
+ echo "</ul></insert>";
|
|
|
+ exit;
|
|
|
+ }
|
|
|
+ if(isset($_GET['confirm_enter']) && $_GET['confirm_enter']!=false){
|
|
|
+ setcookie('la_experimental','confirmed'); $_COOKIE['la_experimental'] = $_GET['confirmed'];
|
|
|
+ $redirect='index.php'.(isset($_GET['post'])?'?post='.$_GET['post']:"");return 0;
|
|
|
+ }
|
|
|
+ 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_enable_comments'])) $this->CommentEnabled=True; else $this->CommentEnabled=False;
|
|
|
+ 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_index'])) $this->ExpIndex=$_POST['settings_exp_index'];
|
|
|
+ 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_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,NULL);
|
|
|
+ exit;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(isset($_GET['mark_delete']) && isset($_GET['target'])){
|
|
|
+ $this->EditPost($_GET['target'],NULL,$_GET['mark_delete']=='true',NULL,false,NULL,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'],NULL);
|
|
|
+ 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))!=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']))!=NULL){
|
|
|
+ $redirect='?post='.$edited['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!=''){
|
|
|
+ $this->EditGallery($old_name, $new_name, false, true, null, 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, 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, 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', null);
|
|
|
+ if(isset($_GET['gallery'])) $redirect='?gallery='.$_GET['gallery']; else $redirect='index.php';
|
|
|
+ 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='?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;
|
|
|
+ }
|
|
|
+ $do_image_redirect = 0;
|
|
|
+ if(isset($_POST['image_button'])){
|
|
|
+ $this->ReadImages();
|
|
|
+ if(isset($_POST['image_ops_product_link'])){
|
|
|
+ if(preg_match('/([0-9]{14,}\.(jpg|png|jpeg|gif))/u',$_SERVER['REQUEST_URI'],$ma)){
|
|
|
+ $this->EditImage($ma[1], NULL, false, $_POST['image_ops_product_link'], NULL);
|
|
|
+ $redirect=$_SERVER['REQUEST_URI'];
|
|
|
+ $do_image_redirect = 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(isset($_GET['pic'])&&isset($_POST['image_edit_new_name'])){
|
|
|
+ if (preg_match('/([0-9]{14,}\.(jpg|png|jpeg|gif))/u',$_GET['pic'],$ma) &&
|
|
|
+ preg_match('/\s*([0-9]{14,})\s*/u',$_POST['image_edit_new_name'],$man)){
|
|
|
+ $this->EditImage($ma[1], NULL, false, NULL, $man[1]);
|
|
|
+ $redirect=$this->GetRedirect(['pic'=>'images/'.$man[1].'.'.$ma[2]]);
|
|
|
+ $do_image_redirect = 1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $this->WriteImages();
|
|
|
+ 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['clear_all_logins'])){
|
|
|
+ $this->LoginTokens=[];
|
|
|
+ $this->WriteTokens();
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ function PostProcessHTML($html,&$added_images=null,$do_product_info=false, &$product_info=null){
|
|
|
+ if(!$this->LoggedIn){
|
|
|
+ $html = preg_replace("/(<a[^>]*href=[\'\"])(.*?)([\'\"][^>]*)>(\#.*?<\/a>)/u","",$html);
|
|
|
+ }
|
|
|
+ $html = preg_replace("/(<a[^>]*href=[\'\"])([0-9]{14})([\'\"][^>]*)>(.*?<\/a>)/u","$1?post=$2$3 onclick='ShowWaitingBar()'>$4",$html);
|
|
|
+ $html = preg_replace("/(<a[^>]*href=[\'\"])\@(.*?)([\'\"][^>]*)>(.*?<\/a>)/u","$1?category=$2$3 onclick='ShowWaitingBar()'>$4",$html);
|
|
|
+ $html = preg_replace("/(<a[^>]*href=[\'\"])((.*?:\/\/).*?)([\'\"][^>]*)(>)(.*?)(<\/a>)/u",
|
|
|
+ "$1$2$4 target='_blank'$5$6<sup>↗</sup>$7",$html);
|
|
|
+ $html = preg_replace("/<p>\s*\@.*?<\/p>/mu","",$html);
|
|
|
+ $html = preg_replace("/<p>\s*\{\s*INTERESTING\s+(.*?)\}\s*<\/p>/imu","",$html);
|
|
|
+ $images = [];
|
|
|
+ $images_noclick = [];
|
|
|
+ $search_str =
|
|
|
+ $html = preg_replace_callback(
|
|
|
+ "/(<p>\s*)?(<img([^>]*)src=[\'\"])(images\/([0-9]{14,}\.(jpg|png|jpeg|gif)))([\'\"][^>]*)\/>(\s*<\/p>)?/u",
|
|
|
+ function($m) use (&$images,&$images_noclick) {
|
|
|
+ $orig_src = $src = $m[5]; $keep = false; $original = false;
|
|
|
+ if (preg_match('/alt=[\'\"].*keep_inline.*[\'\"]/u',$m[3]) ||
|
|
|
+ preg_match('/alt=[\'\"].*keep_inline.*[\'\"]/u',$m[7])) { $keep=true; }
|
|
|
+ if ($keep && preg_match('/alt=[\'\"].*original.*[\'\"]/u',$m[3]) ||
|
|
|
+ preg_match('/alt=[\'\"].*original.*[\'\"]/u',$m[7])) { $original=true; }
|
|
|
+ if(($im = &$this->FindImage($m[5]))!=NULL && isset($im['thumb'])){
|
|
|
+ $src = $im['thumb']; $orig_src=$im['file'];
|
|
|
+ }
|
|
|
+ if($this->InExperimentalMode){
|
|
|
+ $click = "<a href='".$orig_src."' class='original_img' target='_blank'>".
|
|
|
+ $m[2].$orig_src.$m[7]."></a>";
|
|
|
+ return $click;
|
|
|
+ }else{
|
|
|
+ $click = $m[2].($original?$orig_src:$src).$m[7]." data-imgsrc='".$m[5]."'".
|
|
|
+ (isset($im['product'])?" data-product='".$im['product']."'":"").
|
|
|
+ ($original?" class='original_img'":"").">";
|
|
|
+ $images_noclick[]=$m[2].$src.$m[7].">";
|
|
|
+ $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('/<p>\s*<\/p>/u',"", $html); if($html==""){$html="<p> </p>";}
|
|
|
+ if(sizeof($images)){
|
|
|
+ if(sizeof($images)==1){$html.=$images[0];}
|
|
|
+ else{
|
|
|
+ $html.="<div class='p_row'>";
|
|
|
+ foreach($images as $img){
|
|
|
+ $html.="<div class='p_thumb'>".$img."</div>";
|
|
|
+ }
|
|
|
+ $html.="<div class='p_thumb' style='flex-grow:10000;box-shadow:none;height:0;'></div></div>";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ 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('/<p>\s*<\/p>/u',"", $html);
|
|
|
+ if (preg_match('/<h[1-5]>(.+?)<\/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 "<a class='purchase_button' href=\"mailto:".$this->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]."</a>"; },$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 GetPostTitle(&$post, $h1_only=false){
|
|
|
+ if(!isset($post['title'])){
|
|
|
+ if($h1_only){
|
|
|
+ if(preg_match('/^#\s+(.*?)$/mu',$post['content'],$m)){return $m[1];}
|
|
|
+ return NULL;
|
|
|
+ }
|
|
|
+ if(preg_match('/^#{1,6}\s+(.*?)$/mu',$post['content'],$m)){$post['title']=$m[1];}
|
|
|
+ else{ $post['title'] = $this->T('未命名'); if(preg_match('/(\s.*)$/mu',$post['content'],$m))
|
|
|
+ {$post['title'].=' ('.strip_tags($this->PDE->text($m[1])).')';} }
|
|
|
+ }
|
|
|
+ return $post['title'];
|
|
|
+ }
|
|
|
+
|
|
|
+ function DetectPageType(){
|
|
|
+ if($this->InExperimentalMode) $this->PageType='experimental';
|
|
|
+ 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 $this->PageType = "main";
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeHeader(&$p){?>
|
|
|
+ <!DOCTYPE html><html lang='zh-Hans-CN'>
|
|
|
+ <head>
|
|
|
+ <meta charset='utf-8'>
|
|
|
+ <meta content="width=device-width, initial-scale=1" name="viewport">
|
|
|
+ <title><?=$this->InExperimentalMode?$this->T($this->ExpTitle):$this->T($this->Title)?></title>
|
|
|
+ <link href='styles/main.css' rel='stylesheet' type="text/css">
|
|
|
+ </head>
|
|
|
+ <div class='page'>
|
|
|
+ <script type='text/javascript'>
|
|
|
+ function toggle_mobile_show(a){a.classList.toggle('hidden_on_mobile')}
|
|
|
+ function ShowWaitingBar(){
|
|
|
+ wait = document.querySelector("#waiting_bar");
|
|
|
+ wait.style.display='';
|
|
|
+ }
|
|
|
+ function HideWaitingBar(){
|
|
|
+ wait = document.querySelector("#waiting_bar");
|
|
|
+ wait.style.display='none';
|
|
|
+ }
|
|
|
+ <?php if(!$this->InExperimentalMode){ ?>
|
|
|
+ function la_auto_grow(element){
|
|
|
+ s=window.scrollY;element.style.height="30px";element.style.height=(element.scrollHeight)+"px";window.scroll(0, s);
|
|
|
+ }
|
|
|
+ var scroll_l=0,scroll_c=0;in_center=1;
|
|
|
+ function ShowLeftSide(){
|
|
|
+ scroll_c = window.scrollY;
|
|
|
+ document.getElementById('div_left').classList.remove('hidden_on_mobile');
|
|
|
+ document.getElementById('div_center').classList.add('hidden_on_mobile');
|
|
|
+ window.scroll(0, scroll_l); in_center=0;
|
|
|
+ }
|
|
|
+ function ShowCenterSide(){
|
|
|
+ scroll_l = window.scrollY;
|
|
|
+ document.getElementById('div_center').classList.remove('hidden_on_mobile');
|
|
|
+ document.getElementById('div_left').classList.add('hidden_on_mobile');
|
|
|
+ window.scroll(0, scroll_c); in_center=1;
|
|
|
+ }
|
|
|
+ function ShowBackdrop(alpha=0.5){
|
|
|
+ b = document.getElementById('backdrop');
|
|
|
+ b.style="background-color:rgba(0,0,0,"+alpha+");";
|
|
|
+ b.style.animation='backdrop_fade_in 0.3s forwards';
|
|
|
+ b.style.display = 'block';
|
|
|
+ }
|
|
|
+ function HideBackdrop(){
|
|
|
+ b = document.getElementById('backdrop');
|
|
|
+ b.style.animation='backdrop_fade_out 0.3s forwards';
|
|
|
+ setTimeout(function(e1){e1.style.display='none';}, 300, b);
|
|
|
+ }
|
|
|
+ function ShowRightSide(big,elem_to_clone){
|
|
|
+ p = document.getElementById('pop_right');
|
|
|
+ if(elem_to_clone){
|
|
|
+ c = elem_to_clone.cloneNode(true);
|
|
|
+ c.id='side_bar_cloned';c.className="";c.style="";
|
|
|
+ p.querySelector('._content').appendChild(c);
|
|
|
+ }
|
|
|
+ p.classList.remove('pop_right','pop_right_big');
|
|
|
+ if(big) {p.classList.add('pop_right_big');p.style.animation='pop_slide_in_big 0.3s forwards';}
|
|
|
+ else {p.classList.add('pop_right');p.style.animation='pop_slide_in 0.3s forwards';}
|
|
|
+ p.style.display='block';
|
|
|
+ ShowBackdrop(0.5);
|
|
|
+ }
|
|
|
+ function HideRightSide(){
|
|
|
+ p = document.getElementById('pop_right');
|
|
|
+ if(side=p.querySelector('#side_bar_cloned')){
|
|
|
+ side.remove();
|
|
|
+ }
|
|
|
+ put = document.querySelector("#_uploader");
|
|
|
+ if(p.classList.contains('pop_right')){p.style.animation='pop_slide_out 0.3s forwards';}
|
|
|
+ else{p.style.animation='pop_slide_out_big 0.3s forwards';}
|
|
|
+ setTimeout(function(e1, e2){e1.style.display='none';if(e2)e2.style.display='none';}, 300, p, put);
|
|
|
+ HideBackdrop();
|
|
|
+ }
|
|
|
+ function ToggleLeftSide(){if(in_center)ShowLeftSide();else ShowCenterSide();}
|
|
|
+ function ScrollToPost(id){
|
|
|
+ if(!(post = document.querySelector("[data-post-id='"+id+"']"))) return;
|
|
|
+ post.scrollIntoView({ behavior: 'smooth', block: 'start'});
|
|
|
+ }
|
|
|
+ <?php } ?>
|
|
|
+ </script>
|
|
|
+ <header>
|
|
|
+ <?php if($this->InExperimentalMode){
|
|
|
+ $this->MakeExpNavButtons($p);
|
|
|
+ }else{
|
|
|
+ $this->MakeNavButtons($p);
|
|
|
+ } ?>
|
|
|
+ <hr />
|
|
|
+ </header>
|
|
|
+ <div id='waiting_bar' style='display:none;'></div>
|
|
|
+ <script>ShowWaitingBar();window.addEventListener('load',(event) =>{HideWaitingBar();}); </script>
|
|
|
+ <?php if(!$this->InExperimentalMode){ ?>
|
|
|
+ <div id='post_menu' style='display:none;' class='pop_menu clean_a'>
|
|
|
+ <ul>
|
|
|
+ <li><span id='_time_hook' class='smaller'>时间</span> <a href='javascript:HidePopMenu();'>×</a></li>
|
|
|
+ <li>
|
|
|
+ <a id='share_copy'>📋︎</a>
|
|
|
+ <a id='share_pin' target='_blank'>Pin</a>
|
|
|
+ <a id='share_twitter' target='_blank'>Twitter</a>
|
|
|
+ <a id='share_weibo' target='_blank'><?=$this->T('微博')?></a>
|
|
|
+ </li>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ <hr />
|
|
|
+ <li><a id='menu_edit'><?=$this->T('修改')?></a></li>
|
|
|
+ <li>
|
|
|
+ <a id='menu_refer_copy'><?=$this->T('只复制')?></a>
|
|
|
+ <a id='menu_refer'><?=$this->T('引用')?></a><br class='hidden_on_desktop' />
|
|
|
+ </li>
|
|
|
+ <li><a id='menu_mark' href='javascript:ToggleRenameDetails()'><?=$this->T('改名')?></a>
|
|
|
+ <a id='menu_mark' href='javascript:ToggleMarkDetails()'><?=$this->T('标记')?></a></li>
|
|
|
+ <li id='mark_details' style='display:none;'><b>
|
|
|
+ <a id='mark_set_clear' href='javascript:SetMark(-1);'>_</a>
|
|
|
+ <a id='mark_set_0' href='javascript:SetMark(0);'><?=$this->Markers[0]?></a>
|
|
|
+ <a id='mark_set_1' href='javascript:SetMark(1);'><?=$this->Markers[1]?></a>
|
|
|
+ <a id='mark_set_2' href='javascript:SetMark(2);'><?=$this->Markers[2]?></a>
|
|
|
+ <a id='mark_set_3' href='javascript:SetMark(3);'><?=$this->Markers[3]?></a>
|
|
|
+ <a id='mark_set_4' href='javascript:SetMark(4);'><?=$this->Markers[4]?></a>
|
|
|
+ <a id='mark_set_5' href='javascript:SetMark(5);'><?=$this->Markers[5]?></a>
|
|
|
+ <a id='mark_set_6' href='javascript:SetMark(6);'><?=$this->Markers[6]?></a>
|
|
|
+ <a id='mark_set_7' href='javascript:SetMark(7);'><?=$this->Markers[7]?></a>
|
|
|
+ </b></li>
|
|
|
+ <li id='rename_details' style='display:none;text-align:left;' class='smaller'>
|
|
|
+ <form action="" method="post" style='display:none;' id='post_rename_form'></form>
|
|
|
+ <input type='text' id='post_rename_name' name='post_rename_name' form="post_rename_form" style='width:9em;'>
|
|
|
+ <input class='button' type='submit' form='post_rename_form'
|
|
|
+ name='post_rename_confirm' id='post_rename_confirm' value='<?=$this->T('确认')?>'>
|
|
|
+ </li>
|
|
|
+ <hr />
|
|
|
+ <li><a id='menu_delete' class='smaller'></a></li>
|
|
|
+ <?php } ?>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <div id='backdrop' style='display:none;' class='backdrop' onclick='HideRightSide()'
|
|
|
+ ondrop="_dropHandler(event);" ondragover="_dragOverHandler(event);"></div>
|
|
|
+ <div id='pop_right' class='pop_right' onclick='event.stopPropagation()'>
|
|
|
+ <div style='text-align:right;position:sticky;top:0;'><a class='clean_a' href='javascript:HideRightSide();'>
|
|
|
+ <?=$this->T('关闭')?>→</a></div>
|
|
|
+ <?php if($this->LoggedIn && in_array($this->PageType,['main','post'])){ ?>
|
|
|
+ <div id='_uploader' style='display:none;'>
|
|
|
+ <?php $this->MakeUploader(true); ?>
|
|
|
+ <p> </p>
|
|
|
+ <?php $this->MakeSideGalleryCode(); ?>
|
|
|
+ </div>
|
|
|
+ <?php } ?>
|
|
|
+ <div class='_content'></div>
|
|
|
+ </div>
|
|
|
+ <?php } ?>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function TranslatePostParts($html){
|
|
|
+ $html = preg_replace_callback('/>([^><]+?)</u', function($ma){
|
|
|
+ return ">".$this->T($ma[1])."<";
|
|
|
+ }, $html);
|
|
|
+ return $html;
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeNavButtons(&$p){?>
|
|
|
+ <a href='index.php' class='clean_a hidden_on_mobile' onclick='ShowWaitingBar()'><b><?=$this->T($this->Title)?></b></a>
|
|
|
+ <b><a class='hidden_on_desktop'
|
|
|
+ href='javascript:toggle_mobile_show(document.getElementById("mobile_nav"))'><?=$this->T($this->ShortTitle)?>...</a></b>
|
|
|
+ <div class='header_nav'>
|
|
|
+ <?php if($this->PageType=='post'){ ?>
|
|
|
+ <div style='display:inline;'><a id='button_back' class='hidden_on_print'>←</a></div>
|
|
|
+ <div style='float:right;' class='hidden_on_print'>
|
|
|
+ <?php if(isset($p) && isset($p['refs']) && isset($p['refs'][0])){ ?>
|
|
|
+ <span class='hidden_on_desktop'><a id='button_ref' href='javascript:ToggleLeftSide();'>
|
|
|
+ <?=$this->T('链接')?>(<?=sizeof($p['refs'])?>)</a></span>
|
|
|
+ <?php } ?>
|
|
|
+ <span class='hidden_on_wide hidden_on_print'>
|
|
|
+ <a id='button_toc'
|
|
|
+ href='javascript:ShowRightSide(true,document.querySelector("#div_right"));'><?=$this->T('目录')?></a></span></div>
|
|
|
+ <?php } ?>
|
|
|
+ <ul class='hidden_on_mobile hidden_on_print' id='mobile_nav' style='text-align:center;'>
|
|
|
+ <li class='hidden_on_mobile'><a href='?gallery=default' onclick='ShowWaitingBar()'><?=$this->T('画廊')?></a></li>
|
|
|
+ <li class='hidden_on_desktop_force block_on_mobile'>
|
|
|
+ <?php if($this->PageType!='main'){ ?>
|
|
|
+ <a href='index.php?part=recent' onclick='ShowWaitingBar()'><?=$this->T('最近')?></a> |
|
|
|
+ <a href='index.php?part=hot' onclick='ShowWaitingBar()'><?=$this->T('热门')?></a> |
|
|
|
+ <?php } else { ?>
|
|
|
+ <li class='hidden_on_desktop_force block_on_mobile'>
|
|
|
+ <a href='javascript:ShowCenterSide();toggle_mobile_show(document.getElementById("mobile_nav"));'><?=$this->T('最近')?></a> |
|
|
|
+ <a href='javascript:ShowLeftSide();toggle_mobile_show(document.getElementById("mobile_nav"));'><?=$this->T('热门')?></a> |
|
|
|
+ <?php } ?>
|
|
|
+ <a href='index.php?gallery=default' onclick='ShowWaitingBar()'><?=$this->T('画廊')?></a>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ | <span class='gray invert_a'><a href='index.php?comments=all'>@</a></span><?php } ?></li>
|
|
|
+ <?php $this->SpecialNavigation;if(isset($this->SpecialNavigation) && ($p = &$this->GetPost($this->SpecialNavigation))!=NULL){
|
|
|
+ echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST));
|
|
|
+ } ?>
|
|
|
+ <li><a href='?search=' onclick='ShowWaitingBar()'><?=$this->T('搜索')?></a></li>
|
|
|
+ <?php if($this->LanguageAppendix=='zh'){ ?>
|
|
|
+ <li class='invert_a smaller'>
|
|
|
+ <a href='<?=$this->GetRedirect().'&set_language=en'?>' onclick='ShowWaitingBar()'><b>汉语</b>/English</a></li>
|
|
|
+ <?php }else { ?>
|
|
|
+ <li class='smaller'>
|
|
|
+ <a class='invert_a' href='<?=$this->GetRedirect().'&set_language=zh'?>' onclick='ShowWaitingBar()'>
|
|
|
+ 汉语/<b>English</b></a>
|
|
|
+ <br class='hidden_on_desktop' />
|
|
|
+ <span class='text_highlight'><a id='translate_button' target='_blank'> Google Translate </a></span></li>
|
|
|
+ <?php } ?>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeExpNavButtons(&$p){?>
|
|
|
+ <b><a href='index.php' class='hidden_on_mobile'><?=$this->T($this->ExpTitle)?></a></b>
|
|
|
+ <b><a class='hidden_on_desktop'
|
|
|
+ href='javascript:toggle_mobile_show(document.getElementById("mobile_nav"))'><?=$this->T($this->ExpShortTitle)?>...</a></b>
|
|
|
+ <ul class='hidden_on_mobile' id='mobile_nav' style='text-align:center;'>
|
|
|
+ <li class='hidden_on_desktop block_on_mobile'><a href='index.php'><?=$this->T('索引')?></a></li>
|
|
|
+ <?php $this->ExpNavigation;if(isset($this->ExpNavigation) && ($p = &$this->GetPost($this->ExpNavigation))!=NULL){
|
|
|
+ echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST));
|
|
|
+ } ?>
|
|
|
+ <?php if($this->LanguageAppendix=='zh'){ ?>
|
|
|
+ <li class='invert_a smaller'><a href='<?=$this->GetRedirect().'&set_language=en'?>'><b>汉语</b>/English</a></li>
|
|
|
+ <?php }else { ?>
|
|
|
+ <li class='invert_a smaller'><a href='<?=$this->GetRedirect().'&set_language=zh'?>'>汉语/<b>English</b></a></li>
|
|
|
+ <span class='text_highlight'><a id='translate_button' target='_blank'> Google Translate </a></span></li>
|
|
|
+ <?php } ?>
|
|
|
+ </ul>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function GenerateLinkedPosts($ht){
|
|
|
+ $ht = preg_replace_callback('/<p>[\s]*<a[^>]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>(.*)<\/a>[\s]*<\/p>/u',
|
|
|
+ function($m){
|
|
|
+ $rp = &$this->GetPost($m[1]);
|
|
|
+ $s="<div class='smaller block post ref_compact gray'>".
|
|
|
+ "<a href='?post=".$m[1]."' class='post_access invert_a' onclick='ShowWaitingBar()'>→</a>".
|
|
|
+ "<div class='post_ref'><div class='smaller'>".$m[2]."</div>".
|
|
|
+ (($rp!==NULL && $this->CanShowPost($rp))?$this->TranslatePostParts(
|
|
|
+ $this->GenerateSinglePost($rp,false,false,false,true,$this->NULL_POST,true)):$this->T("未找到该引用。")).
|
|
|
+ "</div></div>";
|
|
|
+ return $s;
|
|
|
+ },
|
|
|
+ $ht
|
|
|
+ );
|
|
|
+ $ht = preg_replace_callback('/<li>[\s]*<a[^>]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>PRODUCT\s+(.*)<\/a>[\s]*<\/li>/u',
|
|
|
+ function($m){
|
|
|
+ $rp = &$this->GetPost($m[1]);
|
|
|
+ $s="<div class='product_ref block post ref_compact'><a href='?post=".$m[1]."' class='clean_a' onclick='ShowWaitingBar()'>".
|
|
|
+ (($rp!==NULL && $this->CanShowPost($rp))?$this->TranslatePostParts(
|
|
|
+ $this->GenerateSinglePost($rp,true,false,false,true,$this->NULL_POST,true)):$this->T("未找到该引用。")).
|
|
|
+ "</a></div>";
|
|
|
+ return $s;
|
|
|
+ },
|
|
|
+ $ht
|
|
|
+ );
|
|
|
+ return $ht;
|
|
|
+ }
|
|
|
+
|
|
|
+ function ExtractBigTables($html, &$table_out){
|
|
|
+ $table = NULL;
|
|
|
+ $new_html = preg_replace_callback('/<p>\s*\{big_table\}\s*<\/p>\s*(<table>[\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="<div class='product_thumb'>".$post['images'][0]."</div>".
|
|
|
+ "<p class='bold'>".$post['product']['title']."</p>".
|
|
|
+ (isset($post['product']['short'])?("<p class='smaller gray'>".$post['product']['short']."</p>"):"").
|
|
|
+ "<p class='smaller bold'>".$post['product']['price']."</p>";
|
|
|
+ return $ht;
|
|
|
+ }
|
|
|
+ if($hide_long){
|
|
|
+ $ht = preg_replace('/<p>\s*\{read_more\}\s*<\/p>[\s\S]*/u',"<p class='smaller bold'>[".$this->T("阅读更多")."]</p>", $ht);
|
|
|
+ }else{
|
|
|
+ $ht = preg_replace('/<p>\s*\{read_more\}\s*<\/p>/u',"", $ht);
|
|
|
+ }
|
|
|
+ if ($strip_tags){
|
|
|
+ $ht = strip_tags($ht,'<b><i><h1><h2><h3><h4><p><blockquote>');
|
|
|
+ $ht = preg_replace('/<p>\s*<\/p>/u',"", $ht);
|
|
|
+ $ht = "<div class='post_ref_main'>".$ht."</div>";
|
|
|
+ }
|
|
|
+ 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('/<p>\s*\{big_table\}\s*<\/p>/u','',$ht);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if ($strip_tags && $generate_thumbs && isset($post['images']) && isset($post['images'][0])){
|
|
|
+ $ht.="<div class='post_ref_images'><ul class='side_thumb ref_thumb'>";
|
|
|
+ foreach($post['images'] as $im){
|
|
|
+ $ht.="<li class='file_thumb'>".$im."</li>";
|
|
|
+ }
|
|
|
+ $ht.="</ul></div>";
|
|
|
+ }
|
|
|
+ return $ht;
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeSinglePostExp(&$post){
|
|
|
+ $big_table = ""; ?>
|
|
|
+ <li class='post post_dummy'>
|
|
|
+ <?=$this->TranslatePostParts(
|
|
|
+ $this->GenerateSinglePost($post, false, false, true, false, $big_table, false)); ?>
|
|
|
+ </li>
|
|
|
+ <?php if($big_table!==$this->NULL_POST) echo "</ul></li><div class='table_top'>".$big_table.'</div>';?>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+ 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;
|
|
|
+ $title = $generate_anchor?$this->GetPostTitle($post, true):NULL;
|
|
|
+ ?>
|
|
|
+ <?=$title?"<li class='print_title'><h1>".$title."</h1></li>":""?>
|
|
|
+ <li class='post<?=isset($extra_class_string)?' '.$extra_class_string:''?><?=$side?" post_box":""?>'
|
|
|
+ data-post-id='<?=$post['id']?>' <?=$is_deleted?"data-mark-delete='true'":""?>>
|
|
|
+ <?php if($mark_value>=0 && !$show_link && $mark_value!='P'){?>
|
|
|
+ <div class='smaller <?=$is_deleted?"gray":""?>'><?=$mark_value?> <?=$this->T('标记')?></div>
|
|
|
+ <?php } ?>
|
|
|
+ <?php if($is_top){?>
|
|
|
+ <div class='top_post_hint'><?=$this->T('置顶帖子')?><hr /></div>
|
|
|
+ <?php } ?>
|
|
|
+ <?php if(!$side && $show_link){ ?>
|
|
|
+ <a href='?post=<?=$post['id']?>' onclick='ShowWaitingBar()'>
|
|
|
+ <div class='post_access <?=($mark_value<0 || $ref_count)?"invert_a":""?> hover_dark'>
|
|
|
+ <?=isset($post['mark_value'])?$this->Markers[$post['mark_value']]:($ref_count?"":"→")?>
|
|
|
+ </div>
|
|
|
+ <?php if($ref_count){ ?>
|
|
|
+ <div class='post_access ref_count'><?=$ref_count?></div>
|
|
|
+ <?php } ?>
|
|
|
+ </a>
|
|
|
+ <?php } ?>
|
|
|
+ <?=$side?"<a href='?post={$post['id']}' onclick='ShowWaitingBar()'>":""?>
|
|
|
+ <div class='<?=$side?"":($show_link?'post_width':'post_width_big')?><?=$is_deleted?" deleted_post":""?>'>
|
|
|
+ <?php if(!$side && !$strip_tags){?>
|
|
|
+ <div class='post_menu_button _menu_hook' >+</div>
|
|
|
+ <?php } if($is_product&&!$generate_anchor){
|
|
|
+ echo "<p class='smaller gray'>".$this->T('商品')."</p>";
|
|
|
+ echo "<div class='product_ref clean_a'><a href='?post={$post['id']}'>";} ?>
|
|
|
+ <?=$this->TranslatePostParts(
|
|
|
+ $this->GenerateSinglePost($post, $strip_tags, $generate_anchor, true,
|
|
|
+ $generate_thumb,$big_table,$show_thread_link||$side)); ?>
|
|
|
+ <?php if($is_product&&!$generate_anchor){echo "</a></div>";} ?>
|
|
|
+ </div>
|
|
|
+ <?=$side?"</a>":""?> <?php
|
|
|
+ if(!$show_thread_link && $big_table!==$this->NULL_POST && !$side){
|
|
|
+ echo "</ul></li><div class='table_top'>".$big_table.'</div>';
|
|
|
+ ?><ul class='print_column'>
|
|
|
+ <li class='post<?=isset($extra_class_string)?' '.$extra_class_string:''?>' <?=$is_deleted?"data-mark-delete='true'":""?>>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+ if($show_thread_link && isset($post['tid']) && $this->CanShowPost($post['tid']['first']) &&
|
|
|
+ $post['tid']['first']['id']!=$post['id']){ ?>
|
|
|
+ <div class='gray smaller block opt_compact post'>
|
|
|
+ <a href='?post=<?=$post['tid']['first']['id']?>' onclick='ShowWaitingBar()'>
|
|
|
+ <div class='post_access invert_a hover_dark'><?=isset($post['tid']['first']['mark_value'])?
|
|
|
+ $this->Markers[$post['tid']['first']['mark_value']]:"→"?></div></a>
|
|
|
+ <div class='post_width'><div class='smaller'><?=$this->T('回复给主题帖:')?></div>
|
|
|
+ <?=$this->TranslatePostParts(
|
|
|
+ $this->GenerateSinglePost($post['tid']['first'], false, false, false, true,$this->NULL_POST,true));?>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <?php }
|
|
|
+ if($show_reply_count && isset($post['tid'])){ ?>
|
|
|
+ <a class='smaller block invert_a' href='?post=<?=$post['tid']['last']['id']?>'><?=$post['tid']['count']?>
|
|
|
+ <?=$this->T('个回复')?></a>
|
|
|
+ <?php }
|
|
|
+ ?>
|
|
|
+ </li>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakePostingFields($reply_to=NULL, $show_hint=false){?>
|
|
|
+ <div class='smaller' id='post_hint_text' style='display:<?=$show_hint?"block":"none"?>;'><?=$this->T('继续补充该话题:')?></div>
|
|
|
+ <form action="<?=$_SERVER['REQUEST_URI']?>" method="post" style='display:none;' id='post_form'></form>
|
|
|
+ <textarea id="post_content" name="post_content" rows="4" form='post_form'
|
|
|
+ onfocus="if (value =='<?=$this->T('有什么想说的')?>'){value ='';}la_auto_grow(this);"
|
|
|
+ onblur="if (value ==''){value='<?=$this->T('有什么想说的')?>';la_auto_grow(this);}"
|
|
|
+ oninput="la_auto_grow(this);" onload="la_auto_grow(this);"><?=$this->T('有什么想说的')?></textarea>
|
|
|
+ <input class='button' form="post_form" type="submit" name='post_button' value=<?=$this->T('发送')?>
|
|
|
+ onclick='ShowWaitingBar();' />
|
|
|
+ | <a class='gray smaller pointer' onclick='ShowSideUploader();'><?=$this->T('图片')?></a>
|
|
|
+ <div style='float:right;'>
|
|
|
+ <a class='gray smaller pointer' onclick='t=document.querySelector("#post_content");t.value="";la_auto_grow(t);'>
|
|
|
+ <?=$this->T('清空')?></a>
|
|
|
+ <a class='gray smaller pointer' style='display:none;' id='post_reply_restore' href='javascript:RestoreReply()'></a>
|
|
|
+ </div>
|
|
|
+ <input style='display:none;' type=input form="post_form" id='post_edit_target' name='post_edit_target' />
|
|
|
+ <script> la_auto_grow(document.getElementById("post_content"));</script>
|
|
|
+ <?php if($reply_to){ ?>
|
|
|
+ <input style='display:none;' type=input form="post_form" id='post_reply_to' name='post_reply_to' value='<?=$reply_to?>' />
|
|
|
+ <?php } ?>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeCommentPosts(){
|
|
|
+ if(!$this->LoggedIn) return; ?>
|
|
|
+ <h2><?=$this->T('评论')?></h2><div class='spacer'></div>
|
|
|
+ <?php if(!$this->CommentEnabled){
|
|
|
+ echo "<p><span class='text_highlight'> ".$this->T("已关闭评论")." </span></p><br />"; } ?>
|
|
|
+ <div class='comment'><ul>
|
|
|
+ <?php $i=0;
|
|
|
+ foreach(array_reverse($this->Posts) as $p){
|
|
|
+ if(!isset($p['comment_to'])) continue;
|
|
|
+ if($i < $this->CommentsPerPage * $this->CurrentOffset) {$i++; continue;}
|
|
|
+
|
|
|
+ $ht = $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false, $t, false));
|
|
|
+ $name = isset($p['link'])?("<a href='".$p['link']."'>".$p['name']."↗</a>"):$p['name'];
|
|
|
+ $post_to = $this->GetPost($p['comment_to']); $post_title = $this->GetPostTitle($post_to);
|
|
|
+ if(!$post_to) $post_title = "?";
|
|
|
+ $mail = "<span class='gray hidden_on_print'> ".
|
|
|
+ "<a href='mailto:".$p['email']."'>@</a> ".
|
|
|
+ (isset($p['ip'])?$p['ip']:"?")." <br class='hidden_on_desktop'/>".
|
|
|
+ "<a href='index.php?post=".$p['comment_to']."'>(".$post_title.")</a></span>";
|
|
|
+ echo "<li><p><b>".$name.":</b>".$mail."<br /></p>".$ht."</li>";
|
|
|
+
|
|
|
+ $i++;
|
|
|
+ }
|
|
|
+ ?>
|
|
|
+ </ul><br /></div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeRecentPosts($search_term=NULL, $category=NULL){?>
|
|
|
+ <div class='center' id='div_center'>
|
|
|
+ <h2><?=isset($search_term)?$this->T('搜索'):
|
|
|
+ (isset($category)?("<span class='gray'>".$this->T('分类')."</span> ".
|
|
|
+ ($category=='none'?$this->T('未分类'):$this->T($category))):($this->T('最近')).
|
|
|
+ ($this->LoggedIn?" <span class='gray invert_a hidden_on_print'><a href='index.php?comments=all'>@</a></span>":""))?></h2>
|
|
|
+ <?php if(isset($search_term)){ ?>
|
|
|
+ <form action="index.php" method="post" style='display:none;' id='search_form'></form>
|
|
|
+ <input id="search_content" name="search_content" rows="4" form='search_form' type='text' value='<?=$search_term?>'>
|
|
|
+ <input class='button' form="search_form" type="submit" name='search_button' value=<?=$this->T('搜索')?>
|
|
|
+ <?php }else if(isset($category)){ ?>
|
|
|
+ <div></div>
|
|
|
+ <?php }else if($this->LoggedIn){ ?>
|
|
|
+ <div class='post_box_top _input_bundle'>
|
|
|
+ <?php $this->MakePostingFields(NULL,false); ?>
|
|
|
+ </div>
|
|
|
+ <?php } ?>
|
|
|
+ <ul class='print_column'>
|
|
|
+ <?php
|
|
|
+ if(!isset($search_term) && !isset($category) &&
|
|
|
+ (isset($this->SpecialPinned) && ($p = &$this->GetPost($this->SpecialPinned))!=NULL && !$this->CurrentOffset) &&
|
|
|
+ $this->CanShowPost($p)){
|
|
|
+ $this->MakeSinglePost($p, true, false, false, false, true, false, false, false, true);
|
|
|
+ }
|
|
|
+ $i = 0;
|
|
|
+ foreach(array_reverse($this->Posts) as &$p){
|
|
|
+ if(!$this->CanShowPost($p) || $this->SkipProduct($p)) continue;
|
|
|
+ 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->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;}
|
|
|
+ }?>
|
|
|
+ </ul>
|
|
|
+ <div class='page_selector clean_a'>
|
|
|
+ <hr />
|
|
|
+ <a <?=$this->CurrentOffset>0?("href='index.php?offset=".($this->CurrentOffset-1).
|
|
|
+ (isset($search_term)?"&search=".$search_term:(isset($category)?"&category=".$category:""))."'"):""?>
|
|
|
+ <?=$this->CurrentOffset==0?"class='gray'":""?>><?=$this->T('上一页')?> ←</a>
|
|
|
+ <?=$this->CurrentOffset+1?>
|
|
|
+ <a href='index.php?offset=<?=($this->CurrentOffset+1).
|
|
|
+ (isset($search_term)?"&search=".$search_term:(isset($category)?"&category=".$category:""))?>'>
|
|
|
+ → <?=$this->T('下一页')?></a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeHotPosts($placeholder_only=false){?>
|
|
|
+ <div class='left hidden_on_mobile' id='div_left'>
|
|
|
+ <?php if ($placeholder_only){ ?>
|
|
|
+ <?php }else{ ?>
|
|
|
+ <h2><?=$this->T('热门')?></h2>
|
|
|
+ <ul>
|
|
|
+ <?php
|
|
|
+ $i=0;
|
|
|
+ foreach($this->Threads as &$th){
|
|
|
+ if(!$this->CanShowPost($th['first'])) continue;
|
|
|
+ if($i>=$this->HotPostCount) break;
|
|
|
+ $this->MakeSinglePost($th['first'], false, true, "post_preview", true, false, true, false, true, false);
|
|
|
+ $i++;
|
|
|
+ } ?>
|
|
|
+ </ul>
|
|
|
+ <?php } ?>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeLinkedPosts(&$p){
|
|
|
+ $has_ref = isset($p['refs'])&&isset($p['refs'][0]); ?>
|
|
|
+ <div class='left hidden_on_mobile' id='div_left'>
|
|
|
+ <h2<?=$has_ref?"":" class='gray'"?>><?=$this->T('链接')?></h2>
|
|
|
+ <?php
|
|
|
+ if($has_ref){ ?>
|
|
|
+ <span class='smaller'><?=sizeof($p['refs'])?> <?=$this->T('个引用:')?></span>
|
|
|
+ <ul><?php $count_product=0;
|
|
|
+ foreach(array_reverse($p['refs']) as &$pr){
|
|
|
+ $po = $this->GetPost($pr); if(isset($post['mark_value']) && $po['mark_value']==5){ $count_product++; continue; }
|
|
|
+ if(!$this->CanShowPost($po)){ continue; }
|
|
|
+ $this->MakeSinglePost($po, false, true, "post_preview", true, false, false, false, true, false);
|
|
|
+ }
|
|
|
+ ?></ul>
|
|
|
+ <?php if($count_product){ ?> <span class='smaller'><?=$this->T('和').' '.$count_product.' '.$this->T('个商品')?></span> <?php }
|
|
|
+ }else{ ?>
|
|
|
+ <span class='gray smaller'><?=$this->T('没有帖子链接到这里。')?></span>
|
|
|
+ <?php } ?>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+ function MakeLinkedPostsExp(&$p){
|
|
|
+ $has_ref = isset($p['refs'])&&isset($p['refs'][0]); ?>
|
|
|
+ <div class='center_exp post_dummy smaller'>
|
|
|
+ <hr />
|
|
|
+ <h3<?=$has_ref?"":" class='gray'"?>><?=$this->T('链接')?></h3>
|
|
|
+ <?php
|
|
|
+ if($has_ref){ ?>
|
|
|
+ <div class='smaller'><?=sizeof($p['refs'])?> <?=$this->T('个引用:')?></div>
|
|
|
+ <ul><?php $count_product=0;
|
|
|
+ foreach(array_reverse($p['refs']) as &$pr){
|
|
|
+ echo "<li class='post_dummy'><a href='?post=".$pr."'>".$this->T($this->GetPostTitle($this->GetPost($pr),false)).
|
|
|
+ "</a></li>";
|
|
|
+ }
|
|
|
+ ?></ul>
|
|
|
+ <?php if($count_product){ ?> <span class='smaller'><?=$this->T('和').' '.$count_product.' '.$this->T('个商品')?></span> <?php }
|
|
|
+ }else{ ?>
|
|
|
+ <div class='gray smaller'><?=$this->T('没有帖子链接到这里。')?></div>
|
|
|
+ <?php } ?>
|
|
|
+ <div style='margin-bottom:4rem;'> </div>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeCommentSection(&$post){
|
|
|
+ if(!$this->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;
|
|
|
+ ?><div class='comment'>
|
|
|
+ <br class='hidden_on_print' /><h2><?=$this->T('评论')?> (<?=$comment_count;?>)</h2><div class='spacer'></div>
|
|
|
+ <?php if($comment_count) { echo "<ul>";
|
|
|
+ foreach($to_post['comments'] as $p){
|
|
|
+ $ht = $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false, $t, false));
|
|
|
+ $name = isset($p['link'])?("<a href='".$p['link']."'>".$p['name']."↗</a>"):$p['name'];
|
|
|
+ $mail = $this->LoggedIn?("<span class='gray clean_a hidden_on_print'> ".
|
|
|
+ "<a href='mailto:".$p['email']."'>@</a> </span>"):"";
|
|
|
+ echo "<li><p><b>".$name.":</b>".$mail."</p>".$ht."</li>";
|
|
|
+ }
|
|
|
+ echo "</ul>";
|
|
|
+ } else {
|
|
|
+ echo $this->T('还没有评论');
|
|
|
+ } ?>
|
|
|
+ <div class='hidden_on_print'>
|
|
|
+ <div class='spacer'></div>
|
|
|
+ <form action="index.php?post=<?=$this->CurrentPostID?>&comment_to=<?=$to_post['id']?>"
|
|
|
+ method="post" style="display:none;" id="comment_form"></form>
|
|
|
+ <p><a class='text_highlight bold clean_a'
|
|
|
+ onclick='document.getElementById("comment_box").style.display="block";this.parentNode.style.display="none"'>
|
|
|
+ <?=$this->T('写评论');?> </a></p>
|
|
|
+ <div id='comment_box' style='display:none;'>
|
|
|
+ <p class='gray' style='margin-bottom:0.5em;'><?=$this->T('您的邮箱不会公开展示。');?></p>
|
|
|
+ <table style='white-space:nowrap;'>
|
|
|
+ <tr><td colspan='2'>
|
|
|
+ <textarea id="comment_box" name="comment_box" rows="4" class='full_box' form='comment_form'
|
|
|
+ oninput="CommentUpdated();" ></textarea>
|
|
|
+ </td></tr>
|
|
|
+ <tr><td><?=$this->T('电子邮件')?>*</td><td><?=$this->T('称呼')?>*</td></tr>
|
|
|
+ <tr><td><input type="text" form="comment_form" id='comment_email' name='comment_email'
|
|
|
+ class='full_box' oninput="CommentUpdated();" /></td>
|
|
|
+ <td><input type="text" form="comment_form" id='comment_name' name='comment_name'
|
|
|
+ class='full_box' oninput="CommentUpdated();" /></td></tr>
|
|
|
+ <tr><td colspan='2'><?=$this->T('个人网站')?></td></tr>
|
|
|
+ <tr><td colspan='2'>
|
|
|
+ <input type="text" form="comment_form" id='comment_link' name='comment_link'
|
|
|
+ class='full_box' oninput="CommentUpdated();" />
|
|
|
+ </td></tr>
|
|
|
+ <tr><td colspan='2'>
|
|
|
+ <div class='spacer'></div>
|
|
|
+ <input class='button text_highlight bigger' type='submit' form='comment_form'
|
|
|
+ name='comment_confirm' id='comment_confirm' value=' <?=$this->T('发送')?> '>
|
|
|
+ </td></tr>
|
|
|
+ </table></div>
|
|
|
+ <script>
|
|
|
+ const IsValidEmail = (email) => {
|
|
|
+ return String(email).toLowerCase().match(/^(([^<>()[\]\\.,;:\s@"]+(\.[^<>()[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/);
|
|
|
+ };
|
|
|
+ function IsValidHttpUrl(string) {
|
|
|
+ let url; try{ url = new URL(string); } catch (_) { return false; }
|
|
|
+ return url.protocol === "http:" || url.protocol === "https:";
|
|
|
+ }
|
|
|
+ var cbox = document.getElementById('comment_box');
|
|
|
+ var cemail = document.getElementById('comment_email');
|
|
|
+ var cname = document.getElementById('comment_name');
|
|
|
+ var clink = document.getElementById('comment_link');
|
|
|
+ var cconfirm = document.getElementById('comment_confirm');
|
|
|
+ function CommentUpdated(){
|
|
|
+ cconfirm.disabled=true;
|
|
|
+ if (cemail.value!="" && IsValidEmail(cemail.value) &&
|
|
|
+ cbox.innerText.length>2 && cname.value.length>2 &&
|
|
|
+ clink.value=="" || IsValidHttpUrl(clink.value)){
|
|
|
+ cconfirm.removeAttribute("disabled");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ CommentUpdated();
|
|
|
+ </script>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeInterestingSection(&$th){
|
|
|
+ $this->Anchors = [];
|
|
|
+ $c = &$th['first']['content'];
|
|
|
+ $this->ConvertPost($th['first']);
|
|
|
+ $ht = $th['first']['html'];
|
|
|
+ ?>
|
|
|
+ <script>function ClickImage(post_access){im=post_access.querySelector('img');if(im){im.click();}}</script>
|
|
|
+ <div class='center_full' id='div_center'>
|
|
|
+ <h2 class='hidden_on_print'><?=$this->T('有趣')?>
|
|
|
+ <a class='gray clean_a' href='?post=<?=$th['first']['id']?>'>→</a></h2>
|
|
|
+ <ul><li class='post post_width_big' data-post-id='<?=$th['first']['id']?>'>
|
|
|
+ <div class='post_menu_button _menu_hook' onclick='ShowPostMenu(this.parentNode);'>+</div><?=$this->TranslatePostParts($ht)?>
|
|
|
+ <?php if($this->LoggedIn && (!$this->InExperimentalMode)){ ?>
|
|
|
+ <div class='post_width_big hidden_on_print'><br />
|
|
|
+ <?php $this->MakePostingFields($th['last']['id'], true);?><br />
|
|
|
+ </div>
|
|
|
+ <?php } ?>
|
|
|
+ <table><thead><tr><th></th><?php foreach($th['interesting'] as $header){ ?>
|
|
|
+ <th><?=$this->T($header);?></th>
|
|
|
+ <?php } ?></tr></thead><tbody class='interesting_tbody'>
|
|
|
+ <?php $plist = []; for($p = &$this->GetPost($th['first']['next']); $p!=$this->NULL_POST;
|
|
|
+ $p = &$this->GetPost(isset($p['next'])?$p['next']:NULL)){ $plist[] = &$p; }
|
|
|
+ foreach(array_reverse($plist) as &$p){
|
|
|
+ $this->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']); ?>
|
|
|
+ <tr class='<?=$is_current?"post_current_row":""?><?=$is_deleted?" deleted_post":""?>'
|
|
|
+ data-post-id='<?=$p['id']?>' <?=$is_deleted?"data-mark-delete='true'":""?>
|
|
|
+ onDblClick='ClickImage(this)'><td>
|
|
|
+ <a <?=$is_current?"":("href='?post=".$p['id']."' onclick='ShowWaitingBar()'");?> class='clean_a paa'>
|
|
|
+ <div class='post_access <?=($mark_value<0 || $ref_count)?"invert_a":""?> hover_dark'>
|
|
|
+ <?=isset($p['mark_value'])?$this->Markers[$p['mark_value']]:($ref_count?"":"→")?>
|
|
|
+ </div>
|
|
|
+ <?php if($ref_count){ ?>
|
|
|
+ <div class='post_access ref_count'><?=$ref_count?></div>
|
|
|
+ <?php } ?></a>
|
|
|
+ <?=$this->TranslatePostParts($p['html']);?>
|
|
|
+ <a class='_menu_hook clean_a post_menu_button' onclick='ShowPostMenu(this.parentNode.parentNode);'>+</a></td></tr>
|
|
|
+ <?php if($is_current && $ref_count>0){ ?><tr class='post_current_row'><td><p> </p><ul class='smaller'>
|
|
|
+ <?php foreach($p['refs'] as $ref){
|
|
|
+ $po = $this->GetPost($ref);
|
|
|
+ if(isset($post['mark_value']) && $post['mark_value']==5){ $count_product++; continue; }
|
|
|
+ if(!$this->CanShowPost($po)){ continue; }
|
|
|
+ echo "<li><a href='?post=".$po['id']."'>".$this->GetPostTitle($po)."</li>";
|
|
|
+ } ?>
|
|
|
+ </ul></td></tr><?php } ?>
|
|
|
+ <?php } ?>
|
|
|
+ </tbody></table>
|
|
|
+ </li></ul>
|
|
|
+ <br />
|
|
|
+ <?php $this->MakeCommentSection($th['first']); ?>
|
|
|
+ </div>
|
|
|
+ <?php return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakePostSection(&$post){
|
|
|
+ $this->Anchors = []; ?>
|
|
|
+ <div class='center' id='div_center'>
|
|
|
+ <?php $th=NULL; $is_thread = isset($post['tid']); if($is_thread){ $th = $post['tid'];?>
|
|
|
+ <h2 class='hidden_on_print'><?=$this->T('话题')?></h2>
|
|
|
+ <?php }else{ ?>
|
|
|
+ <h2 class='hidden_on_print'><?=$this->T('详细')?></h2>
|
|
|
+ <?php } ?>
|
|
|
+ <?php $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']; } }
|
|
|
+ if($cat){ ?>
|
|
|
+ <p><b><?=$this->T('分类')?></b> | <?php foreach($cat as $c){
|
|
|
+ echo "<a href='?category=".$c."'>".($c=='none'?$this->T('未分类'):$this->T($c))."</a> "; } ?></p>
|
|
|
+ <?php } ?>
|
|
|
+ <ul class='print_column'>
|
|
|
+ <?php
|
|
|
+ if($is_thread){
|
|
|
+ for($p = &$th['first']; $p!=$this->NULL_POST; $p = &$this->GetPost(isset($p['next'])?$p['next']:NULL)){
|
|
|
+ $use_class = ($p == $post)?'focused_post':'';
|
|
|
+ $show_link = ($p == $post)?false:true;
|
|
|
+ $make_title = ($p == $post);
|
|
|
+ $this->MakeSinglePost($p,$show_link,false,$use_class,false, false, false, true, false, false);
|
|
|
+ if($make_title){?>
|
|
|
+ <script>
|
|
|
+ document.title+=" | <?=addslashes(preg_replace('/\r|\n/u', ' ', mb_substr(strip_tags($p['html']),0,1000)))?>";
|
|
|
+ </script>
|
|
|
+ <?php }
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ $this->MakeSinglePost($post,false, false, 'focused_post',false, false, false, true, false, false);
|
|
|
+ ?><script>
|
|
|
+ document.title+=" | <?=addslashes(preg_replace('/\r|\n/u', ' ', mb_substr(strip_tags($post['html']),0,1000)))?>";
|
|
|
+ </script><?php
|
|
|
+ } ?>
|
|
|
+ <?php if($this->LoggedIn && (!$this->InExperimentalMode)){ ?>
|
|
|
+ <div class='post_width_big hidden_on_print'>
|
|
|
+ <br /><?php $this->MakePostingFields($is_thread?$th['last']['id']:$post['id'], true);?>
|
|
|
+ </div>
|
|
|
+ <?php }
|
|
|
+ $this->MakeCommentSection($post);
|
|
|
+ ?>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+ function MakePostSectionExp(&$post){
|
|
|
+ $this->Anchors = []; $is_thread = isset($post['tid']);
|
|
|
+ ?>
|
|
|
+ <div class='center_exp' id='div_center'>
|
|
|
+ <ul>
|
|
|
+ <?php
|
|
|
+ if($is_thread){
|
|
|
+ $th = $post['tid'];
|
|
|
+ for($p = &$th['first']; $p!=$this->NULL_POST; $p = &$this->GetPost(isset($p['next'])?$p['next']:NULL)){
|
|
|
+ $this->MakeSinglePostExp($p);
|
|
|
+ if($p == $th['first']){?>
|
|
|
+ <script>
|
|
|
+ document.title+=" | <?=addslashes(preg_replace('/\r|\n/u', ' ', mb_substr(strip_tags($p['html']),0,1000)))?>";
|
|
|
+ </script>
|
|
|
+ <?php }
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ $this->MakeSinglePostExp($post);
|
|
|
+ if($post['id']!=$this->ExpIndex){ ?><script>
|
|
|
+ document.title+=" | <?=addslashes(preg_replace('/\r|\n/u', ' ', mb_substr(strip_tags($post['html']),0,1000)))?>";
|
|
|
+ </script><?php }
|
|
|
+ } ?>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeSideGalleryCode(){?>
|
|
|
+ <div>
|
|
|
+ <h3><?=$this->T('点击图片以插入:')?></h3>
|
|
|
+ <select id="side_gallery_select" onchange="RefreshSideGallery()">
|
|
|
+ <option value="main"><?=$this->T('全部')?></option>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ <option value="trash"><?=$this->T('垃圾桶')?></option>
|
|
|
+ <?php }?>
|
|
|
+ <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){ ?>
|
|
|
+ <option value="<?=$g['name']?>"><?=$g['name']?></option>
|
|
|
+ <?php } ?>
|
|
|
+ </select>
|
|
|
+ <div id='side_gallery'>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <script>
|
|
|
+ function InsertImage(imgname){
|
|
|
+ t = document.querySelector("#post_content");
|
|
|
+ v = t.value;
|
|
|
+ t.value = v.slice(0, t.selectionStart) + ""+ v.slice(t.selectionEnd);
|
|
|
+ la_auto_grow(t);
|
|
|
+ }
|
|
|
+ function RefreshSideGallery(){
|
|
|
+ let xhr = new XMLHttpRequest();
|
|
|
+ xhr.onreadystatechange = (function(){
|
|
|
+ if (this.readyState === this.DONE) {
|
|
|
+ if (this.status === 200) {
|
|
|
+ ind = document.querySelector("#side_gallery");
|
|
|
+ if(res = xhr.responseText.matchAll(/\[(.*?),(.*?)\]/gu)){
|
|
|
+ str = "<ul class='side_thumb'>"
|
|
|
+ for (const m of res) {
|
|
|
+ str+="<li><div class='file_thumb' onclick='InsertImage(\""+m[1]+"\")'>"+
|
|
|
+ "<img src='"+m[2]+"' /></div>"
|
|
|
+ }
|
|
|
+ str += "</ul>"
|
|
|
+ ind.innerHTML = str;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ xhr.open("GET", "?image_list="+document.querySelector("#side_gallery_select").value, true);
|
|
|
+ xhr.send();
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeUploader($is_side=false){ ?>
|
|
|
+ <div id='upload_operation_area' class='hidden_on_print'>
|
|
|
+ <p><?=$this->T('选择、粘贴或者拖动到页面以上传图片。')?></p>
|
|
|
+ <input type="file" id='upload_selector' accept="image/x-png,image/png,image/gif,image/jpeg" multiple/>
|
|
|
+ <ul id='file_list'>
|
|
|
+ </ul>
|
|
|
+ <div class='smaller gray' id='upload_hint'><?=$this->T('就绪')?></div>
|
|
|
+ </div>
|
|
|
+ <a id='upload_click' class='hidden_on_print'
|
|
|
+ href='javascript:UploadList()'<?=$is_side?" data-is-side='true'":""?>><?=$this->T('上传列表中的文件')?></a>
|
|
|
+ <script>
|
|
|
+ function pastehandler(event){
|
|
|
+ var items = (event.clipboardData || event.originalEvent.clipboardData).items;
|
|
|
+ for (index in items) {
|
|
|
+ var item = items[index];
|
|
|
+ if (item.kind === 'file') {
|
|
|
+ put = document.querySelector("#_uploader");
|
|
|
+ if(put) ShowSideUploader();
|
|
|
+ var blob = item.getAsFile();
|
|
|
+ AddImageFile(blob);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ let _fd_list = [];
|
|
|
+ let hint=document.querySelector('#upload_hint');
|
|
|
+ function ToggleCompress(button){
|
|
|
+ li = button.parentNode;
|
|
|
+ num=li.dataset.number;
|
|
|
+ for(i=0;i<_fd_list.length;i++){
|
|
|
+ if (_fd_list[i][0] == num){
|
|
|
+ state = _fd_list[i][2];
|
|
|
+ if(state){_fd_list[i][2] = 0; button.innerHTML='1920';break;}
|
|
|
+ else{_fd_list[i][2] = 1; button.innerHTML='800';break;}
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function RemoveFromUpload(button){
|
|
|
+ li = button.parentNode;
|
|
|
+ num=li.dataset.number;
|
|
|
+ for(i=0;i<_fd_list.length;i++){
|
|
|
+ if (_fd_list[i][0] == num){
|
|
|
+ _fd_list.splice(i, 1);break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ li.parentNode.removeChild(li);
|
|
|
+ }
|
|
|
+ function EndThisUpload(){
|
|
|
+ unfinished = 0;
|
|
|
+ for(i=0;i<_fd_list.length;i++){
|
|
|
+ if (_fd_list[i][3]==0){
|
|
|
+ unfinished=1;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(!unfinished){
|
|
|
+ hint.innerHTML="<?=$this->T('上传完成。')?>";
|
|
|
+ cl=document.querySelector('#upload_click');
|
|
|
+ if(!cl.dataset.isSide){
|
|
|
+ cl.innerHTML="<?=$this->T('刷新页面')?>";
|
|
|
+ cl.href=window.location.href;
|
|
|
+ }else{
|
|
|
+ _fd_list.splice(0,_fd_list.length);
|
|
|
+ fl = document.querySelector("#file_list");
|
|
|
+ fl.innerHTML = "";
|
|
|
+ list=document.querySelector('#upload_operation_area');
|
|
|
+ list.style.pointerEvents='';
|
|
|
+ list.style.opacity='';
|
|
|
+ document.onpaste=pastehandler;
|
|
|
+ RefreshSideGallery();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function UploadList(){
|
|
|
+ if(!_fd_list.length) return;
|
|
|
+ hint.innerHTML="<?=$this->T('正在上传...')?>";
|
|
|
+ list=document.querySelector('#upload_operation_area');
|
|
|
+ list.style.pointerEvents='none';
|
|
|
+ list.style.opacity='0.5';
|
|
|
+ document.onpaste="";
|
|
|
+ for(i=0;i<_fd_list.length;i++){
|
|
|
+ let xhr = new XMLHttpRequest();
|
|
|
+ //xmlHTTP.upload.addEventListener("loadstart", loadStartFunction, false);
|
|
|
+ //xmlHTTP.upload.addEventListener("progress", progressFunction, false);
|
|
|
+ //xmlHTTP.addEventListener("load", transferCompleteFunction, false);
|
|
|
+ //xmlHTTP.addEventListener("error", uploadFailed, false);
|
|
|
+ //xmlHTTP.addEventListener("abort", uploadCanceled, false);
|
|
|
+ var li = list.querySelector('[data-number="'+_fd_list[i][0].toString()+'"]')
|
|
|
+ xhr.open("POST", "?compress="+_fd_list[i][2].toString(), true);
|
|
|
+ function wrap(li, i){
|
|
|
+ var ind = li.querySelector('._compress_toggle')
|
|
|
+ return function(){
|
|
|
+ if (this.readyState === this.DONE) {
|
|
|
+ if (this.status === 200) {
|
|
|
+ var response = xhr.responseText;
|
|
|
+ if(res = response.match(/<uploaded>(.*)<\/uploaded>/)){
|
|
|
+ ind.innerHTML = "<?=$this->T('已上传为')?> "+res[1];
|
|
|
+ _fd_list[i][3] = 1;
|
|
|
+ }else{
|
|
|
+ ind.innerHTML = "<?=$this->T('出现错误。')?>";
|
|
|
+ _fd_list[i][3] = 1;
|
|
|
+ }
|
|
|
+ EndThisUpload();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ xhr.onreadystatechange = wrap(li, i);
|
|
|
+ xhr.send(_fd_list[i][1]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function AddImageFile(blob){
|
|
|
+ var ext="";
|
|
|
+ if(blob.name.match(/png$/))ext = 'png';
|
|
|
+ else if(blob.name.match(/jpg$/))ext = 'jpg';
|
|
|
+ else if(blob.name.match(/jpeg$/))ext = 'jpeg';
|
|
|
+ else if(blob.name.match(/gif$/))ext = 'gif';
|
|
|
+ else return;
|
|
|
+ var fd = new FormData();
|
|
|
+ blob.name = blob.name=generateUID().toString();
|
|
|
+ fd.append("upload_file_name", blob, "_upload_"+blob.name+"."+ext);
|
|
|
+ _fd_list.push([blob.name, fd, 1, 0]);/* number original is_compress uploaded */
|
|
|
+ var reader = new FileReader();
|
|
|
+ reader.onload = function(event){
|
|
|
+ fl = document.querySelector("#file_list");
|
|
|
+ ht = "<li id='_upload_"+blob.name+"' data-number='"+blob.name+"'>"+
|
|
|
+ "<a class='_remove_file pointer invert_a' onclick='RemoveFromUpload(this)'>×</a> "+"<div class='file_thumb'>"+
|
|
|
+ "<img class='no_pop' src='"+event.target.result+"'>"+"</div>"+
|
|
|
+ " →<a class='_compress_toggle pointer' onclick='ToggleCompress(this)'>800</a></li>";
|
|
|
+ fl.innerHTML+=ht;
|
|
|
+ };
|
|
|
+ reader.readAsDataURL(blob);
|
|
|
+ }
|
|
|
+ sel = document.querySelector('#upload_selector');
|
|
|
+ sel.addEventListener("change", function(){
|
|
|
+ var input = this;
|
|
|
+ function ff(file){
|
|
|
+ return function(e){
|
|
|
+ let blob = new Blob([new Uint8Array(e.target.result)], {type: file.type});
|
|
|
+ blob.name = file.name;
|
|
|
+ AddImageFile(blob);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ for(i=0;i<input.files.length;i++){
|
|
|
+ if(input.files[i].size){
|
|
|
+ let reader = new FileReader();
|
|
|
+ reader.onload = ff(input.files[i]);
|
|
|
+ reader.readAsArrayBuffer(input.files[i]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ function generateUID() {
|
|
|
+ var firstPart = (Math.random() * 46656) | 0;
|
|
|
+ var secondPart = (Math.random() * 46656) | 0;
|
|
|
+ firstPart = ("000" + firstPart.toString(36)).slice(-3);
|
|
|
+ secondPart = ("000" + secondPart.toString(36)).slice(-3);
|
|
|
+ return firstPart + secondPart;
|
|
|
+ }
|
|
|
+ document.onpaste = pastehandler;
|
|
|
+ function dropHandler(ev) {
|
|
|
+ put = document.querySelector("#_uploader");
|
|
|
+ if(put) ShowSideUploader();
|
|
|
+ bkg=document.querySelector('#dropping_background');
|
|
|
+ bkg.style.display="none";
|
|
|
+ console.log('File(s) dropped');
|
|
|
+ ev.preventDefault();
|
|
|
+ if (ev.dataTransfer && ev.dataTransfer.items) {
|
|
|
+ for (var i = 0; i < ev.dataTransfer.items.length; i++) {
|
|
|
+ if (ev.dataTransfer.items[i].kind === 'file') {
|
|
|
+ var file = ev.dataTransfer.items[i].getAsFile();
|
|
|
+ function ff(file){
|
|
|
+ return function(e){
|
|
|
+ let blob = new Blob([new Uint8Array(e.target.result)], {type: file.type});
|
|
|
+ blob.name = file.name;
|
|
|
+ AddImageFile(blob);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(file){
|
|
|
+ let reader = new FileReader();
|
|
|
+ reader.onload = ff(file);
|
|
|
+ reader.readAsArrayBuffer(file);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ for (var i = 0; i < ev.dataTransfer.files.length; i++) {
|
|
|
+ function ff(file){
|
|
|
+ return function(e){
|
|
|
+ let blob = new Blob([new Uint8Array(e.target.result)], {type: file.type});
|
|
|
+ blob.name = file.name;
|
|
|
+ AddImageFile(blob);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(ev.dataTransfer.files[i].size){
|
|
|
+ let reader = new FileReader();
|
|
|
+ reader.onload = ff(ev.dataTransfer.files[i]);
|
|
|
+ reader.readAsArrayBuffer(ev.dataTransfer.files[i]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function dragOverHandler(ev) {
|
|
|
+ bkg=document.querySelector('#dropping_background');
|
|
|
+ bkg.style.display="";
|
|
|
+ console.log('File(s) in drop zone');
|
|
|
+ ev.preventDefault();
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function CanShowGallery(&$g){
|
|
|
+ if(!$this->LoggedIn && isset($g['experimental']) && $g['experimental']) return false;
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ function CanShowImage(&$im){
|
|
|
+ if(!$this->LoggedIn && isset($im['galleries']) && isset($im['galleries'][0])) foreach($im['galleries'] as $ga){
|
|
|
+ if(($g=$this->GetGallery($ga)) && isset($g['experimental']) && $g['experimental']) return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeGallerySection(){
|
|
|
+ if(!isset($_GET['gallery'])) return;
|
|
|
+ $name=NULL; if($_GET['gallery']!='main' && $_GET['gallery']!='trash'){
|
|
|
+ $name=$_GET['gallery'];}?>
|
|
|
+ <script>
|
|
|
+ document.title+=" | <?=$this->T('画廊')?>";
|
|
|
+ </script>
|
|
|
+ <div class='center_wide' id='div_center' style='position:relative;'>
|
|
|
+ <h2><?=(isset($name) && ($gal=$this->GetGallery($name))!=NULL)?
|
|
|
+ ("<span class='gray album_hint'>".$this->T('相册').":</span>".$this->T($name)):
|
|
|
+ ($_GET['gallery']=='trash'?$this->T('垃圾桶'):$this->T('画廊'))?></h2>
|
|
|
+ <div class='hidden_on_desktop'>
|
|
|
+ <?=$this->T('前往')?>
|
|
|
+ <select id="gallery_go_to" onchange="window.location.href='?gallery='+this.value;">
|
|
|
+ <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){
|
|
|
+ if(!isset($g['featured']) || !$g['featured'] ||
|
|
|
+ !$this->CanShowGallery($g)){ continue; } $is_this = ($_GET['gallery']==$g['name']);?>
|
|
|
+ <option value="<?=$g['name']?>" <?=$is_this?"selected":""?>>
|
|
|
+ <?=(isset($g['experimental'])&&$g['experimental'])?'E ':''?><?=$this->T($g['name'])?></option>
|
|
|
+ <?php } ?>
|
|
|
+ <option value="main" <?=$_GET['gallery']=='main'?"selected":""?>>[<?=$this->T('全部')?>]</option>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ <option value="trash" <?=$_GET['gallery']=='trash'?"selected":""?>>[<?=$this->T('垃圾桶')?>]</option>
|
|
|
+ <?php } ?>
|
|
|
+ <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){
|
|
|
+ if((isset($g['featured']) && $g['featured']) ||
|
|
|
+ !$this->CanShowGallery($g)){ continue; } $is_this = ($_GET['gallery']==$g['name']);?>
|
|
|
+ <option value="<?=$g['name']?>" <?=$is_this?"selected":""?>>
|
|
|
+ <?=(isset($g['experimental'])&&$g['experimental'])?'E ':''?><?=$this->T($g['name'])?></option>
|
|
|
+ <?php } ?>
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
+ <?php if($this->LoggedIn){?>
|
|
|
+ <div>
|
|
|
+ <?php if(isset($name)){ ?>
|
|
|
+ <div style='text-align:right;position:absolute;right:0;top:0;width:100%;' class='invert_a smaller hidden_on_print'>
|
|
|
+ <a href='javascript:ShowDeleteMenu();' class='smaller'><?=$this->T('删除相册')?></a><br />
|
|
|
+ <?php if(isset($gal['featured']) && $gal['featured']!=false){ ?>
|
|
|
+ <a href='?gallery=<?=$_GET['gallery']?>&gallery_set_featured=<?=$_GET['gallery']?>&value=false'
|
|
|
+ class='smaller'><?=$this->T('取消精选')?></a>
|
|
|
+ <?php }else{ ?>
|
|
|
+ <a href='?gallery=<?=$_GET['gallery']?>&gallery_set_featured=<?=$_GET['gallery']?>&value=true'
|
|
|
+ class='smaller'><?=$this->T('设为精选')?></a>
|
|
|
+ <?php } ?><br />
|
|
|
+ <?php if(isset($gal['experimental']) && $gal['experimental']!=false){ ?>
|
|
|
+ <a href='?gallery=<?=$_GET['gallery']?>&gallery_set_experimental=<?=$_GET['gallery']?>&value=false'
|
|
|
+ class='smaller'><?=$this->T('取消实验')?></a>
|
|
|
+ <?php }else{ ?>
|
|
|
+ <a href='?gallery=<?=$_GET['gallery']?>&gallery_set_experimental=<?=$_GET['gallery']?>&value=true'
|
|
|
+ class='smaller'><?=$this->T('设为实验')?></a>
|
|
|
+ <?php } ?>
|
|
|
+ <div class='pop_menu smaller invert_a' id='gallery_delete_menu' style='display:none;'>
|
|
|
+ <div style='float:left;' class='gray'><?=$this->T('该操作不删除图片。')?></div>
|
|
|
+ <a href='javascript:HidePopMenu();'>×</a>
|
|
|
+ <hr />
|
|
|
+ <a href='?gallery=main&gallery_edit_delete=<?=$_GET['gallery']?>'><b><?=$this->T('删除相册')?></b></a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <?php } ?>
|
|
|
+ <?php $this->MakeUploader(false); ?>
|
|
|
+ <div style='text-align:right;position:relative;' class='invert_a smaller hidden_on_print'>
|
|
|
+ <div style='position:relative'>
|
|
|
+ <?php if(isset($name)){ ?>
|
|
|
+ <a href='javascript:ShowGalleryEditMenu("<?=$name?>")'><?=$this->T('改名')?></a>
|
|
|
+ <?php } ?>
|
|
|
+ <a href='javascript:ShowGalleryEditMenu(null)'><?=$this->T('添加')?></a>
|
|
|
+ <div class='pop_menu smaller invert_a' id='gallery_edit_menu' style='display:none;max-width:90%;'>
|
|
|
+ <form action="<?=$_SERVER['REQUEST_URI']?>&edit_gallery=true"
|
|
|
+ method="post" style='display:none;' id='gallery_edit_form'></form>
|
|
|
+ <a style='float:left;'><?=$this->T('相册名字:')?></a>
|
|
|
+ <a href='javascript:HidePopMenu();'>×</a>
|
|
|
+ <input type='text' form='gallery_edit_form' name='gallery_edit_new_name' id='gallery_edit_new_name'>
|
|
|
+ <input type='text' form='gallery_edit_form' name='gallery_edit_old_name'
|
|
|
+ id='gallery_edit_old_name' style='display:none'>
|
|
|
+ <input class='button' type='submit' form='gallery_edit_form'
|
|
|
+ name='gallery_edit_confirm' id='gallery_edit_confirm' value='<?=$this->T('确认')?>'>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class='smaller hidden_on_print'>
|
|
|
+ <form action="<?=$_SERVER['REQUEST_URI']?>"
|
|
|
+ method="post" style='display:none;' id='gallery_move_form'></form>
|
|
|
+ <input type='text' form='gallery_move_form' name='gallery_move_ops'
|
|
|
+ id='gallery_move_ops' style='display:none'>
|
|
|
+ <p><?=$this->T('选择了')?> <span id='gallery_selected_count'>0</span> <?=$this->T('个图片。')?>
|
|
|
+ <a href='javascript:ClearSelectedImages()'><?=$this->T('清除')?></a></p>
|
|
|
+ <p><?=$this->T('添加到')?>
|
|
|
+ <select id="gallery_move_to">
|
|
|
+ <option value="trash"><?=$this->T('垃圾桶')?></option>
|
|
|
+ <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){ ?>
|
|
|
+ <option value="<?=$g['name']?>"><?=$this->T($g['name'])?></option>
|
|
|
+ <?php } ?>
|
|
|
+ </select>
|
|
|
+ <a href='javascript:AddToGallery()'><?=$this->T('执行')?></a>
|
|
|
+ </p>
|
|
|
+ <p>
|
|
|
+ <?=$this->T('或者')?><a href='javascript:RemoveFromGallery()'><?=$this->T('从相册移除')?></a>
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <?php } ?>
|
|
|
+ <p> </p>
|
|
|
+ <div>
|
|
|
+ <?php $opened=0; $prev_year=""; if(isset($this->Images[0])) foreach($this->Images as $im){
|
|
|
+ $year = substr($im['name'], 0, 4);
|
|
|
+ if($year!=$prev_year){
|
|
|
+ if($opened) { ?><div class='p_thumb' style='flex-grow:10000;box-shadow:none;height:0;'></div></div></div><?php } ?>
|
|
|
+ <div><h2 class='sticky_title'><?=$year;?></h2><div class='p_row'><?php $prev_year=$year; $opened=1;
|
|
|
+ }
|
|
|
+ if($_GET['gallery']=='trash') $name='trash';
|
|
|
+ if($_GET['gallery']!='main'){ if(!isset($im['galleries']) || !in_array($name, $im['galleries'])) continue;}
|
|
|
+ if(!$this->CanShowImage($im)){ continue; } ?>
|
|
|
+ <div class='p_thumb'>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ <div class="post_menu_button _select_hook white" onclick='ToggleSelectImage(this, "<?=$im["name"]?>")'>●</div>
|
|
|
+ <?php } ?>
|
|
|
+ <img src='<?=$im['thumb']?>' data-imgsrc='<?=$im["name"]?>'<?=isset($im['product'])?
|
|
|
+ 'data-product="'.$im["product"].'"':""?>/>
|
|
|
+ </div>
|
|
|
+ <?php } ?>
|
|
|
+ <div class='p_thumb' style='flex-grow:10000;box-shadow:none;height:0;'></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ <script type='text/javascript'>
|
|
|
+ var selected_image = new Array();
|
|
|
+ function RemoveFromGallery(){
|
|
|
+ form = document.querySelector('#gallery_move_form');
|
|
|
+ ops = document.querySelector('#gallery_move_ops');
|
|
|
+ sel = document.querySelector('#gallery_move_to');
|
|
|
+ ops.value = "REM <?=$_GET['gallery']?>"+" "+selected_image.join(' ');
|
|
|
+ form.submit();
|
|
|
+ }
|
|
|
+ function AddToGallery(){
|
|
|
+ form = document.querySelector('#gallery_move_form');
|
|
|
+ ops = document.querySelector('#gallery_move_ops');
|
|
|
+ sel = document.querySelector('#gallery_move_to');
|
|
|
+ ops.value = "ADD "+sel.value+" "+selected_image.join(' ');
|
|
|
+ form.submit();
|
|
|
+ }
|
|
|
+ function ClearSelectedImages(){
|
|
|
+ selected_image.splice(0, selected_image.length);
|
|
|
+ checks = document.querySelectorAll('._select_hook');
|
|
|
+ [].forEach.call(checks, function(c){
|
|
|
+ c.classList.remove('p_thumb_selected');
|
|
|
+ });
|
|
|
+ count = document.querySelector('#gallery_selected_count');
|
|
|
+ count.innerHTML="0";
|
|
|
+ }
|
|
|
+ function ToggleSelectImage(elem, name){
|
|
|
+ count = document.querySelector('#gallery_selected_count');
|
|
|
+ if(selected_image.indexOf(name) == -1){ selected_image.push(name); elem.classList.add('p_thumb_selected'); }
|
|
|
+ else{ selected_image.splice(selected_image.indexOf(name), 1); elem.classList.remove('p_thumb_selected'); }
|
|
|
+ count.innerHTML=selected_image.length.toString()
|
|
|
+ }
|
|
|
+ function ShowGalleryEditMenu(old_name){
|
|
|
+ m = document.querySelector('#gallery_edit_menu');
|
|
|
+ old = document.querySelector('#gallery_edit_old_name');
|
|
|
+ m.style.display='block';
|
|
|
+ if(old_name!=''){ old.value=old_name; }else{ old.value=''; }
|
|
|
+ }
|
|
|
+ function ShowDeleteMenu(){
|
|
|
+ m=document.querySelector('#gallery_delete_menu');
|
|
|
+ m.style.display='block';
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <?php } ?>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeGalleryLeft(){?>
|
|
|
+ <div class='left hidden_on_mobile gallery_left' id='div_left'>
|
|
|
+ <h2><?=$this->T('相册')?></h2>
|
|
|
+ <div>
|
|
|
+ <span class='gray smaller bold'><?=$this->T('精选')?><hr> </span>
|
|
|
+ <ul>
|
|
|
+ <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){
|
|
|
+ if(!isset($g['featured']) || !$g['featured'] || !$this->CanShowGallery($g)){ continue; } ?>
|
|
|
+ <a href='?gallery=<?=$g['name']?>' onclick='ShowWaitingBar()'>
|
|
|
+ <li class='<?=$_GET['gallery']==$g['name']?'selected':""?>'>
|
|
|
+ <?=(isset($g['experimental'])&&$g['experimental'])?'E ':''?><?=$this->T($g['name'])?></li></a>
|
|
|
+ <?php } ?>
|
|
|
+ </ul>
|
|
|
+ <div class='smaller'><span class='gray'><?=$this->T('其他相册')?><hr></span><ul>
|
|
|
+ <a href='?gallery=main' onclick='ShowWaitingBar()'>
|
|
|
+ <li class='<?=$_GET['gallery']=='main'?' selected':""?>'>[<?=$this->T('全部图片')?>]</li></a>
|
|
|
+ <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){
|
|
|
+ if((isset($g['featured']) && $g['featured']) || !$this->CanShowGallery($g)){ continue; } ?>
|
|
|
+ <a href='?gallery=<?=$g['name']?>' onclick='ShowWaitingBar()'>
|
|
|
+ <li class='<?=$_GET['gallery']==$g['name']?' selected':""?>'>
|
|
|
+ <?=(isset($g['experimental'])&&$g['experimental'])?'E ':''?><?=$this->T($g['name'])?></li></a>
|
|
|
+ <?php } ?>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ <a href='?gallery=trash' onclick='ShowWaitingBar()'>
|
|
|
+ <li class='<?=$_GET['gallery']=='trash'?' selected':""?>'>[<?=$this->T('垃圾桶')?>]</li></a>
|
|
|
+ <?php } ?>
|
|
|
+ </ul></div>
|
|
|
+ <p> </p>
|
|
|
+ <script>
|
|
|
+ </script>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeTOC(){?>
|
|
|
+ <div class='right hidden_on_mobile' id='div_right'>
|
|
|
+ <?php if(isset($this->Anchors[0])){?>
|
|
|
+ <h2><?=$this->T('目录')?></h2><ul>
|
|
|
+ <?php
|
|
|
+ foreach($this->Anchors as $a){?>
|
|
|
+ <li class='toc_entry_<?=$a[0]>5?5:$a[0]?>'><a href='#<?=$a[1]?>'><?=$this->T($a[2])?></a></li>
|
|
|
+ <?php }
|
|
|
+ ?></ul>
|
|
|
+ <?php }else{ ?>
|
|
|
+ <h2 class='gray'><?=$this->T('目录')?></h2>
|
|
|
+ <span class='gray smaller'><?=$this->T('未找到目录')?></span>
|
|
|
+ <?php } ?>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ function MakeSettings(){?>
|
|
|
+ <div class='settings'>
|
|
|
+ <h2><?=$this->T('设置')?></h2>
|
|
|
+ <table style='white-space:nowrap;'>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ <form action="index.php?settings=true" method="post" style='display:none;' id='settings_form'></form>
|
|
|
+ <colgroup><col style='min-width:5em;'><col style='width:100%;min-width:5em;'></colgroup>
|
|
|
+ <thead><tr><td><?=$this->T('选项')?></td><td><?=$this->T('值')?></td></tr></thead>
|
|
|
+ <tr><td><?=$this->T('网站标题')?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_title' name='settings_title'
|
|
|
+ value='<?=$this->Title?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('短标题')?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_short_title' name='settings_short_title'
|
|
|
+ value='<?=$this->ShortTitle?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('显示名称')?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_display_name' name='settings_display_name'
|
|
|
+ value='<?=$this->DisplayName?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('电子邮件')?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_email' name='settings_email'
|
|
|
+ value='<?=$this->EMail?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('导航栏')?>
|
|
|
+ <?=isset($this->SpecialNavigation)?"<a href='?post=".$this->SpecialNavigation."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_special_navigation' name='settings_special_navigation'
|
|
|
+ value='<?=$this->SpecialNavigation?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('脚注')?> 1<?=isset($this->SpecialFooter)?"<a href='?post=".$this->SpecialFooter."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_special_footer' name='settings_special_footer'
|
|
|
+ value='<?=$this->SpecialFooter?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('脚注')?> 2<?=isset($this->SpecialFooter2)?"<a href='?post=".$this->SpecialFooter2."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_special_footer2' name='settings_special_footer2'
|
|
|
+ value='<?=$this->SpecialFooter2?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('置顶文')?><?=isset($this->SpecialPinned)?"<a href='?post=".$this->SpecialPinned."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_special_pinned' name='settings_special_pinned'
|
|
|
+ value='<?=$this->SpecialPinned?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('默认相册')?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_default_gallery' name='settings_default_gallery'
|
|
|
+ value='<?=$this->DefaultGallery?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('启用评论')?></td>
|
|
|
+ <td><input type="checkbox" id="settings_enable_comments" name="settings_enable_comments"
|
|
|
+ form="settings_form" <?=$this->CommentEnabled?"checked":""?>/></td></tr>
|
|
|
+ <tr><td><?=$this->T('附加操作')?></td><td><a class='gray' href='index.php?extras=true'><?=$this->T('进入')?></a></td></tr>
|
|
|
+
|
|
|
+ <tr><td class='smaller gray'> </td></tr>
|
|
|
+ <tr><td class='smaller gray'><?=$this->T('实验访问')?></td></tr>
|
|
|
+ <tr><td><?=$this->T('主机')?><?=isset($this->ExpHost)?"<a href='?post=".$this->ExpHost."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_exp_host' name='settings_exp_host'
|
|
|
+ value='<?=$this->ExpHost?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('网站标题')?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_exp_title' name='settings_exp_title'
|
|
|
+ value='<?=$this->ExpTitle?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('短标题')?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_exp_short_title' name='settings_exp_short_title'
|
|
|
+ value='<?=$this->ExpShortTitle?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('首次提示')?><?=isset($this->ExpCaution)?"<a href='?post=".$this->ExpCaution."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_exp_caution' name='settings_exp_caution'
|
|
|
+ value='<?=$this->ExpCaution?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('索引')?><?=isset($this->ExpIndex)?"<a href='?post=".$this->ExpIndex."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_exp_index' name='settings_exp_index'
|
|
|
+ value='<?=$this->ExpIndex?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('导航栏')?>
|
|
|
+ <?=isset($this->ExpNavigation)?"<a href='?post=".$this->ExpNavigation."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_exp_navigation' name='settings_exp_navigation'
|
|
|
+ value='<?=$this->ExpNavigation?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('脚注')?><?=isset($this->ExpFooter)?"<a href='?post=".$this->ExpFooter."'>→</a>":""?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_exp_footer' name='settings_exp_footer'
|
|
|
+ value='<?=$this->ExpFooter?>'/></td></tr>
|
|
|
+
|
|
|
+ <tr><td class='smaller gray'> </td></tr>
|
|
|
+ <tr><td class='smaller gray'><?=$this->T('管理员')?></td><td class='smaller'>
|
|
|
+ <a href='index.php?logout=true'><?=$this->T('登出')?></a></td></tr>
|
|
|
+ <tr><td><?=$this->T('帐号')?></td>
|
|
|
+ <td><input type="text" form="settings_form" id='settings_id' name='settings_id'
|
|
|
+ value='<?=$this->Admin?>'/></td></tr>
|
|
|
+ <tr><td><?=$this->T('新密码')?></td>
|
|
|
+ <td><input type="password" form="settings_form"
|
|
|
+ id='settings_new_password' name='settings_new_password' /></td></tr>
|
|
|
+ <tr><td><?=$this->T('再次输入')?></td>
|
|
|
+ <td><input type="password" form="settings_form"
|
|
|
+ id='settings_new_password_redo' name='settings_new_password_redo' /></td></tr>
|
|
|
+ <tr><td><?=$this->T('旧密码')?></td>
|
|
|
+ <td><input type="password" form="settings_form" id='settings_old_password' name='settings_old_password' /></td></tr>
|
|
|
+ <?php }else{ ?>
|
|
|
+ <form action="<?=$_SERVER['REQUEST_URI']?>" method="post" style='display:none;' id='login_form'></form>
|
|
|
+ <colgroup><col style='min-width:3em;'><col style='width:100%;min-width:5em;'></colgroup>
|
|
|
+ <tr><td class='smaller gray'><?=$this->T('请登录')?></td></tr>
|
|
|
+ <tr><td><?=$this->T('帐号')?></td>
|
|
|
+ <td><input type="text" form="login_form" id='login_id' name='login_id' /></td></tr>
|
|
|
+ <tr><td><?=$this->T('密码')?></td>
|
|
|
+ <td><input type="password" form="login_form" id='login_password' name='login_password' /></td></tr>
|
|
|
+ <?php } ?>
|
|
|
+ </table>
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ <input class='button' form="settings_form" type="submit" name='settings_button' value='<?=$this->T('保存设置')?>' />
|
|
|
+ <?php }else{ ?>
|
|
|
+ <input class='button' form="login_form" type="submit" name='login_button' value='<?=$this->T('登录')?>' />
|
|
|
+ <?php } ?>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeExtraOperations(){?>
|
|
|
+ <div class='settings' style='overflow:auto;'>
|
|
|
+ <h2><?=$this->T('附加操作')?></h2>
|
|
|
+ <a href='?index.php&settings=true'><?=$this->T('返回一般设置')?></a>
|
|
|
+ <p> </p>
|
|
|
+ <h3><?=$this->T('自动重定向')?></h3>
|
|
|
+ <span class='smaller gray'>
|
|
|
+ <?=$this->T('P为帖子跳转,匹配REQUEST_URI跳到目标文章;S为站点跳转,可以重定向来源域名,例子:')?>
|
|
|
+ <br /><pre>P discount:20001001010101;<br />S old_domain:www.new_domain.com:20001001010101;</pre></span>
|
|
|
+ <form action="<?=$_SERVER['REQUEST_URI']?>" method="post" style='display:none;' id='settings_form2'></form>
|
|
|
+ <textarea id="settings_redirect" name="settings_redirect" rows="3" class='full_box' wrap="off"
|
|
|
+ form='settings_form2'><?=$this->DisplayRedirectConfig()?></textarea>
|
|
|
+ <input class='button' form="settings_form2" type="submit" name='settings_save_redirect'
|
|
|
+ value='<?=$this->T('保存重定向设置')?>' />
|
|
|
+ <p> </p>
|
|
|
+ <h3><?=$this->T('自定义翻译')?></h3>
|
|
|
+ <span class='smaller gray'>
|
|
|
+ <?=$this->T('填写格式:')?>
|
|
|
+ <br /><pre>- 语言 | Language</pre></span>
|
|
|
+ <form action="<?=$_SERVER['REQUEST_URI']?>" method="post" style='display:none;' id='settings_form3'></form>
|
|
|
+ <textarea id="settings_translation" name="settings_translation" rows="3" class='full_box' wrap="off"
|
|
|
+ form='settings_form3'><?=$this->CustomTranslationContent?></textarea>
|
|
|
+ <input class='button' form="settings_form3" type="submit" name='settings_save_translation'
|
|
|
+ value='<?=$this->T('保存翻译')?>' />
|
|
|
+ <p> </p>
|
|
|
+ <p class='smaller gray'><?=$this->T('当心!下列操作将立即执行:')?></p>
|
|
|
+ <ul>
|
|
|
+ <li><a href='index.php?rewrite_styles=true'><?=$this->T('重新写入默认CSS')?></a></li>
|
|
|
+ <li><a href='index.php?regenerate_thumbnails=true'><?=$this->T('重新生成图片缩略图')?></a></li>
|
|
|
+ <li><a href='index.php?clear_all_logins=true'><?=$this->T('删除所有登录')?>(<?=sizeof($this->LoginTokens);?>)</a></li>
|
|
|
+ </ui>
|
|
|
+ <br /><br /><br /><a href='?index.php&settings=true'><?=$this->T('返回一般设置')?></a><br />
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeMainBegin(){?>
|
|
|
+ <div class='main' <?php if(!$this->InExperimentalMode){ ?>
|
|
|
+ ondrop="_dropHandler(event);" ondragover="_dragOverHandler(event);"<?php } ?>>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+ function MakeMainEnd(){?>
|
|
|
+ </div>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeExpFooter(){?>
|
|
|
+ <div class='small_footer'>
|
|
|
+ <hr />
|
|
|
+ <b><?=$this->T($this->ExpTitle)?></b> ©<?=$this->T($this->DisplayName)?>
|
|
|
+ </div>
|
|
|
+ <div class='footer'>
|
|
|
+ <div style='white-space:nowrap;'>
|
|
|
+ <div class='footer_additional'>
|
|
|
+ <?php if(isset($this->ExpFooter) && ($p = &$this->GetPost($this->ExpFooter))!=NULL){
|
|
|
+ echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST,false));
|
|
|
+ } ?>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div><!-- page -->
|
|
|
+ </body>
|
|
|
+ </html>
|
|
|
+ <script>
|
|
|
+ if(trans = document.getElementById('translate_button')){
|
|
|
+ trans.href='https://translate.google.com/translate?sl=auto&tl=en-US&u='+encodeURIComponent(document.location.href);
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function MakeFooter(){?>
|
|
|
+ <div class='small_footer'>
|
|
|
+ <hr />
|
|
|
+ <b><?=$this->T($this->Title)?></b>
|
|
|
+ <span onclick='event.stopPropagation()'
|
|
|
+ ondblclick='javascript:window.location.href="index.php?settings=true"'>©</span><?=$this->T($this->DisplayName)?>
|
|
|
+ </div>
|
|
|
+ <div class='footer'>
|
|
|
+ <div style='white-space:nowrap;'>
|
|
|
+ <div class='footer_additional'>
|
|
|
+ <?php if(isset($this->SpecialFooter) && ($p = &$this->GetPost($this->SpecialFooter))!=NULL){
|
|
|
+ echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST,false));
|
|
|
+ } ?>
|
|
|
+ </div>
|
|
|
+ <div class='footer_additional'>
|
|
|
+ <?php if(isset($this->SpecialFooter2) && ($p = &$this->GetPost($this->SpecialFooter2))!=NULL){
|
|
|
+ echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST,false));
|
|
|
+ } ?>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <p> <p>
|
|
|
+ <div id='dropping_background' style='display:none;' onclick='this.style.display="none";'
|
|
|
+ ondrop="_dropHandler(event);" ondragover="_dragOverHandler(event);">
|
|
|
+ <h2 style='width:100%;'><?=$this->T('上传到这里')?></h2>
|
|
|
+ </div>
|
|
|
+ <div id='big_image_overlay' style='display:none'>
|
|
|
+ <div class='big_image_box clean_a' onclick='HideBigImage(1)'>
|
|
|
+ <div style='display:flex;align-items:center;height:100%;justify-content:center;width:100%;'><?=$this->T('请稍候')?></div>
|
|
|
+ <img id='big_image' onload="HideWaitingBar();"/>
|
|
|
+ </div>
|
|
|
+ <div class='big_side_box' onclick='HideBigImage(1);'>
|
|
|
+ <div class='big_image_box clean_a image_nav' onclick='HideBigImage(1)'>
|
|
|
+ <div ><a id='prev_image' class='image_nav_prev img_btn_hidden' onclick="event.stopPropagation();">
|
|
|
+ <div class='lr_buttons'>←</div></a></div>
|
|
|
+ <div ><a id='next_image' class='image_nav_next img_btn_hidden' onclick="event.stopPropagation();">
|
|
|
+ <div class='lr_buttons'>→</div></a></div>
|
|
|
+ </div>
|
|
|
+ <div class='side_box_mobile_inner'>
|
|
|
+ <div class='inquiry_buttons img_btn_hidden' id='inquiry_buttons' onclick="event.stopPropagation();">
|
|
|
+ <span style='display:none;' id='image_purchase' class='clean_a'>
|
|
|
+ <b><a id='image_purchase_button' target="_blank">¥<?=$this->T('购买印刷品')?></a></b>
|
|
|
+ <br class='hidden_on_desktop block_on_mobile' /></span>
|
|
|
+ <b><a class='clean_a' id='image_download'><span id='download_processing'>↓</span><?=$this->T('下载')?></a></b>
|
|
|
+ <?php if(isset($this->EMail) && $this->EMail!=""){ ?>
|
|
|
+ <a class='clean_a' id='image_inquiry'>
|
|
|
+ <b>@</b><?=$this->T('咨询')?></a>
|
|
|
+ <?php } ?><hr class='hidden_on_desktop block_on_mobile' />
|
|
|
+ </div>
|
|
|
+ <div id='big_image_share' class='clean_a' onclick="event.stopPropagation();">
|
|
|
+ <li>
|
|
|
+ <a id='big_share_copy'>📋︎</a>
|
|
|
+ <a id='big_share_pin' target='_blank'>Pin</a>
|
|
|
+ <a id='big_share_twitter' target='_blank'>Twitter</a>
|
|
|
+ <a id='big_share_weibo' target='_blank'><?=$this->T('微博')?></a>
|
|
|
+ </li>
|
|
|
+ <hr />
|
|
|
+ </div>
|
|
|
+ <div id='big_image_info' onclick="event.stopPropagation();"></div>
|
|
|
+ <?php if($this->LoggedIn){ ?><div id='big_image_ops' onclick="event.stopPropagation();">
|
|
|
+ <br /><?=$this->T('印刷品链接')?>
|
|
|
+ <form action="" method="post" style='display:none;' id='image_ops_form'></form>
|
|
|
+ <input type='text' id='image_ops_product_link' name='image_ops_product_link' form="image_ops_form" >
|
|
|
+ <?=$this->T('重命名')?>
|
|
|
+ <input type='text' id='image_edit_new_name' name='image_edit_new_name' form="image_ops_form" >
|
|
|
+ <input class='button' form="image_ops_form" type="submit" name='image_button' value=<?=$this->T('保存')?> />
|
|
|
+ <br /><br /><?=$this->T('替换图像')?>
|
|
|
+ <form action="" method="post" style='display:none;' id='image_edit_form' enctype="multipart/form-data"></form>
|
|
|
+ <input type="file" form='image_edit_form'
|
|
|
+ id='big_image_upload' name='upload_file_name' accept="image/x-png,image/png,image/gif,image/jpeg"/><br />
|
|
|
+ <input class='button' form="image_edit_form" type="submit" name='image_replace_button'
|
|
|
+ value=<?=$this->T('执行')?> />
|
|
|
+ </div><?php } ?>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </div><!-- page -->
|
|
|
+ </body>
|
|
|
+ </html>
|
|
|
+ <script>
|
|
|
+ <?=$this->ExtraScripts?>
|
|
|
+ if(back = document.getElementById('button_back')){
|
|
|
+ if(document.referrer.indexOf(location.protocol + "//" + location.host) == 0){
|
|
|
+ back.href='javascript:history.back()';
|
|
|
+ }else{
|
|
|
+ back.href='index.php';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function copy_text(t) {
|
|
|
+ ta = document.createElement('textarea');
|
|
|
+ document.body.appendChild(ta);
|
|
|
+ ta.value = t;
|
|
|
+ ta.select();
|
|
|
+ document.execCommand("copy");
|
|
|
+ document.body.removeChild(ta);
|
|
|
+ }
|
|
|
+ if(trans = document.getElementById('translate_button')){
|
|
|
+ trans.href='https://translate.google.com/translate?sl=auto&tl=en-US&u='+encodeURIComponent(document.location.href);
|
|
|
+ }
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ function ShowSideUploader(){
|
|
|
+ ShowRightSide(true,null);
|
|
|
+ put = document.querySelector("#_uploader");
|
|
|
+ put.style.display='block';
|
|
|
+ RefreshSideGallery();
|
|
|
+ }
|
|
|
+ dmark = document.querySelector("#mark_details");
|
|
|
+ drename = document.querySelector("#rename_details");
|
|
|
+ drename_form = document.querySelector("#post_rename_form");
|
|
|
+ drename_input = document.querySelector("#post_rename_name");
|
|
|
+ var rp = document.querySelector('#post_reply_to');
|
|
|
+ var _reply_to = rp?rp.defaultValue:"";
|
|
|
+ function RestoreReply(){
|
|
|
+ if(rp){
|
|
|
+ rp.defaultValue = _reply_to;
|
|
|
+ }
|
|
|
+ document.querySelector('#post_reply_restore').style.display='none';
|
|
|
+ ht = document.querySelector('#post_hint_text');
|
|
|
+ if (_reply_to!=""){
|
|
|
+ ht.style.display='block';
|
|
|
+ ht.innerHTML="<?=$this->T('继续补充该话题:')?>";
|
|
|
+ }else{
|
|
|
+ ht.style.display='none';
|
|
|
+ }
|
|
|
+ document.querySelector('#post_edit_target').value="";
|
|
|
+ }
|
|
|
+ function MakeRefer(id){
|
|
|
+ t = document.querySelector('#post_content')
|
|
|
+ t.focus();
|
|
|
+ v = t.value;
|
|
|
+ t.value = v.slice(0, t.selectionStart) + "[<?=$this->T('引用文章')?>]("+id.toString()+")" + v.slice(t.selectionEnd);
|
|
|
+ la_auto_grow(t);
|
|
|
+ if(rp){
|
|
|
+ rp.defaultValue = "";
|
|
|
+ ht = document.querySelector('#post_hint_text');
|
|
|
+ ht.innerHTML = "<?=$this->T('引用并发送新话题:')?>"; ht.style.display='block';
|
|
|
+ document.querySelector('#post_reply_restore').style.display='inline';
|
|
|
+ rs = document.querySelector('#post_reply_restore');
|
|
|
+ rs.style.display='inline'; rs.innerHTML="<?=$this->T('切换为回复')?>";
|
|
|
+ document.getElementById('post_menu').style.display='none';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function CopyRefer(id){
|
|
|
+ copy_text(id.toString());
|
|
|
+ menu.querySelector('#menu_refer_copy').innerHTML="<?=$this->T('已复制')?>";
|
|
|
+ }
|
|
|
+ function MakeEdit(id){
|
|
|
+ ed = document.getElementById('menu_edit');
|
|
|
+ ed.innerHTML="<?=$this->T('稍等')?>";
|
|
|
+ ed.href="#";
|
|
|
+ var xhr = new XMLHttpRequest();
|
|
|
+ xhr.onreadystatechange = function() {
|
|
|
+ if (this.readyState == 4 && this.status == 200) {
|
|
|
+ ed.innerHTML='——';
|
|
|
+ ht = document.querySelector('#post_hint_text');
|
|
|
+ ht.innerHTML = "<?=$this->T('修改帖子:')?>"; ht.style.display='block';
|
|
|
+ rs = document.querySelector('#post_reply_restore');
|
|
|
+ rs.style.display='inline'; rs.innerHTML="<?=$this->T('取消')?>";
|
|
|
+ t = document.querySelector('#post_content');
|
|
|
+ t.value=xhr.responseText.trim();
|
|
|
+ t.focus();
|
|
|
+ la_auto_grow(t);
|
|
|
+ document.querySelector('#post_edit_target').value=id;
|
|
|
+ document.getElementById('post_menu').style.display='none';
|
|
|
+ }
|
|
|
+ };
|
|
|
+ xhr.open("GET", "index.php?post="+id.toString()+'&post_original=true', true);
|
|
|
+ xhr.send();
|
|
|
+ }
|
|
|
+ function MarkDelete(id){
|
|
|
+ p = document.querySelector('[data-post-id="'+id+'"]');
|
|
|
+ op = p.dataset.markDelete?"false":"true";
|
|
|
+ window.location.href=
|
|
|
+ "index.php?<?=isset($_GET['post'])?('post='.$_GET['post']):""?>&mark_delete="+op+'&target='+id.toString();
|
|
|
+ }
|
|
|
+ function SetMark(mark){
|
|
|
+ menu = document.getElementById('post_menu');
|
|
|
+ window.location.href=
|
|
|
+ "index.php?<?=isset($_GET['post'])?('post='.$_GET['post']):""?>&target="+
|
|
|
+ menu.parentNode.dataset.postId+"&set_mark="+mark;
|
|
|
+ }
|
|
|
+ function ToggleMarkDetails(){
|
|
|
+ if(dmark.style.display=='block') dmark.style.display='none';
|
|
|
+ else dmark.style.display='block';
|
|
|
+ }
|
|
|
+ function ToggleRenameDetails(){
|
|
|
+ if(drename.style.display=='block') drename.style.display='none';
|
|
|
+ else drename.style.display='block';
|
|
|
+ }
|
|
|
+ <?php } ?>
|
|
|
+ function ShowPostMenu(post){
|
|
|
+ menu = document.getElementById('post_menu');
|
|
|
+ menu.style.display='block';
|
|
|
+ menu.parentNode.removeChild(menu);
|
|
|
+ post.appendChild(menu);
|
|
|
+ menu.style.display='block';
|
|
|
+ id = post.dataset.postId
|
|
|
+ menu.querySelector('#_time_hook').innerHTML = ''+id.substring(2,4)+'/'+id.substring(4,6)+'/'+id.substring(6,8)+
|
|
|
+ ' '+id.substring(8,10)+':'+id.substring(10,12);
|
|
|
+ window.onClick="HidePopMenu()";
|
|
|
+ menu.onClick=(function(event){
|
|
|
+ event.stopPropagation();
|
|
|
+ });
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ menu.querySelector('#menu_refer').href='javascript:MakeRefer(id)';
|
|
|
+ menu.querySelector('#menu_refer_copy').href='javascript:CopyRefer(id)';
|
|
|
+ ed = menu.querySelector('#menu_edit')
|
|
|
+ ed.href='javascript:MakeEdit(id)'; ed.innerHTML="<?=$this->T('修改')?>";
|
|
|
+ d = menu.querySelector('#menu_delete');
|
|
|
+ d.href='javascript:MarkDelete(\"'+id+'\")';
|
|
|
+ p = document.querySelector('[data-post-id="'+id+'"]');
|
|
|
+ d.innerHTML = p.dataset.markDelete?"<?=$this->T('恢复')?>":"<?=$this->T('删除')?>";
|
|
|
+ menu.querySelector('#mark_details').dataset.id=id;
|
|
|
+ drename_input.value=id;
|
|
|
+ drename_form.action="<?=$_SERVER['REQUEST_URI'];?>"+"&rename_post="+id;
|
|
|
+ <?php } ?>
|
|
|
+
|
|
|
+ title = document.title;
|
|
|
+ copy = document.getElementById('share_copy');
|
|
|
+ copy.innerHTML='📋︎';
|
|
|
+ copy.addEventListener("click", function(){
|
|
|
+ url = window.location
|
|
|
+ path = location.pathname
|
|
|
+ copy_text(url.protocol+"//"+url.host+path+"?post="+id);
|
|
|
+ this.innerHTML='📋︎✓︎';
|
|
|
+ });
|
|
|
+ document.getElementById('share_pin').href='https://www.pinterest.com/pin/create/button/?url='+
|
|
|
+ encodeURIComponent(window.location.href)+
|
|
|
+ //'&media='+abs_img+
|
|
|
+ '&description='+encodeURIComponent(title);
|
|
|
+ document.getElementById('share_twitter').href='http://twitter.com/share?text='+
|
|
|
+ encodeURIComponent(title)+
|
|
|
+ '&url='+window.location.href+
|
|
|
+ "&hashtags="
|
|
|
+ document.getElementById('share_weibo').href='https://service.weibo.com/share/share.php?title='+
|
|
|
+ encodeURIComponent(title)+
|
|
|
+ ': '+window.location.href
|
|
|
+ }
|
|
|
+ function HidePopMenu(){
|
|
|
+ var menus = document.querySelectorAll('.pop_menu');
|
|
|
+ [].forEach.call(menus, function(m){m.style.display='none';});
|
|
|
+ }
|
|
|
+ var posts = document.querySelectorAll('.center .post');
|
|
|
+ [].forEach.call(posts, function(p){
|
|
|
+ if(s=p.querySelector('._menu_hook')) s.addEventListener("click", function() {
|
|
|
+ ShowPostMenu(this.parentNode.parentNode);
|
|
|
+ });
|
|
|
+ });
|
|
|
+ var post_clickables = document.querySelectorAll('.center .post a');
|
|
|
+ [].forEach.call(post_clickables, function(p){
|
|
|
+ p.addEventListener("click", function(event){
|
|
|
+ event.stopPropagation();
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ function FindImage(imgsrc){
|
|
|
+ for(var i=0;i<document.images_filtered.length;i++){
|
|
|
+ if (document.images_filtered[i].dataset.imgsrc==imgsrc) return document.images_filtered[i]
|
|
|
+ }
|
|
|
+ return null
|
|
|
+ }
|
|
|
+
|
|
|
+ var dottime1;
|
|
|
+ var dottime2;
|
|
|
+
|
|
|
+ function ToDataURL(url) {
|
|
|
+ return fetch(url).then((response) => {return response.blob();}).then(blob => {
|
|
|
+ clearTimeout(dottime1);clearTimeout(dottime2);
|
|
|
+ ps = document.querySelector('#download_processing');
|
|
|
+ ps.innerHTML='↓';ps.style.opacity='';
|
|
|
+ return URL.createObjectURL(blob);});
|
|
|
+ }
|
|
|
+ async function DownloadAsImage(url,name) {
|
|
|
+ const a = document.createElement("a"); a.href = await ToDataURL(url); a.download = name;
|
|
|
+ document.body.appendChild(a); a.click(); document.body.removeChild(a);
|
|
|
+ }
|
|
|
+ function basename(url){return url.split(/[\\/]/).pop();}
|
|
|
+
|
|
|
+ pushed=0;
|
|
|
+ function ShowBigImage(imgsrc,do_push){
|
|
|
+ ShowWaitingBar();
|
|
|
+ share = document.querySelector('#big_image_share');
|
|
|
+ img = document.querySelector('#big_image');
|
|
|
+ down = document.querySelector('#image_download');
|
|
|
+ img.src = "";
|
|
|
+ img.src = src = "images/"+imgsrc;
|
|
|
+ down.href="images/"+imgsrc;
|
|
|
+ var downname='<?=$this->T($this->Title);?>_<?=$this->T($this->DisplayName);?>_+<?=$this->GiveSafeEMail()?>+_'+
|
|
|
+ basename(down.href);
|
|
|
+ img.alt = downname; down.download=downname;
|
|
|
+ var use_href = "images/"+imgsrc;
|
|
|
+
|
|
|
+ down.onclick=function(event){event.stopPropagation();event.preventDefault();
|
|
|
+ ps = this.querySelector('#download_processing');ps.innerText='…';
|
|
|
+ var dotwait = function(ps){ var self = this;
|
|
|
+ dottime1 = setTimeout(function(ps){
|
|
|
+ ps.style.opacity='0'; dottime2 = setTimeout(function(ps){ps.style.opacity='1'; dotwait(ps);},300,ps); },300,ps) }
|
|
|
+ dotwait(this.querySelector('#download_processing'));
|
|
|
+ DownloadAsImage(use_href,downname);};
|
|
|
+
|
|
|
+
|
|
|
+ if(do_push){PushGalleryHistory(src)}
|
|
|
+
|
|
|
+ page_url = encodeURIComponent(window.location.href);
|
|
|
+
|
|
|
+ <?php if(isset($this->EMail) && $this->EMail!=""){ ?>
|
|
|
+ inqb = document.querySelector('#image_inquiry');
|
|
|
+ inqb.href="mailto:<?=$this->T($this->DisplayName);?>\<<?=$this->EMail?>\>?subject=<?=$this->T('网站图片咨询');?>&body="+
|
|
|
+ encodeURIComponent("<?=$this->T('你好!我对你网站上的这张图片感兴趣:')?>"+'\n\n')+
|
|
|
+ (page_url)+encodeURIComponent('\n\n');
|
|
|
+ <?php } ?>
|
|
|
+
|
|
|
+ this_image = FindImage(imgsrc);
|
|
|
+ if(this_image.dataset.prevsrc){
|
|
|
+ new_image = FindImage(this_image.dataset.prevsrc);
|
|
|
+ new_prev = new_image?new_image.dataset.prevsrc:null;
|
|
|
+ im = document.querySelector('#prev_image');
|
|
|
+ if(new_prev) {im.href='javascript:ShowBigImage("'+this_image.dataset.prevsrc+'",'+do_push+')';im.style.opacity='';}
|
|
|
+ else {im.style.opacity='0';im.removeAttribute("href");}
|
|
|
+ }
|
|
|
+ if(this_image.dataset.nextsrc){
|
|
|
+ new_image = FindImage(this_image.dataset.nextsrc);
|
|
|
+ new_next = new_image?new_image.dataset.nextsrc:null;
|
|
|
+ im = document.querySelector('#next_image');
|
|
|
+ if(new_next) {im.href='javascript:ShowBigImage("'+this_image.dataset.nextsrc+'",'+do_push+')';im.style.opacity='';}
|
|
|
+ else {im.style.opacity='0';im.removeAttribute("href");}
|
|
|
+ }
|
|
|
+ purchase = document.querySelector('#image_purchase');
|
|
|
+ purchase_btn = document.querySelector('#image_purchase_button');
|
|
|
+ <?php if($this->LoggedIn){ ?>
|
|
|
+ product_link = document.querySelector('#image_ops_product_link');
|
|
|
+ product_form = document.querySelector('#image_ops_form');
|
|
|
+ edit_form = document.querySelector('#image_edit_form');
|
|
|
+ edit_new_name = document.querySelector('#image_edit_new_name');
|
|
|
+ product_form.action = window.location.href;
|
|
|
+ edit_form.action = window.location.href;
|
|
|
+ edit_new_name.value = imgsrc.split('.')[0];
|
|
|
+ if(this_image.dataset.product){
|
|
|
+ product_link.value = this_image.dataset.product;
|
|
|
+ }else{
|
|
|
+ product_link.value = "";
|
|
|
+ }
|
|
|
+ <?php } ?>
|
|
|
+ if(this_image.dataset.product){
|
|
|
+ purchase.style.display='';
|
|
|
+ href = this_image.dataset.product;
|
|
|
+ if(this_image.dataset.product.match('^[0-9]{14}$')){
|
|
|
+ href = '?post='+href;
|
|
|
+ }
|
|
|
+ purchase_btn.href = href;
|
|
|
+ }else{
|
|
|
+ purchase.style.display='none';
|
|
|
+ purchase_btn.removeAttribute("href");
|
|
|
+ }
|
|
|
+
|
|
|
+ DelayHideImgBtn(null);
|
|
|
+
|
|
|
+ title = encodeURIComponent(document.title);
|
|
|
+ copy = document.getElementById('big_share_copy');
|
|
|
+ copy.innerHTML='📋︎';
|
|
|
+ copy.addEventListener("click", function(){
|
|
|
+ copy_text(window.location.href);
|
|
|
+ this.innerHTML='📋︎✓︎';
|
|
|
+ });
|
|
|
+ document.getElementById('big_share_pin').href='https://www.pinterest.com/pin/create/button/?url='+
|
|
|
+ page_url+'&media='+window.location.host+'/'+src+'&description='+title;
|
|
|
+ document.getElementById('big_share_twitter').href='http://twitter.com/share?text='+
|
|
|
+ title+'&url='+page_url+"&hashtags=";
|
|
|
+ document.getElementById('big_share_weibo').href='https://service.weibo.com/share/share.php?title='+
|
|
|
+ title+': '+page_url;
|
|
|
+
|
|
|
+ o = document.querySelector('#big_image_overlay');
|
|
|
+ info = document.querySelector('#big_image_info');
|
|
|
+ info.innerHTML="<?=$this->T('正在查询……')?>";
|
|
|
+ o.style.display="block";
|
|
|
+ ShowBackdrop(0.8);
|
|
|
+ var xhr = new XMLHttpRequest();
|
|
|
+ xhr.onreadystatechange = function() {
|
|
|
+ if (this.readyState == 4 && this.status == 200) {
|
|
|
+ info = document.querySelector('#big_image_info');
|
|
|
+ var response = xhr.responseText;
|
|
|
+ let content=""
|
|
|
+ if(res = response.match(/<ref>(.*)<\/ref>/u)){
|
|
|
+ content="<span class='small'><?=$this->T('该图片出现在')?> "+res[1]+" <?=$this->T('个帖子中')?></span>"+content;
|
|
|
+ }else{content="<span class='smaller gray'><?=$this->T('该图片未被引用')?></span>"+content;}
|
|
|
+ if(res = response.match(/<insert>([\s\S]*)<\/insert>/u)){
|
|
|
+ content+="<div class='clean_a'>"+res[1]+"</div>";
|
|
|
+ }
|
|
|
+
|
|
|
+ info.innerHTML=content;
|
|
|
+ }
|
|
|
+ };
|
|
|
+ xhr.open("GET", "index.php?image_info="+imgsrc+"", true);
|
|
|
+ xhr.send();
|
|
|
+ }
|
|
|
+ function HideBigImage(do_push){
|
|
|
+ o = document.querySelector('#big_image_overlay');
|
|
|
+ img = document.querySelector('#big_image');
|
|
|
+ img.src = "";
|
|
|
+ o.style.display="none";
|
|
|
+ HideBackdrop();
|
|
|
+ if(do_push){PushGalleryHistory("");}
|
|
|
+ HideWaitingBar();
|
|
|
+ }
|
|
|
+ var lbtn=document.querySelector('#prev_image'),rbtn=document.querySelector('#next_image');
|
|
|
+ var inq=document.querySelector('#inquiry_buttons');
|
|
|
+ var overlay=document.querySelector('#big_image_overlay');
|
|
|
+ var hide_timeout;
|
|
|
+ function DontHideImgBtn(e){ clearTimeout(hide_timeout); e.stopPropagation(); }
|
|
|
+ function DelayHideImgBtn(e){
|
|
|
+ lbtn.classList.remove('img_btn_hidden');
|
|
|
+ rbtn.classList.remove('img_btn_hidden');
|
|
|
+ inq.classList.remove('img_btn_hidden');
|
|
|
+ clearTimeout(hide_timeout);
|
|
|
+ hide_timeout = setTimeout(function(e1,e2,e3){e1.classList.add('img_btn_hidden');
|
|
|
+ e2.classList.add('img_btn_hidden');
|
|
|
+ e3.classList.add('img_btn_hidden');}, 1000, lbtn, rbtn, inq);
|
|
|
+ }
|
|
|
+ lbtn.addEventListener('mousemove',DontHideImgBtn);lbtn.addEventListener('mouseover',DontHideImgBtn);
|
|
|
+ rbtn.addEventListener('mousemove',DontHideImgBtn);rbtn.addEventListener('mouseover',DontHideImgBtn);
|
|
|
+ inq.addEventListener('mousemove',DontHideImgBtn);inq.addEventListener('mouseover',DontHideImgBtn);
|
|
|
+ overlay.addEventListener('mousemove',DelayHideImgBtn);
|
|
|
+ var images = document.querySelectorAll('img');
|
|
|
+ var images_filtered=new Array(); var imgadded = new Array();
|
|
|
+ var images_remaining=new Array();
|
|
|
+ [].forEach.call(images, function(img){
|
|
|
+ if(img.classList.contains("no_pop") || (!(imgsrc = img.dataset.imgsrc))) return;
|
|
|
+ if(imgadded.indexOf(imgsrc)>=0) {images_remaining.push(img); return;}
|
|
|
+ images_filtered.push(img);imgadded.push(imgsrc);
|
|
|
+ });
|
|
|
+ for(var i=0; i<images_filtered.length; i++){
|
|
|
+ previmg = nextimg = null; img = images_filtered[i];
|
|
|
+ if(i>0) previmg=images_filtered[i-1];
|
|
|
+ if(i<images_filtered.length-1) nextimg=images_filtered[i+1];
|
|
|
+ prevsrc=previmg?previmg.dataset.imgsrc:null; nextsrc=nextimg?nextimg.dataset.imgsrc:null;
|
|
|
+ img.dataset.prevsrc = prevsrc; img.dataset.nextsrc = nextsrc;
|
|
|
+ function wrap(imgsrc){return function(){ShowBigImage(imgsrc, 1);}}
|
|
|
+ img.addEventListener("click", wrap(img.dataset.imgsrc));
|
|
|
+ }
|
|
|
+ for(var i=0; i<images_remaining.length; i++){
|
|
|
+ img = images_remaining[i];
|
|
|
+ function wrap(imgsrc){return function(){ShowBigImage(imgsrc, 1);}}
|
|
|
+ img.addEventListener("click", wrap(img.dataset.imgsrc));
|
|
|
+ }
|
|
|
+ document.images_filtered = images_filtered;
|
|
|
+ function PopGalleryHistory(){
|
|
|
+ if(pushed){
|
|
|
+ pushed = 0;
|
|
|
+ try{
|
|
|
+ history.back();
|
|
|
+ }catch{
|
|
|
+ console.log("can't do it.");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function PushGalleryHistory(src){
|
|
|
+ abs_img = window.location.protocol+"//"+window.location.host+'/'+src
|
|
|
+ title = "照片"
|
|
|
+ extra = "?";
|
|
|
+ sp = new URLSearchParams(window.location.search)
|
|
|
+ if(sp.has('post')){extra+="post="+sp.get('post')}
|
|
|
+ if(sp.has('gallery')){extra+="&gallery="+sp.get('gallery')}
|
|
|
+ try{
|
|
|
+ window.history.pushState('&pic='+src, 'Title', extra+'&pic='+src);
|
|
|
+ }catch{
|
|
|
+ console.log("can't do it.");
|
|
|
+ }
|
|
|
+ pushed = 1;
|
|
|
+ }
|
|
|
+ document.addEventListener('keydown', function(e){
|
|
|
+ large = document.getElementById('big_image_overlay')
|
|
|
+ if (large.style.display!='block') return;
|
|
|
+ if(e.key=='Escape'||e.key=='Esc'||e.keyCode==27){
|
|
|
+ HideBigImage(1);
|
|
|
+ }
|
|
|
+ }, true);
|
|
|
+ window.addEventListener('popstate', (event) => {
|
|
|
+ if(event.state){
|
|
|
+ let sp = new URLSearchParams(event.state)
|
|
|
+ if(sp.has('pic')){
|
|
|
+ src = sp.get('pic')
|
|
|
+ if(onlyimg = src.match(/[0-9]{14,}.(jpg|png|jpeg|gif)/u)) ShowBigImage(onlyimg[0], 0);
|
|
|
+ else{HideBigImage(0);}
|
|
|
+ }
|
|
|
+ }else{HideBigImage(0);}
|
|
|
+ });
|
|
|
+
|
|
|
+ let searchParams = new URLSearchParams(window.location.search)
|
|
|
+ if(searchParams.has('pic')){
|
|
|
+ src = searchParams.get('pic')
|
|
|
+ if(onlyimg = src.match(/[0-9]{14,}.(jpg|png|jpeg|gif)/u)){
|
|
|
+ ShowBigImage(onlyimg[0], 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function _dropHandler(event){ if (typeof dropHandler === "function") dropHandler(event); }
|
|
|
+ function _dragOverHandler(event){ if (typeof dragOverHandler === "function") dragOverHandler(event); }
|
|
|
+ </script>
|
|
|
+ </body>
|
|
|
+ <?php
|
|
|
+ }
|
|
|
+
|
|
|
+ function DoIdentiyExperimental(){
|
|
|
+ //$this->InExperimentalMode = 1;
|
|
|
+
|
|
|
+ if(!isset($this->ExpHost) || $this->ExpHost=="") return;
|
|
|
+ if(preg_match('/'.preg_quote($this->ExpHost).'/u', $_SERVER['HTTP_HOST'])){
|
|
|
+ $this->InExperimentalMode=True;
|
|
|
+ }
|
|
|
+ if(!$this->CurrentPostID && $this->InExperimentalMode){
|
|
|
+ $this->CurrentPostID = $this->ExpIndex;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function DoExperimentalTopLink($p){
|
|
|
+ if($this->InExperimentalMode && $p){
|
|
|
+ if(isset($p['tid']) && $p['tid']['first']!=$p){
|
|
|
+ header('Location: ?post='.$p['tid']['first']['id']); exit();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function MakeExperimentalConfirm(){
|
|
|
+ if(isset($_COOKIE['la_experimental']) && $_COOKIE['la_experimental'] == 'confirmed'){
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ $caution_html =
|
|
|
+ $confirm = "<a class='text_highlight clean_a bold' href='index.php?confirm_enter=1".
|
|
|
+ (isset($this->CurrentPostID)?("&post=".$this->CurrentPostID):"").
|
|
|
+ "'> ".$this->T('继续')." </a>";
|
|
|
+ ?>
|
|
|
+ <div class='center_exp'><?php
|
|
|
+ if(isset($this->ExpCaution) && ($p=$this->GetPost($this->ExpCaution)))$this->MakeSinglePostExp($p);
|
|
|
+ else echo "<li class='post post_dummy'>".$this->TranslatePostParts("<h1>注意</h1><p>您将进入实验站。</p>")."</li>";
|
|
|
+ ?></div>
|
|
|
+ <div class='center_exp'><li class='post post_dummy'><p><?=$confirm?></p></li></div>
|
|
|
+ <?php return true;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+$la = new LA;
|
|
|
+
|
|
|
+$la->DoSiteRedirect();
|
|
|
+
|
|
|
+$la->DoLogin();
|
|
|
+
|
|
|
+$err = $la->ProcessRequest($message, $redirect);
|
|
|
+
|
|
|
+$la->DoIdentiyExperimental();
|
|
|
+
|
|
|
+$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);
|
|
|
+
|
|
|
+if(!$la->CanShowPost($p)) $p=NULL;
|
|
|
+else{ $la->DoExperimentalTopLink($p); }
|
|
|
+
|
|
|
+$la->MakeHeader($p);
|
|
|
+$la->MakeMainBegin();
|
|
|
+
|
|
|
+if($la->PageType=='experimental'){
|
|
|
+ if(!$la->MakeExperimentalConfirm()){
|
|
|
+ if($p){
|
|
|
+ $la->MakePostSectionExp($p);
|
|
|
+ $la->MakeLinkedPostsExp($p);
|
|
|
+ }else{
|
|
|
+ echo "<h2>".$la->T('未找到这个帖子')."</h2><p>".$_SERVER['REQUEST_URI'].
|
|
|
+ "</p><p><a href='index.php'>".$la->T('返回首页')."</a></p><br />";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $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->MakeLinkedPosts($p);
|
|
|
+ $la->MakePostSection($p);
|
|
|
+ $la->MakeTOC();
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ echo "<h2>".$la->T('未找到这个帖子')."</h2><p>".$_SERVER['REQUEST_URI'].
|
|
|
+ "</p><p><a href='index.php'>".$la->T('返回首页')."</a></p><br />";
|
|
|
+ }
|
|
|
+ }else if($la->PageType=='search'){
|
|
|
+ $la->MakeHotPosts(true);
|
|
|
+ $la->MakeRecentPosts($_GET['search']);
|
|
|
+ }else if($la->PageType=='category'){
|
|
|
+ $la->MakeHotPosts(true);
|
|
|
+ $la->MakeRecentPosts(NULL,$_GET['category']);
|
|
|
+ }else if($la->PageType=='comments'){
|
|
|
+ $la->MakeCommentPosts();
|
|
|
+ }else{
|
|
|
+ $la->MakeHotPosts();
|
|
|
+ $la->MakeRecentPosts();
|
|
|
+ }
|
|
|
+ $la->MakeMainEnd();
|
|
|
+ $la->MakeFooter();
|
|
|
+}
|
|
|
+
|
|
|
+?>
|
|
|
+
|