OSDN Git Service

・CreateHTML2 でプラグインの使用時に新着番号がセットされていなかったバグを修正。
[gikonavigoeson/gikonavi.git] / GikoSystem.pas
1 unit GikoSystem;
2
3 interface
4
5 uses
6         Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms,
7         ComCtrls, IniFiles, ShellAPI, ActnList, Math,
8 {$IF Defined(DELPRO) }
9         SHDocVw,
10         MSHTML,
11 {$ELSE}
12         SHDocVw_TLB,
13         MSHTML_TLB,
14 {$IFEND}
15         {HttpApp,} YofUtils, URLMon, IdGlobal, IdURI, {Masks,}
16         Setting, BoardGroup, gzip, Dolib, bmRegExp, AbonUnit;
17
18 type
19         //BBS\83^\83C\83v
20         TGikoBBSType = (gbt2ch);
21         //\83\8d\83O\83^\83C\83v
22         TGikoLogType = (glt2chNew, glt2chOld);
23         //\83\81\83b\83Z\81[\83W\83A\83C\83R\83\93
24         TGikoMessageIcon = (gmiOK, gmiSAD, gmiNG, gmiWhat, gmiNone);
25         //URL\83I\81[\83v\83\93\83u\83\89\83E\83U\83^\83C\83v
26         TGikoBrowserType = (gbtIE, gbtUserApp, gbtAuto);
27
28
29         TStrTokSeparator = set of Char;
30         TStrTokRec = record
31                 Str: string;
32                 Pos: Integer;
33         end;
34
35         //\83C\83\93\83f\83b\83N\83X\83t\83@\83C\83\8b\83\8c\83R\81[\83h
36         TIndexRec = record
37                 FNo: Integer;
38                 FFileName: string;
39                 FTitle: string;
40                 FCount: Integer;
41                 FSize: Integer;
42 //              FRoundNo: Integer;
43                 FRoundDate: TDateTime;
44                 FLastModified: TDateTime;
45                 FKokomade: Integer;
46                 FNewReceive: Integer;
47                 FMishiyou: Boolean;     //\96¢\8eg\97p
48                 FUnRead: Boolean;
49                 FScrollTop: Integer;
50                 //Index Ver 1.01
51                 FAllResCount: Integer;
52                 FNewResCount: Integer;
53                 FAgeSage: TGikoAgeSage;
54         end;
55
56         //\83T\83u\83W\83F\83N\83g\83\8c\83R\81[\83h
57         TSubjectRec = record
58                 FFileName: string;
59                 FTitle: string;
60                 FCount: Integer;
61         end;
62
63         //\83\8c\83X\83\8c\83R\81[\83h
64         TResRec = record
65                 FTitle: string;
66                 FMailTo: string;
67                 FName: string;
68                 FDateTime: string;
69                 FBody: string;
70                 FType: TGikoLogType;
71         end;
72
73         //URLPath\83\8c\83R\81[\83h
74         TPathRec = record
75                 FBBS: string;                           //BBSID
76                 FKey: string;                           //ThreadID
77                 FSt: Integer;                           //\8aJ\8en\83\8c\83X\94Ô
78                 FTo: Integer;                           //\8fI\97¹\83\8c\83X\94Ô
79                 FFirst: Boolean;                //>>1\82Ì\95\\8e¦
80                 FStBegin: Boolean;      //1\81`\95\\8e¦
81                 FToEnd: Boolean;                //\81`\8dÅ\8cã\82Ü\82Å\95\\8e¦
82                 FDone: Boolean;                 //\90¬\8c÷
83         end;
84
85         TGikoSys = class(TObject)
86         private
87                 { Private \90é\8c¾ }
88                 FSetting: TSetting;
89                 FDolib: TDolib;
90                 FAWKStr: TAWKStr;
91                                 FOnlyAHundredRes : Boolean;
92 //              FExitWrite: TStringList;
93 //              function StrToFloatDef(s: string; Default: Double): Double;
94
95         public
96                 { Public \90é\8c¾ }
97                 FAbon : TAbon;
98                 FSelectResFilter : TAbon;
99                 constructor Create;
100
101                 destructor Destroy; override;
102                 property OnlyAHundredRes : Boolean read FOnlyAHundredRes write FOnlyAHundredRes;
103
104 //              function MsgBox(Msg: string; Title: string; Flags: Longint): integer; overload;
105 //              function MsgBox(Handle: THandle; Msg: string; Title: string; Flags: Longint): integer; overload;
106                 function IsNumeric(s: string): boolean;
107                 function IsFloat(s: string): boolean;
108                 function DirectoryExistsEx(const Name: string): Boolean;
109                 function ForceDirectoriesEx(Dir: string): Boolean;
110 //              function GetVersion: string;
111
112                 function GetBoardFileName: string;
113                 function GetCustomBoardFileName: string;
114                 function GetHtmlTempFileName: string;
115                 function GetAppDir: string;
116                 function GetTempFolder: string;
117                 function GetSentFileName: string;
118                 function GetConfigDir: string;
119                 function GetSkinDir: string;
120                 function GetSkinHeaderFileName: string;
121                 function GetSkinFooterFileName: string;
122                 function GetSkinResFileName: string;
123                 function GetSkinNewResFileName: string;
124                 function GetSkinBookmarkFileName: string;
125                 function GetSkinNewmarkFileName: string;
126                 function GetStyleSheetDir: string;
127                 function GetOutBoxFileName: string;
128                 function GetURL(BBSID: string; FileName: string): string;
129                 function GetUserAgent: string;
130
131                 procedure ReadSubjectFile(Board: TBoard);
132                 procedure CreateThreadDat(Board: TBoard);
133                 procedure WriteThreadDat(Board: TBoard);
134                 function ParseIndexLine(Line: string): TIndexRec;
135                 procedure GetFileList(Path: string; Mask: string; List: TStringList; SubDir: Boolean; IsPathAdd: Boolean);
136                 procedure GetDirectoryList(Path: string; Mask: string; List: TStringList; SubDir: Boolean);
137
138                 procedure CreateHTML2(doc: Variant; ThreadItem: TThreadItem; var sTitle: string);
139                 function AddAnchorTag(s: string): string;
140
141                 function DivideSubject(Line: string): TSubjectRec;
142                 function DivideStrLine(Line: string): TResRec;
143
144                 property Setting: TSetting read FSetting write FSetting;
145                 property Dolib: TDolib read FDolib write FDolib;
146
147                 function UrlToID(url: string): string;
148                 function UrlToServer(url: string): string;
149
150                 function StrTokFirst(const s:string; const sep:TStrTokSeparator; var Rec:TStrTokRec):string;
151                 function StrTokNext(const sep:TStrTokSeparator; var Rec:TStrTokRec): string;
152
153                 function GetFileSize(FileName : string) : longint;
154                 function GetFileLineCount(FileName : string): longint;
155                 function Get2chDate(aDate: TDateTime): string;
156                 function IntToDateTime(val: Int64): TDateTime;
157                 function DateTimeToInt(ADate: TDateTime): Integer;
158
159                 function ReadThreadFile(FileName: string; Line: Integer): string;
160
161                 procedure MenuFont(Font: TFont);
162
163                 function RemoveToken(var s:string;delimiter:string):string;
164                 function GetTokenIndex(s: string; delimiter: string; index: Integer): string;
165
166                 function DeleteLink(const s: string): string;
167
168                 function GetShortName(const LongName: string; ALength: integer): string;
169                 function ConvRes(const Body, Bbs, Key,  ParamBBS, ParamKey, ParamStart, ParamTo, ParamNoFirst, ParamTrue : string): string;
170
171                 function ZenToHan(const s: string): string;
172                 function VaguePos(const Substr, S: string): Integer;
173                 function BoolToInt(b: Boolean): Integer;
174                 function IntToBool(i: Integer): Boolean;
175                 function GzipDecompress(ResStream: TStream; ContentEncoding: string): string;
176                 procedure LoadKeySetting(ActionList: TActionList);
177                 procedure SaveKeySetting(ActionList: TActionList);
178                 procedure CreateProcess(const AppPath: string; const Param: string);
179                 procedure OpenBrowser(URL: string; BrowserType: TGikoBrowserType);
180                 function HTMLDecode(const AStr: String): String;
181                 function GetHRefText(s: string): string;
182                 function Is2chHost(Host: string): Boolean;
183                 function Parse2chURL(const url: string; const path: string; const document: string; var BBSID: string; var BBSKey: string): Boolean;
184                 function Parse2chURL2(URL: string): TPathRec;
185                 procedure ParseURI(var URL, Protocol, Host, Path, Document, Port, Bookmark: string);
186                 function GetVersionBuild: Integer;
187
188                                 // \83X\83L\83\93\82ð\93Ç\82Ý\8d\9e\82Ý\81A\92l\82ð\92u\8a·\82·\82é
189                 function LoadFromSkin( fileName: string; ThreadItem: TThreadItem; SizeByte: Integer ): string;
190                         // \83\8c\83X\82Ì\92l\82ð\92u\8a·\82·\82é
191                 function SkinedRes( skin: string; Res: TResRec; No: string ): string;
192
193         end;
194
195 var
196         GikoSys: TGikoSys;
197 const
198         LENGTH_RESTITLE                 = 40;
199         ZERO_DATE: Integer      = 25569;
200         BETA_VERSION_NAME_E = 'beta';
201         BETA_VERSION_NAME_J = 'ÊÞÀ';
202         BETA_VERSION                            = 43;
203         BETA_VERSION_BUILD      = '';                           //debug\94Å\82È\82Ç
204         APP_NAME                                                = 'gikoNavi';
205
206 implementation
207
208 uses
209         Giko, RoundData, ExternalBoardManager;
210
211 const
212         FOLDER_INDEX_VERSION                                    = '1.01';
213         USER_AGENT                                                                              = 'Monazilla';
214         DEFAULT_NGWORD_FILE_NAME : String = 'NGword.txt';
215         NGWORDs_DIR_NAME : String               = 'NGwords';
216
217 (*************************************************************************
218  *GikoSys\83R\83\93\83X\83g\83\89\83N\83^
219  *************************************************************************)
220 constructor TGikoSys.Create;
221 begin
222         FSetting := TSetting.Create;
223         FDolib := TDolib.Create;
224         FAWKStr := TAWKStr.Create(nil);
225         if DirectoryExists(GetConfigDir) = false then begin
226                 CreateDir(GetConfigDir);
227         end;
228         FAbon := TAbon.Create;
229         FAbon.Setroot(GetConfigDir+NGWORDs_DIR_NAME);
230         FAbon.GoHome;
231         FAbon.ReturnNGwordLineNum := FSetting.ShowNGLinesNum;
232         FAbon.SetNGResAnchor := FSetting.AddResAnchor;
233         FAbon.Deleterlo := FSetting.AbonDeleterlo;
234         FAbon.Replaceul := FSetting.AbonReplaceul;
235         FAbon.AbonPopupRes := FSetting.PopUpAbon;
236
237         FSelectResFilter := TAbon.Create;
238         // \8di\82è\8d\9e\82Þ\82Æ\82«\82Í\8bÉ\97Í\88ê\97\97\82ª\8c©\82ç\82ê\82é\82Ù\82¤\82ª\82¢\82¢\82Ì\82Å\91¼\82Í\8a®\91S\82É\8dí\8f\9c
239         FSelectResFilter.AbonString := '';
240         //
241         OnlyAHundredRes := FSetting.OnlyAHundredRes;
242 end;
243
244 (*************************************************************************
245  *GikoSys\83f\83X\83g\83\89\83N\83^
246  *************************************************************************)
247 destructor TGikoSys.Destroy;
248 var
249         i: Integer;
250         FileList: TStringList;
251 begin
252         //\83X\83\8c\83b\83h\83f\81[\83^\83t\83@\83C\83\8b\82ð\8dX\90V
253 //      FlashExitWrite;
254
255 //      FExitWrite.Free;
256         FAWKStr.Free;
257         FSetting.Free;
258         FDolib.Free;
259
260         //\83e\83\93\83|\83\89\83\8aHTML\82ð\8dí\8f\9c
261         FileList := TStringList.Create;
262         try
263                 GetFileList(GetTempFolder, '*.html', FileList, False, True);
264                 for i := 0 to FileList.Count - 1 do begin
265                         DeleteFile(FileList[i]);
266                 end;
267         finally
268                 FileList.Free;
269         end;
270         inherited;
271 end;
272
273 (*************************************************************************
274  *\95\8e\9a\97ñ\90\94\8e\9a\83`\83F\83b\83N
275  *************************************************************************)
276 {$HINTS OFF}
277 function TGikoSys.IsNumeric(s: string): boolean;
278 var
279         e: integer;
280         v: integer;
281 begin
282         Val(s, v, e);
283         Result := e = 0;
284 end;
285 {$HINTS ON}
286
287 (*************************************************************************
288  *\95\8e\9a\97ñ\95\82\93®\8f¬\90\94\93_\90\94\8e\9a\83`\83F\83b\83N
289  *************************************************************************)
290 function TGikoSys.IsFloat(s: string): boolean;
291 var
292         v: Extended;
293 begin
294         Result := TextToFloat(PChar(s), v, fvExtended);
295 end;
296
297 (*************************************************************************
298  *\83{\81[\83h\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
299  *************************************************************************)
300 function TGikoSys.GetBoardFileName: string;
301 begin
302         Result := Setting.GetBoardFileName;
303 end;
304
305 (*************************************************************************
306  *\83{\81[\83h\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
307  *************************************************************************)
308 function TGikoSys.GetCustomBoardFileName: string;
309 begin
310         Result := Setting.GetCustomBoardFileName;
311 end;
312
313 (*************************************************************************
314  *\83e\83\93\83|\83\89\83\8a\83t\83H\83\8b\83_\81[\96¼\8eæ\93¾
315  *************************************************************************)
316 function TGikoSys.GetHtmlTempFileName: string;
317 begin
318         Result := Setting.GetHtmlTempFileName;
319 end;
320
321
322 (*************************************************************************
323  *\8eÀ\8ds\83t\83@\83C\83\8b\83t\83H\83\8b\83_\8eæ\93¾
324  *************************************************************************)
325 function TGikoSys.GetAppDir: string;
326 begin
327         Result := Setting.GetAppDir;
328 end;
329
330 (*************************************************************************
331  *TempHtml\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
332  *************************************************************************)
333 function TGikoSys.GetTempFolder: string;
334 begin
335         Result := Setting.GetTempFolder;
336 end;
337
338 (*************************************************************************
339  *sent.ini\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
340  *************************************************************************)
341 function TGikoSys.GetSentFileName: string;
342 begin
343         Result := Setting.GetSentFileName;
344 end;
345
346 (*************************************************************************
347  *outbox.ini\83t\83@\83C\83\8b\96¼\8eæ\93¾\81i\83p\83X\81{\83t\83@\83C\83\8b\96¼\81j
348  *************************************************************************)
349 function TGikoSys.GetOutBoxFileName: string;
350 begin
351         Result := Setting.GetOutBoxFileName;
352 end;
353
354 (*************************************************************************
355  *Config\83t\83H\83\8b\83_\8eæ\93¾
356  *************************************************************************)
357 function TGikoSys.GetConfigDir: string;
358 begin
359         Result := Setting.GetConfigDir;
360 end;
361
362 function TGikoSys.GetStyleSheetDir: string;
363 begin
364         Result := Setting.GetStyleSheetDir;
365 end;
366
367 function TGikoSys.GetSkinDir: string;
368 begin
369         Result := Setting.GetSkinDir;
370 end;
371
372 function TGikoSys.GetSkinHeaderFileName: string;
373 begin
374         Result := Setting.GetSkinHeaderFileName;
375 end;
376
377 function TGikoSys.GetSkinFooterFileName: string;
378 begin
379         Result := Setting.GetSkinFooterFileName;
380 end;
381
382 function TGikoSys.GetSkinNewResFileName: string;
383 begin
384         Result := Setting.GetSkinNewResFileName;
385 end;
386
387 function TGikoSys.GetSkinResFileName: string;
388 begin
389         Result := Setting.GetSkinResFileName;
390 end;
391
392 function TGikoSys.GetSkinBookmarkFileName: string;
393 begin
394         Result := Setting.GetSkinBookmarkFileName;
395 end;
396
397 function TGikoSys.GetSkinNewmarkFileName: string;
398 begin
399         Result := Setting.GetSkinNewmarkFileName;
400 end;
401
402 (*************************************************************************
403  *URL\82ð\8dì\90¬(\83R\83s\83y\97p)
404  *************************************************************************)
405 function TGikoSys.GetURL(BBSID: string; FileName: string): string;
406 var
407         Board: TBoard;
408 begin
409         Board := BoardGroup.BBS2ch.GetBoardFromBBSID(BBSID);
410         Result := UrlToServer(Board.URL) + 'test/read.cgi/' + UrlToID(Board.URL) + '/' + ChangeFileExt(FileName, '') + '/l50';
411         //http://teri.2ch.net/test/read.cgi?bbs=accuse&key=974619522&ls=50
412         //http://pc.2ch.net/test/read.cgi/tech/1003664165/l50
413 end;
414
415 // UserAgent\8eæ\93¾
416 function TGikoSys.GetUserAgent: string;
417 begin
418         if Dolib.Connected then begin
419                 Result := Format('%s %s/%s%d%s', [
420                                                                 Dolib.UserAgent,
421                                                                 APP_NAME,
422                                                                 //MAJOR_VERSION,
423                                                                 //MINOR_VERSION,
424                                                                 BETA_VERSION_NAME_E,
425                                                                 BETA_VERSION,
426                                                                 BETA_VERSION_BUILD]);
427         end else begin
428                 Result := Format('%s/%s %s/%s%d%s', [
429                                                                 USER_AGENT,
430                                                                 Dolib.Version,
431                                                                 APP_NAME,
432                                                                 //MAJOR_VERSION,
433                                                                 //MINOR_VERSION,
434                                                                 BETA_VERSION_NAME_E,
435                                                                 BETA_VERSION,
436                                                                 BETA_VERSION_BUILD]);
437         end;
438 end;
439
440 (*************************************************************************
441  *\82Q\82¿\82á\82ñ\82Ë\82é\95û\8e®\8e\9e\8d\8f\8eæ\93¾
442  *************************************************************************)
443 function TGikoSys.Get2chDate(aDate: TDateTime): string;
444 var
445         d1: TDateTime;
446         d2: TDateTime;
447 begin
448         d1 := EncodeDate(1970, 1, 1);
449         d2 := aDate - EncodeTime(9, 0, 0, 0);
450         Result := FloatToStr(Trunc((d2 - d1) * 24 * 60 * 60));
451 end;
452
453
454 function TGikoSys.IntToDateTime(val: Int64): TDateTime;
455 var
456         d1: tdatetime;
457         d2: tdatetime;
458 begin
459         d1 := EncodeDate(1970, 1, 1);
460         d2 := (val * 1000) / (24 * 60 * 60 * 1000);
461         Result := d1 + d2;
462 end;
463
464 function TGikoSys.DateTimeToInt(ADate: TDateTime): Integer;
465 var
466         d: TDateTime;
467         c: Currency;
468 begin
469         d := EncodeDate(1970, 1, 1);
470         c := (ADate - d) * 24 * 60 * 60;
471         Result := Trunc(c);
472 end;
473
474
475 (*************************************************************************
476  *Subject\83t\83@\83C\83\8bRead
477  *************************************************************************)
478 procedure TGikoSys.ReadSubjectFile(Board: TBoard);
479 var
480         ThreadItem: TThreadItem;
481         FileName: string;
482         FileList: TStringList;
483         TmpFileList: TStringList;
484 //      SrchRec: TSearchRec;
485 //      R: integer;
486         Index: Integer;
487         sl: TStringList;
488         i: Integer;
489         Rec: TIndexRec;
490         UnRead: Integer;
491 //      TmpUpdate: Boolean;
492         ini: TMemIniFile;
493         ResRec: TResRec;
494         RoundItem: TRoundItem;
495         idx: Integer;
496 begin
497         Board.Clear;
498         UnRead := 0;
499 //      TmpUpdate := False;
500
501         FileName := Board.GetFolderIndexFileName;
502         if not FileExists(FileName) then CreateThreadDat(Board);
503 //      if not FileExists(FileName) then Exit;
504
505         //IsLogFile\97pDAT\83t\83@\83C\83\8b\83\8a\83X\83g
506         FileList := TStringList.Create;
507         FileList.Sorted := True;
508         GetFileList(ExtractFileDir(Board.GetFolderIndexFileName), '*.dat', FileList, False, False);
509
510         //\91O\89ñ\88Ù\8fí\8fI\97¹\8e\9e\97pTmp\83t\83@\83C\83\8b\83\8a\83X\83g
511         TmpFileList := TStringList.Create;
512         TmpFileList.Sorted := True;
513         GetFileList(ExtractFileDir(Board.GetFolderIndexFileName), '*.tmp', TmpFileList, False, False);
514
515 {       R := FindFirst(ExtractFileDir(Board.GetFolderIndexFileName) + '\*.dat', 0, SrchRec);
516         while R = 0 do begin
517                 FileList.Add(SrchRec.Name);
518                 R := FindNext(SrchRec);
519         end;
520         FindClose(SrchRec);}
521
522         sl := TStringList.Create;
523         try
524                 if FileExists(FileName) then
525                         sl.LoadFromFile(FileName);
526
527                 //\82Q\8ds\96Ú\82©\82ç\81i\82P\8ds\96Ú\82Í\83o\81[\83W\83\87\83\93\81j
528                 for i := 1 to sl.Count - 1 do begin
529                         Rec := ParseIndexLine(sl[i]);
530
531                         ThreadItem := TThreadItem.Create;
532                         ThreadItem.BeginUpdate;
533                         ThreadItem.No := Rec.FNo;
534                         ThreadItem.FileName := Rec.FFileName;
535                         ThreadItem.Title := Rec.FTitle;
536                         ThreadItem.Count := Rec.FCount;
537                         ThreadItem.Size := Rec.FSize;
538 //                      ThreadItem.RoundNo := Rec.FRoundNo;
539                         ThreadItem.RoundDate := Rec.FRoundDate;
540                         ThreadItem.LastModified := Rec.FLastModified;
541                         ThreadItem.Kokomade := Rec.FKokomade;
542                         ThreadItem.NewReceive := Rec.FNewReceive;
543 //                      ThreadItem.Round := Rec.FRound;
544                         ThreadItem.UnRead := Rec.FUnRead;
545                         ThreadItem.ScrollTop := Rec.FScrollTop;
546                         ThreadItem.AllResCount := Rec.FAllResCount;
547                         ThreadItem.NewResCount := Rec.FNewResCount;
548                         ThreadItem.AgeSage := Rec.FAgeSage;
549                         ThreadItem.ParentBoard := Board;
550
551                         //IsLogFile\83`\83F\83b\83N
552                         ThreadItem.IsLogFile := False;
553                         if FileList.Count <> 0 then begin
554                                 if FileList.Find(ThreadItem.FileName, Index) then begin
555                                         ThreadItem.IsLogFile := True;
556                                         FileList.Delete(Index);
557                                 end;
558                         end;
559
560                         //\8f\84\89ñ\83\8a\83X\83g\82É\91\8dÝ\82µ\82½\82ç\8f\84\89ñ\83t\83\89\83O\83Z\83b\83g
561                         if ThreadItem.IsLogFile then begin
562                                 idx := RoundList.Find(ThreadItem);
563                                 if idx <> -1 then begin
564                                         RoundItem := RoundList.Items[idx, grtItem];
565                                         ThreadItem.RoundName := RoundItem.RoundName;
566                                         ThreadItem.Round := True;
567                                 end;
568                         end;
569
570                         //\91O\89ñ\88Ù\8fí\8fI\97¹\8e\9e\83`\83F\83b\83N
571                         if TmpFileList.Count <> 0 then begin
572                                 if TmpFileList.Find(ChangeFileExt(ThreadItem.FileName, '.tmp'), Index) then begin
573                                         ini := TMemIniFile.Create(ChangeFileExt(ThreadItem.GetThreadFileName, '.tmp'));
574                                         try
575                                                 ThreadItem.RoundDate := ini.ReadDateTime('Setting', 'RoundDate', ZERO_DATE);
576                                                 ThreadItem.LastModified := ini.ReadDateTime('Setting', 'LastModified', ZERO_DATE);
577                                                 ThreadItem.Size := ini.ReadInteger('Setting', 'Size', 0);
578                                                 ThreadItem.Count := ini.ReadInteger('Setting', 'Count', 0);
579                                                 ThreadItem.NewReceive := ini.ReadInteger('Setting', 'NewReceive', 0);
580                                                 ThreadItem.Round := ini.ReadBool('Setting', 'Round', False);
581                                                 ThreadItem.UnRead := False;//ini.ReadBool('Setting', 'UnRead', False);
582                                                 ThreadItem.ScrollTop := ini.ReadInteger('Setting', 'ScrollTop', 0);
583                                                 ThreadItem.AllResCount := ini.ReadInteger('Setting', 'AllResCount', 0);
584                                                 ThreadItem.NewResCount := ini.ReadInteger('Setting', 'NewResCount', 0);
585                                                 ThreadItem.AgeSage := TGikoAgeSage(ini.ReadInteger('Setting', 'AgeSage', Ord(gasNone)));
586                                         finally
587                                                 ini.Free;
588                                         end;
589                                         TmpFileList.Delete(Index);
590                                 end;
591                         end;
592
593                         ThreadItem.EndUpdate;
594                         Board.Add(ThreadItem);
595
596 //                      if (ThreadItem.IsLogFile) and (ThreadItem.Count > ThreadItem.Kokomade) then
597                         if (ThreadItem.IsLogFile) and (ThreadItem.UnRead) then
598                                 Inc(UnRead);
599                 end;
600                 if UnRead <> Board.UnRead then
601                         Board.UnRead := UnRead;
602
603                 //\83C\83\93\83f\83b\83N\83X\82É\96³\82©\82Á\82½\83\8d\83O\82ð\92Ç\89Á\81i\95\85\82ê\83C\83\93\83f\83b\83N\83X\91Î\89\9e\81j
604                 for i := 0 to FileList.Count - 1 do begin
605                         FileName := ExtractFileDir(Board.GetFolderIndexFileName) + '\' + FileList[i];
606
607                         ResRec := DivideStrLine(ReadThreadFile(FileName, 1));
608                         ThreadItem := TThreadItem.Create;
609                         ThreadItem.No := Board.Count + 1;
610                         ThreadItem.FileName := FileList[i];
611                         ThreadItem.Title := ResRec.FTitle;
612                         ThreadItem.Count := GetFileLineCount(FileName);
613                         ThreadItem.AllResCount := ThreadItem.Count;
614                         ThreadItem.NewResCount := 0;
615                         ThreadItem.Size := 0;
616                         ThreadItem.RoundDate := ZERO_DATE;
617                         ThreadItem.LastModified := ZERO_DATE;
618                         ThreadItem.Kokomade := -1;
619                         ThreadItem.NewReceive := 0;
620                         ThreadItem.ParentBoard := Board;
621                         ThreadItem.IsLogFile := True;
622                         ThreadItem.Round := False;
623                         ThreadItem.UnRead := False;
624                         ThreadItem.ScrollTop := 0;
625                         ThreadItem.AgeSage := gasNone;
626                         Board.Add(ThreadItem);
627                 end;
628         finally
629                 sl.Free;
630         end;
631         FileList.Free;
632         TmpFileList.Free;
633         Board.IsThreadDatRead := True;
634 end;
635
636 (*************************************************************************
637  *\83X\83\8c\83b\83h\83C\83\93\83f\83b\83N\83X\83t\83@\83C\83\8b(Folder.idx)\8dì\90¬
638  *************************************************************************)
639 procedure TGikoSys.CreateThreadDat(Board: TBoard);
640 var
641         i: integer;
642         s: string;
643         SubjectList: TStringList;
644         sl: TStringList;
645         Rec: TSubjectRec;
646         FileName: string;
647         cnt: Integer;
648 begin
649         if not FileExists(Board.GetSubjectFileName) then Exit;
650         FileName := Board.GetFolderIndexFileName;
651
652         SubjectList := TStringList.Create;
653         try
654                 SubjectList.LoadFromFile(Board.GetSubjectFileName);
655                 sl := TStringList.Create;
656                 try
657                         cnt := 1;
658                         sl.Add(FOLDER_INDEX_VERSION);
659                         for i := 0 to SubjectList.Count - 1 do begin
660                                 Rec := DivideSubject(SubjectList[i]);
661
662                                 if (Trim(Rec.FFileName) = '') or (Trim(Rec.FTitle) = '') then
663                                         Continue;
664
665                                 s := Format('%x', [cnt]) + #1                                   //\94Ô\8d\86
666                                          + Rec.FFileName + #1                                                           //\83t\83@\83C\83\8b\96¼
667                                          + Rec.FTitle + #1                                                                      //\83^\83C\83g\83\8b
668                                          + Format('%x', [Rec.FCount]) + #1      //\83J\83E\83\93\83g
669                                          + Format('%x', [0]) + #1                                               //size
670                                          + Format('%x', [0]) + #1                                               //RoundDate
671                                          + Format('%x', [0]) + #1                                               //LastModified
672                                          + Format('%x', [0]) + #1                                               //Kokomade
673                                          + Format('%x', [0]) + #1                                               //NewReceive
674                                          + '0' + #1                                                                                             //\96¢\8eg\97p
675                                          + Format('%x', [0]) + #1                                               //UnRead
676                                          + Format('%x', [0]) + #1                                               //ScrollTop
677                                          + Format('%x', [Rec.FCount]) + #1      //AllResCount
678                                          + Format('%x', [0]) + #1                                               //NewResCount
679                                          + Format('%x', [0]);                                                           //AgeSage
680
681                                 sl.Add(s);
682                                 inc(cnt);
683                         end;
684                         sl.SaveToFile(FileName);
685                 finally
686                         sl.Free;
687                 end;
688         finally
689                 SubjectList.Free;
690         end;
691 end;
692
693 (*************************************************************************
694  *\83X\83\8c\83b\83h\83C\83\93\83f\83b\83N\83X(Thread.dat)\8f\91\82«\8d\9e\82Ý
695  *Public
696  *************************************************************************)
697 procedure TGikoSys.WriteThreadDat(Board: TBoard);
698 //const
699 //      Values: array[Boolean] of string = ('0', '1');
700 var
701         i: integer;
702         FileName: string;
703         sl: TStringList;
704         s: string;
705         FileList: TStringList;
706 begin
707         if not Board.IsThreadDatRead then
708                 Exit;
709         FileName := Board.GetFolderIndexFileName;
710         ForceDirectoriesEx(Board.ParentCategory.ParentBBS2ch.GetLogFolder + Board.BBSID);
711
712         sl := TStringList.Create;
713         try
714                 sl.Add(FOLDER_INDEX_VERSION);
715                 for i := 0 to Board.Count - 1 do begin
716                         if Board.Items[i].No = 0 then
717                                 Board.Items[i].No := i + 1;
718
719                         s := Format('%x', [Board.Items[i].No]) + #1
720                                  + Board.Items[i].FileName + #1
721                                  + Board.Items[i].Title + #1
722                                  + Format('%x', [Board.Items[i].Count]) + #1
723                                  + Format('%x', [Board.Items[i].Size]) + #1
724                                  + Format('%x', [DateTimeToInt(Board.Items[i].RoundDate)]) + #1
725                                  + Format('%x', [DateTimeToInt(Board.Items[i].LastModified)]) + #1
726                                  + Format('%x', [Board.Items[i].Kokomade]) + #1
727                                  + Format('%x', [Board.Items[i].NewReceive]) + #1
728                                  + '0' + #1     //\96¢\8eg\97p
729                                  + Format('%x', [BoolToInt(Board.Items[i].UnRead)]) + #1
730                                  + Format('%x', [Board.Items[i].ScrollTop]) + #1
731                                  + Format('%x', [Board.Items[i].AllResCount]) + #1
732                                  + Format('%x', [Board.Items[i].NewResCount]) + #1
733                                  + Format('%x', [Ord(Board.Items[i].AgeSage)]);
734
735                         sl.Add(s);
736                 end;
737
738                 sl.SaveToFile(FileName);
739
740                 FileList := TStringList.Create;
741                 try
742                         GetFileList(ExtractFileDir(Board.GetFolderIndexFileName), '*.tmp', FileList, False, True);
743                         for i := 0 to FileList.Count - 1 do begin
744                                 DeleteFile(FileList[i]);
745                         end;
746                 finally
747                         FileList.Free;
748                 end;
749         finally
750                 sl.Free;
751         end;
752 end;
753
754 function TGikoSys.ParseIndexLine(Line: string): TIndexRec;
755 var
756         s: string;
757         i: Integer;
758 begin
759         for i := 0 to 14 do begin
760                 s := GetTokenIndex(Line, #1, i);
761                 case i of
762                         0: Result.FNo := StrToIntDef('$' + s, 0);
763                         1: Result.FFileName := s;
764                         2: Result.FTitle := s;
765                         3: Result.FCount := StrToIntDef('$' + s, 0);
766                         4: Result.FSize := StrToIntDef('$' + s, 0);
767                         5: Result.FRoundDate := IntToDateTime(StrToIntDef('$' + s, ZERO_DATE));
768                         6: Result.FLastModified := IntToDateTime(StrToIntDef('$' + s, ZERO_DATE));
769                         7: Result.FKokomade := StrToIntDef('$' + s, -1);
770                         8: Result.FNewReceive := StrToIntDef('$' + s, 0);
771                         9: ;    //\96¢\8eg\97p
772                         10: Result.FUnRead := IntToBool(StrToIntDef('$' + s, 0));
773                         11: Result.FScrollTop := StrToIntDef('$' + s, 0);
774                         12: Result.FAllResCount := StrToIntDef('$' + s, 0);
775                         13: Result.FNewResCount := StrToIntDef('$' + s, 0);
776                         14: Result.FAgeSage := TGikoAgeSage(StrToIntDef('$' + s, 0));
777                 end;
778         end;
779 end;
780
781 //\8ew\92è\83t\83H\83\8b\83_\93à\82Ì\8ew\92è\83t\83@\83C\83\8b\88ê\97\97\82ð\8eæ\93¾\82·\82é
782 // ListFiles('c:\', '*.txt', list, True);
783 procedure TGikoSys.GetFileList(Path: string; Mask: string; List: TStringList; SubDir: Boolean; IsPathAdd: Boolean);
784 var
785         rc: Integer;
786         SearchRec : TSearchRec;
787         s: string;
788 begin
789         Path := IncludeTrailingPathDelimiter(Path);
790         rc := FindFirst(Path + '*.*', faAnyfile, SearchRec);
791         try
792                 while rc = 0 do begin
793                         if (SearchRec.Name <> '..') and (SearchRec.Name <> '.') then begin
794                                 s := Path + SearchRec.Name;
795                                 //if (SearchRec.Attr and faDirectory > 0) then
796                                 //      s := IncludeTrailingPathDelimiter(s)
797
798                                 if (SearchRec.Attr and faDirectory = 0) and (MatchesMask(s, Mask)) then
799                                         if IsPathAdd then
800                                                 List.Add(s)
801                                         else
802                                                 List.Add(SearchRec.Name);
803                                 if SubDir and (SearchRec.Attr and faDirectory > 0) then
804                                         GetFileList(s, Mask, List, True, IsPathAdd);
805                         end;
806                         rc := FindNext(SearchRec);
807                 end;
808         finally
809                 SysUtils.FindClose(SearchRec);
810         end;
811 end;
812
813 //\8ew\92è\83t\83H\83\8b\83_\93à\82Ì\83f\83B\83\8c\83N\83g\83\8a\88ê\97\97\82ð\8eæ\93¾\82·\82é
814 procedure TGikoSys.GetDirectoryList(Path: string; Mask: string; List: TStringList; SubDir: Boolean);
815 var
816         rc: Integer;
817         SearchRec : TSearchRec;
818         s: string;
819 begin
820         Path := IncludeTrailingPathDelimiter(Path);
821         rc := FindFirst(Path + '*.*', faDirectory, SearchRec);
822         try
823                 while rc = 0 do begin
824                         if (SearchRec.Name <> '..') and (SearchRec.Name <> '.') then begin
825                                 s := Path + SearchRec.Name;
826                                 //if (SearchRec.Attr and faDirectory > 0) then
827                                 //      s := IncludeTrailingPathDelimiter(s)
828
829                                 if (SearchRec.Attr and faDirectory > 0) and (MatchesMask(s, Mask)) then
830                                         List.Add( IncludeTrailingPathDelimiter( s ) );
831                                 if SubDir and (SearchRec.Attr and faDirectory > 0) then
832                                         GetDirectoryList(s, Mask, List, True);
833                         end;
834                         rc := FindNext(SearchRec);
835                 end;
836         finally
837                 SysUtils.FindClose(SearchRec);
838         end;
839 end;
840
841 // \83X\83L\83\93\82ð\93Ç\82Ý\8d\9e\82Ý\81A\92l\82ð\92u\8a·\82·\82é
842 function TGikoSys.LoadFromSkin(
843         fileName: string;
844         ThreadItem: TThreadItem;
845         SizeByte: Integer
846 ): string;
847 var
848         Skin: TStringList;
849 begin
850
851         Skin := TStringList.Create;
852         try
853                 if FileExists( fileName ) then begin
854                         Skin.LoadFromFile( fileName );
855
856                         // \82â\82è\82©\82½\82ª\8bê\82µ\82¢\82¯\82Ç\81A\83I\83v\83V\83\87\83\93\83_\83C\83A\83\8d\83O\82Ì\83v\83\8c\83r\83\85\81[\97p try
857                         try
858                                 if ThreadItem.ParentBoard.ParentCategory <> nil then
859                                         Skin.Text := StringReplace( Skin.Text, '<BBSNAME/>', ThreadItem.ParentBoard.ParentCategory.ParentBBS2ch.Title, [rfReplaceAll] );
860                                 if ThreadItem.ParentBoard.BBSID <> '' then
861                                         Skin.Text := StringReplace( Skin.Text, '<THREADURL/>', GikoSys.GetURL(ThreadItem.ParentBoard.BBSID, ThreadItem.FileName), [rfReplaceAll] );
862                         except end;
863                         Skin.Text := StringReplace( Skin.Text, '<BOARDNAME/>', ThreadItem.ParentBoard.Title, [rfReplaceAll] );
864                         Skin.Text := StringReplace( Skin.Text, '<BOARDURL/>', ThreadItem.ParentBoard.URL, [rfReplaceAll] );
865                         Skin.Text := StringReplace( Skin.Text, '<THREADNAME/>', ThreadItem.Title, [rfReplaceAll] );
866                         Skin.Text := StringReplace( Skin.Text, '<SKINPATH/>', Setting.CSSFileName, [rfReplaceAll] );
867                         Skin.Text := StringReplace( Skin.Text, '<GETRESCOUNT/>', IntToStr( ThreadItem.NewReceive - 1 ), [rfReplaceAll] );
868                         Skin.Text := StringReplace( Skin.Text, '<NEWRESCOUNT/>', IntToStr( ThreadItem.NewResCount ), [rfReplaceAll] );
869                         Skin.Text := StringReplace( Skin.Text, '<ALLRESCOUNT/>', IntToStr( ThreadItem.AllResCount ), [rfReplaceAll] );
870
871                         Skin.Text := StringReplace( Skin.Text, '<NEWDATE/>',
872                         FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate), [rfReplaceAll] );
873                         Skin.Text := StringReplace( Skin.Text, '<SIZEKB/>', IntToStr( Floor( SizeByte / 1024 ) ), [rfReplaceAll] );
874                         Skin.Text := StringReplace( Skin.Text, '<SIZE/>', IntToStr( SizeByte ), [rfReplaceAll] );
875
876                         //----- \82Æ\82è\82 \82¦\82¸\82©\82¿\82ã\81`\82µ\82á\8cÝ\8a·\97p\81B\83R\83\81\83\93\83g\83A\83E\83g\82µ\82Ä\82à\82æ\82µ
877                         // \82â\82è\82©\82½\82ª\8bê\82µ\82¢\82¯\82Ç\81A\83I\83v\83V\83\87\83\93\83_\83C\83A\83\8d\83O\82Ì\83v\83\8c\83r\83\85\81[\97p try
878                         try
879                                 if ThreadItem.ParentBoard.ParentCategory <> nil then
880                                         Skin.Text := StringReplace( Skin.Text, '&BBSNAME', ThreadItem.ParentBoard.ParentCategory.ParentBBS2ch.Title, [rfReplaceAll] );
881                                 if ThreadItem.ParentBoard.BBSID <> '' then
882                                         Skin.Text := StringReplace( Skin.Text, '&THREADURL', GikoSys.GetURL(ThreadItem.ParentBoard.BBSID, ThreadItem.FileName), [rfReplaceAll] );
883                         except end;
884                         Skin.Text := StringReplace( Skin.Text, '&BOARDNAME', ThreadItem.ParentBoard.Title, [rfReplaceAll] );
885                         Skin.Text := StringReplace( Skin.Text, '&BOARDURL', ThreadItem.ParentBoard.URL, [rfReplaceAll] );
886                         Skin.Text := StringReplace( Skin.Text, '&THREADNAME', ThreadItem.Title, [rfReplaceAll] );
887                         Skin.Text := StringReplace( Skin.Text, '&SKINPATH', Setting.CSSFileName, [rfReplaceAll] );
888                         Skin.Text := StringReplace( Skin.Text, '&GETRESCOUNT', IntToStr( ThreadItem.NewReceive - 1 ), [rfReplaceAll] );
889                         Skin.Text := StringReplace( Skin.Text, '&NEWRESCOUNT', IntToStr( ThreadItem.NewResCount ), [rfReplaceAll] );
890                         Skin.Text := StringReplace( Skin.Text, '&ALLRESCOUNT', IntToStr( ThreadItem.AllResCount ), [rfReplaceAll] );
891
892                         Skin.Text := StringReplace( Skin.Text, '&NEWDATE',
893                                         FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate), [rfReplaceAll] );
894                         Skin.Text := StringReplace( Skin.Text, '&SIZEKB', IntToStr( Floor( SizeByte / 1024 ) ), [rfReplaceAll] );
895                         Skin.Text := StringReplace( Skin.Text, '&SIZE', IntToStr( SizeByte ), [rfReplaceAll] );
896                         //----- \82±\82±\82Ü\82Å
897                 end;
898                 Result := Skin.Text;
899         finally
900                 Skin.Free;
901         end;
902 end;
903
904 // \83\8c\83X\82Ì\92l\82ð\92u\8a·\82·\82é
905 function TGikoSys.SkinedRes(
906         skin: string;
907         Res: TResRec;
908         No: string
909 ): string;
910 begin
911
912         try
913                 Skin := StringReplace( Skin, '<NUMBER/>',
914                         '<a href="menu:' + No + '" name="' + No + '">' + No + '</a>', [rfReplaceAll] );
915                 Skin := StringReplace( Skin, '<PLAINNUMBER/>', No, [rfReplaceAll] );
916                 Skin := StringReplace( Skin, '<NAME/>', '<b>' + Res.FName + '</b>', [rfReplaceAll] );
917                 Skin := StringReplace( Skin, '<MAILNAME/>',
918                         '<a href="mailo:' + Res.FMailTo + '"><b>' + Res.FName + '</b></a>', [rfReplaceAll] );
919                 Skin := StringReplace( Skin, '<MAIL/>', Res.FMailTo, [rfReplaceAll] );
920                 Skin := StringReplace( Skin, '<DATE/>', Res.FDateTime, [rfReplaceAll] );
921                 Skin := StringReplace( Skin, '<MESSAGE/>', Res.FBody, [rfReplaceAll] );
922
923                 //----- \82©\82¿\82ã\81`\82µ\82á\8cÝ\8a·\97p\81B\83R\83\81\83\93\83g\83A\83E\83g\82µ\82Ä\82à\82æ\82µ
924                 Skin := StringReplace( Skin, '&NUMBER',
925                         '<a href="menu:' + No + '" name="' + No + '">' + No + '</a>', [rfReplaceAll] );
926                 Skin := StringReplace( Skin, '&PLAINNUMBER', No, [rfReplaceAll] );
927                 Skin := StringReplace( Skin, '&NAME', '<b>' + Res.FName + '</b>', [rfReplaceAll] );
928                 Skin := StringReplace( Skin, '&MAILNAME',
929                         '<a href="mailo:' + Res.FMailTo + '"><b>' + Res.FName + '</b></a>', [rfReplaceAll] );
930                 Skin := StringReplace( Skin, '&MAIL', Res.FMailTo, [rfReplaceAll] );
931                 Skin := StringReplace( Skin, '&DATE', Res.FDateTime, [rfReplaceAll] );
932                 Skin := StringReplace( Skin, '&MESSAGE', Res.FBody, [rfReplaceAll] );
933                 //----- \82±\82±\82Ü\82Å
934
935                 Result := Skin;
936         finally
937         end;
938
939 end;
940
941 procedure TGikoSys.CreateHTML2(doc: Variant; ThreadItem: TThreadItem; var sTitle: string);
942 var
943         i: integer;
944         No: string;
945         //bufList : TStringList;
946         ReadList: TStringList;
947         SaveList: TStringList;
948         CSSFileName: string;
949         BBSID: string;
950         FileName: string;
951         NewReceiveNo: Integer;
952         Res: TResRec;
953         boardPlugIn : TBoardPlugIn;
954
955         UserOptionalStyle: string;
956         SkinHeader: string;
957         SkinNewRes: string;
958         SkinRes: string;
959         SizeByte: Integer;
960
961         function LoadSkin( fileName: string ): string;
962         begin
963                 Result := LoadFromSkin( fileName, ThreadItem, SizeByte );
964         end;
965         function ReplaceRes( skin: string ): string;
966         begin
967                 Result := SkinedRes( skin, Res, No );
968         end;
969 begin
970         if ThreadItem <> nil then
971                 boardPlugIn := ThreadItem.BoardPlugIn
972         else
973                 boardPlugIn := nil;
974         if boardPlugIn <> nil then begin
975                 if Assigned( Pointer( boardPlugIn.Module ) ) then begin
976                         NewReceiveNo := ThreadItem.NewReceive;
977       
978                         // \83t\83H\83\93\83g\82â\83T\83C\83Y\82Ì\90Ý\92è
979                         if Length( GikoSys.Setting.BrowserFontName ) > 0 then
980                                 UserOptionalStyle := UserOptionalStyle +
981                                                                 'font-family:"' + GikoSys.Setting.BrowserFontName + '";';
982                         if GikoSys.Setting.BrowserFontSize <> 0 then
983                                 UserOptionalStyle := UserOptionalStyle +
984                                                                 'font-size:' + IntToStr( GikoSys.Setting.BrowserFontSize ) + 'pt;';
985                         if GikoSys.Setting.BrowserFontColor <> -1 then
986                                 UserOptionalStyle := UserOptionalStyle +
987                                                                 'color:#' + IntToHex( GikoSys.Setting.BrowserFontColor, 6 ) + ';';
988                         if GikoSys.Setting.BrowserBackColor <> -1 then
989                                 UserOptionalStyle := UserOptionalStyle +
990                                                                 'background-color:#' + IntToHex( GikoSys.Setting.BrowserBackColor, 6 ) + ';';
991                         case GikoSys.Setting.BrowserFontBold of
992                                 -1: UserOptionalStyle := UserOptionalStyle + 'font-weight:normal;';
993                                 1: UserOptionalStyle := UserOptionalStyle + 'font-weight:bold;';
994                         end;
995                         case GikoSys.Setting.BrowserFontItalic of
996                                 -1: UserOptionalStyle := UserOptionalStyle + 'font-style:normal;';
997                                 1: UserOptionalStyle := UserOptionalStyle + 'font-style:italic;';
998                         end;
999
1000                         SaveList := TStringList.Create;
1001                         try
1002                                 doc.open;
1003                                 //doc.charset := 'Shift_JIS';
1004         threadItem.SizeByte := 0;
1005
1006                                 // \83w\83b\83_
1007                                 SaveList.Add( boardPlugIn.GetHeader( DWORD( threadItem ),
1008                 '<style type="text/css">body {' + UserOptionalStyle + '}</style>' ) );
1009                                 SaveList.Add('<a name="top"></a>');
1010
1011                                 for i := 0 to threadItem.AllResCount - 1 do begin
1012                                         if (OnlyAHundredRes = true) and ( i <> 0 ) and ( (threadItem.AllResCount-i) > 101 ) then begin
1013                                                 Continue;
1014                                         end;
1015
1016           // \90V\92\85\83}\81[\83N
1017           if (NewReceiveNo = (i + 1)) or ((NewReceiveNo = 0) and (i = 0)) then begin
1018             try
1019               SaveList.Add( LoadSkin( GetSkinNewmarkFileName ) );
1020             except
1021               SaveList.Add( '<a name="new"></a>' );
1022             end;
1023           end;
1024
1025           // \83\8c\83X
1026           SaveList.Add( boardPlugIn.GetRes( DWORD( threadItem ), i + 1 ) );
1027
1028           if ThreadItem.Kokomade = (i + 1) then begin
1029             // \82±\82±\82Ü\82Å\93Ç\82ñ\82¾
1030             try
1031               SaveList.Add( LoadSkin( GetSkinBookmarkFileName ) );
1032             except
1033               SaveList.Add( '<a name="koko"></a>' );
1034             end;
1035           end;
1036
1037                                         threadItem.SizeByte := SizeByte + Length( SaveList.Text );
1038                                         doc.Write(SaveList.Text);
1039                                         SaveList.Clear;
1040                                 end;
1041
1042                                 SaveList.Add('<a name="bottom"></a>');
1043                                 threadItem.SizeByte := SizeByte + Length( SaveList.Text );
1044
1045                                 // \83X\83L\83\93(\83t\83b\83^)
1046                                 boardPlugIn.GetFooter( DWORD( threadItem ), '' );
1047
1048                                 doc.Write(SaveList.Text);
1049                         finally
1050                                 SaveList.Free;
1051                                 doc.Close;
1052                         end;
1053
1054                         Exit;
1055                 end;
1056         end;
1057         ShortDayNames[1] := '\93ú';               ShortDayNames[2] := '\8c\8e';
1058         ShortDayNames[3] := '\89Î';               ShortDayNames[4] := '\90\85';
1059         ShortDayNames[5] := '\96Ø';               ShortDayNames[6] := '\8bà';
1060         ShortDayNames[7] := '\93y';
1061         SizeByte := 0;
1062         BBSID := ThreadItem.ParentBoard.BBSID;
1063         NewReceiveNo := ThreadItem.NewReceive;
1064         ReadList := TStringList.Create;
1065         try
1066                 if ThreadItem.IsLogFile then begin
1067                         FileName := ThreadItem.GetThreadFileName;
1068                         ReadList.LoadFromFile(FileName);
1069                         FAbon.IndividualAbon(ReadList, ChangeFileExt(FileName,'.NG'));
1070                         FAbon.Execute(ReadList);                //       \82 \82Ú\81`\82ñ\82µ\82Ä
1071                         FSelectResFilter.Execute(ReadList); //\83\8c\83X\82Ì\83t\83B\83\8b\83^\83\8a\83\93\83O\82ð\82·\82é
1072                         Res := DivideStrLine(ReadList[0]);
1073                         Res.FTitle := StringReplace(Res.FTitle, '\81\97\81M', ',', [rfReplaceAll]);
1074                         sTitle := Res.FTitle;
1075                 end else begin
1076                         sTitle := StringReplace(ThreadItem.Title, '\81\97\81M', ',', [rfReplaceAll]);
1077                 end;
1078                 SaveList := TStringList.Create;
1079                 try
1080                         doc.open;
1081                         doc.charset := 'Shift_JIS';
1082
1083                         // \83t\83H\83\93\83g\82â\83T\83C\83Y\82Ì\90Ý\92è
1084                         if Length( GikoSys.Setting.BrowserFontName ) > 0 then
1085                                 UserOptionalStyle := UserOptionalStyle +
1086                                                                 'font-family:"' + GikoSys.Setting.BrowserFontName + '";';
1087                         if GikoSys.Setting.BrowserFontSize <> 0 then
1088                                 UserOptionalStyle := UserOptionalStyle +
1089                                                                 'font-size:' + IntToStr( GikoSys.Setting.BrowserFontSize ) + 'pt;';
1090                         if GikoSys.Setting.BrowserFontColor <> -1 then
1091                                 UserOptionalStyle := UserOptionalStyle +
1092                                                                 'color:#' + IntToHex( GikoSys.Setting.BrowserFontColor, 6 ) + ';';
1093                         if GikoSys.Setting.BrowserBackColor <> -1 then
1094                                 UserOptionalStyle := UserOptionalStyle +
1095                                                                 'background-color:#' + IntToHex( GikoSys.Setting.BrowserBackColor, 6 ) + ';';
1096                         case GikoSys.Setting.BrowserFontBold of
1097                                 -1: UserOptionalStyle := UserOptionalStyle + 'font-weight:normal;';
1098                                 1: UserOptionalStyle := UserOptionalStyle + 'font-weight:bold;';
1099                         end;
1100                         case GikoSys.Setting.BrowserFontItalic of
1101                                 -1: UserOptionalStyle := UserOptionalStyle + 'font-style:normal;';
1102                                 1: UserOptionalStyle := UserOptionalStyle + 'font-style:italic;';
1103                         end;
1104
1105                         CSSFileName := GetStyleSheetDir + Setting.CSSFileName;
1106                         if GikoSys.Setting.UseSkin then begin
1107                                 // \83X\83L\83\93\8eg\97p
1108                                 // \83X\83L\83\93\82Ì\90Ý\92è
1109                                 try
1110                                         SkinHeader := LoadSkin( GetSkinHeaderFileName );
1111                                         if Length( UserOptionalStyle ) > 0 then
1112                                                 SkinHeader := StringReplace( SkinHeader, '</head>',
1113                                                         '<style type="text/css">body {' + UserOptionalStyle + '}</style></head>', [rfReplaceAll] );
1114                                         SaveList.Add( SkinHeader );
1115                                 except
1116                                 end;
1117                                 try
1118                                         SkinNewRes := LoadSkin( GetSkinNewResFileName );
1119                                 except
1120                                                                 end;
1121                                 try
1122                                         SkinRes := LoadSkin( GetSkinResFileName );
1123                                 except
1124                                 end;
1125
1126                                 SaveList.Add('<a name="top"></a>');
1127
1128                                 for i := 0 to ReadList.Count - 1 do begin
1129                                         if (OnlyAHundredRes = true) and ( i <> 0 ) and ( (ReadList.Count-i) > 101 ) then begin
1130                                                 Continue;
1131                                         end;
1132                                         if (Trim(ReadList[i]) <> '') then begin
1133                                                 No := IntToStr(i + 1);
1134
1135                                                 Res := DivideStrLine(ReadList[i]);
1136                                                 Res.FBody := ConvRes(Res.FBody, ThreadItem.ParentBoard.BBSID, ChangeFileExt(ThreadItem.FileName, ''), 'bbs', 'key', 'st', 'to', 'nofirst', 'true');
1137
1138                                                 if Res.FType = glt2chOld then begin
1139                                                         Res.FMailTo := StringReplace(Res.FMailTo, '\81\97\81M', ',', [rfReplaceAll]);
1140                                                         Res.FName := StringReplace(Res.FName, '\81\97\81M', ',', [rfReplaceAll]);
1141                                                         Res.FBody := StringReplace(Res.FBody, '\81\97\81M', ',', [rfReplaceAll]);
1142                                                 end;
1143
1144                                                 Res.FBody := AddAnchorTag(Res.FBody);
1145                                                 if Res.FName = '' then
1146                                                         Res.FName := '&nbsp;';
1147
1148                                                 // \90V\92\85\83}\81[\83N
1149                                                 if (NewReceiveNo = (i + 1)) or ((NewReceiveNo = 0) and (i = 0)) then begin
1150                                                         try
1151                                                                 SaveList.Add( LoadSkin( GetSkinNewmarkFileName ) );
1152                                                         except
1153                                                                 SaveList.Add( '<a name="new"></a>' );
1154                                                         end;
1155                                                 end;
1156                                                 try
1157                                                         if NewReceiveNo <= (i + 1) then
1158                                                                 // \90V\92\85\83\8c\83X
1159                                                                 SaveList.Add( ReplaceRes( SkinNewRes ) )
1160                                                         else
1161                                                                 // \92Ê\8fí\82Ì\83\8c\83X
1162                                                                 SaveList.Add( ReplaceRes( SkinRes ) );
1163                                                 except
1164                                                 end;
1165                                                 if ThreadItem.Kokomade = (i + 1) then begin
1166                                                         // \82±\82±\82Ü\82Å\93Ç\82ñ\82¾
1167                                                         try
1168                                                                 SaveList.Add( LoadSkin( GetSkinBookmarkFileName ) );
1169                                                         except
1170                                                                 SaveList.Add( '<a name="koko"></a>' );
1171                                                         end;
1172                                                 end;
1173                                         end;
1174                                         SizeByte := SizeByte + Length( SaveList.Text );
1175                                         doc.Write(SaveList.Text);
1176                                         SaveList.Clear;
1177                                 end;
1178                                 SaveList.Add('<a name="bottom"></a>');
1179                                 SizeByte := SizeByte + Length( SaveList.Text );
1180                                 // \83X\83L\83\93(\83t\83b\83^)
1181                                 try
1182                                         SaveList.Add( LoadSkin( GetSkinFooterFileName ) );
1183                                 except
1184                                 end;
1185                                 doc.Write(SaveList.Text);
1186
1187                         end else if GikoSys.Setting.UseCSS and FileExists(CSSFileName) then begin
1188                                 //CSS\8eg\97p
1189                                 //CSSFileName := GetAppDir + CSS_FILE_NAME;
1190 //                              SaveList.Add('<html lang="ja"><head>');
1191                                 SaveList.Add('<html><head>');
1192                                 SaveList.Add('<meta http-equiv="Content-type" content="text/html; charset=Shift_JIS">');
1193                                 SaveList.Add('<title>' + sTitle + '</title>');
1194                                 SaveList.Add('<link rel="stylesheet" href="'+CSSFileName+'" type="text/css">');
1195                                 if Length( UserOptionalStyle ) > 0 then
1196                                         SaveList.Add('<style type="text/css">body {' + UserOptionalStyle + '}</style>');
1197                                 SaveList.Add('</head>');
1198                                 SaveList.Add('<body>');
1199                                 SaveList.Add('<a name="top"></a>');
1200                                 SaveList.Add('<div class="title">' + sTitle + '</div>');
1201                                 doc.Write(SaveList.Text);
1202                                 SaveList.Clear;
1203                                 //Application.ProcessMessages;
1204                                 for i := 0 to ReadList.Count - 1 do begin
1205                                         if (OnlyAHundredRes = true) and ( i <> 0 ) and ( (ReadList.Count-i) > 101 ) then begin
1206                                                 Continue;
1207                                         end;
1208                                         if (Trim(ReadList[i]) <> '') then begin
1209                                                 No := IntToStr(i + 1);
1210                                                 if (NewReceiveNo = (i + 1)) or ((NewReceiveNo = 0) and (i = 0)) then begin
1211                                                         SaveList.Add('<a name="new"></a><div class="new">\90V\92\85\83\8c\83X <span class="newdate">' + FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate) + '</span></div>');
1212                                                 end;
1213                                                 Res := DivideStrLine(ReadList[i]);
1214                                                 Res.FBody := ConvRes(Res.FBody, ThreadItem.ParentBoard.BBSID, ChangeFileExt(ThreadItem.FileName, ''), 'bbs', 'key', 'st', 'to', 'nofirst', 'true');
1215                                                 Res.FBody := AddAnchorTag(Res.FBody);
1216                                                 if Res.FName = '' then
1217                                                         Res.FName := '&nbsp;';
1218                                                 if Res.FMailTo = '' then
1219                                                         SaveList.Add('<a name="' + No + '"></a>'
1220                                                                                         + '<div class="header"><span class="no"><a href="menu:' + No + '">' + No + '</a></span> '
1221                                                                                         + '<span class="name_label">\96¼\91O\81F</span> '
1222                                                                                         + '<span class="name"><b>' + Res.FName + '</b></span> '
1223                                                                                         + '<span class="date_label">\93\8a\8de\93ú\81F</span> '
1224                                                                                         + '<span class="date">' + Res.FDateTime+ '</span></div>'
1225                                                                                                                                                                                 + '<div class="mes">' + Res.FBody + ' </div>')
1226                                                 else if GikoSys.Setting.ShowMail then
1227                                                         SaveList.Add('<a name="' + No + '"></a>'
1228                                                                                         + '<div class="header"><span class="no"><a href="menu:' + No + '">' + No + '</a></span>'
1229                                                                                                                                                                                 + '<span class="name_label"> \96¼\91O\81F </span>'
1230                                                                                         + '<a class="name_mail" href="mailto:' + Res.FMailTo + '">'
1231                                                                                         + '<b>' + Res.FName + '</b></a><span class="mail"> [' + Res.FMailTo + ']</span>'
1232                                                                                         + '<span class="date_label"> \93\8a\8de\93ú\81F</span>'
1233                                                                                         + '<span class="date"> ' + Res.FDateTime+ '</span></div>'
1234                                                                                         + '<div class="mes">' + Res.FBody + ' </div>')
1235                                                 else
1236                                                         SaveList.Add('<a name="' + No + '"></a>'
1237                                                                                         + '<div class="header"><span class="no"><a href="menu:' + No + '">' + No + '</a></span>'
1238                                                                                         + '<span class="name_label"> \96¼\91O\81F </span>'
1239                                                                                         + '<a class="name_mail" href="mailto:' + Res.FMailTo + '">'
1240                                                                                         + '<b>' + Res.FName + '</b></a>'
1241                                                                                         + '<span class="date_label"> \93\8a\8de\93ú\81F</span>'
1242                                                                                         + '<span class="date"> ' + Res.FDateTime+ '</span></div>'
1243                                                                                                                                                                                 + '<div class="mes">' + Res.FBody + ' </div>');
1244                                                 if ThreadItem.Kokomade = (i + 1) then begin
1245                                                         SaveList.Add('<a name="koko"></a><div class="koko">\83R\83R\82Ü\82Å\93Ç\82ñ\82¾</div>');
1246                                                 end;
1247                                         end;
1248
1249                                         doc.Write(SaveList.Text);
1250                                         SaveList.Clear;
1251                                 end;
1252                                 //FOnlyAHundredRes
1253                                 SaveList.Add('<a name="bottom"></a>');
1254                                 SaveList.Add('</body></html>');
1255                                 SaveList.Add('<a name="last"></a>');
1256                                 SaveList.Add('</body></html>');
1257
1258                                 doc.Write(SaveList.Text);
1259                         end else begin
1260                                 //CSS\94ñ\8eg\97p
1261 //                              SaveList.Add('<html lang="ja"><head>');
1262                                 SaveList.Add('<html><head>');
1263                                 SaveList.Add('<meta http-equiv="Content-type" content="text/html; charset=Shift_JIS">');
1264                                 SaveList.Add('<title>' + sTitle + '</title></head>');
1265                                 SaveList.Add('<body TEXT="#000000" BGCOLOR="#EFEFEF" link="#0000FF" alink="#FF0000" vlink="#660099">');
1266                                 SaveList.Add('<a name="top"></a>');
1267                                 SaveList.Add('<font size=+1 color="#FF0000">' + sTitle + '</font>');
1268                                 SaveList.Add('<dl>');
1269                                 doc.Write(SaveList.Text);
1270                                 SaveList.Clear;
1271                                 //Application.ProcessMessages;
1272                                 for i := 0 to ReadList.Count - 1 do begin
1273                                         if (OnlyAHundredRes = true) and ( i <> 0 ) and ( (ReadList.Count-i) > 101 ) then begin
1274                                                 Continue;
1275                                         end;
1276                                         if (Trim(ReadList[i]) <> '') then begin
1277                                                 No := IntToStr(i + 1);
1278
1279                                                 if (NewReceiveNo = (i + 1)) or ((NewReceiveNo = 0) and (i = 0)) then begin
1280                                                         SaveList.Add('</dl>');
1281                                                                                                                 SaveList.Add('<a name="new"></a>');
1282                                                                                                                 SaveList.Add('<table width="100%" bgcolor="#3333CC" cellpadding="0" cellspacing="1"><tr><td align="center" bgcolor="#6666FF" valign="middle"><font size="-1" color="#ffffff"><b>\90V\92\85\83\8c\83X ' + FormatDateTime('yyyy/mm/dd(ddd) hh:mm', ThreadItem.RoundDate) + '</b></font></td></tr></table>');
1283                                                                                                                 SaveList.Add('<dl>');
1284                                                 end;
1285                                                 Res := DivideStrLine(ReadList[i]);
1286                                                 Res.FBody := ConvRes(Res.FBody, ThreadItem.ParentBoard.BBSID, ChangeFileExt(ThreadItem.FileName, ''), 'bbs', 'key', 'st', 'to', 'nofirst', 'true');
1287                                                 if Res.FType = glt2chOld then begin
1288                                                         Res.FMailTo := StringReplace(Res.FMailTo, '\81\97\81M', ',', [rfReplaceAll]);
1289                                                         Res.FName := StringReplace(Res.FName, '\81\97\81M', ',', [rfReplaceAll]);
1290                                                         Res.FBody := StringReplace(Res.FBody, '\81\97\81M', ',', [rfReplaceAll]);
1291                                                 end;
1292                                                 Res.FBody := AddAnchorTag(Res.FBody);
1293                                                 if Res.FMailTo = '' then
1294                                                         SaveList.Add('<a name="' + No + '"></a><dt><a href="menu:' + No + '">' + No + '</a> \96¼\91O\81F<font color="forestgreen"><b> ' + Res.FName + ' </b></font> \93\8a\8de\93ú\81F ' + Res.FDateTime+ '<br><dd>' + Res.Fbody + ' <br><br><br>')
1295                                                 else if GikoSys.Setting.ShowMail then
1296                                                         SaveList.Add('<a name="' + No + '"></a><dt><a href="menu:' + No + '">' + No + '</a> \96¼\91O\81F<a href="mailto:' + Res.FMailTo + '"><b> ' + Res.FName + ' </B></a> [' + Res.FMailTo + '] \93\8a\8de\93ú\81F ' + Res.FDateTime+ '<br><dd>' + Res.Fbody + ' <br><br><br>')
1297                                                 else
1298                                                         SaveList.Add('<a name="' + No + '"></a><dt><a href="menu:' + No + '">' + No + '</a> \96¼\91O\81F<a href="mailto:' + Res.FMailTo + '"><b> ' + Res.FName + ' </B></a> \93\8a\8de\93ú\81F ' + Res.FDateTime+ '<br><dd>' + Res.Fbody + ' <br><br><br>');
1299                                                 if ThreadItem.Kokomade = (i + 1) then begin
1300                                                         SaveList.Add('</dl>');
1301                                                         SaveList.Add('<a name="koko"></a><table width="100%" bgcolor="#55AA55" cellpadding="0" cellspacing="1"><tr><td align="center" bgcolor="#77CC77" valign="middle"><font size="-1" color="#ffffff"><b>\83R\83R\82Ü\82Å\93Ç\82ñ\82¾</b></font></td></tr></table>');
1302                                                         SaveList.Add('<dl>');
1303                                                 end;
1304                                         end;
1305                                         //if SaveList.Count > 50 then begin
1306                                                 doc.Write(SaveList.Text);
1307                                                 SaveList.Clear;
1308                                                 //Application.ProcessMessages;
1309                                         //end;
1310                                 end;
1311                                 SaveList.Add('</dl>');
1312                                 SaveList.Add('<a name="bottom"></a>');
1313                                 SaveList.Add('</body></html>');
1314                                 doc.Write(SaveList.Text);
1315                         end;
1316                 finally
1317                         SaveList.Free;
1318                         doc.Close;
1319                 end;
1320         finally
1321                 ReadList.Free;
1322         end;
1323 end;
1324 (*************************************************************************
1325  *http://\82Ì\95\8e\9a\97ñ\82ðanchor\83^\83O\95t\82«\82É\82·\82é\81B
1326  *************************************************************************)
1327 function TGikoSys.AddAnchorTag(s: string): string;
1328 const
1329         URL_CHAR: string = '0123456789'
1330                                                                          + 'abcdefghijklmnopqrstuvwxyz'
1331                                                                          + 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
1332                                                                          + '#$%&()*+,-./:;=?@[]^_`{|}~!''\';
1333 var
1334         wkIdx: array[0..9] of Integer;
1335         url: string;
1336         href: string;
1337         i: Integer;
1338         idx: Integer;
1339 begin
1340         Result := '';
1341
1342         while True do begin
1343                 wkIdx[0] := AnsiPos('http://', s);
1344                 wkIdx[1] := AnsiPos('ttp://', s);
1345                 wkIdx[2] := AnsiPos('tp://', s);
1346                 wkIdx[3] := AnsiPos('ms-help://', s);
1347                 wkIdx[4] := AnsiPos('p://', s);
1348                 wkIdx[5] := AnsiPos('https://', s);
1349                 wkIdx[6] := AnsiPos('www.', s);
1350                 wkIdx[7] := AnsiPos('ftp://', s);
1351                 wkIdx[8] := AnsiPos('news://', s);
1352                 wkIdx[9] := AnsiPos('rtsp://', s);
1353
1354                 idx := MaxInt;
1355                 for i := 0 to 8 do
1356                         if wkIdx[i] <> 0 then idx := Min(wkIdx[i], idx);
1357
1358                 if idx = MaxInt then begin
1359                         //\83\8a\83\93\83N\82ª\96³\82¢\82æ\81B
1360                         Result := Result + s;
1361                         Break;
1362                 end;
1363
1364                 if (idx > 1) and (Copy(s, idx - 1, 1) = '"') then begin
1365                         //\8aù\82É\83\8a\83\93\83N\83^\83O\82ª\82Â\82¢\82Ä\82¢\82é\82Á\82Û\82¢\82Æ\82«\82Í\83\80\83V
1366                         Result := Result + Copy(s, 0, idx + Length('http://') - 1);
1367                         s := Copy(s, idx + Length('http://'), length(s));
1368                         Continue;
1369                 end;
1370
1371                 Result := Result + Copy(s, 0, idx - 1);
1372
1373                 s := Copy(s, idx, length(s));
1374
1375                 for i := 0 to Length(s) do begin
1376                         idx := AnsiPos(s[i + 1], URL_CHAR);
1377                         if (idx = 0) or (i = (Length(s))) then begin
1378                                 //URL\82\82á\82È\82¢\95\8e\9a\94­\8c©\81I\82Æ\82©\81A\95\8e\9a\82ª\82È\82­\82È\82Á\82½\81B
1379                                 url := Copy(s, 0, i);
1380
1381                                 if AnsiPos('ttp://', url) = 1 then
1382                                         href := 'h' + url
1383                                 else if AnsiPos('tp://', url) = 1 then
1384                                         href := 'ht' + url
1385                                 else if AnsiPos('p://', url) = 1 then
1386                                         href := 'htt' + url
1387                                 else if AnsiPos('www.', url) = 1 then
1388                                         href := 'http://' + url
1389                                 else
1390                                         href := url;
1391                                 Result := Result + '<a href="' + href + '" target="_blank">' + url + '</a>';
1392                                 s := Copy(s, i + 1, Length(s));
1393                                 Break;
1394                         end;
1395                 end;
1396         end;
1397 end;
1398
1399 (*************************************************************************
1400  *\83T\83u\83W\83F\83N\83g\88ê\8ds\82ð\95ª\8a\84
1401  *************************************************************************)
1402 function TGikoSys.DivideSubject(Line: string): TSubjectRec;
1403 var
1404         i: integer;
1405         ws: WideString;
1406         Delim: string;
1407         LeftK: string;
1408         RightK: string;
1409 begin
1410         Result.FCount := 0;
1411
1412         if Pos('<>', Line) = 0 then
1413                 Delim := ','
1414         else
1415                 Delim := '<>';
1416
1417         Result.FFileName := GetTokenIndex(Line, Delim, 0);
1418         Result.FTitle := GetTokenIndex(Line, Delim, 1);
1419
1420         ws := Trim(Result.FTitle);
1421
1422         if Copy(ws, Length(ws), 1) = ')' then begin
1423                 LeftK := '(';
1424                 RightK := ')';
1425         end else if Copy(ws, Length(ws), 1) = '\81j' then begin
1426                 LeftK := '\81i';
1427                 RightK := '\81j';
1428         end else if Copy(ws, Length(ws), 1) = '<' then begin
1429                 LeftK := '<';
1430                 RightK := '>';
1431         end;
1432
1433         for i := Length(ws) - 1 downto 1 do begin
1434                 if ws[i] = LeftK then begin
1435                         ws := Copy(ws, i + 1, Length(ws) - i - 1);
1436                         if IsNumeric(ws) then
1437                                 Result.FCount := StrToInt(ws);
1438                         Result.FTitle := Trim(StringReplace(Result.FTitle, LeftK + ws + RightK, '', [rfReplaceAll]));
1439                         break;
1440                 end;
1441         end;
1442 end;
1443
1444 (*************************************************************************
1445  * dat\83t\83@\83C\83\8b\82Ì\88ê\83\89\83C\83\93\82ð\95ª\89ð
1446  *************************************************************************)
1447 function TGikoSys.DivideStrLine(Line: string): TResRec;
1448 var
1449         Delim: string;
1450                 bufbody : String;
1451 begin
1452         if Pos('<>', Line) = 0 then begin
1453                 Delim := ',';
1454                 Result.FType := glt2chOld;
1455         end else begin
1456                 Delim := '<>';
1457                 Result.FType := glt2chNew;
1458         end;
1459         Result.FName := Trim(GetTokenIndex(Line, Delim, 0));
1460         Result.FMailTo := Trim(GetTokenIndex(Line, Delim, 1));
1461         Result.FDateTime := Trim(GetTokenIndex(Line, Delim, 2));
1462         bufBody := Trim(GetTokenIndex(Line, Delim, 3));
1463         if bufbody = '' then begin
1464                 Insert('&nbsp;',bufbody, 1);
1465         end;
1466         Result.FBody := bufBody;
1467         Result.FTitle := Trim(GetTokenIndex(Line, Delim, 4));
1468
1469 end;
1470
1471 (*************************************************************************
1472  * URL\82©\82çBBSID\82ð\8eæ\93¾
1473  *************************************************************************)
1474 function TGikoSys.UrlToID(url: string): string;
1475 var
1476         i: integer;
1477 begin
1478         Result := '';
1479         url := Trim(url);
1480
1481         if url = '' then Exit;
1482
1483         url := Copy(url, 0, Length(url) - 1);
1484         for i := Length(url) downto 0 do begin
1485                 if url[i] = '/' then begin
1486                         Result := Copy(url, i + 1, Length(url));
1487                         Break;
1488                 end;
1489         end;
1490 end;
1491
1492 (*************************************************************************
1493  *URL\82©\82çBBSID\88È\8aO\82Ì\95\94\95ª(http://teri.2ch.net/)\82ð\8eæ\93¾
1494  *************************************************************************)
1495 function TGikoSys.UrlToServer(url: string): string;
1496 var
1497         i: integer;
1498         wsURL: WideString;
1499 begin
1500         Result := '';
1501         wsURL := url;
1502         wsURL := Trim(wsURL);
1503
1504         if wsURL = '' then exit;
1505
1506         if Copy(wsURL, Length(wsURL), 1) = '/' then
1507                 wsURL := Copy(wsURL, 0, Length(wsURL) - 1);
1508
1509         for i := Length(wsURL) downto 0 do begin
1510                 if wsURL[i] = '/' then begin
1511                         Result := Copy(wsURL, 0, i);
1512                         break;
1513                 end;
1514         end;
1515 end;
1516
1517 (*************************************************************************
1518  *\83f\83B\83\8c\83N\83g\83\8a\82ª\91\8dÝ\82·\82é\82©\83`\83F\83b\83N
1519  *************************************************************************)
1520 function TGikoSys.DirectoryExistsEx(const Name: string): Boolean;
1521 var
1522         Code: Integer;
1523 begin
1524         Code := GetFileAttributes(PChar(Name));
1525         Result := (Code <> -1) and (FILE_ATTRIBUTE_DIRECTORY and Code <> 0);
1526 end;
1527
1528 (*************************************************************************
1529  *\83f\83B\83\8c\83N\83g\83\8a\8dì\90¬\81i\95¡\90\94\8aK\91w\91Î\89\9e\81j
1530  *************************************************************************)
1531 function TGikoSys.ForceDirectoriesEx(Dir: string): Boolean;
1532 begin
1533         Result := True;
1534         if Length(Dir) = 0 then
1535                 raise Exception.Create('\83t\83H\83\8b\83_\82ª\8dì\90¬\8fo\97\88\82Ü\82¹\82ñ');
1536         Dir := ExcludeTrailingPathDelimiter(Dir);
1537         if (Length(Dir) < 3) or DirectoryExistsEx(Dir)
1538                 or (ExtractFilePath(Dir) = Dir) then Exit; // avoid 'xyz:\' problem.
1539         Result := ForceDirectoriesEx(ExtractFilePath(Dir)) and CreateDir(Dir);
1540 end;
1541
1542 (*************************************************************************
1543  *\95\8e\9a\97ñ\82©\82ç\83g\81[\83N\83\93\82Ì\90Ø\82è\8fo\82µ\81i\8f\89\8aú\8f\88\97\9d\81j
1544  *FDelphi\82©\82ç\82Ì\83p\83N\83\8a
1545  *************************************************************************)
1546 function TGikoSys.StrTokFirst(const s:string; const sep: TStrTokSeparator; var Rec: TStrTokRec): string;
1547 begin
1548         Rec.Str := s;
1549         Rec.Pos := 1;
1550         Result := StrTokNext(sep, Rec);
1551 end;
1552
1553 (*************************************************************************
1554  *\95\8e\9a\97ñ\82©\82ç\83g\81[\83N\83\93\82Ì\90Ø\82è\8fo\82µ
1555  *FDelphi\82©\82ç\82Ì\83p\83N\83\8a
1556  *************************************************************************)
1557 function TGikoSys.StrTokNext(const sep: TStrTokSeparator; var Rec: TStrTokRec): string;
1558 var
1559         Len, I: Integer;
1560 begin
1561         with Rec do     begin
1562                 Len := Length(Str);
1563                 Result := '';
1564                 if Len >= Pos then begin
1565                         while (Pos <= Len) and (Str[Pos] in sep) do begin
1566                          Inc(Pos);
1567                         end;
1568                         I := Pos;
1569                         while (Pos<= Len) and not (Str[Pos] in sep) do begin
1570                                 if IsDBCSLeadByte(Byte(Str[Pos])) then begin
1571                                         Inc(Pos);
1572                                 end;
1573                                 Inc(Pos);
1574                         end;
1575                         Result := Copy(Str, I, Pos - I);
1576                         while (Pos <= Len) and (Str[Pos] in sep) do begin// \82±\82ê\82Í\82¨\8dD\82Ý
1577                                 Inc(Pos);
1578                         end;
1579                 end;
1580         end;
1581 end;
1582
1583 (*************************************************************************
1584  *\83t\83@\83C\83\8b\83T\83C\83Y\8eæ\93¾
1585  *************************************************************************)
1586 function TGikoSys.GetFileSize(FileName : string): longint;
1587 var
1588         F : File;
1589 begin
1590         try
1591                 if not FileExists(FileName) then begin
1592                         Result := 0;
1593                         Exit;
1594                 end;
1595                 Assign(F, FileName);
1596                 Reset(F, 1);
1597                 Result := FileSize(F);
1598                 CloseFile(F);
1599         except
1600                 Result := 0;
1601         end;
1602 end;
1603
1604 (*************************************************************************
1605  *\83t\83@\83C\83\8b\8ds\90\94\8eæ\93¾
1606  *************************************************************************)
1607 function TGikoSys.GetFileLineCount(FileName : string): longint;
1608 var
1609         sl: TStringList;
1610 begin
1611         sl := TStringList.Create;
1612         try
1613                 try
1614                         sl.LoadFromFile(FileName);
1615                         Result := sl.Count;
1616                 except
1617                         Result := 0;
1618                 end;
1619         finally
1620                 sl.Free;
1621         end;
1622
1623 end;
1624
1625 (*************************************************************************
1626  *\83X\83\8c\83b\83h\83t\83@\83C\83\8b\82©\82ç\8ew\92è\8ds\82ð\8eæ\93¾
1627  *************************************************************************)
1628 function TGikoSys.ReadThreadFile(FileName: string; Line: Integer): string;
1629 const
1630         BUFFER_SIZE = 1024;
1631 var
1632         f: TextFile;
1633         s: string;
1634         num: Integer;
1635         ArrBuff: array [1..BUFFER_SIZE] of Char;
1636 begin
1637         Result := '';
1638         if FileExists(FileName) then begin
1639                 AssignFile(f, FileName);
1640                 System.SetTextBuf(f, ArrBuff);
1641                 try
1642                         Reset(f);
1643                         num := 1;
1644                         while not Eof(f) do begin
1645                                 Readln(f, s);
1646                                 if Line = num then begin
1647                                         Result := s;
1648 //                                      CloseFile(f);
1649                                         Break;
1650                                 end;
1651                                 inc(num);
1652                         end;
1653                 finally
1654                         CloseFile(f);
1655                 end;
1656         end;
1657 end;
1658
1659 (*************************************************************************
1660  *\83V\83X\83e\83\80\83\81\83j\83\85\81[\83t\83H\83\93\83g\82Ì\91®\90«\82ð\8eæ\93¾
1661  *************************************************************************)
1662 procedure TGikoSys.MenuFont(Font: TFont);
1663 var
1664         lf: LOGFONT;
1665         nm: NONCLIENTMETRICS;
1666 begin
1667         nm.cbSize := sizeof(NONCLIENTMETRICS);
1668
1669         SystemParametersInfo(SPI_GETNONCLIENTMETRICS, 0, @nm, 0);
1670         lf := nm.lfMenuFont;
1671
1672         Font.Name := lf.lfFaceName;
1673         Font.Height := lf.lfHeight;
1674         Font.Style := [];
1675         if lf.lfWeight >= 700 then
1676                 Font.Style := Font.Style + [fsBold];
1677         if lf.lfItalic = 1 then
1678                 Font.Style := Font.Style + [fsItalic];
1679 end;
1680
1681 (*************************************************************************
1682  *
1683  *\82Ç\82±\82©\82Ì\83T\83C\83g\82©\82ç\82Ì\83p\83N\83\8a
1684  *************************************************************************)
1685 function TGikoSys.RemoveToken(var s: string; delimiter: string): string;
1686 var
1687         p: Integer;
1688 begin
1689         p := AnsiPos(delimiter, s);
1690         if p = 0 then
1691                 Result := s
1692         else
1693                 Result := Copy(s, 1, p - 1);
1694         s := Copy(s, Length(Result) + Length(delimiter) + 1, Length(s));
1695 end;
1696
1697 (*************************************************************************
1698  *
1699  *\82Ç\82±\82©\82Ì\83T\83C\83g\82©\82ç\82Ì\83p\83N\83\8a
1700  *************************************************************************)
1701 function TGikoSys.GetTokenIndex(s: string; delimiter: string; index: Integer): string;
1702 var
1703         i: Integer;
1704 begin
1705         Result := '';
1706         for i := 0 to index do
1707                 Result := RemoveToken(s, delimiter);
1708 end;
1709
1710 (*************************************************************************
1711  *
1712  *************************************************************************)
1713 function TGikoSys.DeleteLink(const s: string): string;
1714 var
1715         s1: string;
1716         s2: string;
1717         idx: Integer;
1718         i: Integer;
1719 begin
1720         i := 0;
1721         Result := '';
1722         while True do begin
1723                 s1 := GetTokenIndex(s, '<a href="', i);
1724                 s2 := GetTokenIndex(s, '<a href="', i + 1);
1725
1726                 idx := Pos('">', s1);
1727                 if idx <> 0 then
1728                         Delete(s1, 1, idx + 1);
1729                 idx := Pos('">', s2);
1730                 if idx <> 0 then
1731                         Delete(s2, 1, idx + 1);
1732
1733                 Result := Result + s1 + s2;
1734
1735                 if s2 = '' then
1736                         Break;
1737
1738                 inc(i, 2);
1739         end;
1740 end;
1741
1742 //\83C\83\93\83f\83b\83N\83X\96¢\8dX\90V\83o\83b\83t\83@\82ð\83t\83\89\83b\83V\83\85\81I
1743 {procedure TGikoSys.FlashExitWrite;
1744 var
1745         i: Integer;
1746 begin
1747         //\83X\83\8c\83b\83h\83f\81[\83^\83t\83@\83C\83\8b\82ð\8dX\90V
1748         for i := 0 to FExitWrite.Count - 1 do
1749                 WriteThreadDat(FExitWrite[i]);
1750         FExitWrite.Clear;
1751 end;}
1752
1753 (*************************************************************************
1754  *\83X\83\8c\96¼\82È\82Ç\82ð\92Z\82¢\96¼\91O\82É\95Ï\8a·\82·\82é
1755  *from HotZonu
1756  *************************************************************************)
1757 function TGikoSys.GetShortName(const LongName: string; ALength: integer): string;
1758 const
1759         ERASECHAR : array [1..39] of string =
1760                 ('\81\99','\81\9a','\81¡','\81 ','\81\9f','\81\9e','\81Q','\81\94','\81£','\81¥',
1761                  '\81¢','\81¤','\81\9c','\81\9b','\81\9d','\81y','\81z','\81ô','\81s','\81t',
1762                  '\81g','\81h','\81k','\81l','\81e','\81f','\81\83','\81\84','\81á','\81â',
1763                  '\81o','\81p','\81q','\81r','\81w','\81x','\81¬','\81c', '\81@');
1764 var
1765         Chr : array [0..255]    of      char;
1766         S : string;
1767         i : integer;
1768 begin
1769         s := Trim(LongName);
1770         if (Length(s) <= ALength) then begin
1771                 Result := s;
1772         end else begin
1773                 S := s;
1774                 for i := Low(ERASECHAR) to      High(ERASECHAR) do      begin
1775                         S := StringReplace(S, ERASECHAR[i], '', [rfReplaceAll]);
1776                 end;
1777                 if (Length(S) <= ALength) then begin
1778                         Result := S;
1779                 end else begin
1780                         Windows.LCMapString(
1781                                         GetUserDefaultLCID(),
1782                                         LCMAP_HALFWIDTH,
1783                                         PChar(S),
1784                                         Length(S) + 1,
1785                                         chr,
1786                                         Sizeof(chr)
1787                                         );
1788                         S := Chr;
1789                         S := Copy(S,1,ALength);
1790                         while true do begin
1791                                 if (ByteType(S, Length(S)) = mbLeadByte ) then begin
1792                                         S := Copy(S, 1, Length(S) - 1);
1793                                 end else begin
1794                                         Break;
1795                                 end;
1796                         end;
1797                         Result := S;
1798                 end;
1799         end;
1800 end;
1801
1802 (*************************************************************************
1803  *
1804  * from HotZonu
1805  *************************************************************************)
1806 function TGikoSys.ConvRes(const Body, Bbs, Key,
1807         ParamBBS, ParamKey, ParamStart, ParamTo, ParamNoFirst, ParamTrue : string): string;
1808 type
1809         PIndex = ^TIndex;
1810         TIndex = record
1811                 FIndexFrom      : integer;
1812                 FIndexTo                : integer;
1813                 FNo                              : string;
1814         end;
1815 const
1816         GT      = '&gt;';
1817         SN      = '0123456789-';
1818         ZN      = '\82O\82P\82Q\82R\82S\82T\82U\82V\82W\82X\81|';
1819 var
1820         i : integer;
1821         s,r : string;
1822         b : TMbcsByteType;
1823         sw: boolean;
1824         sp: integer;
1825         No: string;
1826         sx: string;
1827         List: TList;
1828         oc      : string;
1829         st, et: string;
1830         chk : boolean;
1831         al : boolean;
1832         procedure Add(IndexFrom, IndexTo: integer; const No: string);
1833         var
1834                 FIndex : PIndex;
1835         begin
1836                 New(FIndex);
1837                 FIndex.FIndexFrom       := IndexFrom;
1838                 FIndex.FIndexTo         := IndexTo;
1839                 FIndex.FNo                               := No;
1840                 List.Add(FIndex);
1841         end;
1842         function ChooseString(const Text, Separator: string; Index: integer): string;
1843         var
1844                 S : string;
1845                 i, p : integer;
1846         begin
1847                 S :=    Text;
1848                 for i :=        0 to    Index - 1 do    begin
1849                         if      (AnsiPos(Separator, S) = 0) then        S :=    ''
1850                         else    S :=    Copy(S, AnsiPos(Separator, S) + Length(Separator), Length(S));
1851                 end;
1852                 p :=    AnsiPos(Separator, S);
1853                 if      (p > 0) then    Result  :=      Copy(S, 1, p - 1) else Result :=        S;
1854         end;
1855 begin
1856         { v1.0 b2 - 03 }
1857         s        :=     Body;
1858         r        :=     Body;
1859         i        :=     1;
1860         sw      :=      False;
1861         No      :=      '';
1862         List:=  TList.Create;
1863         oc      :=      '';
1864         sp      :=      0;
1865         chk :=  False;
1866         al      :=      False;
1867         while true      do      begin
1868                 b :=    ByteType(s, i);
1869                 case    b of
1870                         mbSingleByte    : begin
1871                                 if      (not sw) and (Copy(s,i,8) = GT + GT) then       begin
1872                                         if      (AnsiPos('<A HREF', AnsiUpperCase(oc)) = 0) then        begin
1873                                                 sw      :=      True;
1874                                                 sp      :=      i;
1875                                                 i :=    i + 7;
1876                                                 oc:='';
1877                                                 chk :=  True;
1878                                         end;
1879                                 end else
1880                                 if      (not sw) and (Copy(s,i,8) = GT + GT) then       begin
1881                                         if      (AnsiPos('<A HREF', AnsiUpperCase(oc)) = 1) then        begin
1882                                                 i :=    i + 7;
1883                                                 oc:='';
1884                                                 chk :=  True;
1885                                         end;
1886                                 end else
1887                                 if      (not sw) and (Copy(s,i,4) = GT) then    begin
1888                                         if      (AnsiPos('<A HREF', AnsiUpperCase(oc)) = 0) then        begin
1889                                                 sw      :=      True;
1890                                                 sp      :=      i;
1891                                                 i :=    i + 3;
1892                                                 oc:='';
1893                                                 chk :=  True;
1894                                         end;
1895                                 end else
1896                                 if      ((not sw) and (Copy(s,i,1) = ',')) or
1897                                                 ((not sw) and (Copy(s,i,1) = '=')) then begin
1898                                         if      ((not Chk) and (AnsiLowerCase(oc) = '</a>')) or
1899                                                         ((Chk) and      (oc = '')) or
1900                                                         ((not Chk) and (al)) then
1901                                         begin
1902                                                 sw      :=      True;
1903                                                 sp      :=      i;
1904                                                 //i :=  i + 1;
1905                                                 oc:='';
1906                                         end;
1907                                 end else
1908                                 if      (sw) then begin
1909                                         sx      :=      Copy(s,i,1);
1910                                         if      (AnsiPos(sx, SN) > 0)   then    begin
1911                                                 No      :=      No      + sx;
1912                                         end else begin
1913                                                 if      (No <> '') and (No <> '-')       then   begin
1914                                                         Add(sp, i, No);
1915                                                         al := True;
1916                                                 end;
1917                                                 sw      :=      False;
1918                                                 //
1919                                                 i := i - 1;
1920                                                 //
1921                                                 No      := '';
1922                                                 oc:='';
1923                                                 //chk :=        False;
1924                                         end;
1925                                 end else begin
1926                                         if      Copy(s,i,1) = '<' then  oc      :=      '';
1927                                         oc      :=      oc + Copy(s,i,1);
1928                                         chk :=  False;
1929                                         al      :=      False;
1930                                 end;
1931                         end;
1932                         mbLeadByte      : begin
1933                                 if      (not sw) and (Copy(s,i,4) = '\81\84\81\84') then        begin
1934                                         sw      :=      True;
1935                                         sp      :=      i;
1936                                         i :=    i + 3;
1937                                         chk :=  True;
1938                                 end else
1939                                 if      (not sw) and (Copy(s,i,2) = '\81\84') then  begin
1940                                         sw      :=      True;
1941                                         sp      :=      i;
1942                                         i :=    i + 1;
1943                                         chk :=  True;
1944                                 end else
1945                                 if      (sw) then begin
1946                                         sx      :=      Copy(s,i,2);
1947                                         if      (AnsiPos(sx, ZN) > 0)   then    begin
1948                                                 No      :=      No      + ZenToHan(sx);
1949                                         end else begin
1950                                                 if      (No <> '') and (No <> '-')      and (No <> '\81|') then   begin
1951                                                         Add(sp, i, No);
1952                                                 end;
1953                                                 sw      :=      False;
1954                                                 i := i - 1;
1955                                                 No      :=      '';
1956                                         end;
1957                                 end else begin
1958                                         oc      :=      '';
1959                                         chk :=  False;
1960                                 end;
1961                                 al      :=      False;
1962                         end;
1963                 end;
1964                 inc(i);
1965                 if      (i > Length(Body))      then    begin
1966                         if      (sw)    then    begin
1967                                 if      (No <> '')      then    Add(sp, i, No);
1968                         end;
1969                         Break;
1970                 end;
1971         end;
1972         for i :=        List.Count - 1  downto  0 do    begin
1973                 if      (AnsiPos('-', PIndex(List[i]).FNo) > 0) then    begin
1974                         st      :=      ChooseString(PIndex(List[i]).FNo, '-', 0);
1975                         et      :=      ChooseString(PIndex(List[i]).FNo, '-', 1);
1976                 end else begin
1977                         st      :=      PIndex(List[i]).FNo;
1978                         et      :=      PIndex(List[i]).FNo;
1979                 end;
1980                 r :=    Copy(r,0, PIndex(List[i]).FIndexFrom - 1) +
1981                                         Format('<a href="../test/read.cgi?%s=%s&%s=%s&%s=%s&%s=%s&%s=%s" target="_blank">',
1982                                                                 [ParamBBS, Bbs, ParamKey, Key, ParamStart, st, ParamTo, et, ParamNoFirst, ParamTrue]) +
1983                                         Copy(r,PIndex(List[i]).FIndexFrom, PIndex(List[i]).FIndexTo - PIndex(List[i]).FIndexFrom) + '</A>' +
1984                                         Copy(r,PIndex(List[i]).FIndexTo,Length(r));
1985                 Dispose(PIndex(List[i]));
1986         end;
1987         List.Free;
1988         Result  :=      r;
1989 end;
1990
1991 (*************************************************************************
1992  * \91S\8ap\81¨\94¼\8ap
1993  * from HotZonu
1994  *************************************************************************)
1995 function TGikoSys.ZenToHan(const s: string): string;
1996 var
1997         Chr: array [0..255] of char;
1998 begin
1999         Windows.LCMapString(
2000                  GetUserDefaultLCID(),
2001 //               LCMAP_HALFWIDTH,
2002                  LCMAP_HALFWIDTH or LCMAP_KATAKANA or LCMAP_LOWERCASE,
2003                  PChar(s),
2004                  Length(s) + 1,
2005                  chr,
2006                  Sizeof(chr)
2007                  );
2008         Result := Chr;
2009 end;
2010
2011 (*************************************************************************
2012  * \91S\8ap\94¼\8ap\82Ð\82ç\82ª\82È\82©\82½\82©\82È\82ð\8bæ\95Ê\82µ\82È\82¢\90¦\82¢Pos
2013  *************************************************************************)
2014 function TGikoSys.VaguePos(const Substr, S: string): Integer;
2015 begin
2016         Result := Pos(ZenToHan(Substr), ZenToHan(S));
2017 end;
2018
2019 function TGikoSys.BoolToInt(b: Boolean): Integer;
2020 begin
2021         Result := IfThen(b, 1, 0);
2022 end;
2023
2024 function TGikoSys.IntToBool(i: Integer): Boolean;
2025 begin
2026         Result := i = 1;
2027 end;
2028
2029 //gzip\82Å\88³\8fk\82³\82ê\82½\82Ì\82ð\96ß\82·
2030 function TGikoSys.GzipDecompress(ResStream: TStream; ContentEncoding: string): string;
2031 const
2032         BUF_SIZE = 4096;
2033 var
2034         GZipStream: TGzipDecompressStream;
2035         TextStream: TStringStream;
2036         buf: array[0..BUF_SIZE - 1] of Byte;
2037         cnt: Integer;
2038         s: string;
2039         i: Integer;
2040 begin
2041         Result := '';
2042         TextStream := TStringStream.Create('');
2043         try
2044 //\83m\81[\83g\83\93\83E\83\93\83`\83E\83B\83\8b\83X2003\91Î\8dô(x-gzip\82Æ\82©\82É\82È\82é\82Ý\82½\82¢)
2045 //              if LowerCase(Trim(ContentEncoding)) = 'gzip' then begin
2046                 if AnsiPos('gzip', LowerCase(Trim(ContentEncoding))) > 0 then begin
2047                         ResStream.Position := 0;
2048                         GZipStream := TGzipDecompressStream.Create(TextStream);
2049                         try
2050                                 repeat
2051                                         FillChar(buf, BUF_SIZE, 0);
2052                                         cnt := ResStream.Read(buf, BUF_SIZE);
2053                                         if cnt > 0 then
2054                                                 GZipStream.Write(buf, BUF_SIZE);
2055                                 until cnt = 0;
2056                         finally
2057                                 GZipStream.Free;
2058                         end;
2059                 end else begin
2060                         ResStream.Position := 0;
2061                         repeat
2062                                 FillChar(buf, BUF_SIZE, 0);
2063                                 cnt := ResStream.Read(buf, BUF_SIZE);
2064                                 if cnt > 0 then
2065                                         TextStream.Write(buf, BUF_SIZE);
2066                         until cnt = 0;
2067                 end;
2068
2069                 //NULL\95\8e\9a\82ð"*"\82É\82·\82é
2070                 s := TextStream.DataString;
2071                 i := Length(s);
2072                 while (i > 0) and (s[i] = #0) do
2073                         Dec(i);
2074                 s := Copy(s, 1, i);
2075
2076                 i := Pos(#0, s);
2077                 while i <> 0 do begin
2078                         s[i] := '*';
2079                         i := Pos(#0, s);
2080                 end;
2081                 Result := s;
2082         finally
2083                 TextStream.Free;
2084         end;
2085 end;
2086
2087 procedure TGikoSys.LoadKeySetting(ActionList: TActionList);
2088 const
2089         STD_SEC = 'KeySetting';
2090 var
2091         i: Integer;
2092         ini: TMemIniFile;
2093         ActionName: string;
2094         ActionKey: Integer;
2095         SecList: TStringList;
2096         Component: TComponent;
2097 begin
2098         if not FileExists(GetConfigDir + KEY_SETTING_FILE_NAME) then
2099                 Exit;
2100         SecList := TStringList.Create;
2101         ini := TMemIniFile.Create(GetConfigDir + KEY_SETTING_FILE_NAME);
2102         try
2103                 ini.ReadSection(STD_SEC, SecList);
2104                 for i := 0 to SecList.Count - 1 do begin
2105                         ActionName := SecList[i];
2106                         ActionKey := ini.ReadInteger(STD_SEC, ActionName, -1);
2107                         if ActionKey <> -1 then begin
2108                                 Component := ActionList.Owner.FindComponent(ActionName);
2109                                 if TObject(Component) is TAction then begin
2110                                         TAction(Component).ShortCut := ActionKey;
2111                                 end;
2112                         end;
2113                 end;
2114         finally
2115                 ini.Free;
2116                 SecList.Free;
2117         end;
2118 end;
2119
2120 procedure TGikoSys.SaveKeySetting(ActionList: TActionList);
2121 const
2122         STD_SEC = 'KeySetting';
2123 var
2124         i: Integer;
2125         ini: TMemIniFile;
2126 begin
2127         ini := TMemIniFile.Create(GetConfigDir + KEY_SETTING_FILE_NAME);
2128         try
2129                 for i := 0 to ActionList.ActionCount - 1 do begin
2130                         if ActionList.Actions[i].Tag = -1 then
2131                                 Continue;
2132                         ini.WriteInteger(STD_SEC, ActionList.Actions[i].Name, TAction(ActionList.Actions[i]).ShortCut);
2133                 end;
2134                 ini.UpdateFile;
2135         finally
2136                 ini.Free;
2137         end;
2138 end;
2139
2140 //
2141 procedure TGikoSys.CreateProcess(const AppPath: string; const Param: string);
2142 var
2143         PI: TProcessInformation;
2144         SI: TStartupInfo;
2145         Path: string;
2146 begin
2147         Path := '"' + AppPath + '"';
2148         if Param <> '' then
2149                 Path := Path + ' ' + Param;
2150
2151         SI.Cb := SizeOf(Si);
2152         SI.lpReserved   := nil;
2153         SI.lpDesktop     := nil;
2154         SI.lpTitle               := nil;
2155         SI.dwFlags               := 0;
2156         SI.cbReserved2 := 0;
2157         SI.lpReserved2 := nil;
2158         SI.dwysize               := 0;
2159         Windows.CreateProcess(nil,
2160                                                                 PChar(Path),
2161                                                                 nil,
2162                                                                 nil,
2163                                                                 False,
2164                                                                 0,
2165                                                                 nil,
2166                                                                 nil,
2167                                                                 SI,
2168                                                                 PI);
2169 end;
2170
2171 procedure TGikoSys.OpenBrowser(URL: string; BrowserType: TGikoBrowserType);
2172 begin
2173         case BrowserType of
2174                 gbtIE:
2175                         HlinkNavigateString(nil, PWideChar(WideString(URL)));
2176                 gbtUserApp, gbtAuto:
2177                         if (Setting.URLApp) and (FileExists(Setting.URLAppFile)) then
2178                                 GikoSys.CreateProcess(Setting.URLAppFile, URL)
2179                         else
2180                                 HlinkNavigateString(nil, PWideChar(WideString(URL)));
2181         end;
2182 end;
2183
2184 function TGikoSys.HTMLDecode(const AStr: String): String;
2185 var
2186         Sp, Rp, Cp, Tp: PChar;
2187         S: String;
2188         I, Code: Integer;
2189         Num: Boolean;
2190 begin
2191         SetLength(Result, Length(AStr));
2192         Sp := PChar(AStr);
2193         Rp := PChar(Result);
2194         //Cp := Sp;
2195         try
2196                 while Sp^ <> #0 do begin
2197                         case Sp^ of
2198                                 '&': begin
2199                                                          //Cp := Sp;
2200                                                          Inc(Sp);
2201                                                          case Sp^ of
2202                                                                  'a': if AnsiStrPos(Sp, 'amp;') = Sp then
2203                                                                                         begin
2204                                                                                                 Inc(Sp, 3);
2205                                                                                                 Rp^ := '&';
2206                                                                                         end;
2207                                                                  'l',
2208                                                                  'g': if (AnsiStrPos(Sp, 'lt;') = Sp) or (AnsiStrPos(Sp, 'gt;') = Sp) then
2209                                                                                         begin
2210                                                                                                 Cp := Sp;
2211                                                                                                 Inc(Sp, 2);
2212                                                                                                 while (Sp^ <> ';') and (Sp^ <> #0) do
2213                                                                                                         Inc(Sp);
2214                                                                                                 if Cp^ = 'l' then
2215                                                                                                         Rp^ := '<'
2216                                                                                                 else
2217                                                                                                         Rp^ := '>';
2218                                                                                         end;
2219                                                                  'q': if AnsiStrPos(Sp, 'quot;') = Sp then
2220                                                                                         begin
2221                                                                                                 Inc(Sp,4);
2222                                                                                                 Rp^ := '"';
2223                                                                                         end;
2224                                                                  '#': begin
2225                                                                                                 Tp := Sp;
2226                                                                                                 Inc(Tp);
2227                                                                                                 Num := IsNumeric(Copy(Tp, 1, 1));
2228                                                                                                 while (Sp^ <> ';') and (Sp^ <> #0) do begin
2229                                                                                                         if (Num) and (not IsNumeric(Copy(Sp, 1, 1))) then
2230                                                                                                                 Break;
2231                                                                                                         Inc(Sp);
2232                                                                                                 end;
2233                                                                                                 SetString(S, Tp, Sp - Tp);
2234                                                                                                 Val(S, I, Code);
2235                                                                                                 Rp^ := Chr((I));
2236                                                                                         end;
2237                                                          //      else
2238                                                                          //raise EConvertError.CreateFmt(sInvalidHTMLEncodedChar,
2239                                                                                  //[Cp^ + Sp^, Cp - PChar(AStr)])
2240                                                          end;
2241                                          end
2242                         else
2243                                 Rp^ := Sp^;
2244                         end;
2245                         Inc(Rp);
2246                         Inc(Sp);
2247                 end;
2248         except
2249 //              on E:EConvertError do
2250 //                      raise EConvertError.CreateFmt(sInvalidHTMLEncodedChar,
2251 //                              [Cp^ + Sp^, Cp - PChar(AStr)])
2252         end;
2253         SetLength(Result, Rp - PChar(Result));
2254 end;
2255
2256 function TGikoSys.GetHRefText(s: string): string;
2257 var
2258         Index: Integer;
2259         Index2: Integer;
2260 begin
2261         Result := '';
2262         s := Trim(s);
2263         if s = '' then
2264                 Exit;
2265
2266         Index := AnsiPos('href', LowerCase(s));
2267         if Index = 0 then
2268                 Exit;
2269         s := Trim(Copy(s, Index + 4, Length(s)));
2270         s := Trim(Copy(s, 2, Length(s)));
2271
2272         //\8en\82ß\82Ì\95\8e\9a\82ª'"'\82È\82ç\8eæ\82è\8f\9c\82­
2273         if Copy(s, 1, 1) = '"' then begin
2274                 s := Trim(Copy(s, 2, Length(s)));
2275         end;
2276
2277         Index := AnsiPos('"', s);
2278         if Index <> 0 then begin
2279                 //'"'\82Ü\82ÅURL\82Æ\82·\82é
2280                 s := Copy(s, 1, Index - 1);
2281         end else begin
2282                 //'"'\82ª\96³\82¯\82ê\82Î\83X\83y\81[\83X\82©">"\82Ì\91\81\82¢\95û\82Ü\82Å\82ðURL\82Æ\82·\82é
2283                 Index := AnsiPos(' ', s);
2284                 Index2 := AnsiPos('>', s);
2285                 if Index = 0 then
2286                         Index := Index2;
2287                 if Index > Index2 then
2288                         Index := Index2;
2289                 if Index <> 0 then
2290                         s := Copy(s, 1, Index - 1)
2291                 else
2292                         //\82±\82ê\88È\8fã\82à\82¤\92m\82ç\82ñ\82Ê
2293                         ;
2294         end;
2295         Result := Trim(s);
2296 end;
2297
2298 //\83z\83X\83g\96¼\82ª\82Q\82\83\82\88\82©\82Ç\82¤\82©\83`\83F\83b\83N\82·\82é
2299 function TGikoSys.Is2chHost(Host: string): Boolean;
2300 const
2301         HOST_NAME: array[0..1] of string = ('2ch.net', 'bbspink.com');
2302 var
2303         i: Integer;
2304 //      Len: Integer;
2305 begin
2306         Result := False;
2307         OutputDebugString(pchar(HOST_NAME[0]));
2308         for i := 0 to Length(HOST_NAME) - 1 do begin
2309 //              Len := Length(HOST_NAME[i]);
2310                 if AnsiPos(HOST_NAME[i], Host) = (Length(Host) - Length(HOST_NAME[i]) + 1) then begin
2311                         Result := True;
2312                         Exit;
2313                 end;
2314         end;
2315 end;
2316
2317 function TGikoSys.Parse2chURL(const url: string; const path: string; const document: string; var BBSID: string; var BBSKey: string): Boolean;
2318 const
2319         READ_PATH: string =                     '/test/read.cgi/';
2320         OLD_READ_PATH: string =         '/test/read.cgi?';
2321         KAKO_PATH: string =                     '/kako/';
2322 var
2323         Index: Integer;
2324         s: string;
2325         SList: TStringList;
2326 begin
2327         BBSID := '';
2328         BBSKey := '';
2329         Result := False;
2330
2331         Index := AnsiPos(READ_PATH, path);
2332         if Index <> 0 then begin
2333                 s := Copy(path, Length(READ_PATH) + 1, Length(path));
2334                 BBSID := GetTokenIndex(s, '/', 0);
2335                 BBSKey := GetTokenIndex(s, '/', 1);
2336                 if BBSKey = '' then
2337                         BBSKey := Document;
2338                 Result := (BBSID <> '') or (BBSKey <> '');
2339                 Exit;
2340         end;
2341         Index := AnsiPos(KAKO_PATH, path);
2342         if Index <> 0 then begin
2343                 s := Copy(path, 2, Length(path));
2344                 BBSID := GetTokenIndex(s, '/', 0);
2345                 if (BBSID = 'log') and (GetTokenIndex(s, '/', 2) = 'kako') then
2346                         BBSID := GetTokenIndex(s, '/', 1);
2347                 BBSKey := ChangeFileExt(Document, '');
2348                 Result := (BBSID <> '') or (BBSKey <> '');
2349                 Exit;
2350         end;
2351         Index := AnsiPos('read.cgi?', URL);
2352         if Index <> 0 then begin
2353                 SList := TStringList.Create;
2354                 try
2355                         try
2356 //                              s := HTMLDecode(Document);
2357                                 ExtractHTTPFields(['?', '&'], [], PChar(URL), SList, False);
2358                                 BBSID := SList.Values['bbs'];
2359                                 BBSKey := SList.Values['key'];
2360                                 Result := (BBSID <> '') or (BBSKey <> '');
2361                                 Exit;
2362                         except
2363                                 Exit;
2364                         end;
2365                 finally
2366                         SList.Free;
2367                 end;
2368         end;
2369 end;
2370
2371 function TGikoSys.Parse2chURL2(URL: string): TPathRec;
2372 var
2373         i: Integer;
2374         s: string;
2375         wk: string;
2376         wkMin: Integer;
2377         wkMax: Integer;
2378         wkInt: Integer;
2379         RStart: Integer;
2380         RLength: Integer;
2381         SList: TStringList;
2382 begin
2383         URL := Trim(LowerCase(URL));
2384         Result.FBBS := '';
2385         Result.FKey := '';
2386         Result.FSt := 0;
2387         Result.FTo := 0;
2388         Result.FFirst := False;
2389         Result.FStBegin := False;
2390         Result.FToEnd := False;
2391         Result.FDone := False;
2392
2393         wkMin := 0;
2394         wkMax := 1;
2395
2396         FAWKStr.RegExp := 'http://.+\.(2ch\.net|bbspink\.com)/';
2397         if FAWKStr.Match(FAWKStr.ProcessEscSeq(URL), RStart, RLength) = 0 then
2398                 Exit;
2399         s := Copy(URL, RStart + RLength - 1, Length(URL));
2400
2401         //\95W\8f\80\8f\91\8e®
2402         //\8dÅ\8cã\82Íl50, 10, 10-20, 10n, 10-20n, -10, 10-, 10n- \82È\82Ç
2403         //http://xxx.2ch.net/test/read.cgi/bbsid/1000000000/
2404         FAWKStr.RegExp := '/test/read.cgi/.+/[0-9]+/.*';
2405         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2406                 s := Copy(s, 15, Length(s));
2407
2408                 SList := TStringList.Create;
2409                 try
2410                         SList.Clear;
2411                         FAWKStr.RegExp := '/';
2412                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 2 then begin
2413                                 Result.FBBS := SList[1];
2414                                 Result.FKey := SList[2];
2415                                 if SList.Count >= 3 then
2416                                         s := SList[3]
2417                                 else
2418                                         s := '';
2419                         end else
2420                                 Exit;
2421
2422                         SList.Clear;
2423                         FAWKStr.LineSeparator := mcls_CRLF;
2424                         FAWKStr.RegExp := '-';
2425                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) = 0 then begin
2426                                 Result.FFirst := True;
2427                         end else begin
2428                                 FAWKStr.RegExp := 'l[0-9]+';
2429                                 if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2430                                         Result.FFirst := True;
2431                                 end else begin
2432                                         for i := 0 to SList.Count - 1 do begin
2433                                                 if Trim(SList[i]) = '' then begin
2434                                                         if i = 0 then
2435                                                                 Result.FStBegin := True;
2436                                                         if i = (SList.Count - 1) then
2437                                                                 Result.FToEnd := True;
2438                                                 end else if IsNumeric(SList[i]) then begin
2439                                                         wkInt := StrToInt(SList[i]);
2440                                                         wkMax := Max(wkMax, wkInt);
2441                                                         if wkMin = 0 then
2442                                                                 wkMin := wkInt
2443                                                         else
2444                                                                 wkMin := Min(wkMin, wkInt);
2445                                                 end else if Trim(SList[i]) = 'n' then begin
2446                                                         Result.FFirst := True;
2447                                                 end else begin
2448                                                         FAWKStr.RegExp := '^n[0-9]+$|^[0-9]+n$';
2449                                                         if FAWKStr.Match(FAWKStr.ProcessEscSeq(SList[i]), RStart, RLength) > 0 then begin
2450                                                                 if Copy(SList[i], 1, 1) = 'n' then
2451                                                                         wkInt := StrToInt(Copy(SList[i], 2, Length(SList[i])))
2452                                                                 else
2453                                                                         wkInt := StrToInt(Copy(SList[i], 1, Length(SList[i]) - 1));
2454                                                                 Result.FFirst := True;
2455                                                                 wkMax := Max(wkMax, wkInt);
2456                                                                 if wkMin = 1 then
2457                                                                         wkMin := wkInt
2458                                                                 else
2459                                                                         wkMin := Min(wkMin, wkInt);
2460                                                         end;
2461                                                 end;
2462                                         end;
2463                                         if Result.FStBegin and (not Result.FToEnd) then
2464                                                 Result.FSt := wkMin
2465                                         else if (not Result.FStBegin) and Result.FToEnd then
2466                                                 Result.FTo := wkMax
2467                                         else if (not Result.FStBegin) and (not Result.FToEnd) then begin
2468                                                 Result.FSt := wkMin;
2469                                                 Result.FTo := wkMax;
2470                                         end;
2471                                         //Result.FSt := wkMin;
2472                                         //Result.FTo := wkMax;
2473                                 end;
2474                         end;
2475                 finally
2476                         SList.Free;
2477                 end;
2478                 Result.FDone := True;
2479                 Exit;
2480         end;
2481
2482         //\90Vkako\8f\91\8e®
2483         //http://server.2ch.net/ITA_NAME/kako/1000/10000/1000000000.html
2484         FAWKStr.RegExp := '/.+/kako/[0-9]+/[0-9]+/[0-9]+\.html';
2485         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2486                 SList := TStringList.Create;
2487                 try
2488                         SList.Clear;
2489                         FAWKStr.RegExp := '/';
2490                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 6 then begin
2491                                 Result.FBBS := SList[1];
2492                                 Result.FKey := ChangeFileExt(SList[5], '');
2493                                 Result.FFirst := True;
2494                         end else
2495                                 Exit;
2496                 finally
2497                         SList.Free;
2498                 end;
2499                 Result.FDone := True;
2500                 Exit;
2501         end;
2502
2503         //\8b\8ckako\8f\91\8e®
2504         //http://server.2ch.net/ITA_NAME/kako/999/999999999.html
2505         FAWKStr.RegExp := '/.+/kako/[0-9]+/[0-9]+\.html';
2506         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2507                 SList := TStringList.Create;
2508                 try
2509                         SList.Clear;
2510                         FAWKStr.RegExp := '/';
2511                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 5 then begin
2512                                 Result.FBBS := SList[1];
2513                                 Result.FKey := ChangeFileExt(SList[4], '');
2514                                 Result.FFirst := True;
2515                         end else
2516                                 Exit;
2517                 finally
2518                         SList.Free;
2519                 end;
2520                 Result.FDone := True;
2521                 Exit;
2522         end;
2523
2524         //log\8by\82Ñlog2\8f\91\8e®
2525         //http://server.2ch.net/log/ITA_NAME/kako/999/999999999.html
2526         //http://server.2ch.net/log2/ITA_NAME/kako/999/999999999.html
2527         FAWKStr.RegExp := '/log2?/.+/kako/[0-9]+/[0-9]+\.html';
2528         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2529                 SList := TStringList.Create;
2530                 try
2531                         SList.Clear;
2532                         FAWKStr.RegExp := '/';
2533                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 6 then begin
2534                                 Result.FBBS := SList[2];
2535                                 Result.FKey := ChangeFileExt(SList[5], '');
2536                                 Result.FFirst := True;
2537                         end else
2538                                 Exit;
2539                 finally
2540                         SList.Free;
2541                 end;
2542                 Result.FDone := True;
2543                 Exit;
2544         end;
2545
2546
2547         //\8b\8cURL\8f\91\8e®
2548         //http://server.2ch.net/test/read.cgi?bbs=ITA_NAME&key=1000000000&st=1&to=5&nofirst=true
2549         FAWKStr.RegExp := '/test/read\.cgi\?';
2550         if FAWKStr.Match(FAWKStr.ProcessEscSeq(s), RStart, RLength) > 0 then begin
2551                 s := Copy(s, 16, Length(s));
2552                 SList := TStringList.Create;
2553                 try
2554                         SList.Clear;
2555                         FAWKStr.RegExp := '&';
2556                         if FAWKStr.Split(FAWKStr.ProcessEscSeq(s), SList) >= 2 then begin
2557                                 Result.FFirst := True;
2558                                 for i := 0 to SList.Count - 1 do begin
2559                                         if Pos('bbs=', SList[i]) = 1 then begin
2560                                                 Result.FBBS := Copy(SList[i], 5, Length(SList[i]));
2561                                         end else if Pos('key=', SList[i]) = 1 then begin
2562                                                 Result.FKey := Copy(SList[i], 5, Length(SList[i]));
2563                                         end else if Pos('st=', SList[i]) = 1 then begin
2564                                                 wk := Copy(SList[i], 4, Length(SList[i]));
2565                                                 if IsNumeric(wk) then
2566                                                         Result.FSt := StrToInt(wk)
2567                                                 else if wk = '' then
2568                                                         Result.FStBegin := True;
2569                                         end else if Pos('to=', SList[i]) = 1 then begin
2570                                                 wk := Copy(SList[i], 4, Length(SList[i]));
2571                                                 if IsNumeric(wk) then
2572                                                         Result.FTo := StrToInt(wk)
2573                                                 else if wk = '' then
2574                                                         Result.FToEnd := True;
2575                                         end else if Pos('nofirst=', SList[i]) = 1 then begin
2576                                                 Result.FFirst := False;
2577                                         end;
2578                                 end;
2579                         end else
2580                                 Exit;
2581                 finally
2582                         SList.Free;
2583                 end;
2584
2585                 if (Result.FBBS <> '') and (Result.FKey <> '') then begin
2586                         Result.FDone := True;
2587                 end;
2588                 Exit;
2589         end;
2590 end;
2591
2592 procedure TGikoSys.ParseURI(var URL, Protocol, Host, Path, Document, Port, Bookmark: string);
2593 var
2594         URI: TIdURI;
2595 begin
2596         Protocol := '';
2597         Host := '';
2598         Path := '';
2599         Document := '';
2600         Port := '';
2601         Bookmark := '';
2602         URI := TIdURI.Create(URL);
2603         try
2604                 Protocol := URI.Protocol;
2605                 Host := URI.Host;
2606                 Path := URI.Path;
2607                 Document := URI.Document;
2608                 Port := URI.Port;
2609                 Bookmark := URI.Bookmark;
2610         finally
2611                 URI.Free;
2612         end;
2613 end;
2614
2615 function TGikoSys.GetVersionBuild: Integer;
2616 var
2617         FixedFileInfo: PVSFixedFileInfo;
2618         VersionHandle, VersionSize: DWORD;
2619         pVersionInfo: Pointer;
2620         ItemLen : UInt;
2621         AppFile: string;
2622 begin
2623         Result := 0;
2624         AppFile := Application.ExeName;
2625         VersionSize := GetFileVersionInfoSize(pChar(AppFile), VersionHandle);
2626         if VersionSize = 0 then
2627                 Exit;
2628         GetMem(pVersionInfo, VersionSize);
2629         try
2630                 if GetFileVersionInfo(PChar(AppFile),VersionHandle,VersionSize, pVersionInfo) then
2631                         if VerQueryValue(pVersionInfo, '\', Pointer(FixedFileInfo), ItemLen) then
2632                                 Result := LOWORD(FixedFileInfo^.dwFileVersionLS);
2633         finally
2634                 FreeMem(pVersionInfo, VersionSize);
2635         end;
2636 end;
2637
2638 initialization
2639         GikoSys := TGikoSys.Create;
2640
2641 finalization
2642         if GikoSys <> nil then begin
2643                 GikoSys.Free;
2644                 GikoSys := nil;
2645         end;
2646 end.