*/}}

index.php 209 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981
  1. <?php
  2. include 'Parsedown.php';
  3. include 'ParsedownExtra.php';
  4. ini_set('display_errors', '1');
  5. ini_set('display_startup_errors', '1');
  6. error_reporting(E_ALL);
  7. class LA{
  8. protected $PDE;
  9. protected $style;
  10. /* config */
  11. protected $Title;
  12. protected $ShortTitle;
  13. protected $Admin;
  14. protected $Password;
  15. protected $DisplayName;
  16. protected $EMail;
  17. protected $SpecialNavigation;
  18. protected $SpecialFooter;
  19. protected $SpecialFooter2;
  20. protected $SpecialPinned;
  21. protected $DefaultGallery;
  22. protected $ExpHost;
  23. protected $ExpTitle;
  24. protected $ExpShortTitle;
  25. protected $ExpCaution;
  26. protected $ExpIndex;
  27. protected $ExpNavigation;
  28. protected $ExpFooter;
  29. protected $CommentEnabled;
  30. protected $Redirect;
  31. protected $Translations;
  32. protected $CustomTranslationContent;
  33. protected $CurrentOffset;
  34. protected $PostsPerPage;
  35. protected $HotPostCount;
  36. protected $LoggedIn;
  37. protected $LoginTokens;
  38. protected $InExperimentalMode;
  39. protected $LanguageAppendix;
  40. protected $Posts;
  41. protected $Threads; // [ keys: first last displayed count]
  42. protected $Images;
  43. protected $Galleries;
  44. protected $Anchors;
  45. protected $ArchiveHandles;
  46. protected $Archive;
  47. public $WayBack;
  48. protected $YearBegin;
  49. protected $YearEnd;
  50. protected $Markers;
  51. protected $ExtraScripts;
  52. protected $TIME_STRING;
  53. protected $NULL_POST;
  54. protected $NULL_IMAGE;
  55. protected $NULL_Gallery;
  56. public $PageType;
  57. public $CurrentPostID;
  58. function ReadableTime($id){
  59. $dt = DateTime::createFromFormat('YmdHis', $id);
  60. return $dt->format('Y/m/d H:i:s');
  61. }
  62. function FullURL(){
  63. return (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ?
  64. "https" : "http") . "://" . $_SERVER['HTTP_HOST'] .
  65. $_SERVER['REQUEST_URI'];
  66. }
  67. function T($str){
  68. if(!$this->LanguageAppendix) return $str;
  69. foreach($this->Translations as $entry){
  70. if($entry['zh']==$str)
  71. return $entry[$this->LanguageAppendix];
  72. }
  73. return $str;
  74. }
  75. function SwitchLanguage(){
  76. if(isset($_COOKIE['la_language'])){
  77. $this->LanguageAppendix = $_COOKIE['la_language'];
  78. }else{
  79. if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
  80. $lang = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
  81. $lang = substr($lang,0,5);
  82. if(preg_match("/zh/i",$lang))$this->LanguageAppendix = 'zh';
  83. else $this->LanguageAppendix = 'en';
  84. }
  85. }
  86. }
  87. function SwitchWayBackMode(){
  88. if(isset($_COOKIE['la_wayback'])){
  89. $this->WayBack = $_COOKIE['la_wayback'];
  90. }else $this->WayBack = NULL;
  91. }
  92. function DisplayRedirectConfig(){
  93. $s = "";
  94. if(isset($this->Redirect) && isset($this->Redirect[0])) foreach($this->Redirect as $r){
  95. if($r['for']=='P'){
  96. $s.=("P ".$r['format'].":".$r['target'].";".PHP_EOL);
  97. }else if($r['for']=='S'){
  98. $s.=("S ".$r['format'].":".$r['domain'].":".$r['target'].";".PHP_EOL);
  99. }
  100. }
  101. return $s;
  102. }
  103. function DoSiteRedirect(){
  104. if(isset($this->Redirect) && isset($this->Redirect[0])) foreach($this->Redirect as $r){
  105. if($r['for']=='S'){
  106. if(preg_match('/'.$r['format'].'/ui', $_SERVER['HTTP_HOST'])){
  107. if($_SERVER['REQUEST_URI']=='/'||$_SERVER['REQUEST_URI']==''){
  108. header('Location:https://'.$r['domain'].'/index.php?post='.$r['target']); exit;
  109. }else{
  110. header('Location:https://'.$r['domain'].$_SERVER['REQUEST_URI']); exit;
  111. }
  112. }
  113. }
  114. }
  115. }
  116. function WriteHTACCESS(){
  117. $conf = fopen('.htaccess','w');
  118. fwrite($conf,"RewriteEngine on".PHP_EOL.PHP_EOL);
  119. if(isset($this->Redirect) && isset($this->Redirect[0])) foreach($this->Redirect as $r){
  120. if($r['for']=='P'){
  121. fwrite($conf,"RewriteRule ^".$r['format'].'$ /index.php?post='.$r['target'].' [R=302,L]'.PHP_EOL.PHP_EOL);
  122. }// do site redirect in php.
  123. }
  124. fwrite($conf, 'RewriteCond %{HTTPS} !=on'.PHP_EOL.
  125. 'RewriteCond %{HTTP_HOST} !=localhost'.PHP_EOL.
  126. 'RewriteCond %{REQUEST_URI} !^.*(jpg|png|gif)$'.PHP_EOL.
  127. 'RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]'.PHP_EOL.PHP_EOL);
  128. fwrite($conf, 'RewriteCond %{HTTP_HOST} !^www\.'.PHP_EOL.
  129. 'RewriteCond %{HTTP_HOST} !=localhost'.PHP_EOL.
  130. 'RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]'.PHP_EOL.PHP_EOL);
  131. fwrite($conf,'<Files ~ "\.md$">'.PHP_EOL.'deny from all'.PHP_EOL.'</Files>'.PHP_EOL);
  132. fflush($conf);fclose($conf);
  133. }
  134. function BuildRedirectConfig($conf){
  135. $this->Redirect=[];
  136. if(preg_match_all('/P\s+(.*)\:\s*([0-9]{14})\s*;/u',$conf,$ma,PREG_SET_ORDER)){
  137. foreach($ma as $m){
  138. $redirect=[]; $redirect['for'] = 'P'; $redirect['format'] = $m[1]; $redirect['target'] = $m[2];
  139. $this->Redirect[]=$redirect;
  140. }
  141. }
  142. if(preg_match_all('/S\s+(\S+)\s*\:\s*(\S+)\s*\:\s*([0-9]{14})\s*;/u',$conf,$ma,PREG_SET_ORDER)){
  143. foreach($ma as $m){
  144. $redirect=[]; $redirect['for'] = 'S'; $redirect['format'] = $m[1]; $redirect['domain'] = $m[2]; $redirect['target'] = $m[3];
  145. $this->Redirect[]=$redirect;
  146. }
  147. }
  148. }
  149. function WriteTokens(){
  150. $tf = fopen('la_tokens.md','w');
  151. if(isset($this->LoginTokens) && sizeof($this->LoginTokens)) {
  152. foreach($this->LoginTokens as $t){
  153. fwrite($tf,'- '.$t.PHP_EOL);
  154. }
  155. }
  156. fflush($tf);fclose($tf);
  157. }
  158. function WriteConfig(){
  159. if(!isset($this->Title)) $this->Title = $this->T('那么的维基');
  160. if(!isset($this->ShortTitle)) $this->ShortTitle = $this->T('基');
  161. if(!isset($this->Admin)) $this->Admin = 'admin';
  162. if(!isset($this->DisplayName)) $this->DisplayName = $this->T('管理员');
  163. if(!isset($this->Password)) $this->Password = password_hash('Admin', PASSWORD_DEFAULT).PHP_EOL;
  164. $conf = fopen('la_config.md','w');
  165. fwrite($conf,'- Title = '.$this->Title.PHP_EOL);
  166. fwrite($conf,'- ShortTitle = '.$this->ShortTitle.PHP_EOL);
  167. fwrite($conf,'- Admin = '.$this->Admin.PHP_EOL);
  168. fwrite($conf,'- DisplayName = '.$this->DisplayName.PHP_EOL);
  169. fwrite($conf,'- Password = '.$this->Password.PHP_EOL);
  170. fwrite($conf,'- EMail = '.$this->EMail.PHP_EOL);
  171. fwrite($conf,'- SpecialNavigation = '.$this->SpecialNavigation.PHP_EOL);
  172. fwrite($conf,'- SpecialFooter = '.$this->SpecialFooter.PHP_EOL);
  173. fwrite($conf,'- SpecialFooter2 = '.$this->SpecialFooter2.PHP_EOL);
  174. fwrite($conf,'- SpecialPinned = '.$this->SpecialPinned.PHP_EOL);
  175. fwrite($conf,'- DefaultGallery = '.$this->DefaultGallery.PHP_EOL);
  176. fwrite($conf,'- CommentEnabled = '.($this->CommentEnabled?"True":"False").PHP_EOL);
  177. fwrite($conf,'- ExpHost = '.$this->ExpHost.PHP_EOL);
  178. fwrite($conf,'- ExpTitle = '.$this->ExpTitle.PHP_EOL);
  179. fwrite($conf,'- ExpShortTitle = '.$this->ExpShortTitle.PHP_EOL);
  180. fwrite($conf,'- ExpCaution = '.$this->ExpCaution.PHP_EOL);
  181. fwrite($conf,'- ExpIndex = '.$this->ExpIndex.PHP_EOL);
  182. fwrite($conf,'- ExpNavigation = '.$this->ExpNavigation.PHP_EOL);
  183. fwrite($conf,'- ExpFooter = '.$this->ExpFooter.PHP_EOL);
  184. fflush($conf);fclose($conf);
  185. $conf = fopen('la_redirect.md','w');
  186. fwrite($conf,$this->DisplayRedirectConfig());fflush($conf);fclose($conf);
  187. $this->WriteHTACCESS();
  188. $this->WriteTokens();
  189. }
  190. function Install(){
  191. if(!file_exists('la_config.md')){
  192. $this->WriteConfig();
  193. }
  194. if(!is_dir('posts')) mkdir('posts');
  195. if(!is_dir('images')) mkdir('images');
  196. if(!is_dir('images/thumb')) mkdir('images/thumb');
  197. if(!is_dir('styles')) mkdir('styles');
  198. if(!is_dir('archive')) mkdir('archive');
  199. $this->WriteStyles();
  200. $this->WriteHTACCESS();
  201. }
  202. function ReadConfig(){
  203. if(!file_exists('la_config.md')){
  204. $this->Install();
  205. }
  206. $c = file_get_contents('la_config.md');
  207. if(preg_match('/-\s*Title\s*=\s*(\S+)\s*$/um', $c, $m)) $this->Title = $m[1]; else $this->Title=$this->T("那么的维基");
  208. if(preg_match('/-\s*ShortTitle\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ShortTitle = $m[1]; else $this->ShortTitle=$this->T("基");
  209. if(preg_match('/-\s*Admin\s*=\s*(\S+)\s*$/um', $c, $m)) $this->Admin = $m[1];
  210. if(preg_match('/-\s*Password\s*=\s*(\S+)\s*$/um', $c, $m)) $this->Password = $m[1];
  211. if(preg_match('/-\s*DisplayName\s*=\s*(\S+)\s*$/um', $c, $m)) $this->DisplayName = $m[1];
  212. if(preg_match('/-\s*EMail\s*=\s*(\S+)\s*$/um', $c, $m)) $this->EMail = $m[1];
  213. if(preg_match('/-\s*SpecialNavigation\s*=\s*(\S+)\s*$/um', $c, $m)) $this->SpecialNavigation = $m[1];
  214. if(preg_match('/-\s*SpecialFooter\s*=\s*(\S+)\s*$/um', $c, $m)) $this->SpecialFooter = $m[1];
  215. if(preg_match('/-\s*SpecialFooter2\s*=\s*(\S+)\s*$/um', $c, $m)) $this->SpecialFooter2 = $m[1];
  216. if(preg_match('/-\s*SpecialPinned\s*=\s*(\S+)\s*$/um', $c, $m)) $this->SpecialPinned = $m[1];
  217. if(preg_match('/-\s*DefaultGallery\s*=\s*(\S+)\s*$/um', $c, $m)) $this->DefaultGallery = $m[1];
  218. if(preg_match('/-\s*CommentEnabled\s*=\s*(\S+)\s*$/um', $c, $m)) $this->CommentEnabled = ($m[1]=="True");
  219. if(preg_match('/-\s*ExpHost\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpHost = $m[1];
  220. if(preg_match('/-\s*ExpTitle\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpTitle = $m[1]; else $this->ExpTitle=$this->T("实验访问");
  221. if(preg_match('/-\s*ExpShortTitle\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpShortTitle = $m[1]; else
  222. $this->ExpShortTitle = $this->ExpTitle;
  223. if(preg_match('/-\s*ExpCaution\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpCaution = $m[1];
  224. if(preg_match('/-\s*ExpIndex\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpIndex = $m[1];
  225. if(preg_match('/-\s*ExpNavigation\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpNavigation = $m[1];
  226. if(preg_match('/-\s*ExpFooter\s*=\s*(\S+)\s*$/um', $c, $m)) $this->ExpFooter = $m[1];
  227. if(file_exists('la_redirect.md')){
  228. $c = file_get_contents('la_redirect.md');
  229. $this->BuildRedirectConfig($c);
  230. }
  231. $this->Translations=[];
  232. if(file_exists("translations.md")){
  233. $c = file_get_contents('translations.md');
  234. if(preg_match_all('/-\s+(\S.*)\s*\|\s*(\S.*)$/um',$c, $ma, PREG_SET_ORDER)) foreach($ma as $m){
  235. $entry = []; $entry['zh'] = trim($m[1]); $entry['en'] = trim($m[2]);
  236. $this->Translations[] = $entry;
  237. }
  238. }
  239. if(file_exists("custom_translations.md")){
  240. $this->CustomTranslationContent = file_get_contents('custom_translations.md');
  241. if(preg_match_all('/-\s+(\S.*)\s*\|\s*(\S.*)$/um',$this->CustomTranslationContent, $ma, PREG_SET_ORDER)) foreach($ma as $m){
  242. $entry = []; $entry['zh'] = trim($m[1]); $entry['en'] = trim($m[2]);
  243. $this->Translations[] = $entry;
  244. }
  245. }
  246. $this->LoginTokens=[];
  247. if(file_exists('la_tokens.md')){
  248. $c = file_get_contents('la_tokens.md');
  249. if(preg_match_all('/-\s+(\S.*)\s*$/um',$c, $ma, PREG_SET_ORDER)) foreach($ma as $m){
  250. $this->LoginTokens[] = $m[1];
  251. }
  252. }
  253. }
  254. function __construct() {
  255. $this->ReadConfig();
  256. $this->PDE = new ParsedownExtra();
  257. $this->PDE->SetInterlinkPath('/');
  258. $this->Posts = [];
  259. $this->Threads = [];
  260. $this->Markers=['●', '○', '✓', '×', '!', 'P', 'E', 'S'];
  261. $this->PostsPerPage = 40;
  262. $this->CommentsPerPage = 100;
  263. $this->HotPostCount = 15;
  264. $this->TIME_STRING = date('YmdHis');
  265. $this->WayBack = NULL;
  266. $this->YearBegin = $this->YearEnd = 2000;
  267. }
  268. function DoLogout(){
  269. $this->LoggedIn = false;
  270. unset($_SESSION['user_id']);
  271. $this->RecordToken(true);
  272. }
  273. function RecordToken($unset_current=false){
  274. if(isset($unset_current) && isset($_COOKIE['la_token'])){
  275. $t = $_COOKIE['la_token'];
  276. setcookie('la_token', null, -1); unset($_COOKIE['la_token']);
  277. if (($key = array_search($t,$this->LoginTokens)) !== false) { unset($this->LoginTokens[$key]); }
  278. $this->WriteTokens();
  279. return null;
  280. }else{
  281. $t = uniqid('la_',true);
  282. setcookie('la_token',$t,time()+3600*24*7); $_COOKIE['la_token'] = $t;
  283. $this->LoginTokens[] = $t;
  284. $this->WriteTokens();
  285. return $t;
  286. }
  287. }
  288. function LoginThroughToken(){
  289. if(!isset($_COOKIE['la_token'])) return false;
  290. $t = $_COOKIE['la_token'];
  291. if (($key = array_search($t,$this->LoginTokens)) !== false) {
  292. $_SESSION['user_id']=$this->Admin;
  293. $this->LoggedIn = true;
  294. setcookie('la_token',$t,time()+3600*24*7);
  295. return true;
  296. }
  297. return false;
  298. }
  299. function DoLogin(){
  300. session_start();
  301. $redirect=false;
  302. if(isset($_GET['logout'])){ $this->DoLogout(); header('Location:index.php'); }
  303. else if(!isset($_SESSION['user_id'])){
  304. if(isset($_POST['login_button'])){
  305. $id = trim($_POST['login_id']);
  306. $pwd = trim($_POST['login_password']);
  307. if(strtolower($this->Admin)==strtolower($id)&&password_verify($pwd, $this->Password)){
  308. $_SESSION['user_id']=$id;
  309. $this->RecordToken(false);
  310. }
  311. $redirect = true;
  312. }else if($this->LoginThroughToken()){
  313. // nothing;
  314. }
  315. }else{
  316. if(strtolower($_SESSION['user_id']) == strtolower($this->Admin)){ $this->LoggedIn = true; }
  317. else{ $this->DoLogout();}
  318. }
  319. if($redirect){
  320. header('Location:index.php'.(isset($_GET['post'])?("?post=".$_GET['post']):"")
  321. .(isset($_GET['settings'])?"?settings=true":""));
  322. }
  323. }
  324. function WriteStyles(){
  325. $this->style="
  326. html{font-size:18px;font-family:'Noto Serif CJK SC','Times New Roman','SimSun', Georgia, serif;}
  327. body{background-color:%white%;color:%black%;}
  328. sup,sub{line-height:0;}
  329. blockquote{border-left:2px solid %black%;padding-left:0.3em;}
  330. *{box-sizing:border-box;padding:0;margin:0;font-weight:normal;}
  331. b,strong,th{font-weight:bold;}
  332. .page,.page_gallery{padding:1em;padding-top:0;}
  333. .hidden_on_desktop,.hidden_on_wide{display:none;}
  334. .hidden_on_desktop_force{display:none !important;}
  335. ::file-selector-button{background:none;border:none;}
  336. a,button,::file-selector-button{text-decoration:underline;color:%black%;}
  337. a:hover,.button:hover,::file-selector-button:hover{text-decoration:none;color:%gray%;}
  338. .button:disabled{background-color:%gray%;pointer-events:none;}
  339. header{position:sticky;top:0;background-color:%white%;z-index:10;padding-top:0.5em;max-height:100vh;overflow:auto;z-index:30;}
  340. .header_nav{display:inline;}
  341. header a,.left a,.footer a,.clean_a,.clean_a a{text-decoration:none;}
  342. header a:hover,.button:hover{color:%gray% !important;}
  343. .footer{background-color:%white%;z-index:10;position:relative;}
  344. .invert_a,.invert_a a{color:%gray%;text-decoration:none;}
  345. .invert_a:hover,.invert_a a:hover{color:%black% !important;}
  346. .gray,.gray a{color:%gray%;}
  347. hr{border:1px solid %gray%;}
  348. header ul{display:inline-block;}
  349. header li{display:inline-block;}
  350. header li::before{content:' - '}
  351. header h1,header h2,header h3,header h4,header h5,header p{display:inline;font-size:1rem;}
  352. .main{position:relative;word-spacing:-1em;}
  353. .main *{word-spacing:initial;}
  354. pre{overflow:auto;max-width:100%;display:block;font-size:0.75em;}
  355. ul{display:block;}
  356. li{display:block;}
  357. table{width:100%;border-collapse:collapse;border-bottom:2px solid %black%;border-top:3px solid %black%;}
  358. table input{border:none!important;}
  359. table img{max-width:10rem !important;}
  360. td{padding-left:0.1em;padding-right:0.1em;}
  361. td:first-child{padding-left:0;}
  362. td:last-child{padding-right:0;}
  363. tbody tr:hover{box-shadow:inset 0 -2px 0 0px %black%;}
  364. thead{box-shadow:inset 0 -1px 0 0px %black%;position:sticky;top:2rem;background-color:%white%;z-index:5;}
  365. .post table{font-size:0.85em;}
  366. .interesting_tbody{background:linear-gradient(90deg, %white%ff, %white%88 20em);}
  367. .interesting_tbody td{display:contents;}
  368. .interesting_tbody tr{position:relative;scroll-margin:4.5em}
  369. .interesting_tbody td>*{display:table-cell;}
  370. .interesting_tbody .post_access{padding-top:0;}
  371. .interesting_tbody .post_menu_button{top:0;opacity:0;}
  372. .interesting_tbody td>img{position:absolute;left:1.4em;z-index:-1;height:1em;width:20em;
  373. display:block;top:0.2em;object-fit:cover;max-width:calc(100% - 1.4em) !important;}
  374. .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);}
  375. .interesting_tbody .p_thumb{height:1em;}
  376. .interesting_tbody .p_thumb img{max-height:10rem !important;max-width:20rem !important;}
  377. tr:hover .post_menu_button{opacity:1;}
  378. .post_current_row{background-color:%lightopbkg%;}
  379. .align_right{text-align:right;}
  380. .left{display:inline-block;vertical-align:top;width:25%;height:calc(100vh - 5.2em);top:2em;
  381. position:sticky;overflow:auto;padding-right:0.2em;padding-bottom:4rem;}
  382. .center{display:inline-block;vertical-align:top;width:50%;padding-left:0.3em;overflow:visible;padding-bottom:4rem;}
  383. .center_wide{display:inline-block;vertical-align:top;width:75%;padding-left:0.3em;overflow:visible;padding-bottom:4rem;}
  384. .center_full{display:inline-block;vertical-align:top;width:100%;overflow:visible;padding-bottom:4rem;}
  385. .center_wide .p_thumb{height:10rem;}
  386. .sticky_title{position:sticky;top:1.35em;z-index:1;box-shadow:6em 3.5em 0.75em -3em inset %white%;pointer-events:none;}
  387. .center_exp{display:block;width:80%;margin:0 auto;overflow:visible;padding-bottom:1em;}
  388. .table_top{position:relative;left:calc(-50% - 0.45em);width:calc(200% + 0.6em);background:%white%;z-index:1;
  389. box-shadow:0px 0px 2em 1em %white%;margin-top:2em;margin-bottom:2em;}
  390. .right{display:inline-block;vertical-align:top;width:25%;position:sticky;top:2em;
  391. padding-left:0.5em;height:calc(100vh - 2.6em);overflow:auto;padding-bottom:4rem;}
  392. textarea,input[type=text],input[type=password]{width:100%;display:block;font-family:inherit;max-height:60vh;font-size:inherit;}
  393. select,textarea,input[type=text],input[type=password]{background:none;border:none;border-bottom:1px solid %black%;color:%black%;}
  394. .button{background:none;border:none;font-family:inherit;color:%black%;font-size:inherit;font-weight:bold;}
  395. .post{position:relative;scroll-margin:3.5em;border-radius:0.3em;}
  396. .center_exp .post{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;border-radius:0;}
  397. .post_width li,.post_width_big li,.footer_additional li,.footer_additional li,.post_dummy li
  398. {display:list-item;margin-left:1em;list-style:'+ ';}
  399. .post_width li li,.post_width_big li li,.footer_additional li li,.footer_additional li li,.post_dummy li li{list-style:'- ';}
  400. .post_width > *,.post_width_big > *,.post_dummy > *,.post_ref > *{margin:0;margin-bottom:0.5rem}
  401. .post_dummy > *{width:60%;margin:0 auto;margin-bottom:0.5rem}
  402. .post_dummy > p img{display:block;width:100%;margin:0 auto;}
  403. .gallery_left li{display:list-item;margin-left:1em;list-style:none;}
  404. .gallery_left .selected{list-style:'→';}
  405. .focused_post{font-size:1.2em;margin-top:0.1em;margin-bottom:0.1em;padding:0.5rem !important;border:2px dashed #ac7843;}
  406. .post_width{position:relative;left:1.4rem;width:calc(100% - 1.7rem);padding-left:0.2em;overflow:visible;}
  407. .post_width_big{position:relative;left:0;width:100%;overflow:visible;}
  408. .post_menu_button{position:absolute;display:none;right:0rem;width:1.5rem;
  409. text-align:center;border-radius:0.3em;user-select:none;cursor:pointer;z-index:10;}
  410. .pointer{cursor:pointer;}
  411. .post:hover .post_menu_button{display:block;}
  412. .pop_menu{position:absolute;top:0.3rem;z-index:95;background-color:%lighterbkg%;
  413. padding:0.3em;right:0.3rem;text-align:right;border-radius:0.3em;font-size:1rem;
  414. box-shadow:0px 0px 10px rgb(0, 0, 0);}
  415. .pop_menu li{list-style:none;margin-left:0;}
  416. .pop_menu hr{border:2px solid rgba(0,0,0,0.1);}
  417. .toc{left:60%;width:40%;top:0;position:absolute;}
  418. .post_access{width:1.4rem;top:0;position:absolute;height:100%;text-align:center;font-weight:bold;border-right:2px solid transparent;}
  419. .post_access:hover{background-color:%lightopbkg%;border-top-left-radius:0.3em;border-bottom-left-radius:0.3em;
  420. border-right:2px solid %black% !important;}
  421. .paa{width:1.4rem;min-width:1.4rem;}
  422. .opt_compact .post_access,.ref_compact .post_access{border-right:2px solid %gray%;}
  423. .post_box{border:1px solid %gray%;border-radius:0.3em;padding:0.3em;}
  424. .post_box:hover,.post_menu_button:hover{background-color:%lightopbkg%}
  425. #big_image_info .post_box:hover{background-color:%graybkg%;}
  426. .post_preview{font-size:0.9rem;overflow:hidden;margin-bottom:0.2em;}
  427. .post .post_ref{margin:0;padding-left:1.7rem;}
  428. .post_ref_main{display:inline-block;vertical-align:top;}
  429. .post_preview .post_ref_main{max-height:6rem;overflow:hidden;}
  430. .post_ref_images{overflow:hidden;}
  431. .page_selector{padding-top:2rem;text-align:center;}
  432. .smaller{font-size:0.85em;}
  433. .bigger{font-size:1.3em;}
  434. .block{display:block;}
  435. .opt_compact{margin-left:1.6rem;}
  436. .opt_compact .post_width {margin-left:0.3em;width: calc(100% - 1.8rem);}
  437. .post_box_top{padding-bottom:0.3em;padding-top:0.3em;}
  438. .post_box_fixed_bottom{position:sticky;bottom:0em;background-color:%white%;z-index:5;}
  439. .spacer{height:0.5em;}
  440. .pop_right,.pop_right_big{position:fixed;top:0;right:0;bottom:0;width:30%;z-index:100;background-color:%graybkg%;display:none;
  441. transition-timing-function:ease-out;padding:1rem;overflow:auto;}
  442. @keyframes pop_slide_in{0%{right:-30%;}100%{right:0%;}}
  443. @keyframes pop_slide_out{0%{right:0%;}100%{right:-30%;}}
  444. @keyframes pop_slide_in_big{0%{right:-30%;}100%{right:0%;}}
  445. @keyframes pop_slide_out_big{0%{right:0%;}100%{right:-30%;}}
  446. .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;}
  447. @keyframes backdrop_fade_in{0%{opacity:0%;}100%{opacity:100%;}}
  448. @keyframes backdrop_fade_out{0%{opacity:100%;}100%{opacity:0%;}}
  449. .toc_entry_1{font-size:1.1em;}
  450. .toc_entry_2{font-size:1.0em;padding-left:0.5rem;}
  451. .toc_entry_3{font-size:0.9em;padding-left:1rem;}
  452. .toc_entry_4{font-size:0.85em;padding-left:1.5rem;}
  453. .toc_entry_5{font-size:0.8em;padding-left:2rem;}
  454. h1,h2,h3,h4,h5{scroll-margin:2.5em;}
  455. .left ul h1,.left ul h2,.left ul h3,.left ul h4,.left ul h5,.left ul p{font-size:1em;}
  456. .deleted_post{color:%gray%;text-decoration:line-through;}
  457. #file_list{margin-top:0.5em;}
  458. .file_thumb img{max-height:100%;max-width:100%;object-fit:cover;min-width:100%;min-height:100%;}
  459. #file_list li{margin-bottom:0.3em;}
  460. .ref_thumb{white-space:nowrap;overflow:hidden;}
  461. .ref_thumb .file_thumb{width:3em;height:3em;}
  462. .side_thumb li{margin:0.4em;display:inline-block;}
  463. .file_thumb{width:4em;height:4em;display:inline-block;line-height:0;vertical-align:middle;overflow:hidden;}
  464. .p_row{display:flex;flex-wrap:wrap;width:calc(100% + 0.25rem);}
  465. .p_thumb{display:flex;flex-grow:1;height:6rem;margin-right:0.25rem;margin-bottom:0.25rem;overflow:hidden;position:relative;}
  466. .p_thumb img{object-fit:cover;max-height:100%;min-width:100%;}
  467. .ref_count,.p_thumb .post_menu_button{text-shadow: 0px 0px 10px rgb(0, 0, 0);}
  468. .p_thumb:hover .post_menu_button{display:block;}
  469. .p_thumb_selected{color:%black% !important;}
  470. .p_thumb_selected{display:block;}
  471. .post .p_thumb img{max-height:6rem;}
  472. .big_image_box{position:fixed;top:0;bottom:0;left:0;width:75%;z-index:95;text-align:center;pointer-events:none;}
  473. .big_image_box *{pointer-events:auto;}
  474. .big_image_box img{position:absolute;margin:auto;top:0;left:0;right:0;bottom:0;cursor:unset;}
  475. .big_side_box{position:fixed;top:0;bottom:0;right:0;width:25%;overflow:auto;z-index:98;color:%black%;padding:1rem;
  476. background:linear-gradient(to right, rgba(0,0,0,0), rgb(1, 1, 1));transition:background-size .2s linear;background-size: 300% 100%;}
  477. .big_side_box:hover{background-size: 100% 100%;}
  478. .big_side_box a,.big_side_box hr,#dropping_background{color:%black%;}
  479. .big_side_box a:hover{color:%gray%;}
  480. #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;
  481. box-shadow:0px 0px 500px black inset;display:flex;align-items:center;}
  482. img{cursor:pointer;max-height:100%;max-width:100%;}
  483. .post img{max-height:min(70vh, 20rem);max-width:min(100%, 20rem);}
  484. .post > a > img{display:block;margin:0.3em auto;}
  485. .post .original_img{max-width:100%;display:inline-block;vertical-align:middle;
  486. margin-left:auto;margin-right:auto;max-width:100%;max-height:90vh;}
  487. .original_img img{max-height:90vh;max-width:100%;}
  488. .p_row .original_img{margin-bottom:0;}
  489. .post_ref .original_img{margin:unset;max-width:unset;max-height:min(70vh, 20rem);max-width:min(100%, 20rem);}
  490. .b ul{font-size:1.4em;}
  491. no_pop{cursor:unset;}
  492. p{min-height:0.8em;}
  493. .bold,.bold *{font-weight:bold;}
  494. .footer_additional{display:inline-block;width:50%;vertical-align:text-top;white-space:normal;}
  495. .small_footer{position:sticky;bottom:0em;background-color:%white%;padding-bottom:0.5em;z-index:10;overflow:auto;white-space:nowrap;}
  496. .top_post_hint{margin-left:1.5em;font-weight:bold;}
  497. .white{color:%white%;}
  498. .full_box{border:1px solid %black% !important;padding:0.3rem;overflow:auto;}
  499. .image_nav_prev,.image_nav_next{z-index:100;position:absolute;line-height:0;height:100%;width:20%;display:flex;align-items:center;
  500. transition:background-size .2s ease;padding:0.5em;text-shadow:0px 0px 5px black;user-select:none;pointer-events:auto;}
  501. .image_nav_prev{left:0;justify-content:left;background:linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.2));
  502. background-repeat:no-repeat;background-size:0% 100%;}
  503. .image_nav_prev:hover,.image_nav_next:hover{background-size:100% 100%;}
  504. .image_nav_next{right:0;justify-content:right;background:linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,0.2));
  505. background-repeat:no-repeat;background-size:0% 100%;transition:background-size .2s ease;background-position-x:100%;}
  506. .inquiry_buttons{position:fixed;left:0;right:25%;text-align:center;bottom:1em;margin:0 auto;width:max-content;
  507. background-color:rgba(0,0,0,0.5);z-index:110;padding:0.2em;padding-left:1em;padding-right:1em;
  508. border-radius:1em;box-shadow:0px 0px 5px;text-shadow:0px 0px 5px black;opacity:1;user-select:none;}
  509. .lr_buttons{background-color:rgba(0,0,0,0.5);padding:0.5em;padding-top:1em;padding-bottom:1em;
  510. border-radius:1em;box-shadow:0px 0px 5px;font-size:1.2rem;text-shadow:0px 0px 5px black;}
  511. .img_btn_hidden{opacity:0;transition:opacity 0.2s;}
  512. .special_alipay{background-color:#027aff;color:white;white-space:nowrap;
  513. font-family:sans-serif;font-weight:bold;border-radius:0.7em;font-size:0.75em;padding:0.25em;}
  514. .special_paypal{background-color:white;color:#253b80;white-space:nowrap;
  515. font-family:sans-serif;font-weight:bold;border-radius:2em;font-size:0.75em;
  516. padding:0.25em;padding-left:0.5em;padding-right:0.65em;font-style: italic;}
  517. .special_paypal_inner{color:#169bd7;}
  518. #waiting_bar{position:fixed;z-index:200;top:0;left:0;right:0;height:0.2em;background-color:%black%;transform:translate(-100%,0);
  519. animation:anim_loading 1s linear infinite;}
  520. @keyframes anim_loading{0%{transform:translate(-100%,0);} 100%{transform:translate(100%,0);}}
  521. .product_ref{width:32%;padding:0.2em!important;display:inline-block;text-align:center;vertical-align:top;margin-bottom:0.8em;}
  522. .product_thumb{max-height:11em;max-width:11em;display:inline-flex;margin-bottom:0.2em;background-color:%graybkg%;}
  523. .product_thumb img{box-shadow:none;object-fit:contain;max-height:unset;max-width:unset;width:100%;margin:0 auto !important;}
  524. .product_ref p{margin-bottom:0.2em;text-align:left;}
  525. .post_preview .product_thumb{max-height:4em;max-width:6em;}
  526. .purchase_button{background-color:%black%;color:%white%;padding-left:0.5em;padding-right:0.5em;text-decoration:none;font-weight:bold;}
  527. .page_break{page-break-after:always;}
  528. .text_highlight,.text_highlight a,.text_highlight select{background-color:%black%;color:%white%;border:none;}
  529. .gray.text_highlight,.gray.text_highlight a,.gray.text_highlight select{background-color:%gray%;color:%white%;}
  530. .print_title{display:none;}
  531. .show_on_print{display:none;}
  532. .comment{font-size:0.9em;font-family:sans-serif;overflow:auto !important;width:100%;}
  533. .comment tbody tr:hover{box-shadow:none;}
  534. .comment table{border:none;}
  535. .comment li{display:list-item;list-style:'→';padding-left:0.3em;}
  536. .comment ul{padding-left:1em;}
  537. .comment ul li *{margin-bottom:0.5em;}
  538. .history li{display:list-item;list-style:'+ ';padding-left:0.3em;}
  539. .history ul{padding-left:1em;}
  540. .history a{text-decoration:underline;}
  541. .history .list{overflow:auto;white-space:nowrap;}
  542. .diff_table{table-layout:fixed;}
  543. .diff_table thead{font-size:0.9em;text-align:center;}
  544. .diff_table tbody pre{font-size:0.9rem;}
  545. .diff_table tbody pre{font-size:0.9rem;}
  546. .diff_table td{vertical-align:top;}
  547. .omittable_title{display:block;width:100%;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;}
  548. .wayback_close{float:right;}
  549. .wayback_expand{display:inline;}
  550. @media screen and (max-width:1000px){
  551. .left{width:35%;}
  552. .center,.center_wide{width:65%;}
  553. .center_wide .p_thumb{height:8rem;}
  554. .right{display:none;}
  555. .post_width{width:calc(100% - 1.5rem);padding-left:0.2em;}
  556. .post_width_big{left:0;width:100%;}
  557. .hidden_on_wide{display:unset;}
  558. .hidden_on_narrow{display:none;}
  559. .pop_right{width:30%;}
  560. .pop_right_big{width:40%;}
  561. @keyframes pop_slide_in{0%{right:-30%;}100%{right:0%;}}
  562. @keyframes pop_slide_out{0%{right:0%;}100%{right:-30%;}}
  563. @keyframes pop_slide_in_big{0%{right:-40%;}100%{right:0%;}}
  564. @keyframes pop_slide_out_big{0%{right:0%;}100%{right:-40%;}}
  565. .big_side_box{width:35%;}
  566. .big_image_box{width:65%;}
  567. .inquiry_buttons{right:35%;}
  568. .table_top{left:calc(-50% - 1.7em);width: calc(154% + 0.5em);}
  569. .center_exp{display:block;width:100%;margin:0 auto;overflow:none;padding-bottom:1em;}
  570. .center_exp .post{overflow:auto;}
  571. }
  572. @media screen and (max-width:666px){
  573. html{font-size:16px;}
  574. .hidden_on_mobile{display:none !important;}
  575. .block_on_mobile{display:block !important;}
  576. .hidden_on_desktop{display:unset;}
  577. header ul{display:block;}
  578. header li{display:block;}
  579. header li::before{content:''}
  580. .left{position:relative;width:100%;position:relative;top:unset;height:unset;min-height:80vh;padding-right:0;display:block;}
  581. .center,.center_wide,.center_full{position:relative;left:0;top:0;width:100%;padding-left:0;display:block;}
  582. .center_wide .p_thumb{height:6rem;}
  583. .pop_right,.pop_right_big{top:unset;right:0;bottom:0;left:0;width:100%;}
  584. .pop_right{height:30%;}
  585. .pop_right_big{height:70%;}
  586. @keyframes pop_slide_in{0%{bottom:-30%;}100%{bottom:0%;}}
  587. @keyframes pop_slide_out{0%{bottom:0%;}100%{bottom:-30%;}}
  588. @keyframes pop_slide_in_big{0%{bottom:-70%;}100%{bottom:0%;}}
  589. @keyframes pop_slide_out_big{0%{bottom:0%;}100%{bottom:-70%;}}
  590. .big_image_box{position:fixed;top:0;bottom:8.5rem;left:0;right:0;width:100%;}
  591. .side_box_mobile_inner{background:linear-gradient(to bottom, rgba(0,0,0,0), rgba(1,1,1,0.9) 20%);
  592. transition:none;background-size:100% 100%;padding:0.5rem;padding-bottom: 5em;}
  593. .side_box_mobile_inner:hover{background-size:100% 100%;}
  594. .big_side_box{position:fixed;top:0;bottom:0;right:0;left:0;width:100%;
  595. height:unset;padding:0;padding-top:calc(100vh - 8.5rem);background:none;}
  596. .p_thumb{height:3rem;}
  597. .center .post{padding-right:0rem;padding-left:0rem;}
  598. .post .p_thumb img{max-height:3rem;}
  599. .page,.page_gallery{padding:0.2em;padding-top:0;}
  600. header{padding-top:0.3em;}
  601. .small_footer{padding-bottom:0.3em;}
  602. .footer_additional{display:block;width:100%;}
  603. .album_hint{display:block;font-size:1rem;}
  604. .image_nav{position:absolute !important;}
  605. .image_nav_prev,.image_nav_next{width:25%;}
  606. .image_nav_prev:hover,.image_nav_next:hover{background-size:0% 100%;color:%black% !important;}
  607. .inquiry_buttons{position:relative;left:unset;right:unset;text-align:left;bottom:unset;margin:unset;width:unset;
  608. background-color:unset;z-index:unset;padding:unset;padding-left:unset;padding-right:unset;
  609. border-radius:unset;box-shadow:unset;text-shadow:unset;}.img_btn_hidden{opacity:1;}
  610. .lr_buttons{background-color:unset;padding:unset;padding-top:unset;padding-bottom:unset;
  611. border-radius:unset;box-shadow:unset;font-size:1.3rem;text-shadow:unset;}
  612. .opt_compact,.ref_compact{line-break:anywhere;}
  613. .post_width,.post_width_big{overflow:auto;}
  614. .table_top{left:unset;width:100%;overflow:auto;}
  615. table img{max-width:30vw !important;}
  616. .product_ref{width:100%;display:block;}
  617. .post_dummy > *{width:100%;max-width:25rem;}
  618. .sticky_title{top:1.2em;}
  619. #upload_selector{width:100%;}
  620. .focused_post{padding:0.3rem !important;}
  621. .interesting_tbody{background:linear-gradient(90deg, %white%ff, %white%88 10em);}
  622. .wayback_expand{display:block;text-align:center;}
  623. }
  624. @media print{
  625. body,footer,header,.small_footer,a,.clean_a,.invert_a,.clean_a a,.invert_a a{background:none;color:black;}
  626. .post *,.post_dummy *{margin-bottom:0em}
  627. .p_row,.post table,.post_width>img,.post_width_big>img,.post_ref>img,.post_ref>.original_img,
  628. .post_width>.original_img,.post_width_big>.original_img,.post pre{margin-top:0.7rem;margin-bottom:0.7rem;text-indent:0;}
  629. .post p{line-height:1.3;text-indent:2em;}
  630. table img{margin:0 !important;}
  631. .post h1+p,.post h2+p,.post img+p,.post table+p,.post p:first-child{text-indent:0;}
  632. .post ul,.post ol{margin:1rem;margin-left:1.4rem;margin-right: 0rem;}
  633. table{border-bottom:2px solid black;border-top:2px solid black;}
  634. table img{max-width:5em;max-width:8em !important;max-height:8em !important;}
  635. thead{box-shadow:inset 0 -1px 0 0px black;background:none;}
  636. .post_width,.post_width_big{overflow:hidden;left:0;width:100%;padding-left:0em;}
  637. .post h1,{margin-top:0.5rem;}
  638. .post h2{font-size:1.8em;margin:2.5em auto 0;}.list h2,.opt_compact h2,.ref_compact h2{margin:0 !important;}
  639. .post h3{font-size:1.5em;margin:1.5em auto 0;}.list h3,.opt_compact h3,.ref_compact h4{margin:0 !important;}
  640. .post h4{font-size:1.1em;margin:0.5em auto 0;}.list h4,.opt_compact h3,.ref_compact h4{margin:0 !important;}
  641. .post .post{margin-bottom:0.5rem;margin-top:0.5rem;}
  642. .gray,.gray a,.deleted_post{color:rgba(0,0,0,0.5);}
  643. .left,.right{display:none;}
  644. .center, .center_wide, .center_full{width:100%;padding:0;display:block;font-size:16px;line-height:1.3}
  645. hr{border:1px solid black;}
  646. .post_box_top{display:none;}
  647. .opt_compact .post_access,.ref_compact .post_access{border-right:none;display:inline;}
  648. .text_highlight,.text_highlight a,.gray.text_highlight,.gray.text_highlight a,.purchase_button{background-color:lightgray;color:black;}
  649. .focused_post{border:none;font-size:1em;padding:0 !important;}
  650. .hidden_on_print{display:none;}
  651. .print_column{column-count:2;margin-top:0.5rem;margin-bottom:0.5rem;}
  652. .post_access{display:none;}
  653. .opt_compact{margin-left:0;}
  654. .post .post_ref{padding-left:1.4rem;}
  655. .opt_compact .post_width{left:1.4rem;width:calc(100% - 1.4rem);margin-left:0;}
  656. .print_title{column-span:all;display:block;margin-top:2em;margin-bottom:0.5rem;font-size:1.2em;}
  657. .print_title:first-of-type{margin-top:1em;}
  658. .print_title+.post h1:first-of-type{display:none;}
  659. .opt_compact h1:first-of-type,.ref_compact h1:first-of-type{display:unset;}
  660. .table_top{position:relative;left:0;width:100%;background:none;z-index:1;box-shadow:none;}
  661. .header_nav{display:none;}
  662. .show_on_print{display:block;}
  663. blockquote{border-left:2px solid black;}
  664. .footer_additional{display:none;}
  665. .small_footer{margin-top:1rem;}
  666. .page_selector{display:none;}
  667. .p_thumb{height:4rem;margin-bottom:0.25rem;}
  668. .post .p_thumb img{max-height:4rem;}
  669. .sticky_title{box-shadow:none;}
  670. .center_wide .p_thumb{display:inline-flex;height:5.8rem;width:5.8rem;margin-right:0;}
  671. .center_wide .p_row{display:block;}
  672. .interesting_tbody{background:none;}
  673. .interesting_tbody img{display:none !important;}
  674. }
  675. ";
  676. $this->style=preg_replace('/%white%/','#231a0d',$this->style);
  677. $this->style=preg_replace('/%black%/','#f8ca9b',$this->style);
  678. $this->style=preg_replace('/%gray%/','#ac7843',$this->style);
  679. $this->style=preg_replace('/%graybkg%/','#39270e',$this->style);
  680. $this->style=preg_replace('/%lightopbkg%/','#daae8010',$this->style);
  681. $this->style=preg_replace('/%lighterbkg%/','#675340',$this->style);
  682. $this->style=preg_replace('/%focusedbkg%/','#482f0c',$this->style);
  683. $f = fopen('styles/main.css','w');
  684. fwrite($f,$this->style);
  685. fclose($f);
  686. }
  687. function GiveSafeEMail(){
  688. return preg_replace('/\./u','[dot]',preg_replace('/\@/u','[at]',$this->EMail));
  689. }
  690. function &FindImage($name){
  691. if(isset($this->Images[0]))foreach($this->Images as &$im){
  692. if($im['name']==$name) return $im;
  693. }
  694. return $this->NULL_IMAGE;
  695. }
  696. function ReadImages($clear_non_exist = false){
  697. $path = 'images/list.md';
  698. if(!file_exists($path)){ $f = fopen($path,'w'); fflush($f); fclose($f); }
  699. $c = file_get_contents($path);
  700. if(preg_match_all('/GALLERY\s+(\S+)(.*)$/mu', $c, $ma, PREG_SET_ORDER)) foreach($ma as $m){
  701. $g=[]; $g['name']=$m[1];//$g['count']=0;
  702. if(preg_match('/FEATURED([^;]*?);/u', $m[2], $arg)){ $g['featured']=true; }
  703. if(preg_match('/EXPERIMENTAL([^;]*?);/u', $m[2], $arg)){ $g['experimental']=true; }
  704. $this->Galleries[] = $g;
  705. }
  706. if(preg_match_all('/^-\s*([^;]+)\s*?;\s*?(.*)$/mu', $c, $ma, PREG_SET_ORDER)) foreach($ma as $m){
  707. $name = trim($m[1]);
  708. $item = []; $item['file'] = 'images/'.$name; $item['name'] = $name;
  709. if(file_exists('images/thumb/'.$name)){$item['thumb']='images/thumb/'.$name;}else{$item['thumb']='images/'.$name;}
  710. if(preg_match('/REFS\s+([^;]*);/u',$m[2],$refs) && preg_match_all('/[0-9]{14}/u',$refs[1],$rs, PREG_SET_ORDER)){
  711. $item['refs']=[];
  712. foreach($rs as $r){ if(!in_array($r[0], $item['refs'])) $item['refs'][] = $r[0]; }
  713. }
  714. if(preg_match('/GAL\s+([^;]*);/u',$m[2],$gals) && preg_match_all('/(\S+)/u',$gals[1],$ga, PREG_SET_ORDER)){
  715. $item['galleries']=[];
  716. foreach($ga as $g){ if(!in_array($g[0], $item['galleries'])) $item['galleries'][] = $g[0]; }
  717. }
  718. if(preg_match('/PRODUCT\s+([^;]*);/u',$m[2],$product)){
  719. $item['product']=$product[1];
  720. }
  721. $this->Images[] = $item;
  722. }
  723. $files = array_merge([],glob('images/*.jpg'));
  724. $files = array_merge($files,glob('images/*.jpeg'));
  725. $files = array_merge($files,glob('images/*.png'));
  726. $files = array_merge($files,glob('images/*.gif'));
  727. if(isset($files[0]))foreach($files as $file) {
  728. if(preg_match('/[0-9]{14,}\.(jpg|jpeg|gif|png)/u', $file, $m)) {
  729. $name = trim($m[0]);
  730. if(!$this->FindImage($name)){
  731. $item = []; $item['name']=$name; $item['file'] = 'images/'.$name;
  732. if(file_exists('images/thumb/'.$name)){$item['thumb']='images/thumb/'.$name;}else{$item['thumb']='images/'.$name;}
  733. $this->Images[] = $item;
  734. }
  735. }
  736. }
  737. if($clear_non_exist){
  738. if(isset($this->Images[0]) && isset($files[0])){
  739. foreach($this->Images as &$im){
  740. if(!in_array($im['file'],$files)){
  741. $im['deleted'] = 1;
  742. }
  743. }
  744. }
  745. }
  746. function cmpf($a, $b){
  747. if ($a['name'] == $b['name']) return 0;
  748. return (($a['name'] > $b['name']) ? 1 : -1);
  749. }
  750. function cmpaf($a, $b){
  751. if ($a['name'] == $b['name']) return 0;
  752. return ($a['name'] > $b['name']) ? -1 : 1;
  753. }
  754. if(isset($this->Galleries[0]))usort($this->Galleries,"cmpf");
  755. if(isset($this->Images[0]))usort($this->Images,"cmpaf");
  756. }
  757. function WriteImages(){
  758. $path = 'images/list.md';
  759. $f = fopen($path,'w');
  760. if(isset($this->Galleries[0]))foreach($this->Galleries as &$g){
  761. if(isset($g['deleted'])) continue;
  762. fwrite($f,'GALLERY '.$g['name']);
  763. if(isset($g['featured']) && $g['featured']!=false) { fwrite($f,' FEATURED;'); }
  764. if(isset($g['experimental']) && $g['experimental']!=false) { fwrite($f,' EXPERIMENTAL;'); }
  765. fwrite($f, PHP_EOL);
  766. }
  767. if(isset($this->Images[0]))foreach($this->Images as &$im){
  768. if(isset($im['deleted'])) continue;
  769. fwrite($f, "- ".$im['name'].'; ');
  770. if(isset($im['refs']) && isset($im['refs'][0])){ fwrite($f, 'REFS '.implode(" ",$im['refs'])."; "); }
  771. if(isset($im['galleries']) && isset($im['galleries'][0])){ fwrite($f, 'GAL '.implode(" ",$im['galleries'])."; "); }
  772. if(isset($im['product']) && $im['product']!=''){ fwrite($f, 'PRODUCT '.$im['product']."; "); }
  773. fwrite($f, PHP_EOL);
  774. }
  775. fflush($f);
  776. fclose($f);
  777. }
  778. function EditImage($name, $link_gallery, $do_remove = false, $product_link=NULL, $rename=NULL){
  779. if(!($im = &$this->FindImage($name))) return;
  780. if(isset($link_gallery)){
  781. if($do_remove){
  782. if(!isset($im['galleries']) || !isset($im['galleries'][0])) return;
  783. foreach($im['galleries'] as $key => $g){ if ($g==$link_gallery) unset($im['galleries'][$key]); }
  784. $im['galleries'] = array_merge($im['galleries']);
  785. }else{
  786. if(!isset($im['galleries'])) $im['galleries']=[];
  787. foreach($im['galleries'] as &$g){ if ($g==$link_gallery) return; }
  788. $im['galleries'][]=$link_gallery;
  789. }
  790. }
  791. if(isset($product_link)){
  792. if($product_link!=''){$im['product']=$product_link;}
  793. else{unset($im['product']);}
  794. }
  795. if(isset($rename)){
  796. $ext=pathinfo($im['file'],PATHINFO_EXTENSION);
  797. rename($im['file'], 'images/'.$rename.'.'.$ext);
  798. if(isset($im['thumb'])) rename($im['thumb'], 'images/thumb/'.$rename.'.'.$ext);
  799. $im['name'] = $rename.'.'.$ext;
  800. }
  801. }
  802. function RegenerateThumbnails(){
  803. $glob = glob('images/*.jpg');
  804. if(!is_dir('images/thumb')) mkdir('images/thumb');
  805. foreach($glob as $file) {
  806. $thumb_destination = 'images/thumb/'.basename($file);
  807. $img = new Imagick($file); $geo=$img->getImageGeometry();
  808. $width=$geo['width']; $height=$geo['height'];
  809. $lim=400;
  810. $scale = $lim / min($width,$height);
  811. if($scale<1){
  812. $img->resizeImage($width*$scale,$height*$scale,imagick::FILTER_GAUSSIAN,0.7);
  813. }
  814. $img->setImageFormat('jpeg');
  815. $img->setImageCompressionQuality(90);
  816. $img->writeImage($thumb_destination);
  817. }
  818. }
  819. function CompressImage($source, $destination, $thumb_destination, $quality, $sizelim, $abs_max) {
  820. $img = new Imagick($source); $geo=$img->getImageGeometry(); $img2 = clone $img;
  821. $width=$geo['width']; $height=$geo['height'];
  822. $lim=400;
  823. $scale = $lim / min($width,$height);
  824. if($scale<1){
  825. $img->resizeImage($width*$scale,$height*$scale,imagick::FILTER_GAUSSIAN,0.7);
  826. }
  827. $img->setImageFormat('jpeg');
  828. $img->setImageCompressionQuality($quality);
  829. $img->writeImage($thumb_destination);
  830. $scale = min( $sizelim / min($width,$height), $abs_max / max($width,$height));
  831. if($scale<1){
  832. $img2->resizeImage($width*$scale,$height*$scale,imagick::FILTER_GAUSSIAN,0.5);
  833. }
  834. $img2->setImageFormat('jpeg');
  835. $img2->setImageCompressionQuality($quality);
  836. $img2->writeImage($destination);
  837. }
  838. function DoUpload(){
  839. if(!isset($_FILES['upload_file_name'])) return 0;
  840. if(!is_dir('images/thumb')) mkdir('images/thumb');
  841. if($_FILES['upload_file_name']['error']>0){
  842. echo"file upload err code ".$_FILES['upload_file_name']['error']; exit;
  843. return -1;
  844. }else{
  845. $ext=pathinfo($_FILES['upload_file_name']['name'],PATHINFO_EXTENSION);
  846. if(!in_array($ext,['jpg','jpeg','png','gif'])) return 0;
  847. $fp = fopen('.la_lock',"w");
  848. while (!flock($fp, LOCK_EX| LOCK_NB)){
  849. usleep(10000);
  850. }
  851. $num=date('YmdHis'); $replace=0;
  852. if(isset($_POST['image_replace_button']) && isset($_GET['pic']) && preg_match('/([0-9]{14,})/u',$_GET['pic'],$mim)){
  853. $num = $mim[1]; $replace=1;
  854. }
  855. $base = 'images/'.$num;
  856. $thumb = 'images/thumb/'.$num;
  857. if($ext=='png') $ext='jpg';
  858. $final_path = $base.'.'.$ext; $final_thumb = $thumb.'.'.$ext; $i=0;
  859. if(!$replace) while(file_exists($final_path)){
  860. $final_path = $base.strval($i).'.'.$ext; $final_thumb = $thumb.strval($i).'.'.$ext; $i++;
  861. }
  862. if($ext!='gif'){
  863. $compress = (isset($_GET['compress'])&&$_GET['compress']);
  864. $this->CompressImage($_FILES['upload_file_name']['tmp_name'], $final_path, $final_thumb, 90,
  865. $compress?800:1920, $compress?1920:2560);
  866. }else{
  867. move_uploaded_file($_FILES['upload_file_name']['tmp_name'], $final_path);
  868. }
  869. flock($fp, LOCK_UN);
  870. fclose($fp);
  871. $this->ReadImages(true);
  872. $this->WriteImages();
  873. echo '<uploaded>'.pathinfo($final_path,PATHINFO_BASENAME)."</uploaded>";
  874. if(isset($_POST['image_replace_button'])){
  875. header('Location: '.$_SERVER['REQUEST_URI']);exit;
  876. }
  877. exit;
  878. return 1;
  879. }
  880. return 0;
  881. }
  882. function &GetGallery($name){
  883. if(isset($this->Galleries[0])) foreach($this->Galleries as &$g){
  884. if($g['name'] == $name) return $g;
  885. }
  886. return $this->NULL_GALLERY;
  887. }
  888. function EditGallery($name, $new_name=null, $delete=false, $do_rw=true, $set_featured=null, $set_experimental=null){
  889. if($do_rw) $this->ReadImages();
  890. $gallery = &$this->GetGallery($name);
  891. if(!isset($gallery)){
  892. if(!isset($new_name) || preg_match('/main|trash|\s/u',$new_name))return;
  893. $g = []; $g['name']=$new_name;
  894. $this->Galleries[]=$g;
  895. }else{
  896. if(isset($new_name)) {
  897. if(preg_match('/main|trash|\s/u',$new_name))return;
  898. $gallery['name'] = $new_name;
  899. foreach ($this->Images as &$im){
  900. if(isset($im['galleries'])&&isset($im['galleries'][0]))foreach($im['galleries'] as &$g){
  901. if($g == $name){ $g = $new_name; }
  902. }
  903. }
  904. }
  905. //if(isset($count)) $gallery['count'] = $count;
  906. if(isset($delete) && $delete) $gallery['deleted'] = true;
  907. if(isset($set_featured)) $gallery['featured'] = $set_featured;
  908. if(isset($set_experimental)) $gallery['experimental'] = $set_experimental;
  909. }
  910. if($do_rw) { $this->WriteImages(); $this->ClearData(); }
  911. }
  912. function ClearData(){
  913. $this->Posts = [];
  914. $this->Threads = [];
  915. $this->Images = [];
  916. $this->Archive = [];
  917. $this->ArchiveHandles = [];
  918. }
  919. function InsertArchivePost(&$post){
  920. $a = NULL;
  921. if(($a = &$this->GetArchiveHandle($post['id']))==$this->NULL_POST){
  922. $ah = []; $ah['id'] = $post['id']; $ah['list'] = [];
  923. $this->ArchiveHandles[] = &$ah; $a = &$ah;
  924. }
  925. $a['list'][] = $post;
  926. $this->Archive[] = $post;
  927. }
  928. function ReadArchiveFromFile($path){
  929. if(!file_exists($path)){
  930. return;
  931. }
  932. $c = file_get_contents($path);
  933. if(preg_match_all('/\[LAMDWIKIPOST\s+([0-9]{14})\s*;\s*([\s\S]*?)\]([\S\s]*?)(?=\[LAMDWIKIPOST|$)/u',$c,$matches,PREG_SET_ORDER)){
  934. foreach($matches as $m){
  935. $post = [];
  936. $post['id'] = $m[1];
  937. $post['content'] = trim($m[3]);
  938. if(preg_match('/VER\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['version'] = $n[1];
  939. $this->InsertArchivePost($post);
  940. }
  941. }
  942. }
  943. function SortArchive(){
  944. $cmpac = function($a, $b){
  945. if ($a['id'] == $b['id']) return 0;
  946. return (($a['id'] > $b['id']) ? 1 : -1);
  947. };
  948. $cmpap = function($a, $b){
  949. if ($a['id'] == $b['id']) return ((($a['version'] > $b['version']) ? 1 : -1));
  950. return (($a['id'] > $b['id']) ? 1 : -1);
  951. };
  952. if(isset($this->Archive[0])){
  953. usort($this->Archive,$cmpap);
  954. $this->YearBegin = substr($this->Archive[0]['id'],0,4);
  955. }
  956. if(isset($this->ArchiveHandles[0])){
  957. usort($this->ArchiveHandles,$cmpac);
  958. foreach($this->ArchiveHandles as &$a){
  959. if(isset($a['list']))usort($a['list'],$cmpap);
  960. if(($p = &$this->GetPost($a['id']))!=NULL){
  961. $p['archive'] = $a;
  962. }
  963. }
  964. }
  965. }
  966. function ReadPostsFromFile($path){
  967. if(!file_exists($path)){
  968. $f = fopen($path,'w');
  969. fclose($f);
  970. }
  971. $c = file_get_contents($path);
  972. if(preg_match_all('/\[LAMDWIKIPOST\s+([0-9]{14})\s*;\s*([\s\S]*?)\]([\S\s]*?)(?=\[LAMDWIKIPOST|$)/u',$c,$matches,PREG_SET_ORDER)){
  973. foreach($matches as $m){
  974. $post = [];
  975. $post['id'] = $m[1];
  976. $post['real_content'] = trim($m[3]);
  977. $post['content'] = &$post['real_content'];
  978. if(preg_match('/COMMENT\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['comment_to'] = $n[1];
  979. if(preg_match('/EMAIL\s+([^;]+)\s*;/u', $m[2], $n)) $post['email'] = $n[1];
  980. if(preg_match('/NAME\s+([^;]+)\s*;/u', $m[2], $n)) $post['name'] = $n[1];
  981. if(preg_match('/LINK\s+([^;]+)\s*;/u', $m[2], $n)) $post['link'] = $n[1];
  982. if(preg_match('/IP\s+([^;]+)\s*;/u', $m[2], $n)) $post['ip'] = $n[1];
  983. if(preg_match('/NEXT\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['next'] = $n[1];
  984. if(preg_match('/PREV\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['prev'] = $n[1];
  985. if(preg_match('/VER\s+([0-9]{14})\s*;/u', $m[2], $n)) $post['version'] = $n[1];
  986. if(preg_match('/MDEL\s*;/u', $m[2])) $post['mark_delete'] = True;
  987. if(preg_match('/MVAL\s*([^;]+);/u', $m[2], $n)) $post['mark_value'] = trim($n[1]);
  988. if(preg_match('/REFS\s*([^;]+);/u', $m[2], $ma)){
  989. $entries = [];
  990. if(preg_match_all('/([0-9]{14})/u',$ma[1],$links,PREG_SET_ORDER)){
  991. foreach($links as $l){
  992. $entries[] = $l[1];
  993. }
  994. $post['refs'] = $entries;
  995. }
  996. }
  997. if(isset($post['mark_value']) && $post['mark_value']==5){
  998. $post['product']=[];
  999. }
  1000. /* marks add here */
  1001. $this->Posts[] = $post;
  1002. if(isset($post['comment_to']) && ($target_post = &$this->GetPost($post['comment_to']))){
  1003. if(!isset($target_post['comments']) || !isset($target_post['comments'][0])) $target_post['comments']=[];
  1004. $target_post['comments'][]=&$this->Posts[count($this->Posts) - 1];
  1005. }
  1006. }
  1007. }
  1008. }
  1009. function SortPosts(){
  1010. $cmpp = function($a, $b){
  1011. if ($a['id'] == $b['id']) return 0;
  1012. return (($a['id'] > $b['id']) ? 1 : -1);
  1013. };
  1014. if(isset($this->Posts[0])){
  1015. usort($this->Posts,$cmpp);
  1016. $this->YearEnd = substr($this->Posts[sizeof($this->Posts)-1]['id'],0,4);
  1017. }
  1018. }
  1019. function ReadPosts(){
  1020. if ((!file_exists('la_config.md') || is_readable('la_config.md') == false) ||
  1021. (!is_dir('posts') || is_readable('posts') == false) ||
  1022. (!is_dir('history') || is_readable('history') == false) ||
  1023. (!is_dir('images') || is_readable('images') == false) ||
  1024. (!is_dir('styles') || is_readable('styles') == false)){
  1025. $this->Install();
  1026. }
  1027. $file_list = [];
  1028. $glob = glob('posts/*');
  1029. foreach($glob as $file) {
  1030. if(preg_match('/[0-9]{6}\.md/', $file)) {
  1031. $file_list[] = $file;
  1032. }
  1033. }
  1034. sort($file_list, SORT_NATURAL | SORT_FLAG_CASE);
  1035. foreach($file_list as $f) {
  1036. $this->ReadPostsFromFile($f);
  1037. }
  1038. $this->SortPosts();
  1039. $this->DetectThreads();
  1040. }
  1041. function ReadArchive(){
  1042. if (!is_dir('archive') || is_readable('archive') == false){ $this->Install(); }
  1043. if (isset($this->Archive[0])) return;
  1044. $file_list = []; $glob = glob('archive/*');
  1045. foreach($glob as $file) {
  1046. if(preg_match('/[0-9]{6}\.md/', $file)) {
  1047. $file_list[] = $file;
  1048. }
  1049. }
  1050. sort($file_list, SORT_NATURAL | SORT_FLAG_CASE);
  1051. foreach($file_list as $f) {
  1052. $this->ReadArchiveFromFile($f);
  1053. }
  1054. $this->SortArchive();
  1055. }
  1056. function GetThreadForPost(&$post){
  1057. if(isset($post['tid'])) return;
  1058. if(!(isset($post['prev']) || isset($post['next']))) return;
  1059. $th = [];
  1060. $post['tid'] = &$th; $th['first'] = &$post; $th['last'] = &$post;
  1061. $iterp = NULL; $count = 1;
  1062. if(isset($post['prev']))for($p = $post['prev']; $p!=NULL; $p = $iterp){
  1063. $np = &$this->GetPost($p); if(!$np) { $post['prev']=NULL; break; }
  1064. $np['tid'] = &$th;
  1065. $th['first'] = &$np;
  1066. $iterp = isset($np['prev'])?$np['prev']:NULL;
  1067. $count++;
  1068. }
  1069. if(isset($post['next']))for($p = $post['next']; $p!=NULL; $p = $iterp){
  1070. $np = &$this->GetPost($p); if(!$np) { $post['next']=NULL; break; }
  1071. $np['tid'] = &$th;
  1072. $th['last'] = &$np;
  1073. $iterp = isset($np['next'])?$np['next']:NULL;
  1074. $count++;
  1075. }
  1076. if(isset($th['first']['mark_value'])){
  1077. if($th['first']['mark_value']==6) $th['exp'] = true;
  1078. else if($th['first']['mark_value']==7) $th['slf'] = true;
  1079. }
  1080. if($th['first'] == $th['last']){ unset($post['tid']); return; }
  1081. $th['count'] = $count;
  1082. $this->Threads[] = &$th;
  1083. }
  1084. function IdentifyThreadCategory(&$th,&$first_post){
  1085. if(preg_match('/^\s*\@(.*?)$/mu',$first_post['content'],$m)){
  1086. $first_post['categories']=[]; if(preg_match_all('/(\S+)(\s|$)/u',$m[1],$matches,PREG_SET_ORDER)){
  1087. foreach($matches as $ma){ $first_post['categories'][] = $ma[1]; }
  1088. }
  1089. if(isset($th) && $th){ $th['categories'] = &$first_post['categories']; }
  1090. }
  1091. if(isset($th) && preg_match('/\{\s*INTERESTING\s+(.*?)\}/imu',$first_post['content'],$m)){
  1092. $th['interesting'] = []; if(preg_match_all('/(\S+)(\s|$)/u',$m[1],$matches,PREG_SET_ORDER)){
  1093. foreach($matches as $ma){ $th['interesting'][] = $ma[1]; }
  1094. }
  1095. }
  1096. }
  1097. function IsInterestingPost(&$p){
  1098. if(isset($p['tid']) && isset($p['tid']['interesting']) && isset($p['tid']['interesting'][0])) return true;
  1099. return false;
  1100. }
  1101. function DetectThreads(){
  1102. foreach($this->Posts as &$p){
  1103. if(isset($p['tid'])) { continue; }
  1104. $this->GetThreadForPost($p);
  1105. if(!isset($p['tid'])) { $this->IdentifyThreadCategory($this->NULL_POST, $p); }
  1106. }
  1107. if(!isset($this->Threads) || !isset($this->Threads[0])) return;
  1108. $now = date_timestamp_get(date_create());
  1109. foreach($this->Threads as &$t){
  1110. $this->IdentifyThreadCategory($t, $t['first']);
  1111. $lasttime = DateTime::createFromFormat('YmdHis', $t['last']['id']);
  1112. $diff_days = ($now - date_timestamp_get($lasttime))/3600/24;
  1113. $t['score'] = (float)$t['count']*0.2 - min($diff_days,200);
  1114. }
  1115. function cmp($a, $b){
  1116. if ($a['score'] == $b['score']) return 0;
  1117. return ($a['score'] > $b['score']) ? -1 : 1;
  1118. }
  1119. usort($this->Threads,"cmp");
  1120. }
  1121. function &GetPost($id){
  1122. if(!isset($id)) return $this->NULL_POST;
  1123. if(isset($this->Posts[0])) foreach($this->Posts as &$p){
  1124. if($p&& $p['id'] == $id) { return $p; }
  1125. }
  1126. return $this->NULL_POST;
  1127. }
  1128. function &GetArchiveHandle($id){
  1129. if(!isset($id)) return $this->NULL_POST;
  1130. if(isset($this->ArchiveHandles[0])) foreach($this->ArchiveHandles as &$p){
  1131. if($p && $p['id'] == $id) { return $p; }
  1132. }
  1133. return $this->NULL_POST;
  1134. }
  1135. function &GetArchive($id){
  1136. if(!isset($id)) return $this->NULL_POST;
  1137. if(isset($this->Archive[0])) foreach($this->Archive as &$p){
  1138. if($p && $p['id'] == $id) { return $p; }
  1139. }
  1140. return $this->NULL_POST;
  1141. }
  1142. function &GetArchiveVersion(&$ah, $version, &$next_ver){
  1143. if(!isset($ah)) return $this->NULL_POST;
  1144. $found = NULL;
  1145. if(isset($ah['list'][0])) foreach($ah['list'] as &$p){
  1146. if(isset($found)){ $next_ver = $p; return $found; }
  1147. if($p && $p['version'] == $version) { $found = &$p; }
  1148. }
  1149. if(isset($found)) { $next_ver=NULL; return $found; }
  1150. return $this->NULL_POST;
  1151. }
  1152. function WriteArchive(){
  1153. $cf = NULL;$opened =NULL;
  1154. $this->SortArchive();
  1155. foreach($this->Archive as $p){
  1156. $nid = substr($p['id'], 0,6);
  1157. if($cf != $nid){
  1158. if($opened){
  1159. fflush($opened);
  1160. fclose($opened);
  1161. }
  1162. $cf = $nid;
  1163. $opened = fopen("archive/$cf.md", 'w');
  1164. }
  1165. $info = "[LAMDWIKIPOST {$p['id']}; ".
  1166. "VER {$p['version']}; ".
  1167. ']';
  1168. fwrite($opened, $info.PHP_EOL.PHP_EOL.$p['content'].PHP_EOL.PHP_EOL);
  1169. }
  1170. }
  1171. function WritePosts(){
  1172. $cf = NULL;$opened =NULL;
  1173. $this->SortPosts();
  1174. foreach($this->Posts as $p){
  1175. $nid = substr($p['id'], 0,6);
  1176. if($cf != $nid){
  1177. if($opened){
  1178. fflush($opened);
  1179. fclose($opened);
  1180. }
  1181. $cf = $nid;
  1182. $opened = fopen("posts/$cf.md", 'w');
  1183. }
  1184. $info = "[LAMDWIKIPOST {$p['id']}; ".
  1185. ((isset($p['version']) && $p['version'])?"VER {$p['version']}; ":"").
  1186. ((isset($p['comment_to']) && $p['comment_to'])?"COMMENT {$p['comment_to']}; ":"").
  1187. ((isset($p['email']) && $p['email'])?"EMAIL {$p['email']}; ":"").
  1188. ((isset($p['name']) && $p['name'])?"NAME {$p['name']}; ":"").
  1189. ((isset($p['link']) && $p['link'])?"LINK {$p['link']}; ":"").
  1190. ((isset($p['ip']) && $p['ip'])?"IP {$p['ip']}; ":"").
  1191. ((isset($p['mark_delete']) && $p['mark_delete'])?"MDEL; ":"").
  1192. ((isset($p['mark_value']) && $p['mark_value']>=0)?"MVAL {$p['mark_value']}; ":"").
  1193. ((isset($p['next']) && $p['next'])?"NEXT {$p['next']}; ":"").
  1194. ((isset($p['prev']) && $p['prev'])?"PREV {$p['prev']}; ":"").
  1195. ((isset($p['refs']) && isset($p['refs'][0]))?("REFS ".implode(" ",$p['refs'])."; "):"").
  1196. ']';
  1197. fwrite($opened, $info.PHP_EOL.PHP_EOL.$p['real_content'].PHP_EOL.PHP_EOL);
  1198. }
  1199. }
  1200. function CachePostLinks(){
  1201. if(isset($this->Posts) && isset($this->Posts[0]))foreach ($this->Posts as &$post){
  1202. $this->ConvertPost($post);
  1203. unset($post['refs']);
  1204. }else return;
  1205. if(isset($this->Images) && isset($this->Images[0])) foreach ($this->Images as &$im){
  1206. unset($im['refs']);
  1207. }
  1208. foreach ($this->Posts as &$post){
  1209. if(preg_match_all('/<a[^>]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>.*?<\/a>/u',$post['html'],$matches,PREG_SET_ORDER)){
  1210. foreach($matches as $m){
  1211. $ref = &$this->GetPost($m[1]);
  1212. if($ref!=NULL){
  1213. if(!isset($ref['refs']))$ref['refs']=[];
  1214. if(!in_array($post['id'],$ref['refs'])){ $ref['refs'][]=$post['id']; }
  1215. }
  1216. }
  1217. }
  1218. if(preg_match_all('/!\[([^\]]*)\]\(images\/([0-9]{14,}\.(jpg|jpeg|png|gif))\)/u', $post['content'],$matches,PREG_SET_ORDER)){
  1219. foreach($matches as $m){
  1220. if(($im = &$this->FindImage($m[2]))!=NULL){
  1221. if(!isset($im['refs'])){$im['refs']=[];}
  1222. if(!in_array($post['id'], $im['refs']))$im['refs'][] = $post['id'];
  1223. }
  1224. }
  1225. }
  1226. }
  1227. }
  1228. function CreatePostAnchor(&$post){
  1229. $that=&$this;
  1230. $post['html'] = preg_replace_callback('/<h([0-9])>(.+?)(?=<\/h[0-9]>)/u', function ($ma) use ($that){
  1231. $id = '_heading_'.sizeof($this->Anchors);
  1232. $entry=[(int)$ma[1], $id, $ma[2]];
  1233. $that->Anchors[] = $entry;
  1234. return "<h${ma[1]} id='${id}'>${ma[2]}";
  1235. }, $post['html']);
  1236. }
  1237. function RenamePost(&$post, $rename){
  1238. foreach($this->Posts as &$p){
  1239. if($p['id']==$rename && $p!==$post) { return; /* don't overwrite */ }
  1240. }
  1241. foreach($this->Posts as &$p){
  1242. if(isset($p['prev']) && $p['prev']==$post['id']) { $p['prev']=$rename; }
  1243. if(isset($p['next']) && $p['next']==$post['id']) { $p['next']=$rename; }
  1244. }
  1245. $post['id'] = $rename;
  1246. }
  1247. function PushPostVersion(&$post, $optime_id){
  1248. $a = &$this->GetArchiveHandle($post['id']);
  1249. $ap = []; $ap['id'] = $post['id']; $ap['content'] = $post['real_content'];
  1250. $ap['version'] = isset($post['version'])?$post['version']:$ap['id'];
  1251. $this->InsertArchivePost($ap);
  1252. $post['version'] = $optime_id;
  1253. }
  1254. function &EditPost($id_if_edit, $content, $mark_delete, $reply_to,
  1255. $get_original_only=false, $mark_value=NULL, $rename=NULL, $push_version=false){
  1256. $this->ReadImages();
  1257. $this->ReadPosts();
  1258. if($push_version){
  1259. $this->ReadArchive();
  1260. }
  1261. $p_success = NULL;
  1262. if(isset($id_if_edit)){
  1263. $post = &$this->GetPost($id_if_edit);
  1264. if($post===$this->NULL_POST) return $this->NULL_POST;
  1265. if($get_original_only){
  1266. return $post['real_content'];
  1267. }
  1268. if($push_version){
  1269. $this->PushPostVersion($post,$this->TIME_STRING);
  1270. }
  1271. if(isset($content)) $post['real_content'] = $content;
  1272. if(isset($mark_delete)) $post['mark_delete'] = $mark_delete;
  1273. if(isset($mark_value)) $post['mark_value'] = $mark_value;
  1274. if(isset($rename) && preg_match('/^[0-9]{14}$/u',$rename)) $this->RenamePost($post,$rename);
  1275. $p_success = &$post;
  1276. }else{
  1277. if(!isset($content)) return $this->NULL_POST;
  1278. $id = date('YmdHis');
  1279. if($this->GetPost($id)!== $this->NULL_POST) return $this->NULL_POST;
  1280. $post = [];
  1281. $post['id'] = $id;
  1282. $post['real_content'] = $content;
  1283. if(isset($reply_to) && ($rep = &$this->GetPost($reply_to))!== $this->NULL_POST){
  1284. if(!(isset($rep['next']) && $rep['next'])){$rep['next'] = $id; $post['prev'] = $rep['id'];}
  1285. else $post['real_content'] = "[引用的文章]($reply_to)".$post['content'];
  1286. }
  1287. $this->Posts[] = $post;
  1288. $p_success = &$this->Posts[count($this->Posts) - 1];
  1289. }
  1290. $this->CachePostLinks();
  1291. $this->WritePosts();
  1292. if($push_version){
  1293. $this->WriteArchive();
  1294. }
  1295. $this->WriteImages();
  1296. $this->ClearData();
  1297. return $p_success;
  1298. }
  1299. function &EditComment($id_if_edit, $comment_to_id, $content, $email, $name, $link=NULL, $ip=NULL){
  1300. $this->ReadPosts();
  1301. $p_success = NULL;
  1302. if(isset($id_if_edit)){
  1303. $post = &$this->GetPost($id_if_edit);
  1304. if($post===$this->NULL_POST || !isset($post['comment_to'])) return $this->NULL_POST;
  1305. if(isset($content)) $post['content'] = $content;
  1306. if(isset($comment_to_id)) $post['comment_to'] = $comment_to_id;
  1307. if(isset($email)) $post['email'] = $email; if(isset($name)) $post['name'] = $name; if(isset($link)) $post['link'] = $link;
  1308. if(isset($ip)) $post['ip'] = $ip;
  1309. $p_success = &$post;
  1310. }else{
  1311. if(!isset($content) || !isset($comment_to_id)) return $this->NULL_POST;
  1312. $id = date('YmdHis');
  1313. if($this->GetPost($id)!== $this->NULL_POST) return $this->NULL_POST;
  1314. if(!($to_post=$this->GetPost($comment_to_id))) return $this->NULL_POST;
  1315. $post = []; $post['id'] = $id; $post['content'] = $content; $post['comment_to'] = $comment_to_id;
  1316. if(isset($email)) $post['email'] = $email; if(isset($name)) $post['name'] = $name; if(isset($link)) $post['link'] = $link;
  1317. if(isset($ip)) $post['ip'] = $ip;
  1318. $this->Posts[] = $post;
  1319. $p_success = &$this->Posts[count($this->Posts) - 1];
  1320. }
  1321. $this->WritePosts();
  1322. $this->ClearData();
  1323. return $p_success;
  1324. }
  1325. function InsertReplacementSymbols($MarkdownContent){
  1326. $replacement = preg_replace('/<!--[\s\S]*-->/U',"",$MarkdownContent);
  1327. $replacement = preg_replace_callback("/(```|`)([^`]*)(?1)/U",
  1328. function($matches){
  1329. $rep = preg_replace('/->/','-@>',$matches[0]);
  1330. $rep = preg_replace('/=>/','=@>',$rep);
  1331. $rep = preg_replace('/<=/','<@=',$rep);
  1332. $rep = preg_replace('/<-/','<@-',$rep);
  1333. $rep = preg_replace('/\R([+]{3,})\R/',PHP_EOL.'@$1'.PHP_EOL,$rep);
  1334. $rep = preg_replace('/\[-/','[@-',$rep);
  1335. $rep = preg_replace('/\{/','{@',$rep);
  1336. return $rep;
  1337. },
  1338. $replacement);
  1339. $replacement = preg_replace("/<[-]+>/","↔",$replacement);
  1340. $replacement = preg_replace("/([^-])->/","$1→",$replacement);
  1341. $replacement = preg_replace("/<-([^-])/","←$1",$replacement);
  1342. $replacement = preg_replace("/([^-])[-]+->/","$1⟶",$replacement);
  1343. $replacement = preg_replace("/<-[-]+([^-])/","⟵$1",$replacement);
  1344. $replacement = preg_replace("/<[=]+>/","⇔",$replacement);
  1345. $replacement = preg_replace("/[=]+>/","⇒",$replacement);
  1346. $replacement = preg_replace("/<[=]+/","⇐",$replacement);
  1347. $replacement = preg_replace("/\R([+]{3,})\R/","<div class='page_break'></div>",$replacement);
  1348. $replacement = preg_replace("/\[-(.*)-\]/U","<span class='text_highlight'>$1</span>",$replacement);
  1349. $replacement = preg_replace("/{支付宝(\s+[^}]*?)?}/u","<span class='special_alipay'>支付宝$1</span>",$replacement);
  1350. $replacement = preg_replace("/{PayPal(\s+[^}]*?)?}/ui",
  1351. "<span class='special_paypal'>Pay<span class='special_paypal_inner'>Pal</span>$1</span>",$replacement);
  1352. $replacement = preg_replace_callback("/(```|`)([^`]*)(?1)/U",
  1353. function($matches){
  1354. $rep = preg_replace('/-@>/','->',$matches[0]);
  1355. $rep = preg_replace('/<@-/','<-',$rep);
  1356. $rep = preg_replace('/=@>/','=>',$rep);
  1357. $rep = preg_replace('/<@=/','<=',$rep);
  1358. $rep = preg_replace('/\R@([+]{3,})\R/',PHP_EOL.'$1'.PHP_EOL,$rep);
  1359. $rep = preg_replace('/\[@-/','[-',$rep);
  1360. $rep = preg_replace('/\{@/','{',$rep);
  1361. return $rep;
  1362. },
  1363. $replacement);
  1364. return $replacement;
  1365. }
  1366. function CanShowPost(&$p){
  1367. if(isset($p['comment_to'])) return false;
  1368. $is_mark_exp = (isset($p['tid'])&&isset($p['tid']['exp'])&&$p['tid']['exp']) || (isset($p['mark_value'])&&$p['mark_value']==6);
  1369. $is_mark_slf = (isset($p['tid'])&&isset($p['tid']['slf'])&&$p['tid']['slf']) || (isset($p['mark_value'])&&$p['mark_value']==7);
  1370. if($is_mark_slf && !$this->LoggedIn){ return false; }
  1371. if(!$this->InExperimentalMode){
  1372. if(!$this->LoggedIn){
  1373. if($is_mark_exp) return false;
  1374. return true;
  1375. }
  1376. return true;
  1377. }else{
  1378. if($is_mark_exp) return true;
  1379. return false;
  1380. }
  1381. }
  1382. function SkipProduct(&$p){
  1383. if($this->LoggedIn) return false;
  1384. return (isset($p['mark_value']) && $p['mark_value']==5);
  1385. }
  1386. function GetRedirect($args=NULL){
  1387. $str = 'index.php?';
  1388. if(isset($args['post'])) $str.='&post='.$args['post'];
  1389. else if(isset($_GET['post'])) $str.='&post='.$_GET['post'];
  1390. if(isset($args['gallery'])) $str.='&gallery='.$args['gallery'];
  1391. else if(isset($_GET['gallery'])) $str.='&gallery='.$_GET['gallery'];
  1392. if(isset($args['pic'])) $str.='&pic='.$args['pic'];
  1393. else if(isset($_GET['pic'])) $str.='&pic='.$_GET['pic'];
  1394. if(isset($args['settings'])) $str.='&settings='.$args['settings'];
  1395. else if(isset($_GET['settings'])) $str.='&settings='.$_GET['settings'];
  1396. if(isset($args['extras'])) $str.='&extras='.$args['extras'];
  1397. else if(isset($_GET['extras'])) $str.='&extras='.$_GET['extras'];
  1398. if(isset($args['category'])) $str.='&category='.$args['category'];
  1399. else if(isset($_GET['category'])) $str.='&category='.$_GET['category'];
  1400. if(isset($args['history'])) $str.='&history='.$args['history'];
  1401. else if(isset($_GET['history'])) $str.='&history='.$_GET['history'];
  1402. if(isset($args['version'])) $str.='&version='.$args['version'];
  1403. else if(isset($_GET['version'])) $str.='&version='.$_GET['version'];
  1404. return $str;
  1405. }
  1406. function ProcessRequest(&$message=NULL, &$redirect=NULL){
  1407. if(isset($_GET['gallery']) && $_GET['gallery']=='default'){
  1408. $redirect = "index.php?gallery=".(isset($this->DefaultGallery)&&$this->DefaultGallery!=''?$this->DefaultGallery:"main");
  1409. return 0;
  1410. }
  1411. if(isset($_GET['set_language'])){
  1412. setcookie('la_language',$_GET['set_language'],time()+3600*24*7); $_COOKIE['la_language'] = $_GET['set_language'];
  1413. $redirect=$this->GetRedirect(); return 0;
  1414. }
  1415. if(isset($_GET['set_wayback'])){
  1416. if($_GET['set_wayback']!='false'){
  1417. $wayback = date('YmdHis'); setcookie('la_wayback',$wayback); $_COOKIE['la_wayback'] = $wayback;
  1418. }else{
  1419. setcookie('la_wayback', null, -1); unset($_COOKIE['la_wayback']);
  1420. }
  1421. $redirect=$this->GetRedirect(); return 0;
  1422. }
  1423. if(isset($_GET['post'])){
  1424. $this->CurrentPostID = $_GET['post'];
  1425. }
  1426. if(isset($_GET['offset'])){
  1427. $this->CurrentOffset = $_GET['offset'];
  1428. }
  1429. if(isset($_GET['part'])){
  1430. if($_GET['part'] == 'hot') $this->ExtraScripts.="ShowLeftSide();";
  1431. else if ($_GET['part'] == 'recent') $this->ExtraScripts.="ShowCenterSide();";
  1432. }
  1433. if(isset($_GET['post'])){
  1434. $this->ExtraScripts.="window.addEventListener('load', (event) => {ScrollToPost('".$_GET['post']."');});";
  1435. }
  1436. if(isset($_POST['search_content'])){
  1437. $redirect='index.php?search='.$_POST['search_content'];return 0;
  1438. }
  1439. if(isset($_GET['image_info'])){
  1440. $m=$_GET['image_info'];
  1441. $this->ReadImages();
  1442. $this->ReadPosts();
  1443. $im = &$this->FindImage($m);
  1444. if($im==NULL || !isset($im['refs']) || !isset($im['refs'][0])){ echo "not_found"; exit; }
  1445. echo "<ref>".sizeof($im['refs'])."</ref>";
  1446. echo "<insert><ul>";
  1447. foreach(array_reverse($im['refs']) as $ref){
  1448. $p = $this->GetPost($ref);
  1449. if(!$p || !$this->CanShowPost($p)) continue;
  1450. $this->MakeSinglePost($p, false, true, "post_preview", true, false, false, false, true);"</li>";
  1451. }
  1452. echo "</ul></insert>";
  1453. exit;
  1454. }
  1455. if(isset($_GET['confirm_enter']) && $_GET['confirm_enter']!=false){
  1456. setcookie('la_experimental','confirmed'); $_COOKIE['la_experimental'] = $_GET['confirmed'];
  1457. $redirect='index.php'.(isset($_GET['post'])?'?post='.$_GET['post']:"");return 0;
  1458. }
  1459. if($this->LoggedIn){
  1460. $this->DoUpload();
  1461. if(isset($_POST['settings_button'])){
  1462. if(isset($_POST['settings_title'])) $this->Title=$_POST['settings_title'];
  1463. if(isset($_POST['settings_short_title'])) $this->ShortTitle=$_POST['settings_short_title'];
  1464. if(isset($_POST['settings_display_name'])) $this->DisplayName=$_POST['settings_display_name'];
  1465. if(isset($_POST['settings_email'])) $this->EMail=$_POST['settings_email'];
  1466. if(isset($_POST['settings_special_navigation'])) $this->SpecialNavigation=$_POST['settings_special_navigation'];
  1467. if(isset($_POST['settings_special_footer'])) $this->SpecialFooter=$_POST['settings_special_footer'];
  1468. if(isset($_POST['settings_special_footer2'])) $this->SpecialFooter2=$_POST['settings_special_footer2'];
  1469. if(isset($_POST['settings_special_pinned'])) $this->SpecialPinned=$_POST['settings_special_pinned'];
  1470. if(isset($_POST['settings_default_gallery'])) $this->DefaultGallery=$_POST['settings_default_gallery'];
  1471. if(isset($_POST['settings_enable_comments'])) $this->CommentEnabled=True; else $this->CommentEnabled=False;
  1472. if(isset($_POST['settings_exp_host'])) $this->ExpHost=$_POST['settings_exp_host'];
  1473. if(isset($_POST['settings_exp_title'])) $this->ExpTitle=$_POST['settings_exp_title'];
  1474. if(isset($_POST['settings_exp_short_title'])) $this->ExpShortTitle=$_POST['settings_exp_short_title'];
  1475. if(isset($_POST['settings_exp_caution'])) $this->ExpCaution=$_POST['settings_exp_caution'];
  1476. if(isset($_POST['settings_exp_index'])) $this->ExpIndex=$_POST['settings_exp_index'];
  1477. if(isset($_POST['settings_exp_navigation'])) $this->ExpNavigation=$_POST['settings_exp_navigation'];
  1478. if(isset($_POST['settings_exp_footer'])) $this->ExpFooter=$_POST['settings_exp_footer'];
  1479. if(isset($_POST['settings_old_password'])&&password_verify($_POST['settings_old_password'], $this->Password)){
  1480. if(isset($_POST['settings_id'])) $this->Admin=$_POST['settings_id'];
  1481. if(isset($_POST['settings_new_password']) && isset($_POST['settings_new_password_redo']) &&
  1482. $_POST['settings_new_password'] = $_POST['settings_new_password_redo'])
  1483. {$this->Password=password_hash($_POST['settings_new_password'], PASSWORD_DEFAULT);}
  1484. $redirect=$_SERVER['REQUEST_URI'];
  1485. $this->DoLogout();
  1486. }
  1487. $this->WriteConfig();
  1488. return 0;
  1489. }
  1490. if(isset($_POST['settings_save_redirect'])){
  1491. if(isset($_POST['settings_redirect'])){
  1492. $this->BuildRedirectConfig($_POST['settings_redirect']);
  1493. }
  1494. $this->WriteConfig();
  1495. $redirect = 'index.php?extras=true'; return 0;
  1496. }
  1497. if(isset($_POST['settings_save_translation'])){
  1498. if(isset($_POST['settings_translation'])){
  1499. $f = fopen("custom_translations.md", "w"); fwrite($f,$_POST['settings_translation']); fflush($f); fclose($f);
  1500. }
  1501. $redirect = 'index.php?extras=true'; return 0;
  1502. }
  1503. if(isset($_GET['post'])){
  1504. if(isset($_GET['post_original'])){
  1505. echo $this->EditPost($_GET['post'],NULL,false,NULL,true,NULL,NULL,false);
  1506. exit;
  1507. }
  1508. }
  1509. if(isset($_GET['mark_delete']) && isset($_GET['target'])){
  1510. $this->EditPost($_GET['target'],NULL,$_GET['mark_delete']=='true',NULL,false,NULL,NULL,false);
  1511. if(isset($_GET['post'])) $redirect='?post='.$_GET['target']; else $redirect='index.php';
  1512. return 0;
  1513. }
  1514. if(isset($_GET['set_mark']) && isset($_GET['target'])){
  1515. $this->EditPost($_GET['target'],NULL,NULL,NULL,NULL,$_GET['set_mark'],NULL,false);
  1516. if(isset($_GET['post'])) $redirect='?post='.$_GET['target']; else $redirect='index.php';
  1517. return 0;
  1518. }
  1519. if(isset($_POST['post_button']) && isset($_POST['post_content'])){
  1520. $c = $_POST['post_content'];
  1521. if('有什么想说的' == $c){ return 0;}
  1522. if(preg_match('/\[LAMDWIKIPOST/u',$c))
  1523. { $message='Can\'t use character sequence"[LAMDWIKIPOST" anywhere in the post...'; return 1; }
  1524. $reply_to = (isset($_POST['post_reply_to'])&&$_POST['post_reply_to']!="")?$_POST['post_reply_to']:NULL;
  1525. $edit_id = (isset($_POST['post_edit_target'])&&$_POST['post_edit_target']!="")?$_POST['post_edit_target']:NULL;
  1526. $push_history = (isset($edit_id) && isset($_POST['post_record_edit']));
  1527. if(($edited = $this->EditPost($edit_id, $c, NULL, $reply_to,NULL,NULL,NULL,$push_history))!=NULL){
  1528. $redirect='?post='.$edited['id'];
  1529. return 0;
  1530. };
  1531. }
  1532. if(isset($_POST['post_rename_confirm']) && isset($_POST['post_rename_name']) && isset($_GET['rename_post'])){
  1533. if(($edited = $this->EditPost($_GET['rename_post'], NULL, NULL, NULL,NULL,NULL,$_POST['post_rename_name'],false))!=NULL){
  1534. $redirect='?post='.$edited['id'];
  1535. return 0;
  1536. };
  1537. }
  1538. if ($this->CommentEnabled && isset($_POST['comment_confirm']) && (isset($_GET['comment_to']))
  1539. && isset($_POST['comment_box']) && isset($_POST['comment_email']) && isset($_POST['comment_name'])){
  1540. $c = $_POST['comment_box'];
  1541. if(preg_match('/\[LAMDWIKIPOST/u',$c))
  1542. { $message='Can\'t use character sequence"[LAMDWIKIPOST" anywhere in the post...'; return 1; }
  1543. $comment_to = ($_GET['comment_to']!="")?$_GET['comment_to']:NULL;
  1544. if(($edited = $this->EditComment(NULL,
  1545. $_GET['comment_to'], $c, $_POST['comment_email'], $_POST['comment_name'],
  1546. isset($_POST['comment_link'])?$_POST['comment_link']:NULL,
  1547. $_SERVER['REMOTE_ADDR']))!=NULL){
  1548. $redirect='?post='.$_GET['post'];
  1549. return 0;
  1550. };
  1551. }
  1552. if(isset($_POST['gallery_edit_confirm']) && isset($_POST['gallery_edit_new_name']) && $_POST['gallery_edit_new_name']!=''){
  1553. $old_name = isset($_POST['gallery_edit_old_name'])?$_POST['gallery_edit_old_name']:"";
  1554. $new_name = $_POST['gallery_edit_new_name'];
  1555. if($old_name!=''){
  1556. $this->EditGallery($old_name, $new_name, false, true, null, null);
  1557. $redirect='?gallery='.$new_name;
  1558. }else{
  1559. $this->EditGallery(null, $new_name, false, true, null);
  1560. if(isset($_GET['gallery'])) $redirect='?gallery='.$_GET['gallery']; else $redirect='index.php';
  1561. }
  1562. return 0;
  1563. }
  1564. if(isset($_GET['gallery_edit_delete'])&&$_GET['gallery_edit_delete']!=null){
  1565. $this->EditGallery($_GET['gallery_edit_delete'], null, true, true, null, null);
  1566. if(isset($_GET['gallery'])) $redirect='?gallery=main'; else $redirect='index.php';
  1567. return 0;
  1568. }
  1569. if(isset($_POST['gallery_move_ops'])&&isset($_POST['gallery_move_ops'])){
  1570. if(preg_match('/^(REM|ADD)\s+(\S+)\s+(.*)$/u', $_POST['gallery_move_ops'], $ma)){
  1571. $this->ReadImages();
  1572. if(preg_match_all('/(\S+)/u', $ma[3], $files, PREG_SET_ORDER)) foreach($files as $name){
  1573. $this->EditImage($name[1], $ma[2], ($ma[1]=='REM'), NULL, NULL);
  1574. }
  1575. $this->WriteImages();
  1576. $this->ClearData();
  1577. }
  1578. if(isset($_GET['gallery'])) $redirect='?gallery='.$_GET['gallery']; else $redirect='index.php';
  1579. return 0;
  1580. }
  1581. if(isset($_GET['gallery_set_featured'])&&isset($_GET['value'])){
  1582. $this->EditGallery($_GET['gallery_set_featured'], null, false, true, $_GET['value']!='false', null);
  1583. if(isset($_GET['gallery'])) $redirect='?gallery='.$_GET['gallery']; else $redirect='index.php';
  1584. return 0;
  1585. }
  1586. if(isset($_GET['gallery_set_experimental'])&&isset($_GET['value'])){
  1587. $this->EditGallery($_GET['gallery_set_experimental'], null, false, true, null, $_GET['value']!='false');
  1588. if(isset($_GET['gallery'])) $redirect='?gallery='.$_GET['gallery']; else $redirect='index.php';
  1589. return 0;
  1590. }
  1591. if(isset($_GET['image_list'])&&$_GET['image_list']!=""){
  1592. $this->ReadImages();
  1593. $gallery = $_GET['image_list'];
  1594. foreach($this->Images as $im){
  1595. if($gallery=='main'){ echo "[".$im['name'].",".(isset($im['thumb'])?$im['thumb']:$im['name'])."]"; continue; }
  1596. if(isset($im['galleries']) && isset($im['galleries'][0]) && in_array($gallery,$im['galleries'])) {
  1597. echo "[".$im['name'].",".(isset($im['thumb'])?$im['thumb']:$im['name'])."]"; }
  1598. }
  1599. exit;
  1600. }
  1601. $do_image_redirect = 0;
  1602. if(isset($_POST['image_button'])){
  1603. $this->ReadImages();
  1604. if(isset($_POST['image_ops_product_link'])){
  1605. if(preg_match('/([0-9]{14,}\.(jpg|png|jpeg|gif))/u',$_SERVER['REQUEST_URI'],$ma)){
  1606. $this->EditImage($ma[1], NULL, false, $_POST['image_ops_product_link'], NULL);
  1607. $redirect=$_SERVER['REQUEST_URI'];
  1608. $do_image_redirect = 1;
  1609. }
  1610. }
  1611. if(isset($_GET['pic'])&&isset($_POST['image_edit_new_name'])){
  1612. if (preg_match('/([0-9]{14,}\.(jpg|png|jpeg|gif))/u',$_GET['pic'],$ma) &&
  1613. preg_match('/\s*([0-9]{14,})\s*/u',$_POST['image_edit_new_name'],$man)){
  1614. $this->EditImage($ma[1], NULL, false, NULL, $man[1]);
  1615. $redirect=$this->GetRedirect(['pic'=>'images/'.$man[1].'.'.$ma[2]]);
  1616. $do_image_redirect = 1;
  1617. }
  1618. }
  1619. $this->WriteImages();
  1620. if($do_image_redirect) return 0;
  1621. }
  1622. //if(isset($_GET['rewrite_styles'])){
  1623. $this->WriteStyles();
  1624. // $redirect='?extras=true'; return 0;
  1625. //}
  1626. if(isset($_GET['regenerate_thumbnails'])){
  1627. $this->RegenerateThumbnails();
  1628. $redirect='?extras=true'; return 0;
  1629. }
  1630. if(isset($_GET['clear_all_logins'])){
  1631. $this->LoginTokens=[];
  1632. $this->WriteTokens();
  1633. }
  1634. }
  1635. return 0;
  1636. }
  1637. function PostProcessHTML($html,&$added_images=null,$do_product_info=false, &$product_info=null){
  1638. if(!$this->LoggedIn){
  1639. $html = preg_replace("/(<a[^>]*href=[\'\"])(.*?)([\'\"][^>]*)>(\#.*?<\/a>)/u","",$html);
  1640. }
  1641. $html = preg_replace("/(<a[^>]*href=[\'\"])([0-9]{14})([\'\"][^>]*)>(.*?<\/a>)/u","$1?post=$2$3 onclick='ShowWaitingBar()'>$4",$html);
  1642. $html = preg_replace("/(<a[^>]*href=[\'\"])\@(.*?)([\'\"][^>]*)>(.*?<\/a>)/u","$1?category=$2$3 onclick='ShowWaitingBar()'>$4",$html);
  1643. $html = preg_replace("/(<a[^>]*href=[\'\"])((.*?:\/\/).*?)([\'\"][^>]*)(>)(.*?)(<\/a>)/u",
  1644. "$1$2$4 target='_blank'$5$6<sup>↗</sup>$7",$html);
  1645. $html = preg_replace("/<p>\s*\@.*?<\/p>/mu","",$html);
  1646. $html = preg_replace("/<p>\s*\{\s*INTERESTING\s+(.*?)\}\s*<\/p>/imu","",$html);
  1647. $images = [];
  1648. $images_noclick = [];
  1649. $search_str =
  1650. $html = preg_replace_callback(
  1651. "/(<p>\s*)?(<img([^>]*)src=[\'\"])(images\/([0-9]{14,}\.(jpg|png|jpeg|gif)))([\'\"][^>]*)\/>(\s*<\/p>)?/u",
  1652. function($m) use (&$images,&$images_noclick) {
  1653. $orig_src = $src = $m[5]; $keep = false; $original = false;
  1654. if (preg_match('/alt=[\'\"].*keep_inline.*[\'\"]/u',$m[3]) ||
  1655. preg_match('/alt=[\'\"].*keep_inline.*[\'\"]/u',$m[7])) { $keep=true; }
  1656. if ($keep && preg_match('/alt=[\'\"].*original.*[\'\"]/u',$m[3]) ||
  1657. preg_match('/alt=[\'\"].*original.*[\'\"]/u',$m[7])) { $original=true; }
  1658. if(($im = &$this->FindImage($m[5]))!=NULL && isset($im['thumb'])){
  1659. $src = $im['thumb']; $orig_src=$im['file'];
  1660. }
  1661. if($this->InExperimentalMode){
  1662. $click = "<a href='".$orig_src."' class='original_img' target='_blank'>".
  1663. $m[2].$orig_src.$m[7]."></a>";
  1664. return $click;
  1665. }else{
  1666. $click = $m[2].($original?$orig_src:$src).$m[7]." data-imgsrc='".$m[5]."'".
  1667. (isset($im['product'])?" data-product='".$im['product']."'":"").
  1668. ($original?" class='original_img'":"").">";
  1669. $images_noclick[]=$m[2].$src.$m[7].">";
  1670. $ret = "";
  1671. if($keep) { $ret = $click; }
  1672. else { $images[] = $click; }
  1673. if(isset($m[1])&&isset($m[8])&&$m[1]&&$m[8]) return $ret;
  1674. else return ((isset($m[1])&&$m[1]?$m[1]:"").$ret.(isset($m[8])&&$m[8]?$m[8]:""));
  1675. }
  1676. },$html,-1,$count);
  1677. $html = preg_replace('/<p>\s*<\/p>/u',"", $html); if($html==""){$html="<p>&nbsp;</p>";}
  1678. if(sizeof($images)){
  1679. if(sizeof($images)==1){$html.="<div>".$images[0]."</div>";}
  1680. else{
  1681. $html.="<div class='p_row'>";
  1682. foreach($images as $img){
  1683. $html.="<div class='p_thumb'>".$img."</div>";
  1684. }
  1685. $html.="<div class='p_thumb' style='flex-grow:10000;box-shadow:none;height:0;'></div></div>";
  1686. }
  1687. }
  1688. if(sizeof($images_noclick)){
  1689. $added_images = $images_noclick;
  1690. }
  1691. if($do_product_info){
  1692. $html = preg_replace_callback("/\{PRICE\s+([^]]+?)\}/u",
  1693. function($m) use (&$product_info) { $product_info['price']=$m[1];return ""; },$html);
  1694. $html = preg_replace_callback("/\{SHORT\s+([^]]+?)\}/u",
  1695. function($m) use (&$product_info) { $product_info['short']=$m[1];return ""; },$html);
  1696. $html = preg_replace('/<p>\s*<\/p>/u',"", $html);
  1697. if (preg_match('/<h[1-5]>(.+?)<\/h/u',$html,$title)){ $product_info['title']=$title[1]; }
  1698. else { $product_info['title'] = $this->T('商品'); }
  1699. if(!isset($product_info['price'])) $product_info['price']=$this->T('未设置价格');
  1700. $html = preg_replace_callback("/\{PURCHASE\s+([^]]+?)\}/u",function($m) use (&$product_info) {
  1701. return "<a class='purchase_button' href=\"mailto:".$this->T($this->DisplayName)."<".$this->EMail.">?subject=".
  1702. $this->T('购买').' '.$product_info['title'].
  1703. "&body=".$this->T('你好!我想购买').$product_info['title'].urlencode(PHP_EOL.PHP_EOL).
  1704. $this->FullURL().urlencode(PHP_EOL.PHP_EOL)."\">".$m[1]."</a>"; },$html);
  1705. }
  1706. return $html;
  1707. }
  1708. function ConvertPost(&$post){
  1709. if(!isset($post['html'])){
  1710. $info=[];
  1711. $post['html'] = $this->PostProcessHTML($this->PDE->text($this->InsertReplacementSymbols($post['content'])),
  1712. $post['images'],
  1713. isset($post['product']), $info);
  1714. if(isset($post['product'])) $post['product']=$info;
  1715. }
  1716. }
  1717. function GetPostTitle(&$post, $h1_only=false){
  1718. if(!isset($post['title'])){
  1719. if($h1_only){
  1720. if(preg_match('/^#\s+(.*?)$/mu',$post['content'],$m)){return $m[1];}
  1721. return NULL;
  1722. }
  1723. if(preg_match('/^#{1,6}\s+(.*?)$/mu',$post['content'],$m)){$post['title']=$m[1];}
  1724. else{ $post['title'] = $this->T('未命名'); if(preg_match('/(.*)$/mu',$post['content'],$m))
  1725. {$post['title'].=' ('.strip_tags($this->PDE->text($m[1])).')';} }
  1726. }
  1727. return $post['title'];
  1728. }
  1729. function DetectPageType(){
  1730. if($this->InExperimentalMode) $this->PageType='experimental';
  1731. else if(isset($_GET['history'])) $this->PageType='history';
  1732. else if(isset($_GET['extras'])) $this->PageType='extras';
  1733. else if(isset($_GET['settings'])) $this->PageType='settings';
  1734. else if(isset($_GET['gallery'])) $this->PageType='gallery';
  1735. else if(isset($_GET['search'])) $this->PageType='search';
  1736. else if(isset($_GET['category'])) $this->PageType='category';
  1737. else if(isset($this->CurrentPostID)) $this->PageType = "post";
  1738. else if(isset($_GET['comments'])) $this->PageType='comments';
  1739. else $this->PageType = "main";
  1740. }
  1741. function MakeHeader(&$p){?>
  1742. <!DOCTYPE html><html lang='zh-Hans-CN'>
  1743. <head>
  1744. <meta charset='utf-8'>
  1745. <meta content="width=device-width, initial-scale=1" name="viewport">
  1746. <title><?=$this->InExperimentalMode?$this->T($this->ExpTitle):$this->T($this->Title)?></title>
  1747. <link href='styles/main.css' rel='stylesheet' type="text/css">
  1748. </head>
  1749. <div class='page'>
  1750. <script type='text/javascript'>
  1751. function toggle_mobile_show(a){a.classList.toggle('hidden_on_mobile')}
  1752. function ShowWaitingBar(){
  1753. wait = document.querySelector("#waiting_bar");
  1754. wait.style.display='';
  1755. }
  1756. function HideWaitingBar(){
  1757. wait = document.querySelector("#waiting_bar");
  1758. wait.style.display='none';
  1759. }
  1760. <?php if(!$this->InExperimentalMode){ ?>
  1761. function la_auto_grow(element){
  1762. s=window.scrollY;element.style.height="30px";element.style.height=(element.scrollHeight)+"px";window.scroll(0, s);
  1763. }
  1764. var scroll_l=0,scroll_c=0;in_center=1;
  1765. function ShowLeftSide(){
  1766. scroll_c = window.scrollY;
  1767. document.getElementById('div_left').classList.remove('hidden_on_mobile');
  1768. document.getElementById('div_center').classList.add('hidden_on_mobile');
  1769. window.scroll(0, scroll_l); in_center=0;
  1770. }
  1771. function ShowCenterSide(){
  1772. scroll_l = window.scrollY;
  1773. document.getElementById('div_center').classList.remove('hidden_on_mobile');
  1774. document.getElementById('div_left').classList.add('hidden_on_mobile');
  1775. window.scroll(0, scroll_c); in_center=1;
  1776. }
  1777. function ShowBackdrop(alpha=0.5){
  1778. b = document.getElementById('backdrop');
  1779. b.style="background-color:rgba(0,0,0,"+alpha+");";
  1780. b.style.animation='backdrop_fade_in 0.3s forwards';
  1781. b.style.display = 'block';
  1782. }
  1783. function HideBackdrop(){
  1784. b = document.getElementById('backdrop');
  1785. b.style.animation='backdrop_fade_out 0.3s forwards';
  1786. setTimeout(function(e1){e1.style.display='none';}, 300, b);
  1787. }
  1788. function ShowRightSide(big,elem_to_clone){
  1789. p = document.getElementById('pop_right');
  1790. if(elem_to_clone){
  1791. c = elem_to_clone.cloneNode(true);
  1792. c.id='side_bar_cloned';c.className="";c.style="";
  1793. p.querySelector('._content').appendChild(c);
  1794. }
  1795. p.classList.remove('pop_right','pop_right_big');
  1796. if(big) {p.classList.add('pop_right_big');p.style.animation='pop_slide_in_big 0.3s forwards';}
  1797. else {p.classList.add('pop_right');p.style.animation='pop_slide_in 0.3s forwards';}
  1798. p.style.display='block';
  1799. ShowBackdrop(0.5);
  1800. }
  1801. function HideRightSide(){
  1802. p = document.getElementById('pop_right');
  1803. if(side=p.querySelector('#side_bar_cloned')){
  1804. side.remove();
  1805. }
  1806. put = document.querySelector("#_uploader");
  1807. if(p.classList.contains('pop_right')){p.style.animation='pop_slide_out 0.3s forwards';}
  1808. else{p.style.animation='pop_slide_out_big 0.3s forwards';}
  1809. setTimeout(function(e1, e2){e1.style.display='none';if(e2)e2.style.display='none';}, 300, p, put);
  1810. HideBackdrop();
  1811. }
  1812. function ToggleLeftSide(){if(in_center)ShowLeftSide();else ShowCenterSide();}
  1813. function ScrollToPost(id){
  1814. if(!(post = document.querySelector("[data-post-id='"+id+"']"))) return;
  1815. post.scrollIntoView({ behavior: 'smooth', block: 'start'});
  1816. }
  1817. <?php } ?>
  1818. </script>
  1819. <header>
  1820. <?php if($this->InExperimentalMode){
  1821. $this->MakeExpNavButtons($p);
  1822. }else{
  1823. $this->MakeNavButtons($p);
  1824. } ?>
  1825. <hr />
  1826. <?php if(isset($this->WayBack)){
  1827. $time=(isset($_COOKIE['la_wayback']) && preg_match('/[0-9]{14}/u',$_COOKIE['la_wayback']))?$_COOKIE['la_wayback']:date('YmdHis');
  1828. $year=substr($time,0,4);$month=substr($time,4,2);$day=substr($time,6,2);?> <div class='text_highlight'>
  1829. &nbsp;<b><span onclick='document.getElementById("wayback_config").classList.toggle("hidden_on_mobile")'>
  1830. <div class='wayback_close' onclick='event.stopPropagation()'><a href='<?=$this->GetRedirect()?>&set_wayback=false'>
  1831. <span class='hidden_on_mobile'><?=$this->T('退出')?></span>×&nbsp;</a></div>
  1832. <?=$this->T('正以过去的日期浏览')?></b><div id='wayback_config' class='wayback_expand hidden_on_mobile'>
  1833. <select id="wayback_year"><?php for($y=$this->YearBegin;$y<=$this->YearEnd;$y++){ ?>
  1834. <option value="<?=$y?>"<?=$y==$year?" selected":""?>><?=$y?></option><?php } ?></select>
  1835. <br class='hidden_on_desktop' />
  1836. <select id="wayback_month"><?php for($y=1;$y<=12;$y++){ ?>
  1837. <option value="<?=$y?>"<?=$y==$month?" selected":""?>><?=$y?></option><?php } ?></select>
  1838. <select id="wayback_day"><?php for($y=1;$y<=31;$y++){ ?>
  1839. <option value="<?=$y?>"<?=$y==$day?" selected":""?>><?=$y?></option><?php } ?></select>
  1840. <br class='hidden_on_desktop' />
  1841. <a href='<?=$this->GetRedirect()?>'><?=$this->T('查看')?> →</a>
  1842. </div>
  1843. </div><?php } ?>
  1844. </header>
  1845. <div id='waiting_bar' style='display:none;'></div>
  1846. <script>ShowWaitingBar();window.addEventListener('load',(event) =>{HideWaitingBar();}); </script>
  1847. <?php if(!$this->InExperimentalMode){ ?>
  1848. <div id='post_menu' style='display:none;' class='pop_menu clean_a'>
  1849. <ul>
  1850. <li><span id='_time_hook' class='smaller'>时间</span>&nbsp;&nbsp;<a href='javascript:HidePopMenu();'>×</a></li>
  1851. <li>
  1852. <a id='share_copy'>⧉</a>
  1853. <a id='share_pin' target='_blank'>Pin</a>
  1854. <a id='share_twitter' target='_blank'>Twitter</a>
  1855. <a id='share_weibo' target='_blank'><?=$this->T('微博')?></a>
  1856. </li>
  1857. <hr />
  1858. <?php if($this->LoggedIn){ ?>
  1859. <li><a id='menu_history'><?=$this->T('历史')?></a>
  1860. <a id='menu_edit'><?=$this->T('修改')?></a></li>
  1861. <li>
  1862. <a id='menu_refer_copy'><?=$this->T('只复制')?></a>
  1863. <a id='menu_refer'><?=$this->T('引用')?></a><br class='hidden_on_desktop' />
  1864. </li>
  1865. <li><a id='menu_mark' href='javascript:ToggleRenameDetails()'><?=$this->T('改名')?></a>
  1866. <a id='menu_mark' href='javascript:ToggleMarkDetails()'><?=$this->T('标记')?></a></li>
  1867. <li id='mark_details' style='display:none;'><b>
  1868. <a id='mark_set_clear' href='javascript:SetMark(-1);'>_</a>
  1869. <a id='mark_set_0' href='javascript:SetMark(0);'><?=$this->Markers[0]?></a>
  1870. <a id='mark_set_1' href='javascript:SetMark(1);'><?=$this->Markers[1]?></a>
  1871. <a id='mark_set_2' href='javascript:SetMark(2);'><?=$this->Markers[2]?></a>
  1872. <a id='mark_set_3' href='javascript:SetMark(3);'><?=$this->Markers[3]?></a>
  1873. <a id='mark_set_4' href='javascript:SetMark(4);'><?=$this->Markers[4]?></a>
  1874. <a id='mark_set_5' href='javascript:SetMark(5);'><?=$this->Markers[5]?></a>
  1875. <a id='mark_set_6' href='javascript:SetMark(6);'><?=$this->Markers[6]?></a>
  1876. <a id='mark_set_7' href='javascript:SetMark(7);'><?=$this->Markers[7]?></a>
  1877. </b></li>
  1878. <li id='rename_details' style='display:none;text-align:left;' class='smaller'>
  1879. <form action="" method="post" style='display:none;' id='post_rename_form'></form>
  1880. <input type='text' id='post_rename_name' name='post_rename_name' form="post_rename_form" style='width:9em;'>
  1881. <input class='button' type='submit' form='post_rename_form'
  1882. name='post_rename_confirm' id='post_rename_confirm' value='<?=$this->T('确认')?>'>
  1883. </li>
  1884. <hr />
  1885. <li><a id='menu_delete' class='smaller'></a></li>
  1886. <?php }else{ ?>
  1887. <li><a id='menu_history'><?=$this->T('历史')?></a></li>
  1888. <?php } ?>
  1889. </ul>
  1890. </div>
  1891. <div id='backdrop' style='display:none;' class='backdrop' onclick='HideRightSide()'
  1892. ondrop="_dropHandler(event);" ondragover="_dragOverHandler(event);"></div>
  1893. <div id='pop_right' class='pop_right' onclick='event.stopPropagation()'>
  1894. <div style='text-align:right;position:sticky;top:0;'><a class='clean_a' href='javascript:HideRightSide();'>
  1895. <?=$this->T('关闭')?>→</a></div>
  1896. <?php if($this->LoggedIn && in_array($this->PageType,['main','post'])){ ?>
  1897. <div id='_uploader' style='display:none;'>
  1898. <?php $this->MakeUploader(true); ?>
  1899. <p>&nbsp;</p>
  1900. <?php $this->MakeSideGalleryCode(); ?>
  1901. </div>
  1902. <?php } ?>
  1903. <div class='_content'></div>
  1904. </div>
  1905. <?php } ?>
  1906. <?php
  1907. }
  1908. function TranslatePostParts($html){
  1909. $html = preg_replace_callback('/>([^><]+?)</u', function($ma){
  1910. return ">".$this->T($ma[1])."<";
  1911. }, $html);
  1912. return $html;
  1913. }
  1914. function MakeNavButtons(&$p){?>
  1915. <a href='index.php' class='clean_a hidden_on_mobile' onclick='ShowWaitingBar()'><b><?=$this->T($this->Title)?></b></a>
  1916. <b><a class='hidden_on_desktop'
  1917. href='javascript:toggle_mobile_show(document.getElementById("mobile_nav"))'><?=$this->T($this->ShortTitle)?>...</a></b>
  1918. <div class='header_nav'>
  1919. <?php if($this->PageType=='post'){ ?>
  1920. <div style='float:right;' class='hidden_on_print'>
  1921. <?php if(isset($p) && isset($p['refs']) && isset($p['refs'][0])){ ?>
  1922. <span class='hidden_on_desktop'><a id='button_ref' href='javascript:ToggleLeftSide();'>
  1923. <?=$this->T('链接')?>(<?=sizeof($p['refs'])?>)</a></span>
  1924. <?php } ?>
  1925. <span class='hidden_on_wide hidden_on_print'>
  1926. <a id='button_toc'
  1927. href='javascript:ShowRightSide(true,document.querySelector("#div_right"));'><?=$this->T('目录')?></a></span></div>
  1928. <?php }else if($this->PageType=='history' && isset($_GET['version'])){ ?>
  1929. <div style='float:right;' class='hidden_on_print'>
  1930. <span class='hidden_on_desktop'><a id='button_ref' href='javascript:ToggleLeftSide();'>
  1931. <?=$this->T('历史')?></a></span></div>
  1932. <?php } ?>
  1933. <ul class='hidden_on_mobile hidden_on_print' id='mobile_nav' style='text-align:center;'>
  1934. <li class='hidden_on_mobile'><a href='?gallery=default' onclick='ShowWaitingBar()'><?=$this->T('画廊')?></a></li>
  1935. <li class='hidden_on_desktop_force block_on_mobile'>
  1936. <?php if($this->PageType!='main'){ ?>
  1937. <a href='index.php?part=recent' onclick='ShowWaitingBar()'><?=$this->T('最近')?></a> |
  1938. <a href='index.php?part=hot' onclick='ShowWaitingBar()'><?=$this->T('热门')?></a> |
  1939. <?php } else { ?>
  1940. <li class='hidden_on_desktop_force block_on_mobile'>
  1941. <a href='javascript:ShowCenterSide();toggle_mobile_show(document.getElementById("mobile_nav"));'><?=$this->T('最近')?></a> |
  1942. <a href='javascript:ShowLeftSide();toggle_mobile_show(document.getElementById("mobile_nav"));'><?=$this->T('热门')?></a> |
  1943. <?php } ?>
  1944. <a href='index.php?gallery=default' onclick='ShowWaitingBar()'><?=$this->T('画廊')?></a>
  1945. <?php if($this->LoggedIn){ ?>
  1946. | <span class='gray invert_a'><a href='index.php?comments=all'>@</a></span><?php } ?></li>
  1947. <?php $this->SpecialNavigation;if(isset($this->SpecialNavigation) && ($p = &$this->GetPost($this->SpecialNavigation))!=NULL){
  1948. echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST));
  1949. } ?>
  1950. <li><a href='?search=' onclick='ShowWaitingBar()'><?=$this->T('搜索')?></a></li>
  1951. <?php if($this->LanguageAppendix=='zh'){ ?>
  1952. <li class='invert_a smaller'>
  1953. <a href='<?=$this->GetRedirect().'&set_language=en'?>' onclick='ShowWaitingBar()'><b>汉语</b>/English</a></li>
  1954. <?php }else { ?>
  1955. <li class='smaller'>
  1956. <a class='invert_a' href='<?=$this->GetRedirect().'&set_language=zh'?>' onclick='ShowWaitingBar()'>
  1957. 汉语/<b>English</b></a>
  1958. <br class='hidden_on_desktop' />
  1959. <span class='text_highlight'><a id='translate_button' target='_blank'>&nbsp;Google Translate&nbsp;</a></span></li>
  1960. <?php } ?>
  1961. </ul>
  1962. </div>
  1963. <?php
  1964. }
  1965. function MakeExpNavButtons(&$p){?>
  1966. <b><a href='index.php' class='hidden_on_mobile'><?=$this->T($this->ExpTitle)?></a></b>
  1967. <b><a class='hidden_on_desktop'
  1968. href='javascript:toggle_mobile_show(document.getElementById("mobile_nav"))'><?=$this->T($this->ExpShortTitle)?>...</a></b>
  1969. <ul class='hidden_on_mobile' id='mobile_nav' style='text-align:center;'>
  1970. <li class='hidden_on_desktop block_on_mobile'><a href='index.php'><?=$this->T('索引')?></a></li>
  1971. <?php $this->ExpNavigation;if(isset($this->ExpNavigation) && ($p = &$this->GetPost($this->ExpNavigation))!=NULL){
  1972. echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST));
  1973. } ?>
  1974. <?php if($this->LanguageAppendix=='zh'){ ?>
  1975. <li class='invert_a smaller'><a href='<?=$this->GetRedirect().'&set_language=en'?>'><b>汉语</b>/English</a></li>
  1976. <?php }else { ?>
  1977. <li class='invert_a smaller'><a href='<?=$this->GetRedirect().'&set_language=zh'?>'>汉语/<b>English</b></a></li>
  1978. <span class='text_highlight'><a id='translate_button' target='_blank'>&nbsp;Google Translate&nbsp;</a></span></li>
  1979. <?php } ?>
  1980. </ul>
  1981. <?php
  1982. }
  1983. function GenerateLinkedPosts($ht){
  1984. $ht = preg_replace_callback('/<p>[\s]*<a[^>]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>(.*)<\/a>[\s]*<\/p>/u',
  1985. function($m){
  1986. $rp = &$this->GetPost($m[1]);
  1987. $s="<div class='smaller block post ref_compact gray'>".
  1988. "<a href='?post=".$m[1]."' class='post_access invert_a smaller' onclick='ShowWaitingBar()'>→</a>".
  1989. "<div class='post_ref'><div class='smaller'>".$m[2]."</div>".
  1990. (($rp!==NULL && $this->CanShowPost($rp))?$this->TranslatePostParts(
  1991. $this->GenerateSinglePost($rp,false,false,false,true,$this->NULL_POST,true)):$this->T("未找到该引用。")).
  1992. "</div></div>";
  1993. return $s;
  1994. },
  1995. $ht
  1996. );
  1997. $ht = preg_replace_callback('/<li>[\s]*<a[^>]*href=[\'\"]\?post=([0-9]{14})[\'\"][^>]*>PRODUCT\s+(.*)<\/a>[\s]*<\/li>/u',
  1998. function($m){
  1999. $rp = &$this->GetPost($m[1]);
  2000. $s="<div class='product_ref block post ref_compact'><a href='?post=".$m[1]."' class='clean_a' onclick='ShowWaitingBar()'>".
  2001. (($rp!==NULL && $this->CanShowPost($rp))?$this->TranslatePostParts(
  2002. $this->GenerateSinglePost($rp,true,false,false,true,$this->NULL_POST,true)):$this->T("未找到该引用。")).
  2003. "</a></div>";
  2004. return $s;
  2005. },
  2006. $ht
  2007. );
  2008. return $ht;
  2009. }
  2010. function ExtractBigTables($html, &$table_out){
  2011. $table = NULL;
  2012. $new_html = preg_replace_callback('/<p>\s*\{big_table\}\s*<\/p>\s*(<table>[\s\S]*?<\/table>)/u', function ($m) use (&$table){
  2013. $table = $m[1];
  2014. return "";
  2015. }, $html);
  2016. $table_out = $table;
  2017. return $new_html;
  2018. }
  2019. function GenerateSinglePost(&$post, $strip_tags, $generate_anchor=false, $generate_refs=false,
  2020. $generate_thumbs=false, &$table_out, $hide_long = false){
  2021. $this->ConvertPost($post);
  2022. if($generate_anchor){ $this->CreatePostAnchor($post); }
  2023. $ht = $post['html'];
  2024. if(isset($post['mark_value']) && $post['mark_value']==5 && ($generate_thumbs || !$generate_anchor)){
  2025. $ht="<div class='product_thumb'>".$post['images'][0]."</div>".
  2026. "<p class='bold'>".$post['product']['title']."</p>".
  2027. (isset($post['product']['short'])?("<p class='smaller gray'>".$post['product']['short']."</p>"):"").
  2028. "<p class='smaller bold'>".$post['product']['price']."</p>";
  2029. return $ht;
  2030. }
  2031. if($hide_long){
  2032. $ht = preg_replace('/<p>\s*\{read_more\}\s*<\/p>[\s\S]*/u',"<p class='smaller bold'>[".$this->T("阅读更多")."]</p>", $ht);
  2033. }else{
  2034. $ht = preg_replace('/<p>\s*\{read_more\}\s*<\/p>/u',"", $ht);
  2035. }
  2036. if ($strip_tags){
  2037. $ht = strip_tags($ht,'<b><i><h1><h2><h3><h4><p><blockquote>');
  2038. $ht = preg_replace('/<p>\s*<\/p>/u',"", $ht);
  2039. $ht = "<div class='post_ref_main'>".$ht."</div>";
  2040. }
  2041. else{
  2042. if($generate_refs) $ht = $this->GenerateLinkedPosts($ht);
  2043. if($table_out!==$this->NULL_POST){
  2044. $table = NULL; $ht = $this->ExtractBigTables($ht,$table);
  2045. $table_out = $table;
  2046. }else{
  2047. $ht = preg_replace('/<p>\s*\{big_table\}\s*<\/p>/u','',$ht);
  2048. }
  2049. }
  2050. if ($strip_tags && $generate_thumbs && isset($post['images']) && isset($post['images'][0])){
  2051. $ht.="<div class='post_ref_images'><ul class='side_thumb ref_thumb'>";
  2052. foreach($post['images'] as $im){
  2053. $ht.="<li class='file_thumb'>".$im."</li>";
  2054. }
  2055. $ht.="</ul></div>";
  2056. }
  2057. return $ht;
  2058. }
  2059. function MakeSinglePostExp(&$post){
  2060. $big_table = ""; ?>
  2061. <li class='post post_dummy'>
  2062. <?=$this->TranslatePostParts(
  2063. $this->GenerateSinglePost($post, false, false, true, false, $big_table, false)); ?>
  2064. </li>
  2065. <?php if($big_table!==$this->NULL_POST) echo "</ul></li><div class='table_top'>".$big_table.'</div>';?>
  2066. <?php
  2067. }
  2068. function MakeSinglePost(&$post, $show_link=false, $side=false, $extra_class_string=NULL,
  2069. $strip_tags=false, $show_thread_link=false, $show_reply_count=false, $generate_anchor=false,
  2070. $generate_thumb = false, $is_top = false){
  2071. $is_deleted = (isset($post['mark_delete'])&&$post['mark_delete']);
  2072. $mark_value = isset($post['mark_value'])?$this->Markers[$post['mark_value']]:-1;
  2073. $ref_count = isset($post['refs'])?sizeof($post['refs']):0;
  2074. $big_table = ($show_thread_link)?$this->NULL_POST:"";
  2075. $is_product = isset($post['mark_value'])&&$post['mark_value']==5;
  2076. $title = $generate_anchor?$this->GetPostTitle($post, true):NULL;
  2077. ?>
  2078. <?=$title?"<li class='print_title'><h1>".$title."</h1></li>":""?>
  2079. <li class='post<?=isset($extra_class_string)?' '.$extra_class_string:''?><?=$side?" post_box":""?>'
  2080. data-post-id='<?=$post['id']?>' <?=$is_deleted?"data-mark-delete='true'":""?>>
  2081. <?php if($mark_value>=0 && !$show_link && $mark_value!='P'){?>
  2082. <div class='smaller <?=$is_deleted?"gray":""?>'><?=$mark_value?> <?=$this->T('标记')?></div>
  2083. <?php } ?>
  2084. <?php if($is_top){?>
  2085. <div class='top_post_hint'><?=$this->T('置顶帖子')?><hr /></div>
  2086. <?php } ?>
  2087. <?php if(!$side && $show_link){ ?>
  2088. <a href='?post=<?=$post['id']?>' onclick='ShowWaitingBar()'>
  2089. <div class='post_access <?=($mark_value<0 || $ref_count)?"invert_a":""?> hover_dark'>
  2090. <?=isset($post['mark_value'])?$this->Markers[$post['mark_value']]:($ref_count?"":"→")?>
  2091. </div>
  2092. <?php if($ref_count){ ?>
  2093. <div class='post_access ref_count'><?=$ref_count?></div>
  2094. <?php } ?>
  2095. </a>
  2096. <?php } ?>
  2097. <?=$side?"<a href='?post={$post['id']}' onclick='ShowWaitingBar()'>":""?>
  2098. <div class='<?=$side?"":($show_link?'post_width':'post_width_big')?><?=$is_deleted?" deleted_post":""?>'>
  2099. <?php if(!$side && !$strip_tags){?>
  2100. <div class='post_menu_button _menu_hook' >+</div>
  2101. <?php } if($is_product&&!$generate_anchor){
  2102. echo "<p class='smaller gray'>".$this->T('商品')."</p>";
  2103. echo "<div class='product_ref clean_a'><a href='?post={$post['id']}'>";} ?>
  2104. <?=$this->TranslatePostParts(
  2105. $this->GenerateSinglePost($post, $strip_tags, $generate_anchor, true,
  2106. $generate_thumb,$big_table,$show_thread_link||$side)); ?>
  2107. <?php if($is_product&&!$generate_anchor){echo "</a></div>";} ?>
  2108. </div>
  2109. <?=$side?"</a>":""?> <?php
  2110. if(!$show_thread_link && $big_table!==$this->NULL_POST && !$side){
  2111. echo "</ul></li><div class='table_top'>".$big_table.'</div>';
  2112. ?><ul class='print_column'>
  2113. <li class='post<?=isset($extra_class_string)?' '.$extra_class_string:''?>' <?=$is_deleted?"data-mark-delete='true'":""?>>
  2114. <?php
  2115. }
  2116. if($show_thread_link && isset($post['tid']) && $this->CanShowPost($post['tid']['first']) &&
  2117. $post['tid']['first']['id']!=$post['id']){ ?>
  2118. <div class='gray smaller block opt_compact post'>
  2119. <a href='?post=<?=$post['tid']['first']['id']?>' onclick='ShowWaitingBar()'>
  2120. <div class='post_access invert_a hover_dark smaller'><?=isset($post['tid']['first']['mark_value'])?
  2121. $this->Markers[$post['tid']['first']['mark_value']]:"→"?></div></a>
  2122. <div class='post_width'><div class='smaller'><?=$this->T('回复给主题帖:')?></div>
  2123. <?=$this->TranslatePostParts(
  2124. $this->GenerateSinglePost($post['tid']['first'], false, false, false, true,$this->NULL_POST,true));?>
  2125. </div>
  2126. </div>
  2127. <?php }
  2128. if($show_reply_count && isset($post['tid'])){ ?>
  2129. <a class='smaller block invert_a' href='?post=<?=$post['tid']['last']['id']?>'><?=$post['tid']['count']?>
  2130. <?=$this->T('个回复')?></a>
  2131. <?php }
  2132. ?>
  2133. </li>
  2134. <?php
  2135. }
  2136. function MakePostingFields($reply_to=NULL, $show_hint=false){
  2137. if(isset($this->WayBack)){ ?>
  2138. <span class='gray'><i><?=$this->T('以过去日期浏览时不能发帖。')?></i></span>
  2139. <?php return; } ?>
  2140. <form action="<?=$_SERVER['REQUEST_URI']?>" method="post" style='display:none;' id='post_form'></form>
  2141. <div class='smaller' style='display:<?=$show_hint?"block":"none"?>;'>
  2142. <span id='post_hint_text'><?=$this->T('继续补充该话题:')?></span>
  2143. <div id='post_hint_modify' style='display:none;'>
  2144. <input type="checkbox" name="post_record_edit" value="1" form='post_form' checked> <?=$this->T('新增历史记录');?></div></div>
  2145. <textarea id="post_content" name="post_content" rows="4" form='post_form'
  2146. onfocus="if (value =='<?=$this->T('有什么想说的')?>'){value ='';}la_auto_grow(this);"
  2147. onblur="if (value ==''){value='<?=$this->T('有什么想说的')?>';la_auto_grow(this);}"
  2148. oninput="la_auto_grow(this);" onload="la_auto_grow(this);"><?=$this->T('有什么想说的')?></textarea>
  2149. <input class='button' form="post_form" type="submit" name='post_button' value=<?=$this->T('发送')?>
  2150. onclick='ShowWaitingBar();' />
  2151. | <a class='gray smaller pointer' onclick='ShowSideUploader();'><?=$this->T('图片')?></a>
  2152. <div style='float:right;'>
  2153. <a class='gray smaller pointer' onclick='t=document.querySelector("#post_content");t.value="";la_auto_grow(t);'>
  2154. <?=$this->T('清空')?></a>
  2155. <a class='gray smaller pointer' style='display:none;' id='post_reply_restore' href='javascript:RestoreReply()'></a>
  2156. </div>
  2157. <input style='display:none;' type=input form="post_form" id='post_edit_target' name='post_edit_target' />
  2158. <script> la_auto_grow(document.getElementById("post_content"));</script>
  2159. <?php if($reply_to){ ?>
  2160. <input style='display:none;' type=input form="post_form" id='post_reply_to' name='post_reply_to' value='<?=$reply_to?>' />
  2161. <?php } ?>
  2162. <?php
  2163. }
  2164. function MakeCommentPosts(){
  2165. if(!$this->LoggedIn) return; ?>
  2166. <h2><?=$this->T('评论')?></h2><div class='spacer'></div>
  2167. <?php if(!$this->CommentEnabled){
  2168. echo "<p><span class='text_highlight'>&nbsp;".$this->T("已关闭评论")."&nbsp;</span></p><br />"; } ?>
  2169. <div class='comment'><ul>
  2170. <?php $i=0;
  2171. foreach(array_reverse($this->Posts) as $p){
  2172. if(!isset($p['comment_to'])) continue;
  2173. if($i < $this->CommentsPerPage * $this->CurrentOffset) {$i++; continue;}
  2174. $ht = $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false, $t, false));
  2175. $name = isset($p['link'])?("<a href='".$p['link']."'>".$p['name']."↗</a>"):$p['name'];
  2176. $post_to = $this->GetPost($p['comment_to']); $post_title = $this->GetPostTitle($post_to);
  2177. if(!$post_to) $post_title = "?";
  2178. $mail = "<span class='gray hidden_on_print'>&nbsp;".
  2179. "<a href='mailto:".$p['email']."'>@</a>&nbsp;".
  2180. (isset($p['ip'])?$p['ip']:"?")."&nbsp;<br class='hidden_on_desktop'/>".
  2181. "<a href='index.php?post=".$p['comment_to']."'>(".$post_title.")</a></span>";
  2182. echo "<li><p><b>".$name.":</b>".$mail."<br /></p>".$ht."</li>";
  2183. $i++;
  2184. }
  2185. ?>
  2186. </ul><br /></div>
  2187. <?php
  2188. }
  2189. function MakeRecentPosts($search_term=NULL, $category=NULL){?>
  2190. <div class='center' id='div_center'>
  2191. <h2><?=isset($search_term)?$this->T('搜索'):
  2192. (isset($category)?("<span class='gray'>".$this->T('分类')."</span> ".
  2193. ($category=='none'?$this->T('未分类'):$this->T($category))):($this->T('最近')).
  2194. " <span class='gray invert_a hidden_on_print'><a href='index.php?&set_wayback=true'>↶</a> ".
  2195. ($this->LoggedIn?"<a href='index.php?comments=all'>@</a>":"")."</span>")?></h2>
  2196. <?php if(isset($search_term)){ ?>
  2197. <form action="index.php" method="post" style='display:none;' id='search_form'></form>
  2198. <input id="search_content" name="search_content" rows="4" form='search_form' type='text' value='<?=$search_term?>'>
  2199. <input class='button' form="search_form" type="submit" name='search_button' value=<?=$this->T('搜索')?>
  2200. <?php }else if(isset($category)){ ?>
  2201. <div></div>
  2202. <?php }else if($this->LoggedIn){ ?>
  2203. <div class='post_box_top _input_bundle'>
  2204. <?php $this->MakePostingFields(NULL,false); ?>
  2205. </div>
  2206. <?php } ?>
  2207. <ul class='print_column list'>
  2208. <?php
  2209. if(!isset($search_term) && !isset($category) &&
  2210. (isset($this->SpecialPinned) && ($p = &$this->GetPost($this->SpecialPinned))!=NULL && !$this->CurrentOffset) &&
  2211. $this->CanShowPost($p)){
  2212. $this->MakeSinglePost($p, true, false, false, false, true, false, false, false, true);
  2213. }
  2214. $i = 0;
  2215. foreach(array_reverse($this->Posts) as &$p){
  2216. if(!$this->CanShowPost($p) || $this->SkipProduct($p)) continue;
  2217. if(isset($search_term)){
  2218. if ($search_term=='' || !preg_match("/".preg_quote($search_term)."/iu", $p['content'])) continue;
  2219. }else if(isset($category)){
  2220. $cat = isset($p['tid'])?(isset($p['tid']['categories'])?($p['tid']['categories']):[]):
  2221. (isset($p['categories'])?($p['categories']):[]);
  2222. if ($category=='none') { if($cat!=[]) continue; }
  2223. else{ if ($category=='' || !in_array($category, $cat)) continue; }
  2224. if(isset($p['tid'])){ if(isset($p['tid']['displayed'])) continue; $p['tid']['displayed'] = True; }
  2225. }else{
  2226. if(in_array($p['id'],
  2227. [$this->SpecialPinned,$this->SpecialFooter,$this->SpecialFooter2,$this->SpecialNavigation])) continue;
  2228. if(isset($p['tid'])){ if(isset($p['tid']['displayed'])) continue; $p['tid']['displayed'] = True; }
  2229. }
  2230. if($i < $this->PostsPerPage * $this->CurrentOffset) {$i++; continue;}
  2231. $this->MakeSinglePost($p, true, false, NULL, false, true, false, false, false, false);
  2232. $i++;
  2233. if($i >= $this->PostsPerPage * (1+$this->CurrentOffset)) {break;}
  2234. }?>
  2235. </ul>
  2236. <div class='page_selector clean_a'>
  2237. <hr />
  2238. <a <?=$this->CurrentOffset>0?("href='index.php?offset=".($this->CurrentOffset-1).
  2239. (isset($search_term)?"&search=".$search_term:(isset($category)?"&category=".$category:""))."'"):""?>
  2240. <?=$this->CurrentOffset==0?"class='gray'":""?>><?=$this->T('上一页')?> ←</a>
  2241. <?=$this->CurrentOffset+1?>
  2242. <a href='index.php?offset=<?=($this->CurrentOffset+1).
  2243. (isset($search_term)?"&search=".$search_term:(isset($category)?"&category=".$category:""))?>'>
  2244. → <?=$this->T('下一页')?></a>
  2245. </div>
  2246. </div>
  2247. <?php
  2248. }
  2249. function MakeHotPosts($placeholder_only=false){?>
  2250. <div class='left hidden_on_mobile' id='div_left'>
  2251. <?php if ($placeholder_only){ ?>&nbsp;
  2252. <?php }else{ ?>
  2253. <h2><?=$this->T('热门')?></h2>
  2254. <ul>
  2255. <?php
  2256. $i=0;
  2257. foreach($this->Threads as &$th){
  2258. if(!$this->CanShowPost($th['first'])) continue;
  2259. if($i>=$this->HotPostCount) break;
  2260. $this->MakeSinglePost($th['first'], false, true, "post_preview", true, false, true, false, true, false);
  2261. $i++;
  2262. } ?>
  2263. </ul>
  2264. <?php } ?>
  2265. </div>
  2266. <?php
  2267. }
  2268. function MakeLinkedPosts(&$p){
  2269. $has_ref = isset($p['refs'])&&isset($p['refs'][0]); ?>
  2270. <div class='left hidden_on_mobile' id='div_left'>
  2271. <h2<?=$has_ref?"":" class='gray'"?>><?=$this->T('链接')?></h2>
  2272. <?php
  2273. if($has_ref){ ?>
  2274. <span class='smaller'><?=sizeof($p['refs'])?> <?=$this->T('个引用:')?></span>
  2275. <ul><?php $count_product=0;
  2276. foreach(array_reverse($p['refs']) as &$pr){
  2277. $po = $this->GetPost($pr); if(isset($post['mark_value']) && $po['mark_value']==5){ $count_product++; continue; }
  2278. if(!$this->CanShowPost($po)){ continue; }
  2279. $this->MakeSinglePost($po, false, true, "post_preview", true, false, false, false, true, false);
  2280. }
  2281. ?></ul>
  2282. <?php if($count_product){ ?> <span class='smaller'><?=$this->T('和').' '.$count_product.' '.$this->T('个商品')?></span> <?php }
  2283. }else{ ?>
  2284. <span class='gray smaller'><?=$this->T('没有帖子链接到这里。')?></span>
  2285. <?php } ?>
  2286. </div>
  2287. <?php
  2288. }
  2289. function MakeLinkedPostsExp(&$p){
  2290. $has_ref = isset($p['refs'])&&isset($p['refs'][0]); ?>
  2291. <div class='center_exp post_dummy smaller'>
  2292. <hr />
  2293. <h3<?=$has_ref?"":" class='gray'"?>><?=$this->T('链接')?></h3>
  2294. <?php
  2295. if($has_ref){ ?>
  2296. <div class='smaller'><?=sizeof($p['refs'])?> <?=$this->T('个引用:')?></div>
  2297. <ul><?php $count_product=0;
  2298. foreach(array_reverse($p['refs']) as &$pr){
  2299. echo "<li class='post_dummy'><a href='?post=".$pr."'>".$this->T($this->GetPostTitle($this->GetPost($pr),false)).
  2300. "</a></li>";
  2301. }
  2302. ?></ul>
  2303. <?php if($count_product){ ?> <span class='smaller'><?=$this->T('和').' '.$count_product.' '.$this->T('个商品')?></span> <?php }
  2304. }else{ ?>
  2305. <div class='gray smaller'><?=$this->T('没有帖子链接到这里。')?></div>
  2306. <?php } ?>
  2307. <div style='margin-bottom:4rem;'>&nbsp;</div>
  2308. </div>
  2309. <?php
  2310. }
  2311. function MakePostHistoryList(&$ah, &$post,$version=NULL){
  2312. $title = $this->T($this->GetPostTitle($post, false)); if(!isset($title)) $title=$this->T('未命名');
  2313. if(!isset($ah)){ ?>
  2314. <h2><?=$this->T('没有历史记录')?></h2>
  2315. <span class='omittable_title smaller'><?=$this->T('帖子')?> <a href='?post=<?=$post['id']?>'><?=$title?></a></span><br />
  2316. <?php }else{ ?>
  2317. <h2><?=$this->T('历史记录')?></h2>
  2318. <span class='omittable_title smaller'><?=$this->T('帖子')?> <a href='?post=<?=$ah['id']?>'><?=$title?></a></span><br />
  2319. <div class='list'><ul>
  2320. <li class='gray' style='list-style:"";'><?=$this->ReadableTime($post['id'])?>
  2321. <span class='smaller'><?=$this->T('长度').' '.strlen($post['content'])?></span></li>
  2322. <?php if(isset($ah['list'][0])) foreach(array_reverse($ah['list']) as &$ver){ ?>
  2323. <li<?=isset($version)&&$version==$ver['version']?" class='post_current_row bold'":""?>>
  2324. <a href='?post=<?=$this->CurrentPostID?>&history=1&version=<?=$ver['version']?>'>
  2325. <?=$this->ReadableTime($ver['version'])?></a>
  2326. <span class='smaller gray'><?=$this->T('长度').' '.strlen($ver['content'])?></span></li>
  2327. <?php } ?></ul></div>
  2328. <?php } ?>
  2329. <?php
  2330. }
  2331. function MakePostDiff(&$this_ver, &$next_ver){
  2332. if(!isset($this_ver)){ ?>
  2333. <h2 class='gray'><?=$this->T('版本不存在')?></h2>
  2334. <?php }else{ ?>
  2335. <h2><?=$this->T('差异')?></h2>
  2336. <table class='diff_table'><thead>
  2337. <tr><td class='text_highlight bold'><?=$this->T('选择的版本')?><br /><?=$this->ReadableTime($this_ver['version'])?></td>
  2338. <td><?=$this->T('下一个版本')?><br /><?=$this->ReadableTime($next_ver['version'])?></td></tr>
  2339. </thead><tbody>
  2340. <tr><td><pre><?=$this_ver['content']?></pre></td><td><pre><?=$next_ver['content']?></pre></td></tr>
  2341. </tbody>
  2342. </table>
  2343. <?php } ?>
  2344. <?php
  2345. }
  2346. function MakePostHistory(&$post, $version=NULL){
  2347. $ah = &$this->GetArchiveHandle($this->CurrentPostID);
  2348. ?>
  2349. <div class='left hidden_on_mobile history' id='div_left'>
  2350. <?php if (isset($version)){
  2351. $this->MakePostHistoryList($ah, $post, $version);
  2352. }else{ echo "&nbsp;"; } ?>
  2353. </div>
  2354. <div class='center history' id='div_center'>
  2355. <?php if (!isset($version)){
  2356. $this->MakePostHistoryList($ah, $post, NULL);
  2357. }else{
  2358. $this_ver = NULL; $next_ver = NULL;
  2359. $this_ver = &$this->GetArchiveVersion($ah, $version, $next_ver);
  2360. if(isset($this_ver) && !isset($next_ver)){$next_ver = $post;}
  2361. $this->MakePostDiff($this_ver, $next_ver, $post);
  2362. } ?>
  2363. </div>
  2364. <?php
  2365. }
  2366. function MakeCommentSection(&$post){
  2367. if(!$this->CommentEnabled){ return; }
  2368. $to_post = isset($post['tid'])?$post['tid']['first']:$post;
  2369. $comment_count = (isset($to_post['comments']) && isset($to_post['comments'][0]))?count($to_post['comments']):0;
  2370. ?><div class='comment'>
  2371. <br /><h2><?=$this->T('评论')?> (<?=$comment_count;?>)</h2><div class='spacer'></div>
  2372. <?php if($comment_count) { echo "<ul>";
  2373. foreach($to_post['comments'] as $p){
  2374. $ht = $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false, $t, false));
  2375. $name = isset($p['link'])?("<a href='".$p['link']."'>".$p['name']."↗</a>"):$p['name'];
  2376. $mail = $this->LoggedIn?("<span class='gray clean_a hidden_on_print'>&nbsp;".
  2377. "<a href='mailto:".$p['email']."'>@</a>&nbsp;</span>"):"";
  2378. echo "<li><p><b>".$name.":</b>".$mail."</p>".$ht."</li>";
  2379. }
  2380. echo "</ul>";
  2381. } else {
  2382. echo $this->T('还没有评论');
  2383. } ?>
  2384. <div class='hidden_on_print'>
  2385. <div class='spacer'></div>
  2386. <form action="index.php?post=<?=$this->CurrentPostID?>&comment_to=<?=$to_post['id']?>"
  2387. method="post" style="display:none;" id="comment_form"></form>
  2388. <p><a class='text_highlight bold clean_a'
  2389. onclick='document.getElementById("comment_box").style.display="block";this.parentNode.style.display="none"'>
  2390. &nbsp;<?=$this->T('写评论');?>&nbsp;</a></p>
  2391. <div id='comment_box' style='display:none;'>
  2392. <p class='gray' style='margin-bottom:0.5em;'><?=$this->T('您的邮箱不会公开展示。');?></p>
  2393. <table style='white-space:nowrap;'>
  2394. <tr><td colspan='2'>
  2395. <textarea id="comment_box" name="comment_box" rows="4" class='full_box' form='comment_form'
  2396. oninput="CommentUpdated();" ></textarea>
  2397. </td></tr>
  2398. <tr><td><?=$this->T('电子邮件')?>*</td><td><?=$this->T('称呼')?>*</td></tr>
  2399. <tr><td><input type="text" form="comment_form" id='comment_email' name='comment_email'
  2400. class='full_box' oninput="CommentUpdated();" /></td>
  2401. <td><input type="text" form="comment_form" id='comment_name' name='comment_name'
  2402. class='full_box' oninput="CommentUpdated();" /></td></tr>
  2403. <tr><td colspan='2'><?=$this->T('个人网站')?></td></tr>
  2404. <tr><td colspan='2'>
  2405. <input type="text" form="comment_form" id='comment_link' name='comment_link'
  2406. class='full_box' oninput="CommentUpdated();" />
  2407. </td></tr>
  2408. <tr><td colspan='2'>
  2409. <div class='spacer'></div>
  2410. <input class='button text_highlight bigger' type='submit' form='comment_form'
  2411. name='comment_confirm' id='comment_confirm' value='&nbsp;<?=$this->T('发送')?>&nbsp;'>
  2412. </td></tr>
  2413. </table></div>
  2414. <script>
  2415. const IsValidEmail = (email) => {
  2416. 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,}))$/);
  2417. };
  2418. function IsValidHttpUrl(string) {
  2419. let url; try{ url = new URL(string); } catch (_) { return false; }
  2420. return url.protocol === "http:" || url.protocol === "https:";
  2421. }
  2422. var cbox = document.getElementById('comment_box');
  2423. var cemail = document.getElementById('comment_email');
  2424. var cname = document.getElementById('comment_name');
  2425. var clink = document.getElementById('comment_link');
  2426. var cconfirm = document.getElementById('comment_confirm');
  2427. function CommentUpdated(){
  2428. cconfirm.disabled=true;
  2429. if (cemail.value!="" && IsValidEmail(cemail.value) &&
  2430. cbox.innerText.length>2 && cname.value.length>2 &&
  2431. clink.value=="" || IsValidHttpUrl(clink.value)){
  2432. cconfirm.removeAttribute("disabled");
  2433. }
  2434. }
  2435. CommentUpdated();
  2436. </script>
  2437. </div>
  2438. </div>
  2439. <?php
  2440. }
  2441. function MakeInterestingSection(&$th){
  2442. $this->Anchors = [];
  2443. $c = &$th['first']['content'];
  2444. $this->ConvertPost($th['first']);
  2445. $ht = $th['first']['html'];
  2446. ?>
  2447. <script>function ClickImage(post_access){im=post_access.querySelector('img');if(im){im.click();}}</script>
  2448. <div class='center_full' id='div_center'>
  2449. <h2 class='hidden_on_print'><?=$this->T('有趣')?>
  2450. <a class='gray clean_a' href='?post=<?=$th['first']['id']?>'>→</a></h2>
  2451. <ul><li class='post post_width_big' data-post-id='<?=$th['first']['id']?>'>
  2452. <div class='post_menu_button _menu_hook' onclick='ShowPostMenu(this.parentNode);'>+</div><?=$this->TranslatePostParts($ht)?>
  2453. <?php if($this->LoggedIn && (!$this->InExperimentalMode)){ ?>
  2454. <div class='post_width_big hidden_on_print'><br />
  2455. <?php $this->MakePostingFields($th['last']['id'], true);?><br />
  2456. </div>
  2457. <?php } ?>
  2458. <table><thead><tr><th></th><?php foreach($th['interesting'] as $header){ ?>
  2459. <th><?=$this->T($header);?></th>
  2460. <?php } ?></tr></thead><tbody class='interesting_tbody'>
  2461. <?php $plist = []; for($p = &$this->GetPost($th['first']['next']); $p!=$this->NULL_POST;
  2462. $p = &$this->GetPost(isset($p['next'])?$p['next']:NULL)){ $plist[] = &$p; }
  2463. foreach(array_reverse($plist) as &$p){
  2464. $this->ConvertPost($p);
  2465. $mark_value = isset($p['mark_value'])?$this->Markers[$p['mark_value']]:-1;
  2466. $ref_count = isset($p['refs'])?sizeof($p['refs']):0;
  2467. $is_current = $p['id']==$this->CurrentPostID;
  2468. $is_deleted = (isset($p['mark_delete'])&&$p['mark_delete']); ?>
  2469. <tr class='<?=$is_current?"post_current_row":""?><?=$is_deleted?" deleted_post":""?>'
  2470. data-post-id='<?=$p['id']?>' <?=$is_deleted?"data-mark-delete='true'":""?>
  2471. onDblClick='ClickImage(this)'><td>
  2472. <a <?=$is_current?"":("href='?post=".$p['id']."' onclick='ShowWaitingBar()'");?> class='clean_a paa'>
  2473. <div class='post_access <?=($mark_value<0 || $ref_count)?"invert_a":""?> hover_dark'>
  2474. <?=isset($p['mark_value'])?$this->Markers[$p['mark_value']]:($ref_count?"":"→")?>
  2475. </div>
  2476. <?php if($ref_count){ ?>
  2477. <div class='post_access ref_count'><?=$ref_count?></div>
  2478. <?php } ?></a>
  2479. <?=$this->TranslatePostParts($p['html']);?>
  2480. <a class='_menu_hook clean_a post_menu_button' onclick='ShowPostMenu(this.parentNode.parentNode);'>+</a></td></tr>
  2481. <?php if($is_current && $ref_count>0){ ?><tr class='post_current_row'><td><p>&nbsp;</p><ul class='smaller'>
  2482. <?php foreach($p['refs'] as $ref){
  2483. $po = $this->GetPost($ref);
  2484. if(isset($post['mark_value']) && $post['mark_value']==5){ $count_product++; continue; }
  2485. if(!$this->CanShowPost($po)){ continue; }
  2486. echo "<li><a href='?post=".$po['id']."'>".$this->GetPostTitle($po)."</li>";
  2487. } ?>
  2488. </ul></td></tr><?php } ?>
  2489. <?php } ?>
  2490. </tbody></table>
  2491. </li></ul>
  2492. <br />
  2493. <?php $this->MakeCommentSection($th['first']); ?>
  2494. </div>
  2495. <?php return true;
  2496. }
  2497. function MakePostSection(&$post){
  2498. $this->Anchors = []; ?>
  2499. <div class='center' id='div_center'>
  2500. <?php $th=NULL; $is_thread = isset($post['tid']); if($is_thread){ $th = $post['tid'];?>
  2501. <h2 class='hidden_on_print'><?=$this->T('话题')?>
  2502. <a class='clean_a gray' href='<?=$this->GetRedirect()?>&set_wayback=true'>↶</a></h2>
  2503. <?php }else{ ?>
  2504. <h2 class='hidden_on_print'><?=$this->T('详细')?>
  2505. <a class='clean_a gray' href='<?=$this->GetRedirect()?>&set_wayback=true'>↶</a></h2>
  2506. <?php } ?>
  2507. <?php $cat = NULL;
  2508. if($is_thread) { if(isset($th['categories']) && isset($th['categories'][0])){ $cat = $th['categories']; } }
  2509. else { if(isset($post['categories']) && isset($post['categories'][0])) { $cat = $post['categories']; } }
  2510. if($cat){ ?>
  2511. <p><b><?=$this->T('分类')?></b> | <?php foreach($cat as $c){
  2512. echo "<a href='?category=".$c."'>".($c=='none'?$this->T('未分类'):$this->T($c))."</a> "; } ?></p>
  2513. <?php } ?>
  2514. <ul class='print_column'>
  2515. <?php
  2516. if($is_thread){
  2517. for($p = &$th['first']; $p!=$this->NULL_POST; $p = &$this->GetPost(isset($p['next'])?$p['next']:NULL)){
  2518. $use_class = ($p == $post)?'focused_post':'';
  2519. $show_link = ($p == $post)?false:true;
  2520. $make_title = ($p == $post);
  2521. $this->MakeSinglePost($p,$show_link,false,$use_class,false, false, false, true, false, false);
  2522. if($make_title){?>
  2523. <script>
  2524. document.title+=" | <?=addslashes(preg_replace('/\r|\n/u', ' ', mb_substr(strip_tags($p['html']),0,1000)))?>";
  2525. </script>
  2526. <?php }
  2527. }
  2528. }else{
  2529. $this->MakeSinglePost($post,false, false, 'focused_post',false, false, false, true, false, false);
  2530. ?><script>
  2531. document.title+=" | <?=addslashes(preg_replace('/\r|\n/u', ' ', mb_substr(strip_tags($post['html']),0,1000)))?>";
  2532. </script><?php
  2533. } ?>
  2534. <?php if($this->LoggedIn && (!$this->InExperimentalMode)){ ?>
  2535. <div class='post_width_big hidden_on_print'>
  2536. <br /><?php $this->MakePostingFields($is_thread?$th['last']['id']:$post['id'], true);?>
  2537. </div>
  2538. <?php }
  2539. $this->MakeCommentSection($post);
  2540. ?>
  2541. </ul>
  2542. </div>
  2543. <?php
  2544. }
  2545. function MakePostSectionExp(&$post){
  2546. $this->Anchors = []; $is_thread = isset($post['tid']);
  2547. ?>
  2548. <div class='center_exp' id='div_center'>
  2549. <ul>
  2550. <?php
  2551. if($is_thread){
  2552. $th = $post['tid'];
  2553. for($p = &$th['first']; $p!=$this->NULL_POST; $p = &$this->GetPost(isset($p['next'])?$p['next']:NULL)){
  2554. $this->MakeSinglePostExp($p);
  2555. if($p == $th['first']){?>
  2556. <script>
  2557. document.title+=" | <?=addslashes(preg_replace('/\r|\n/u', ' ', mb_substr(strip_tags($p['html']),0,1000)))?>";
  2558. </script>
  2559. <?php }
  2560. }
  2561. }else{
  2562. $this->MakeSinglePostExp($post);
  2563. if($post['id']!=$this->ExpIndex){ ?><script>
  2564. document.title+=" | <?=addslashes(preg_replace('/\r|\n/u', ' ', mb_substr(strip_tags($post['html']),0,1000)))?>";
  2565. </script><?php }
  2566. } ?>
  2567. </ul>
  2568. </div>
  2569. <?php
  2570. }
  2571. function MakeSideGalleryCode(){?>
  2572. <div>
  2573. <h3><?=$this->T('点击图片以插入:')?></h3>
  2574. <select id="side_gallery_select" onchange="RefreshSideGallery()">
  2575. <option value="main"><?=$this->T('全部')?></option>
  2576. <?php if($this->LoggedIn){ ?>
  2577. <option value="trash"><?=$this->T('垃圾桶')?></option>
  2578. <?php }?>
  2579. <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){ ?>
  2580. <option value="<?=$g['name']?>"><?=$g['name']?></option>
  2581. <?php } ?>
  2582. </select>
  2583. <div id='side_gallery'>
  2584. </div>
  2585. </div>
  2586. <script>
  2587. function InsertImage(imgname){
  2588. t = document.querySelector("#post_content");
  2589. v = t.value;
  2590. t.value = v.slice(0, t.selectionStart) + "![<?=$this->T('图片')?>](images/"+imgname+")"+ v.slice(t.selectionEnd);
  2591. la_auto_grow(t);
  2592. }
  2593. function RefreshSideGallery(){
  2594. let xhr = new XMLHttpRequest();
  2595. xhr.onreadystatechange = (function(){
  2596. if (this.readyState === this.DONE) {
  2597. if (this.status === 200) {
  2598. ind = document.querySelector("#side_gallery");
  2599. if(res = xhr.responseText.matchAll(/\[(.*?),(.*?)\]/gu)){
  2600. str = "<ul class='side_thumb'>"
  2601. for (const m of res) {
  2602. str+="<li><div class='file_thumb' onclick='InsertImage(\""+m[1]+"\")'>"+
  2603. "<img src='"+m[2]+"' /></div>"
  2604. }
  2605. str += "</ul>"
  2606. ind.innerHTML = str;
  2607. }
  2608. }
  2609. }
  2610. });
  2611. xhr.open("GET", "?image_list="+document.querySelector("#side_gallery_select").value, true);
  2612. xhr.send();
  2613. }
  2614. </script>
  2615. <?php
  2616. }
  2617. function MakeUploader($is_side=false){ ?>
  2618. <div id='upload_operation_area' class='hidden_on_print'>
  2619. <p><?=$this->T('选择、粘贴或者拖动到页面以上传图片。')?></p>
  2620. <input type="file" id='upload_selector' accept="image/x-png,image/png,image/gif,image/jpeg" multiple/>
  2621. <ul id='file_list'>
  2622. </ul>
  2623. <div class='smaller gray' id='upload_hint'><?=$this->T('就绪')?></div>
  2624. </div>
  2625. <a id='upload_click' class='hidden_on_print'
  2626. href='javascript:UploadList()'<?=$is_side?" data-is-side='true'":""?>><?=$this->T('上传列表中的文件')?></a>
  2627. <script>
  2628. function pastehandler(event){
  2629. var items = (event.clipboardData || event.originalEvent.clipboardData).items;
  2630. for (index in items) {
  2631. var item = items[index];
  2632. if (item.kind === 'file') {
  2633. put = document.querySelector("#_uploader");
  2634. if(put) ShowSideUploader();
  2635. var blob = item.getAsFile();
  2636. AddImageFile(blob);
  2637. return;
  2638. }
  2639. }
  2640. }
  2641. let _fd_list = [];
  2642. let hint=document.querySelector('#upload_hint');
  2643. function ToggleCompress(button){
  2644. li = button.parentNode;
  2645. num=li.dataset.number;
  2646. for(i=0;i<_fd_list.length;i++){
  2647. if (_fd_list[i][0] == num){
  2648. state = _fd_list[i][2];
  2649. if(state){_fd_list[i][2] = 0; button.innerHTML='1920';break;}
  2650. else{_fd_list[i][2] = 1; button.innerHTML='800';break;}
  2651. }
  2652. }
  2653. }
  2654. function RemoveFromUpload(button){
  2655. li = button.parentNode;
  2656. num=li.dataset.number;
  2657. for(i=0;i<_fd_list.length;i++){
  2658. if (_fd_list[i][0] == num){
  2659. _fd_list.splice(i, 1);break;
  2660. }
  2661. }
  2662. li.parentNode.removeChild(li);
  2663. }
  2664. function EndThisUpload(){
  2665. unfinished = 0;
  2666. for(i=0;i<_fd_list.length;i++){
  2667. if (_fd_list[i][3]==0){
  2668. unfinished=1;
  2669. }
  2670. }
  2671. if(!unfinished){
  2672. hint.innerHTML="<?=$this->T('上传完成。')?>";
  2673. cl=document.querySelector('#upload_click');
  2674. if(!cl.dataset.isSide){
  2675. cl.innerHTML="<?=$this->T('刷新页面')?>";
  2676. cl.href=window.location.href;
  2677. }else{
  2678. _fd_list.splice(0,_fd_list.length);
  2679. fl = document.querySelector("#file_list");
  2680. fl.innerHTML = "";
  2681. list=document.querySelector('#upload_operation_area');
  2682. list.style.pointerEvents='';
  2683. list.style.opacity='';
  2684. document.onpaste=pastehandler;
  2685. RefreshSideGallery();
  2686. }
  2687. }
  2688. }
  2689. function UploadList(){
  2690. if(!_fd_list.length) return;
  2691. hint.innerHTML="<?=$this->T('正在上传...')?>";
  2692. list=document.querySelector('#upload_operation_area');
  2693. list.style.pointerEvents='none';
  2694. list.style.opacity='0.5';
  2695. document.onpaste="";
  2696. for(i=0;i<_fd_list.length;i++){
  2697. let xhr = new XMLHttpRequest();
  2698. //xmlHTTP.upload.addEventListener("loadstart", loadStartFunction, false);
  2699. //xmlHTTP.upload.addEventListener("progress", progressFunction, false);
  2700. //xmlHTTP.addEventListener("load", transferCompleteFunction, false);
  2701. //xmlHTTP.addEventListener("error", uploadFailed, false);
  2702. //xmlHTTP.addEventListener("abort", uploadCanceled, false);
  2703. var li = list.querySelector('[data-number="'+_fd_list[i][0].toString()+'"]')
  2704. xhr.open("POST", "?compress="+_fd_list[i][2].toString(), true);
  2705. function wrap(li, i){
  2706. var ind = li.querySelector('._compress_toggle')
  2707. return function(){
  2708. if (this.readyState === this.DONE) {
  2709. if (this.status === 200) {
  2710. var response = xhr.responseText;
  2711. if(res = response.match(/<uploaded>(.*)<\/uploaded>/)){
  2712. ind.innerHTML = "<?=$this->T('已上传为')?> "+res[1];
  2713. _fd_list[i][3] = 1;
  2714. }else{
  2715. ind.innerHTML = "<?=$this->T('出现错误。')?>";
  2716. _fd_list[i][3] = 1;
  2717. }
  2718. EndThisUpload();
  2719. }
  2720. }
  2721. }
  2722. }
  2723. xhr.onreadystatechange = wrap(li, i);
  2724. xhr.send(_fd_list[i][1]);
  2725. }
  2726. }
  2727. function AddImageFile(blob){
  2728. var ext="";
  2729. if(blob.name.match(/png$/))ext = 'png';
  2730. else if(blob.name.match(/jpg$/))ext = 'jpg';
  2731. else if(blob.name.match(/jpeg$/))ext = 'jpeg';
  2732. else if(blob.name.match(/gif$/))ext = 'gif';
  2733. else return;
  2734. var fd = new FormData();
  2735. blob.name = blob.name=generateUID().toString();
  2736. fd.append("upload_file_name", blob, "_upload_"+blob.name+"."+ext);
  2737. _fd_list.push([blob.name, fd, 1, 0]);/* number original is_compress uploaded */
  2738. var reader = new FileReader();
  2739. reader.onload = function(event){
  2740. fl = document.querySelector("#file_list");
  2741. ht = "<li id='_upload_"+blob.name+"' data-number='"+blob.name+"'>"+
  2742. "<a class='_remove_file pointer invert_a' onclick='RemoveFromUpload(this)'>×</a> "+"<div class='file_thumb'>"+
  2743. "<img class='no_pop' src='"+event.target.result+"'>"+"</div>"+
  2744. " →<a class='_compress_toggle pointer' onclick='ToggleCompress(this)'>800</a></li>";
  2745. fl.innerHTML+=ht;
  2746. };
  2747. reader.readAsDataURL(blob);
  2748. }
  2749. sel = document.querySelector('#upload_selector');
  2750. sel.addEventListener("change", function(){
  2751. var input = this;
  2752. function ff(file){
  2753. return function(e){
  2754. let blob = new Blob([new Uint8Array(e.target.result)], {type: file.type});
  2755. blob.name = file.name;
  2756. AddImageFile(blob);
  2757. }
  2758. }
  2759. for(i=0;i<input.files.length;i++){
  2760. if(input.files[i].size){
  2761. let reader = new FileReader();
  2762. reader.onload = ff(input.files[i]);
  2763. reader.readAsArrayBuffer(input.files[i]);
  2764. }
  2765. }
  2766. });
  2767. function generateUID() {
  2768. var firstPart = (Math.random() * 46656) | 0;
  2769. var secondPart = (Math.random() * 46656) | 0;
  2770. firstPart = ("000" + firstPart.toString(36)).slice(-3);
  2771. secondPart = ("000" + secondPart.toString(36)).slice(-3);
  2772. return firstPart + secondPart;
  2773. }
  2774. document.onpaste = pastehandler;
  2775. function dropHandler(ev) {
  2776. put = document.querySelector("#_uploader");
  2777. if(put) ShowSideUploader();
  2778. bkg=document.querySelector('#dropping_background');
  2779. bkg.style.display="none";
  2780. console.log('File(s) dropped');
  2781. ev.preventDefault();
  2782. if (ev.dataTransfer && ev.dataTransfer.items) {
  2783. for (var i = 0; i < ev.dataTransfer.items.length; i++) {
  2784. if (ev.dataTransfer.items[i].kind === 'file') {
  2785. var file = ev.dataTransfer.items[i].getAsFile();
  2786. function ff(file){
  2787. return function(e){
  2788. let blob = new Blob([new Uint8Array(e.target.result)], {type: file.type});
  2789. blob.name = file.name;
  2790. AddImageFile(blob);
  2791. }
  2792. }
  2793. if(file){
  2794. let reader = new FileReader();
  2795. reader.onload = ff(file);
  2796. reader.readAsArrayBuffer(file);
  2797. }
  2798. }
  2799. }
  2800. } else {
  2801. for (var i = 0; i < ev.dataTransfer.files.length; i++) {
  2802. function ff(file){
  2803. return function(e){
  2804. let blob = new Blob([new Uint8Array(e.target.result)], {type: file.type});
  2805. blob.name = file.name;
  2806. AddImageFile(blob);
  2807. }
  2808. }
  2809. if(ev.dataTransfer.files[i].size){
  2810. let reader = new FileReader();
  2811. reader.onload = ff(ev.dataTransfer.files[i]);
  2812. reader.readAsArrayBuffer(ev.dataTransfer.files[i]);
  2813. }
  2814. }
  2815. }
  2816. }
  2817. function dragOverHandler(ev) {
  2818. bkg=document.querySelector('#dropping_background');
  2819. bkg.style.display="";
  2820. console.log('File(s) in drop zone');
  2821. ev.preventDefault();
  2822. }
  2823. </script>
  2824. <?php
  2825. }
  2826. function CanShowGallery(&$g){
  2827. if(!$this->LoggedIn && isset($g['experimental']) && $g['experimental']) return false;
  2828. return true;
  2829. }
  2830. function CanShowImage(&$im){
  2831. if(!$this->LoggedIn && isset($im['galleries']) && isset($im['galleries'][0])) foreach($im['galleries'] as $ga){
  2832. if(($g=$this->GetGallery($ga)) && isset($g['experimental']) && $g['experimental']) return false;
  2833. }
  2834. return true;
  2835. }
  2836. function MakeGallerySection(){
  2837. if(!isset($_GET['gallery'])) return;
  2838. $name=NULL; if($_GET['gallery']!='main' && $_GET['gallery']!='trash'){
  2839. $name=$_GET['gallery'];}?>
  2840. <script>
  2841. document.title+=" | <?=$this->T('画廊')?>";
  2842. </script>
  2843. <div class='center_wide' id='div_center' style='position:relative;'>
  2844. <h2><?=(isset($name) && ($gal=$this->GetGallery($name))!=NULL)?
  2845. ("<span class='gray album_hint'>".$this->T('相册').":</span>".$this->T($name)):
  2846. ($_GET['gallery']=='trash'?$this->T('垃圾桶'):$this->T('画廊'))?></h2>
  2847. <div class='hidden_on_desktop'>
  2848. <?=$this->T('前往')?>
  2849. <select id="gallery_go_to" onchange="window.location.href='?gallery='+this.value;">
  2850. <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){
  2851. if(!isset($g['featured']) || !$g['featured'] ||
  2852. !$this->CanShowGallery($g)){ continue; } $is_this = ($_GET['gallery']==$g['name']);?>
  2853. <option value="<?=$g['name']?>" <?=$is_this?"selected":""?>>
  2854. <?=(isset($g['experimental'])&&$g['experimental'])?'E ':''?><?=$this->T($g['name'])?></option>
  2855. <?php } ?>
  2856. <option value="main" <?=$_GET['gallery']=='main'?"selected":""?>>[<?=$this->T('全部')?>]</option>
  2857. <?php if($this->LoggedIn){ ?>
  2858. <option value="trash" <?=$_GET['gallery']=='trash'?"selected":""?>>[<?=$this->T('垃圾桶')?>]</option>
  2859. <?php } ?>
  2860. <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){
  2861. if((isset($g['featured']) && $g['featured']) ||
  2862. !$this->CanShowGallery($g)){ continue; } $is_this = ($_GET['gallery']==$g['name']);?>
  2863. <option value="<?=$g['name']?>" <?=$is_this?"selected":""?>>
  2864. <?=(isset($g['experimental'])&&$g['experimental'])?'E ':''?><?=$this->T($g['name'])?></option>
  2865. <?php } ?>
  2866. </select>
  2867. </div>
  2868. <?php if($this->LoggedIn){?>
  2869. <div>
  2870. <?php if(isset($name)){ ?>
  2871. <div style='text-align:right;position:absolute;right:0;top:0;width:100%;' class='invert_a smaller hidden_on_print'>
  2872. <a href='javascript:ShowDeleteMenu();' class='smaller'><?=$this->T('删除相册')?></a><br />
  2873. <?php if(isset($gal['featured']) && $gal['featured']!=false){ ?>
  2874. <a href='?gallery=<?=$_GET['gallery']?>&gallery_set_featured=<?=$_GET['gallery']?>&value=false'
  2875. class='smaller'><?=$this->T('取消精选')?></a>
  2876. <?php }else{ ?>
  2877. <a href='?gallery=<?=$_GET['gallery']?>&gallery_set_featured=<?=$_GET['gallery']?>&value=true'
  2878. class='smaller'><?=$this->T('设为精选')?></a>
  2879. <?php } ?><br />
  2880. <?php if(isset($gal['experimental']) && $gal['experimental']!=false){ ?>
  2881. <a href='?gallery=<?=$_GET['gallery']?>&gallery_set_experimental=<?=$_GET['gallery']?>&value=false'
  2882. class='smaller'><?=$this->T('取消实验')?></a>
  2883. <?php }else{ ?>
  2884. <a href='?gallery=<?=$_GET['gallery']?>&gallery_set_experimental=<?=$_GET['gallery']?>&value=true'
  2885. class='smaller'><?=$this->T('设为实验')?></a>
  2886. <?php } ?>
  2887. <div class='pop_menu smaller invert_a' id='gallery_delete_menu' style='display:none;'>
  2888. <div style='float:left;' class='gray'><?=$this->T('该操作不删除图片。')?></div>
  2889. <a href='javascript:HidePopMenu();'>×</a>
  2890. <hr />
  2891. <a href='?gallery=main&gallery_edit_delete=<?=$_GET['gallery']?>'><b><?=$this->T('删除相册')?></b></a>
  2892. </div>
  2893. </div>
  2894. <?php } ?>
  2895. <?php $this->MakeUploader(false); ?>
  2896. <div style='text-align:right;position:relative;' class='invert_a smaller hidden_on_print'>
  2897. <div style='position:relative'>
  2898. <?php if(isset($name)){ ?>
  2899. <a href='javascript:ShowGalleryEditMenu("<?=$name?>")'><?=$this->T('改名')?></a>
  2900. <?php } ?>
  2901. <a href='javascript:ShowGalleryEditMenu(null)'><?=$this->T('添加')?></a>
  2902. <div class='pop_menu smaller invert_a' id='gallery_edit_menu' style='display:none;max-width:90%;'>
  2903. <form action="<?=$_SERVER['REQUEST_URI']?>&edit_gallery=true"
  2904. method="post" style='display:none;' id='gallery_edit_form'></form>
  2905. <a style='float:left;'><?=$this->T('相册名字:')?></a>
  2906. <a href='javascript:HidePopMenu();'>×</a>
  2907. <input type='text' form='gallery_edit_form' name='gallery_edit_new_name' id='gallery_edit_new_name'>
  2908. <input type='text' form='gallery_edit_form' name='gallery_edit_old_name'
  2909. id='gallery_edit_old_name' style='display:none'>
  2910. <input class='button' type='submit' form='gallery_edit_form'
  2911. name='gallery_edit_confirm' id='gallery_edit_confirm' value='<?=$this->T('确认')?>'>
  2912. </div>
  2913. </div>
  2914. </div>
  2915. <div class='smaller hidden_on_print'>
  2916. <form action="<?=$_SERVER['REQUEST_URI']?>"
  2917. method="post" style='display:none;' id='gallery_move_form'></form>
  2918. <input type='text' form='gallery_move_form' name='gallery_move_ops'
  2919. id='gallery_move_ops' style='display:none'>
  2920. <p><?=$this->T('选择了')?> <span id='gallery_selected_count'>0</span> <?=$this->T('个图片。')?>
  2921. <a href='javascript:ClearSelectedImages()'><?=$this->T('清除')?></a></p>
  2922. <p><?=$this->T('添加到')?>
  2923. <select id="gallery_move_to">
  2924. <option value="trash"><?=$this->T('垃圾桶')?></option>
  2925. <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){ ?>
  2926. <option value="<?=$g['name']?>"><?=$this->T($g['name'])?></option>
  2927. <?php } ?>
  2928. </select>
  2929. <a href='javascript:AddToGallery()'><?=$this->T('执行')?></a>
  2930. </p>
  2931. <p>
  2932. <?=$this->T('或者')?><a href='javascript:RemoveFromGallery()'><?=$this->T('从相册移除')?></a>
  2933. </p>
  2934. </div>
  2935. </div>
  2936. <?php } ?>
  2937. <p>&nbsp;</p>
  2938. <div>
  2939. <?php $opened=0; $prev_year=""; if(isset($this->Images[0])) foreach($this->Images as $im){
  2940. $year = substr($im['name'], 0, 4);
  2941. if($year!=$prev_year){
  2942. if($opened) { ?><div class='p_thumb' style='flex-grow:10000;box-shadow:none;height:0;'></div></div></div><?php } ?>
  2943. <div><h2 class='sticky_title'><?=$year;?></h2><div class='p_row'><?php $prev_year=$year; $opened=1;
  2944. }
  2945. if($_GET['gallery']=='trash') $name='trash';
  2946. if($_GET['gallery']!='main'){ if(!isset($im['galleries']) || !in_array($name, $im['galleries'])) continue;}
  2947. if(!$this->CanShowImage($im)){ continue; } ?>
  2948. <div class='p_thumb'>
  2949. <?php if($this->LoggedIn){ ?>
  2950. <div class="post_menu_button _select_hook white" onclick='ToggleSelectImage(this, "<?=$im["name"]?>")'>●</div>
  2951. <?php } ?>
  2952. <img src='<?=$im['thumb']?>' data-imgsrc='<?=$im["name"]?>'<?=isset($im['product'])?
  2953. 'data-product="'.$im["product"].'"':""?>/>
  2954. </div>
  2955. <?php } ?>
  2956. <div class='p_thumb' style='flex-grow:10000;box-shadow:none;height:0;'></div>
  2957. </div>
  2958. </div>
  2959. </div>
  2960. <?php if($this->LoggedIn){ ?>
  2961. <script type='text/javascript'>
  2962. var selected_image = new Array();
  2963. function RemoveFromGallery(){
  2964. form = document.querySelector('#gallery_move_form');
  2965. ops = document.querySelector('#gallery_move_ops');
  2966. sel = document.querySelector('#gallery_move_to');
  2967. ops.value = "REM <?=$_GET['gallery']?>"+" "+selected_image.join(' ');
  2968. form.submit();
  2969. }
  2970. function AddToGallery(){
  2971. form = document.querySelector('#gallery_move_form');
  2972. ops = document.querySelector('#gallery_move_ops');
  2973. sel = document.querySelector('#gallery_move_to');
  2974. ops.value = "ADD "+sel.value+" "+selected_image.join(' ');
  2975. form.submit();
  2976. }
  2977. function ClearSelectedImages(){
  2978. selected_image.splice(0, selected_image.length);
  2979. checks = document.querySelectorAll('._select_hook');
  2980. [].forEach.call(checks, function(c){
  2981. c.classList.remove('p_thumb_selected');
  2982. });
  2983. count = document.querySelector('#gallery_selected_count');
  2984. count.innerHTML="0";
  2985. }
  2986. function ToggleSelectImage(elem, name){
  2987. count = document.querySelector('#gallery_selected_count');
  2988. if(selected_image.indexOf(name) == -1){ selected_image.push(name); elem.classList.add('p_thumb_selected'); }
  2989. else{ selected_image.splice(selected_image.indexOf(name), 1); elem.classList.remove('p_thumb_selected'); }
  2990. count.innerHTML=selected_image.length.toString()
  2991. }
  2992. function ShowGalleryEditMenu(old_name){
  2993. m = document.querySelector('#gallery_edit_menu');
  2994. old = document.querySelector('#gallery_edit_old_name');
  2995. m.style.display='block';
  2996. if(old_name!=''){ old.value=old_name; }else{ old.value=''; }
  2997. }
  2998. function ShowDeleteMenu(){
  2999. m=document.querySelector('#gallery_delete_menu');
  3000. m.style.display='block';
  3001. }
  3002. </script>
  3003. <?php } ?>
  3004. <?php
  3005. }
  3006. function MakeGalleryLeft(){?>
  3007. <div class='left hidden_on_mobile gallery_left' id='div_left'>
  3008. <h2><?=$this->T('相册')?></h2>
  3009. <div>
  3010. <span class='gray smaller bold'><?=$this->T('精选')?><hr> </span>
  3011. <ul>
  3012. <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){
  3013. if(!isset($g['featured']) || !$g['featured'] || !$this->CanShowGallery($g)){ continue; } ?>
  3014. <a href='?gallery=<?=$g['name']?>' onclick='ShowWaitingBar()'>
  3015. <li class='<?=$_GET['gallery']==$g['name']?'selected':""?>'>
  3016. <?=(isset($g['experimental'])&&$g['experimental'])?'E ':''?><?=$this->T($g['name'])?></li></a>
  3017. <?php } ?>
  3018. </ul>
  3019. <div class='smaller'><span class='gray'><?=$this->T('其他相册')?><hr></span><ul>
  3020. <a href='?gallery=main' onclick='ShowWaitingBar()'>
  3021. <li class='<?=$_GET['gallery']=='main'?' selected':""?>'>[<?=$this->T('全部图片')?>]</li></a>
  3022. <?php if(isset($this->Galleries[0])) foreach($this->Galleries as $g){
  3023. if((isset($g['featured']) && $g['featured']) || !$this->CanShowGallery($g)){ continue; } ?>
  3024. <a href='?gallery=<?=$g['name']?>' onclick='ShowWaitingBar()'>
  3025. <li class='<?=$_GET['gallery']==$g['name']?' selected':""?>'>
  3026. <?=(isset($g['experimental'])&&$g['experimental'])?'E ':''?><?=$this->T($g['name'])?></li></a>
  3027. <?php } ?>
  3028. <?php if($this->LoggedIn){ ?>
  3029. <a href='?gallery=trash' onclick='ShowWaitingBar()'>
  3030. <li class='<?=$_GET['gallery']=='trash'?' selected':""?>'>[<?=$this->T('垃圾桶')?>]</li></a>
  3031. <?php } ?>
  3032. </ul></div>
  3033. <p>&nbsp;</p>
  3034. <script>
  3035. </script>
  3036. </div>
  3037. </div>
  3038. <?php
  3039. }
  3040. function MakeTOC(){?>
  3041. <div class='right hidden_on_mobile' id='div_right'>
  3042. <?php if(isset($this->Anchors[0])){?>
  3043. <h2><?=$this->T('目录')?></h2><ul>
  3044. <?php
  3045. foreach($this->Anchors as $a){?>
  3046. <li class='toc_entry_<?=$a[0]>5?5:$a[0]?>'><a href='#<?=$a[1]?>'><?=$this->T($a[2])?></a></li>
  3047. <?php }
  3048. ?></ul>
  3049. <?php }else{ ?>
  3050. <h2 class='gray'><?=$this->T('目录')?></h2>
  3051. <span class='gray smaller'><?=$this->T('未找到目录')?></span>
  3052. <?php } ?>
  3053. </div>
  3054. <?php
  3055. }
  3056. function MakeSettings(){?>
  3057. <div class='settings'>
  3058. <h2><?=$this->T('设置')?></h2>
  3059. <table style='white-space:nowrap;'>
  3060. <?php if($this->LoggedIn){ ?>
  3061. <form action="index.php?settings=true" method="post" style='display:none;' id='settings_form'></form>
  3062. <colgroup><col style='min-width:5em;'><col style='width:100%;min-width:5em;'></colgroup>
  3063. <thead><tr><td><?=$this->T('选项')?></td><td><?=$this->T('值')?></td></tr></thead>
  3064. <tr><td><?=$this->T('网站标题')?></td>
  3065. <td><input type="text" form="settings_form" id='settings_title' name='settings_title'
  3066. value='<?=$this->Title?>'/></td></tr>
  3067. <tr><td><?=$this->T('短标题')?></td>
  3068. <td><input type="text" form="settings_form" id='settings_short_title' name='settings_short_title'
  3069. value='<?=$this->ShortTitle?>'/></td></tr>
  3070. <tr><td><?=$this->T('显示名称')?></td>
  3071. <td><input type="text" form="settings_form" id='settings_display_name' name='settings_display_name'
  3072. value='<?=$this->DisplayName?>'/></td></tr>
  3073. <tr><td><?=$this->T('电子邮件')?></td>
  3074. <td><input type="text" form="settings_form" id='settings_email' name='settings_email'
  3075. value='<?=$this->EMail?>'/></td></tr>
  3076. <tr><td><?=$this->T('导航栏')?>
  3077. <?=isset($this->SpecialNavigation)?"<a href='?post=".$this->SpecialNavigation."'>→</a>":""?></td>
  3078. <td><input type="text" form="settings_form" id='settings_special_navigation' name='settings_special_navigation'
  3079. value='<?=$this->SpecialNavigation?>'/></td></tr>
  3080. <tr><td><?=$this->T('脚注')?> 1<?=isset($this->SpecialFooter)?"<a href='?post=".$this->SpecialFooter."'>→</a>":""?></td>
  3081. <td><input type="text" form="settings_form" id='settings_special_footer' name='settings_special_footer'
  3082. value='<?=$this->SpecialFooter?>'/></td></tr>
  3083. <tr><td><?=$this->T('脚注')?> 2<?=isset($this->SpecialFooter2)?"<a href='?post=".$this->SpecialFooter2."'>→</a>":""?></td>
  3084. <td><input type="text" form="settings_form" id='settings_special_footer2' name='settings_special_footer2'
  3085. value='<?=$this->SpecialFooter2?>'/></td></tr>
  3086. <tr><td><?=$this->T('置顶文')?><?=isset($this->SpecialPinned)?"<a href='?post=".$this->SpecialPinned."'>→</a>":""?></td>
  3087. <td><input type="text" form="settings_form" id='settings_special_pinned' name='settings_special_pinned'
  3088. value='<?=$this->SpecialPinned?>'/></td></tr>
  3089. <tr><td><?=$this->T('默认相册')?></td>
  3090. <td><input type="text" form="settings_form" id='settings_default_gallery' name='settings_default_gallery'
  3091. value='<?=$this->DefaultGallery?>'/></td></tr>
  3092. <tr><td><?=$this->T('启用评论')?></td>
  3093. <td><input type="checkbox" id="settings_enable_comments" name="settings_enable_comments"
  3094. form="settings_form" <?=$this->CommentEnabled?"checked":""?>/></td></tr>
  3095. <tr><td><?=$this->T('附加操作')?></td><td><a class='gray' href='index.php?extras=true'><?=$this->T('进入')?></a></td></tr>
  3096. <tr><td class='smaller gray'>&nbsp;</td></tr>
  3097. <tr><td class='smaller gray'><?=$this->T('实验访问')?></td></tr>
  3098. <tr><td><?=$this->T('主机')?><?=isset($this->ExpHost)?"<a href='?post=".$this->ExpHost."'>→</a>":""?></td>
  3099. <td><input type="text" form="settings_form" id='settings_exp_host' name='settings_exp_host'
  3100. value='<?=$this->ExpHost?>'/></td></tr>
  3101. <tr><td><?=$this->T('网站标题')?></td>
  3102. <td><input type="text" form="settings_form" id='settings_exp_title' name='settings_exp_title'
  3103. value='<?=$this->ExpTitle?>'/></td></tr>
  3104. <tr><td><?=$this->T('短标题')?></td>
  3105. <td><input type="text" form="settings_form" id='settings_exp_short_title' name='settings_exp_short_title'
  3106. value='<?=$this->ExpShortTitle?>'/></td></tr>
  3107. <tr><td><?=$this->T('首次提示')?><?=isset($this->ExpCaution)?"<a href='?post=".$this->ExpCaution."'>→</a>":""?></td>
  3108. <td><input type="text" form="settings_form" id='settings_exp_caution' name='settings_exp_caution'
  3109. value='<?=$this->ExpCaution?>'/></td></tr>
  3110. <tr><td><?=$this->T('索引')?><?=isset($this->ExpIndex)?"<a href='?post=".$this->ExpIndex."'>→</a>":""?></td>
  3111. <td><input type="text" form="settings_form" id='settings_exp_index' name='settings_exp_index'
  3112. value='<?=$this->ExpIndex?>'/></td></tr>
  3113. <tr><td><?=$this->T('导航栏')?>
  3114. <?=isset($this->ExpNavigation)?"<a href='?post=".$this->ExpNavigation."'>→</a>":""?></td>
  3115. <td><input type="text" form="settings_form" id='settings_exp_navigation' name='settings_exp_navigation'
  3116. value='<?=$this->ExpNavigation?>'/></td></tr>
  3117. <tr><td><?=$this->T('脚注')?><?=isset($this->ExpFooter)?"<a href='?post=".$this->ExpFooter."'>→</a>":""?></td>
  3118. <td><input type="text" form="settings_form" id='settings_exp_footer' name='settings_exp_footer'
  3119. value='<?=$this->ExpFooter?>'/></td></tr>
  3120. <tr><td class='smaller gray'>&nbsp;</td></tr>
  3121. <tr><td class='smaller gray'><?=$this->T('管理员')?></td><td class='smaller'>
  3122. <a href='index.php?logout=true'><?=$this->T('登出')?></a></td></tr>
  3123. <tr><td><?=$this->T('帐号')?></td>
  3124. <td><input type="text" form="settings_form" id='settings_id' name='settings_id'
  3125. value='<?=$this->Admin?>'/></td></tr>
  3126. <tr><td><?=$this->T('新密码')?></td>
  3127. <td><input type="password" form="settings_form"
  3128. id='settings_new_password' name='settings_new_password' /></td></tr>
  3129. <tr><td><?=$this->T('再次输入')?></td>
  3130. <td><input type="password" form="settings_form"
  3131. id='settings_new_password_redo' name='settings_new_password_redo' /></td></tr>
  3132. <tr><td><?=$this->T('旧密码')?></td>
  3133. <td><input type="password" form="settings_form" id='settings_old_password' name='settings_old_password' /></td></tr>
  3134. <?php }else{ ?>
  3135. <form action="<?=$_SERVER['REQUEST_URI']?>" method="post" style='display:none;' id='login_form'></form>
  3136. <colgroup><col style='min-width:3em;'><col style='width:100%;min-width:5em;'></colgroup>
  3137. <tr><td class='smaller gray'><?=$this->T('请登录')?></td></tr>
  3138. <tr><td><?=$this->T('帐号')?></td>
  3139. <td><input type="text" form="login_form" id='login_id' name='login_id' /></td></tr>
  3140. <tr><td><?=$this->T('密码')?></td>
  3141. <td><input type="password" form="login_form" id='login_password' name='login_password' /></td></tr>
  3142. <?php } ?>
  3143. </table>
  3144. <?php if($this->LoggedIn){ ?>
  3145. <input class='button' form="settings_form" type="submit" name='settings_button' value='<?=$this->T('保存设置')?>' />
  3146. <?php }else{ ?>
  3147. <input class='button' form="login_form" type="submit" name='login_button' value='<?=$this->T('登录')?>' />
  3148. <?php } ?>
  3149. </div>
  3150. <?php
  3151. }
  3152. function MakeExtraOperations(){?>
  3153. <div class='settings' style='overflow:auto;'>
  3154. <h2><?=$this->T('附加操作')?></h2>
  3155. <a href='index.php?&settings=true'><?=$this->T('返回一般设置')?></a>
  3156. <p>&nbsp;</p>
  3157. <h3><?=$this->T('自动重定向')?></h3>
  3158. <span class='smaller gray'>
  3159. <?=$this->T('P为帖子跳转,匹配REQUEST_URI跳到目标文章;S为站点跳转,可以重定向来源域名,例子:')?>
  3160. <br /><pre>P discount:20001001010101;<br />S old_domain:www.new_domain.com:20001001010101;</pre></span>
  3161. <form action="<?=$_SERVER['REQUEST_URI']?>" method="post" style='display:none;' id='settings_form2'></form>
  3162. <textarea id="settings_redirect" name="settings_redirect" rows="3" class='full_box' wrap="off"
  3163. form='settings_form2'><?=$this->DisplayRedirectConfig()?></textarea>
  3164. <input class='button' form="settings_form2" type="submit" name='settings_save_redirect'
  3165. value='<?=$this->T('保存重定向设置')?>' />
  3166. <p>&nbsp;</p>
  3167. <h3><?=$this->T('自定义翻译')?></h3>
  3168. <span class='smaller gray'>
  3169. <?=$this->T('填写格式:')?>
  3170. <br /><pre>- 语言 | Language</pre></span>
  3171. <form action="<?=$_SERVER['REQUEST_URI']?>" method="post" style='display:none;' id='settings_form3'></form>
  3172. <textarea id="settings_translation" name="settings_translation" rows="3" class='full_box' wrap="off"
  3173. form='settings_form3'><?=$this->CustomTranslationContent?></textarea>
  3174. <input class='button' form="settings_form3" type="submit" name='settings_save_translation'
  3175. value='<?=$this->T('保存翻译')?>' />
  3176. <p>&nbsp;</p>
  3177. <p class='smaller gray'><?=$this->T('当心!下列操作将立即执行:')?></p>
  3178. <ul>
  3179. <li><a href='index.php?rewrite_styles=true'><?=$this->T('重新写入默认CSS')?></a></li>
  3180. <li><a href='index.php?regenerate_thumbnails=true'><?=$this->T('重新生成图片缩略图')?></a></li>
  3181. <li><a href='index.php?clear_all_logins=true'><?=$this->T('删除所有登录')?>(<?=sizeof($this->LoginTokens);?>)</a></li>
  3182. </ui>
  3183. <br /><br /><br /><a href='index.php?&settings=true'><?=$this->T('返回一般设置')?></a><br />&nbsp;
  3184. </div>
  3185. <?php
  3186. }
  3187. function MakeMainBegin(){?>
  3188. <div class='main' <?php if(!$this->InExperimentalMode){ ?>
  3189. ondrop="_dropHandler(event);" ondragover="_dragOverHandler(event);"<?php } ?>>
  3190. <?php
  3191. }
  3192. function MakeMainEnd(){?>
  3193. </div>
  3194. <?php
  3195. }
  3196. function MakeExpFooter(){?>
  3197. <div class='small_footer'>
  3198. <hr />
  3199. <b><?=$this->T($this->ExpTitle)?></b>&nbsp;©<?=$this->T($this->DisplayName)?>
  3200. </div>
  3201. <div class='footer'>
  3202. <div style='white-space:nowrap;'>
  3203. <div class='footer_additional'>
  3204. <?php if(isset($this->ExpFooter) && ($p = &$this->GetPost($this->ExpFooter))!=NULL){
  3205. echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST,false));
  3206. } ?>
  3207. </div>
  3208. </div>
  3209. </div>
  3210. </div><!-- page -->
  3211. </body>
  3212. </html>
  3213. <script>
  3214. if(trans = document.getElementById('translate_button')){
  3215. trans.href='https://translate.google.com/translate?sl=auto&tl=en-US&u='+encodeURIComponent(document.location.href);
  3216. }
  3217. </script>
  3218. <?php
  3219. }
  3220. function MakeFooter(){?>
  3221. <div class='small_footer'>
  3222. <hr />
  3223. <b><?=$this->T($this->Title)?></b>
  3224. <span onclick='event.stopPropagation()'
  3225. ondblclick='javascript:window.location.href="index.php?settings=true"'>©</span><?=$this->T($this->DisplayName)?>
  3226. </div>
  3227. <div class='footer'>
  3228. <div style='white-space:nowrap;'>
  3229. <div class='footer_additional'>
  3230. <?php if(isset($this->SpecialFooter) && ($p = &$this->GetPost($this->SpecialFooter))!=NULL){
  3231. echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST,false));
  3232. } ?>
  3233. </div>
  3234. <div class='footer_additional'>
  3235. <?php if(isset($this->SpecialFooter2) && ($p = &$this->GetPost($this->SpecialFooter2))!=NULL){
  3236. echo $this->TranslatePostParts($this->GenerateSinglePost($p, false, false, false, false,$this->NULL_POST,false));
  3237. } ?>
  3238. </div>
  3239. </div>
  3240. </div>
  3241. <p>&nbsp;<p>
  3242. <div id='dropping_background' style='display:none;' onclick='this.style.display="none";'
  3243. ondrop="_dropHandler(event);" ondragover="_dragOverHandler(event);">
  3244. <h2 style='width:100%;'><?=$this->T('上传到这里')?></h2>
  3245. </div>
  3246. <div id='big_image_overlay' style='display:none'>
  3247. <div class='big_image_box clean_a' onclick='HideBigImage(1)'>
  3248. <div style='display:flex;align-items:center;height:100%;justify-content:center;width:100%;'><?=$this->T('请稍候')?></div>
  3249. <img id='big_image' onload="HideWaitingBar();"/>
  3250. </div>
  3251. <div class='big_side_box' onclick='HideBigImage(1);'>
  3252. <div class='big_image_box clean_a image_nav' onclick='HideBigImage(1)'>
  3253. <div ><a id='prev_image' class='image_nav_prev img_btn_hidden' onclick="event.stopPropagation();">
  3254. <div class='lr_buttons'>←</div></a></div>
  3255. <div ><a id='next_image' class='image_nav_next img_btn_hidden' onclick="event.stopPropagation();">
  3256. <div class='lr_buttons'>→</div></a></div>
  3257. </div>
  3258. <div class='side_box_mobile_inner'>
  3259. <div class='inquiry_buttons img_btn_hidden' id='inquiry_buttons' onclick="event.stopPropagation();">
  3260. <span style='display:none;' id='image_purchase' class='clean_a'>
  3261. <b><a id='image_purchase_button' target="_blank">¥<?=$this->T('购买印刷品')?></a></b>
  3262. <br class='hidden_on_desktop block_on_mobile' /></span>
  3263. <b><a class='clean_a' id='image_download'><span id='download_processing'>↓</span><?=$this->T('下载')?></a></b>
  3264. <?php if(isset($this->EMail) && $this->EMail!=""){ ?>
  3265. &nbsp;<a class='clean_a' id='image_inquiry'>
  3266. <b>@</b><?=$this->T('咨询')?></a>
  3267. <?php } ?><hr class='hidden_on_desktop block_on_mobile' />
  3268. </div>
  3269. <div id='big_image_share' class='clean_a' onclick="event.stopPropagation();">
  3270. <li>
  3271. <a id='big_share_copy'>⧉</a>
  3272. <a id='big_share_pin' target='_blank'>Pin</a>
  3273. <a id='big_share_twitter' target='_blank'>Twitter</a>
  3274. <a id='big_share_weibo' target='_blank'><?=$this->T('微博')?></a>
  3275. </li>
  3276. <hr />
  3277. </div>
  3278. <div id='big_image_info' onclick="event.stopPropagation();"></div>
  3279. <?php if($this->LoggedIn){ ?><div id='big_image_ops' onclick="event.stopPropagation();">
  3280. <br /><?=$this->T('印刷品链接')?>
  3281. <form action="" method="post" style='display:none;' id='image_ops_form'></form>
  3282. <input type='text' id='image_ops_product_link' name='image_ops_product_link' form="image_ops_form" >
  3283. <?=$this->T('重命名')?>
  3284. <input type='text' id='image_edit_new_name' name='image_edit_new_name' form="image_ops_form" >
  3285. <input class='button' form="image_ops_form" type="submit" name='image_button' value=<?=$this->T('保存')?> />
  3286. <br /><br /><?=$this->T('替换图像')?>
  3287. <form action="" method="post" style='display:none;' id='image_edit_form' enctype="multipart/form-data"></form>
  3288. <input type="file" form='image_edit_form'
  3289. id='big_image_upload' name='upload_file_name' accept="image/x-png,image/png,image/gif,image/jpeg"/><br />
  3290. <input class='button' form="image_edit_form" type="submit" name='image_replace_button'
  3291. value=<?=$this->T('执行')?> />
  3292. </div><?php } ?>
  3293. </div>
  3294. </div>
  3295. </div>
  3296. </div><!-- page -->
  3297. </body>
  3298. </html>
  3299. <script>
  3300. <?=$this->ExtraScripts?>
  3301. if(back = document.getElementById('button_back')){
  3302. if(document.referrer.indexOf(location.protocol + "//" + location.host) == 0){
  3303. back.href='javascript:history.back()';
  3304. }else{
  3305. back.href='index.php';
  3306. }
  3307. }
  3308. function copy_text(t) {
  3309. ta = document.createElement('textarea');
  3310. document.body.appendChild(ta);
  3311. ta.value = t;
  3312. ta.select();
  3313. document.execCommand("copy");
  3314. document.body.removeChild(ta);
  3315. }
  3316. if(trans = document.getElementById('translate_button')){
  3317. trans.href='https://translate.google.com/translate?sl=auto&tl=en-US&u='+encodeURIComponent(document.location.href);
  3318. }
  3319. <?php if($this->LoggedIn){ ?>
  3320. function ShowSideUploader(){
  3321. ShowRightSide(true,null);
  3322. put = document.querySelector("#_uploader");
  3323. put.style.display='block';
  3324. RefreshSideGallery();
  3325. }
  3326. dmark = document.querySelector("#mark_details");
  3327. drename = document.querySelector("#rename_details");
  3328. drename_form = document.querySelector("#post_rename_form");
  3329. drename_input = document.querySelector("#post_rename_name");
  3330. var rp = document.querySelector('#post_reply_to');
  3331. var _reply_to = rp?rp.defaultValue:"";
  3332. function RestoreReply(){
  3333. if(rp){
  3334. rp.defaultValue = _reply_to;
  3335. }
  3336. document.querySelector('#post_reply_restore').style.display='none';
  3337. ht = document.querySelector('#post_hint_text');
  3338. if (_reply_to!=""){
  3339. ht.style.display='block';
  3340. ht.innerHTML="<?=$this->T('继续补充该话题:')?>";
  3341. }else{
  3342. ht.style.display='none';
  3343. }
  3344. document.querySelector('#post_edit_target').value="";
  3345. ch = document.querySelector('#post_hint_modify');
  3346. ch.style.display='none';
  3347. }
  3348. function MakeRefer(id){
  3349. t = document.querySelector('#post_content')
  3350. t.focus();
  3351. v = t.value;
  3352. t.value = v.slice(0, t.selectionStart) + "[<?=$this->T('引用文章')?>]("+id.toString()+")" + v.slice(t.selectionEnd);
  3353. la_auto_grow(t);
  3354. if(rp){
  3355. rp.defaultValue = "";
  3356. ht = document.querySelector('#post_hint_text');
  3357. ht.innerHTML = "<?=$this->T('引用并发送新话题:')?>"; ht.style.display='block';
  3358. document.querySelector('#post_reply_restore').style.display='inline';
  3359. rs = document.querySelector('#post_reply_restore');
  3360. rs.style.display='inline'; rs.innerHTML="<?=$this->T('切换为回复')?>";
  3361. document.getElementById('post_menu').style.display='none';
  3362. ch = document.querySelector('#post_hint_modify');
  3363. ch.style.display='none';
  3364. }
  3365. }
  3366. function CopyRefer(id){
  3367. copy_text(id.toString());
  3368. menu.querySelector('#menu_refer_copy').innerHTML="<?=$this->T('已复制')?>";
  3369. }
  3370. function MakeEdit(id){
  3371. ed = document.getElementById('menu_edit');
  3372. ed.innerHTML="<?=$this->T('稍等')?>";
  3373. ed.href="#";
  3374. var xhr = new XMLHttpRequest();
  3375. xhr.onreadystatechange = function() {
  3376. if (this.readyState == 4 && this.status == 200) {
  3377. ed.innerHTML='——';
  3378. ch = document.querySelector('#post_hint_modify');
  3379. ch.style.display='block';
  3380. ht = document.querySelector('#post_hint_text');
  3381. ht.innerHTML = "<?=$this->T('修改帖子:')?>";
  3382. rs = document.querySelector('#post_reply_restore');
  3383. rs.style.display='inline'; rs.innerHTML="<?=$this->T('取消')?>";
  3384. t = document.querySelector('#post_content');
  3385. t.value=xhr.responseText.trim();
  3386. t.focus();
  3387. la_auto_grow(t);
  3388. document.querySelector('#post_edit_target').value=id;
  3389. document.getElementById('post_menu').style.display='none';
  3390. }
  3391. };
  3392. xhr.open("GET", "index.php?post="+id.toString()+'&post_original=true', true);
  3393. xhr.send();
  3394. }
  3395. function MarkDelete(id){
  3396. p = document.querySelector('[data-post-id="'+id+'"]');
  3397. op = p.dataset.markDelete?"false":"true";
  3398. window.location.href=
  3399. "index.php?<?=isset($_GET['post'])?('post='.$_GET['post']):""?>&mark_delete="+op+'&target='+id.toString();
  3400. }
  3401. function SetMark(mark){
  3402. menu = document.getElementById('post_menu');
  3403. window.location.href=
  3404. "index.php?<?=isset($_GET['post'])?('post='.$_GET['post']):""?>&target="+
  3405. menu.parentNode.dataset.postId+"&set_mark="+mark;
  3406. }
  3407. function ToggleMarkDetails(){
  3408. if(dmark.style.display=='block') dmark.style.display='none';
  3409. else dmark.style.display='block';
  3410. }
  3411. function ToggleRenameDetails(){
  3412. if(drename.style.display=='block') drename.style.display='none';
  3413. else drename.style.display='block';
  3414. }
  3415. <?php } ?>
  3416. function ShowPostMenu(post){
  3417. menu = document.getElementById('post_menu');
  3418. menu.style.display='block';
  3419. menu.parentNode.removeChild(menu);
  3420. post.appendChild(menu);
  3421. menu.style.display='block';
  3422. id = post.dataset.postId
  3423. menu.querySelector('#_time_hook').innerHTML = ''+id.substring(2,4)+'/'+id.substring(4,6)+'/'+id.substring(6,8)+
  3424. ' '+id.substring(8,10)+':'+id.substring(10,12);
  3425. window.onClick="HidePopMenu()";
  3426. menu.onClick=(function(event){
  3427. event.stopPropagation();
  3428. });
  3429. hs = menu.querySelector('#menu_history');
  3430. hs.href='?post='+id+'&history=1';
  3431. <?php if($this->LoggedIn){ ?>
  3432. menu.querySelector('#menu_refer').href='javascript:MakeRefer(id)';
  3433. menu.querySelector('#menu_refer_copy').href='javascript:CopyRefer(id)';
  3434. ed = menu.querySelector('#menu_edit')
  3435. ed.href='javascript:MakeEdit(id)'; ed.innerHTML="<?=$this->T('修改')?>";
  3436. d = menu.querySelector('#menu_delete');
  3437. d.href='javascript:MarkDelete(\"'+id+'\")';
  3438. p = document.querySelector('[data-post-id="'+id+'"]');
  3439. d.innerHTML = p.dataset.markDelete?"<?=$this->T('恢复')?>":"<?=$this->T('删除')?>";
  3440. menu.querySelector('#mark_details').dataset.id=id;
  3441. drename_input.value=id;
  3442. drename_form.action="<?=$_SERVER['REQUEST_URI'];?>"+"&rename_post="+id;
  3443. <?php } ?>
  3444. title = document.title;
  3445. copy = document.getElementById('share_copy');
  3446. copy.innerHTML='⧉&#xfe0e;';
  3447. copy.addEventListener("click", function(){
  3448. url = window.location
  3449. path = location.pathname
  3450. copy_text(url.protocol+"//"+url.host+path+"?post="+id);
  3451. this.innerHTML='⧉&#xfe0e;&#10003;&#xfe0e;';
  3452. });
  3453. document.getElementById('share_pin').href='https://www.pinterest.com/pin/create/button/?url='+
  3454. encodeURIComponent(window.location.href)+
  3455. //'&media='+abs_img+
  3456. '&description='+encodeURIComponent(title);
  3457. document.getElementById('share_twitter').href='http://twitter.com/share?text='+
  3458. encodeURIComponent(title)+
  3459. '&url='+window.location.href+
  3460. "&hashtags="
  3461. document.getElementById('share_weibo').href='https://service.weibo.com/share/share.php?title='+
  3462. encodeURIComponent(title)+
  3463. ': '+window.location.href
  3464. }
  3465. function HidePopMenu(){
  3466. var menus = document.querySelectorAll('.pop_menu');
  3467. [].forEach.call(menus, function(m){m.style.display='none';});
  3468. }
  3469. var posts = document.querySelectorAll('.center .post');
  3470. [].forEach.call(posts, function(p){
  3471. if(s=p.querySelector('._menu_hook')) s.addEventListener("click", function() {
  3472. ShowPostMenu(this.parentNode.parentNode);
  3473. });
  3474. });
  3475. var post_clickables = document.querySelectorAll('.center .post a');
  3476. [].forEach.call(post_clickables, function(p){
  3477. p.addEventListener("click", function(event){
  3478. event.stopPropagation();
  3479. });
  3480. });
  3481. function FindImage(imgsrc){
  3482. for(var i=0;i<document.images_filtered.length;i++){
  3483. if (document.images_filtered[i].dataset.imgsrc==imgsrc) return document.images_filtered[i]
  3484. }
  3485. return null
  3486. }
  3487. var dottime1;
  3488. var dottime2;
  3489. function ToDataURL(url) {
  3490. return fetch(url).then((response) => {return response.blob();}).then(blob => {
  3491. clearTimeout(dottime1);clearTimeout(dottime2);
  3492. ps = document.querySelector('#download_processing');
  3493. ps.innerHTML='↓';ps.style.opacity='';
  3494. return URL.createObjectURL(blob);});
  3495. }
  3496. async function DownloadAsImage(url,name) {
  3497. const a = document.createElement("a"); a.href = await ToDataURL(url); a.download = name;
  3498. document.body.appendChild(a); a.click(); document.body.removeChild(a);
  3499. }
  3500. function basename(url){return url.split(/[\\/]/).pop();}
  3501. pushed=0;
  3502. function ShowBigImage(imgsrc,do_push){
  3503. ShowWaitingBar();
  3504. share = document.querySelector('#big_image_share');
  3505. img = document.querySelector('#big_image');
  3506. down = document.querySelector('#image_download');
  3507. img.src = "";
  3508. img.src = src = "images/"+imgsrc;
  3509. down.href="images/"+imgsrc;
  3510. var downname='<?=$this->T($this->Title);?>_<?=$this->T($this->DisplayName);?>_+<?=$this->GiveSafeEMail()?>+_'+
  3511. basename(down.href);
  3512. img.alt = downname; down.download=downname;
  3513. var use_href = "images/"+imgsrc;
  3514. down.onclick=function(event){event.stopPropagation();event.preventDefault();
  3515. ps = this.querySelector('#download_processing');ps.innerText='…';
  3516. var dotwait = function(ps){ var self = this;
  3517. dottime1 = setTimeout(function(ps){
  3518. ps.style.opacity='0'; dottime2 = setTimeout(function(ps){ps.style.opacity='1'; dotwait(ps);},300,ps); },300,ps) }
  3519. dotwait(this.querySelector('#download_processing'));
  3520. DownloadAsImage(use_href,downname);};
  3521. if(do_push){PushGalleryHistory(src)}
  3522. page_url = encodeURIComponent(window.location.href);
  3523. <?php if(isset($this->EMail) && $this->EMail!=""){ ?>
  3524. inqb = document.querySelector('#image_inquiry');
  3525. inqb.href="mailto:<?=$this->T($this->DisplayName);?>\<<?=$this->EMail?>\>?subject=<?=$this->T('网站图片咨询');?>&body="+
  3526. encodeURIComponent("<?=$this->T('你好!我对你网站上的这张图片感兴趣:')?>"+'\n\n')+
  3527. (page_url)+encodeURIComponent('\n\n');
  3528. <?php } ?>
  3529. this_image = FindImage(imgsrc);
  3530. if(this_image.dataset.prevsrc){
  3531. new_image = FindImage(this_image.dataset.prevsrc);
  3532. new_prev = new_image?new_image.dataset.prevsrc:null;
  3533. im = document.querySelector('#prev_image');
  3534. if(new_prev) {im.href='javascript:ShowBigImage("'+this_image.dataset.prevsrc+'",'+do_push+')';im.style.opacity='';}
  3535. else {im.style.opacity='0';im.removeAttribute("href");}
  3536. }
  3537. if(this_image.dataset.nextsrc){
  3538. new_image = FindImage(this_image.dataset.nextsrc);
  3539. new_next = new_image?new_image.dataset.nextsrc:null;
  3540. im = document.querySelector('#next_image');
  3541. if(new_next) {im.href='javascript:ShowBigImage("'+this_image.dataset.nextsrc+'",'+do_push+')';im.style.opacity='';}
  3542. else {im.style.opacity='0';im.removeAttribute("href");}
  3543. }
  3544. purchase = document.querySelector('#image_purchase');
  3545. purchase_btn = document.querySelector('#image_purchase_button');
  3546. <?php if($this->LoggedIn){ ?>
  3547. product_link = document.querySelector('#image_ops_product_link');
  3548. product_form = document.querySelector('#image_ops_form');
  3549. edit_form = document.querySelector('#image_edit_form');
  3550. edit_new_name = document.querySelector('#image_edit_new_name');
  3551. product_form.action = window.location.href;
  3552. edit_form.action = window.location.href;
  3553. edit_new_name.value = imgsrc.split('.')[0];
  3554. if(this_image.dataset.product){
  3555. product_link.value = this_image.dataset.product;
  3556. }else{
  3557. product_link.value = "";
  3558. }
  3559. <?php } ?>
  3560. if(this_image.dataset.product){
  3561. purchase.style.display='';
  3562. href = this_image.dataset.product;
  3563. if(this_image.dataset.product.match('^[0-9]{14}$')){
  3564. href = '?post='+href;
  3565. }
  3566. purchase_btn.href = href;
  3567. }else{
  3568. purchase.style.display='none';
  3569. purchase_btn.removeAttribute("href");
  3570. }
  3571. DelayHideImgBtn(null);
  3572. title = encodeURIComponent(document.title);
  3573. copy = document.getElementById('big_share_copy');
  3574. copy.innerHTML='⧉&#xfe0e;';
  3575. copy.addEventListener("click", function(){
  3576. copy_text(window.location.href);
  3577. this.innerHTML='⧉&#xfe0e;&#10003;&#xfe0e;';
  3578. });
  3579. document.getElementById('big_share_pin').href='https://www.pinterest.com/pin/create/button/?url='+
  3580. page_url+'&media='+window.location.host+'/'+src+'&description='+title;
  3581. document.getElementById('big_share_twitter').href='http://twitter.com/share?text='+
  3582. title+'&url='+page_url+"&hashtags=";
  3583. document.getElementById('big_share_weibo').href='https://service.weibo.com/share/share.php?title='+
  3584. title+': '+page_url;
  3585. o = document.querySelector('#big_image_overlay');
  3586. info = document.querySelector('#big_image_info');
  3587. info.innerHTML="<?=$this->T('正在查询……')?>";
  3588. o.style.display="block";
  3589. ShowBackdrop(0.8);
  3590. var xhr = new XMLHttpRequest();
  3591. xhr.onreadystatechange = function() {
  3592. if (this.readyState == 4 && this.status == 200) {
  3593. info = document.querySelector('#big_image_info');
  3594. var response = xhr.responseText;
  3595. let content=""
  3596. if(res = response.match(/<ref>(.*)<\/ref>/u)){
  3597. content="<span class='small'><?=$this->T('该图片出现在')?> "+res[1]+" <?=$this->T('个帖子中')?></span>"+content;
  3598. }else{content="<span class='smaller gray'><?=$this->T('该图片未被引用')?></span>"+content;}
  3599. if(res = response.match(/<insert>([\s\S]*)<\/insert>/u)){
  3600. content+="<div class='clean_a'>"+res[1]+"</div>";
  3601. }
  3602. info.innerHTML=content;
  3603. }
  3604. };
  3605. xhr.open("GET", "index.php?image_info="+imgsrc+"", true);
  3606. xhr.send();
  3607. }
  3608. function HideBigImage(do_push){
  3609. o = document.querySelector('#big_image_overlay');
  3610. img = document.querySelector('#big_image');
  3611. img.src = "";
  3612. if(o.style.display!='none'){
  3613. o.style.display="none";
  3614. HideBackdrop();
  3615. if(do_push){PushGalleryHistory("");}
  3616. HideWaitingBar();
  3617. }
  3618. }
  3619. var lbtn=document.querySelector('#prev_image'),rbtn=document.querySelector('#next_image');
  3620. var inq=document.querySelector('#inquiry_buttons');
  3621. var overlay=document.querySelector('#big_image_overlay');
  3622. var hide_timeout;
  3623. function DontHideImgBtn(e){ clearTimeout(hide_timeout); e.stopPropagation(); }
  3624. function DelayHideImgBtn(e){
  3625. lbtn.classList.remove('img_btn_hidden');
  3626. rbtn.classList.remove('img_btn_hidden');
  3627. inq.classList.remove('img_btn_hidden');
  3628. clearTimeout(hide_timeout);
  3629. hide_timeout = setTimeout(function(e1,e2,e3){e1.classList.add('img_btn_hidden');
  3630. e2.classList.add('img_btn_hidden');
  3631. e3.classList.add('img_btn_hidden');}, 1000, lbtn, rbtn, inq);
  3632. }
  3633. lbtn.addEventListener('mousemove',DontHideImgBtn);lbtn.addEventListener('mouseover',DontHideImgBtn);
  3634. rbtn.addEventListener('mousemove',DontHideImgBtn);rbtn.addEventListener('mouseover',DontHideImgBtn);
  3635. inq.addEventListener('mousemove',DontHideImgBtn);inq.addEventListener('mouseover',DontHideImgBtn);
  3636. overlay.addEventListener('mousemove',DelayHideImgBtn);
  3637. var images = document.querySelectorAll('img');
  3638. var images_filtered=new Array(); var imgadded = new Array();
  3639. var images_remaining=new Array();
  3640. [].forEach.call(images, function(img){
  3641. if(img.classList.contains("no_pop") || (!(imgsrc = img.dataset.imgsrc))) return;
  3642. if(imgadded.indexOf(imgsrc)>=0) {images_remaining.push(img); return;}
  3643. images_filtered.push(img);imgadded.push(imgsrc);
  3644. });
  3645. for(var i=0; i<images_filtered.length; i++){
  3646. previmg = nextimg = null; img = images_filtered[i];
  3647. if(i>0) previmg=images_filtered[i-1];
  3648. if(i<images_filtered.length-1) nextimg=images_filtered[i+1];
  3649. prevsrc=previmg?previmg.dataset.imgsrc:null; nextsrc=nextimg?nextimg.dataset.imgsrc:null;
  3650. img.dataset.prevsrc = prevsrc; img.dataset.nextsrc = nextsrc;
  3651. function wrap(imgsrc){return function(){ShowBigImage(imgsrc, 1);}}
  3652. img.addEventListener("click", wrap(img.dataset.imgsrc));
  3653. }
  3654. for(var i=0; i<images_remaining.length; i++){
  3655. img = images_remaining[i];
  3656. function wrap(imgsrc){return function(){ShowBigImage(imgsrc, 1);}}
  3657. img.addEventListener("click", wrap(img.dataset.imgsrc));
  3658. }
  3659. document.images_filtered = images_filtered;
  3660. function PopGalleryHistory(){
  3661. if(pushed){
  3662. pushed = 0;
  3663. try{
  3664. history.back();
  3665. }catch{
  3666. console.log("can't do it.");
  3667. }
  3668. }
  3669. }
  3670. function PushGalleryHistory(src){
  3671. abs_img = window.location.protocol+"//"+window.location.host+'/'+src
  3672. title = "照片"
  3673. extra = "?";
  3674. sp = new URLSearchParams(window.location.search)
  3675. if(sp.has('post')){extra+="post="+sp.get('post')}
  3676. if(sp.has('gallery')){extra+="&gallery="+sp.get('gallery')}
  3677. try{
  3678. window.history.pushState('&pic='+src, 'Title', extra+'&pic='+src);
  3679. }catch{
  3680. console.log("can't do it.");
  3681. }
  3682. pushed = 1;
  3683. }
  3684. document.addEventListener('keydown', function(e){
  3685. large = document.getElementById('big_image_overlay')
  3686. if (large.style.display!='block') return;
  3687. if(e.key=='Escape'||e.key=='Esc'||e.keyCode==27){
  3688. HideBigImage(1);
  3689. }
  3690. }, true);
  3691. window.addEventListener('popstate', (event) => {
  3692. if(event.state){
  3693. let sp = new URLSearchParams(event.state)
  3694. if(sp.has('pic')){
  3695. src = sp.get('pic')
  3696. if(onlyimg = src.match(/[0-9]{14,}.(jpg|png|jpeg|gif)/u)) ShowBigImage(onlyimg[0], 0);
  3697. else{HideBigImage(0);}
  3698. }
  3699. }else{HideBigImage(0);}
  3700. });
  3701. let searchParams = new URLSearchParams(window.location.search)
  3702. if(searchParams.has('pic')){
  3703. src = searchParams.get('pic')
  3704. if(onlyimg = src.match(/[0-9]{14,}.(jpg|png|jpeg|gif)/u)){
  3705. ShowBigImage(onlyimg[0], 1);
  3706. }
  3707. }
  3708. function _dropHandler(event){ if (typeof dropHandler === "function") dropHandler(event); }
  3709. function _dragOverHandler(event){ if (typeof dragOverHandler === "function") dragOverHandler(event); }
  3710. </script>
  3711. </body>
  3712. <?php
  3713. }
  3714. function DoIdentiyExperimental(){
  3715. //$this->InExperimentalMode = 1;
  3716. if(!isset($this->ExpHost) || $this->ExpHost=="") return;
  3717. if(preg_match('/'.preg_quote($this->ExpHost).'/u', $_SERVER['HTTP_HOST'])){
  3718. $this->InExperimentalMode=True;
  3719. }
  3720. if(!$this->CurrentPostID && $this->InExperimentalMode){
  3721. $this->CurrentPostID = $this->ExpIndex;
  3722. }
  3723. }
  3724. function DoExperimentalTopLink($p){
  3725. if($this->InExperimentalMode && $p){
  3726. if(isset($p['tid']) && $p['tid']['first']!=$p){
  3727. header('Location: ?post='.$p['tid']['first']['id']); exit();
  3728. }
  3729. }
  3730. }
  3731. function MakeExperimentalConfirm(){
  3732. if(isset($_COOKIE['la_experimental']) && $_COOKIE['la_experimental'] == 'confirmed'){
  3733. return false;
  3734. }
  3735. $caution_html =
  3736. $confirm = "<a class='text_highlight clean_a bold' href='index.php?confirm_enter=1".
  3737. (isset($this->CurrentPostID)?("&post=".$this->CurrentPostID):"").
  3738. "'>&nbsp;&nbsp;".$this->T('继续')."&nbsp;&nbsp;</a>";
  3739. ?>
  3740. <div class='center_exp'><?php
  3741. if(isset($this->ExpCaution) && ($p=$this->GetPost($this->ExpCaution)))$this->MakeSinglePostExp($p);
  3742. else echo "<li class='post post_dummy'>".$this->TranslatePostParts("<h1>注意</h1><p>您将进入实验站。</p>")."</li>";
  3743. ?></div>
  3744. <div class='center_exp'><li class='post post_dummy'><p><?=$confirm?></p></li></div>
  3745. <?php return true;
  3746. }
  3747. }
  3748. $la = new LA;
  3749. $la->DoSiteRedirect();
  3750. $la->DoLogin();
  3751. $err = $la->ProcessRequest($message, $redirect);
  3752. $la->DoIdentiyExperimental();
  3753. $la->SwitchLanguage();
  3754. $la->SwitchWayBackMode();
  3755. if($err){
  3756. echo $message;
  3757. exit();
  3758. }
  3759. if(isset($redirect)){
  3760. header('Location: '.$redirect);
  3761. exit();
  3762. }
  3763. $la->DetectPageType();
  3764. $la->ReadImages(false);
  3765. $la->ReadPosts();
  3766. if(isset($la->WayBack)){
  3767. $la->ReadArchive();
  3768. }
  3769. $p = &$la->GetPost($la->CurrentPostID);
  3770. if(!$la->CanShowPost($p)) $p=NULL;
  3771. else{ $la->DoExperimentalTopLink($p); }
  3772. $la->MakeHeader($p);
  3773. $la->MakeMainBegin();
  3774. if($la->PageType=='experimental'){
  3775. if(!$la->MakeExperimentalConfirm()){
  3776. if($p){
  3777. $la->MakePostSectionExp($p);
  3778. $la->MakeLinkedPostsExp($p);
  3779. }else{
  3780. echo "<h2>".$la->T('未找到这个帖子')."</h2><p>".$_SERVER['REQUEST_URI'].
  3781. "</p><p><a href='index.php'>".$la->T('返回首页')."</a></p><br />";
  3782. }
  3783. }
  3784. $la->MakeMainEnd();
  3785. $la->MakeExpFooter();
  3786. }else{
  3787. if($la->PageType=='extras'){
  3788. $la->MakeExtraOperations();
  3789. }else if($la->PageType=='settings'){
  3790. $la->MakeSettings();
  3791. }else if($la->PageType=='gallery'){
  3792. $la->MakeGalleryLeft();
  3793. $la->MakeGallerySection();
  3794. }else if($la->PageType=='post'){
  3795. if($p){
  3796. $made_interesting = false;
  3797. if($la->IsInterestingPost($p)){
  3798. $la->MakeInterestingSection($p['tid']);
  3799. }
  3800. else{
  3801. $la->MakeLinkedPosts($p);
  3802. $la->MakePostSection($p);
  3803. $la->MakeTOC();
  3804. }
  3805. }else{
  3806. echo "<h2>".$la->T('未找到这个帖子')."</h2><p>".$_SERVER['REQUEST_URI'].
  3807. "</p><p><a href='index.php'>".$la->T('返回首页')."</a></p><br />";
  3808. }
  3809. }else if($la->PageType=='history'){
  3810. $la->ReadArchive();
  3811. $la->MakePostHistory($p, $_GET['version']??NULL);
  3812. }else if($la->PageType=='search'){
  3813. $la->MakeHotPosts(true);
  3814. $la->MakeRecentPosts($_GET['search']);
  3815. }else if($la->PageType=='category'){
  3816. $la->MakeHotPosts(true);
  3817. $la->MakeRecentPosts(NULL,$_GET['category']);
  3818. }else if($la->PageType=='comments'){
  3819. $la->MakeCommentPosts();
  3820. }else{
  3821. $la->MakeHotPosts();
  3822. $la->MakeRecentPosts();
  3823. }
  3824. $la->MakeMainEnd();
  3825. $la->MakeFooter();
  3826. }
  3827. ?>