OSDN Git Service

タブの自動保存で,タブがないときを保存するように修正
[gikonavigoeson/gikonavi.git] / NewBoard.pas
1 unit NewBoard;
2
3 interface
4
5 uses
6         Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
7         Dialogs, IdAntiFreezeBase, IdAntiFreeze, IdBaseComponent, IdComponent,
8         IdTCPConnection, IdTCPClient, IdHTTP, IDException, StdCtrls, IniFiles,
9         GikoSystem, BoardGroup;
10
11 type
12         TNewBoardItem = record
13                 FResponseCode: Integer;
14                 FContent: string;
15         end;
16
17         TNewBoardDialog = class(TForm)
18                 Label1: TLabel;
19                 MessageMemo: TMemo;
20                 UpdateButton: TButton;
21         CloseButton: TButton;
22                 Indy: TIdHTTP;
23                 IdAntiFreeze: TIdAntiFreeze;
24                 StopButton: TButton;
25         BoardURLComboBox: TComboBox;
26         Label13: TLabel;
27         EditIgnoreListsButton: TButton;
28         Label2: TLabel;
29                 procedure UpdateButtonClick(Sender: TObject);
30                 procedure StopButtonClick(Sender: TObject);
31                 procedure CloseButtonClick(Sender: TObject);
32                 procedure FormCreate(Sender: TObject);
33         procedure EditIgnoreListsButtonClick(Sender: TObject);
34         procedure FormClose(Sender: TObject; var Action: TCloseAction);
35         private
36                 { Private \90é\8c¾ }
37                 IgnoreLists : TStringList;
38                 FAbort: Boolean;
39                 function BoardDownload(const URL: String): TNewBoardItem;
40                 function BoardLoardFromFile(const FilePath: String): String;
41                 function UpdateURL(s: string): boolean;
42                 procedure SetIgnoreCategory(b: boolean);
43                 procedure EditIgnoreList(Sender: TObject);
44                 procedure UpdateIgnoreList(Sender: TObject);
45         public
46                 { Public \90é\8c¾ }
47         end;
48
49 var
50         NewBoardDialog: TNewBoardDialog;
51
52
53 implementation
54
55 uses Giko, IdHeaderList, MojuUtils, GikoDataModule;
56
57 {$R *.dfm}
58
59 procedure TNewBoardDialog.UpdateButtonClick(Sender: TObject);
60 var
61         Item: TNewBoardItem;
62         URL : String;
63         protocol, host, path, document, port, bookmark: String;
64 begin
65         try
66                 MessageMemo.Clear;
67                 GikoSys.Setting.BoardURLSelected := BoardURLComboBox.ItemIndex + 1;
68                 FAbort := False;
69                 UpdateButton.Enabled := False;
70                 StopButton.Enabled := True;
71                 CloseButton.Enabled := False;
72                 EditIgnoreListsButton.Enabled := False;
73                 URL := BoardURLComboBox.Text;
74                 GikoSys.ParseURI(URL, protocol, host, path, document, port, bookmark);
75                 if (protocol = '') then begin
76                         Item.FContent := BoardLoardFromFile(URL);
77                 end else if (AnsiPos('http', protocol) > 0) then begin
78                         Item := BoardDownload(URL);
79                 end;
80                 StopButton.Enabled := False;
81                 if FAbort then
82                         Exit;
83                 if Item.FContent <> '' then begin
84                         GikoDM.TabsOpenAction.Tag := 1;
85                         GikoDM.TabsSaveAction.Execute;
86                         if (UpdateURL(Item.FContent)) then begin
87                                 GikoForm.ReloadBBS;
88                         end;
89                         GikoDM.TabsOpenAction.Tag := 0;
90                 end else
91                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ª\8e¸\94s\82µ\82Ü\82µ\82½[' + IntToStr(Item.FResponseCode) + ']');
92         finally
93                 UpdateButton.Enabled := True;
94                 StopButton.Enabled := False;
95                 CloseButton.Enabled := True;
96                 EditIgnoreListsButton.Enabled := True;
97         end;
98 end;
99
100 procedure TNewBoardDialog.StopButtonClick(Sender: TObject);
101 begin
102         FAbort := True;
103         Indy.DisconnectSocket;
104 end;
105
106 procedure TNewBoardDialog.CloseButtonClick(Sender: TObject);
107 begin
108         Close;
109 end;
110
111 function TNewBoardDialog.BoardDownload(const URL: String): TNewBoardItem;
112 var
113         Stream: TMemoryStream;
114         s: string;
115         i: Integer;
116 begin
117         Indy.Request.Clear;
118         Indy.RecvBufferSize := Gikosys.Setting.RecvBufferSize;
119         Indy.ProxyParams.BasicAuthentication := False;
120         if GikoSys.Setting.ReadProxy then begin
121                 if GikoSys.Setting.ProxyProtocol then
122                         Indy.ProtocolVersion := pv1_1
123                 else
124                         Indy.ProtocolVersion := pv1_0;
125                 Indy.ProxyParams.ProxyServer := GikoSys.Setting.ReadProxyAddress;
126                 Indy.ProxyParams.ProxyPort := GikoSys.Setting.ReadProxyPort;
127                 Indy.ProxyParams.ProxyUsername := GikoSys.Setting.ReadProxyUserID;
128                 Indy.ProxyParams.ProxyPassword := GikoSys.Setting.ReadProxyPassword;
129                 if GikoSys.Setting.ReadProxyUserID <> '' then
130                         Indy.ProxyParams.BasicAuthentication := True;
131         end else begin
132                 if GikoSys.Setting.Protocol then
133                         Indy.ProtocolVersion := pv1_1
134                 else
135                         Indy.ProtocolVersion := pv1_0;
136                 Indy.ProxyParams.ProxyServer := '';
137                 Indy.ProxyParams.ProxyPort := 80;
138                 Indy.ProxyParams.ProxyUsername := '';
139                 Indy.ProxyParams.ProxyPassword := '';
140         end;
141         //URL := GikoSys.Setting.BoardURL2ch;
142         //URL := BoardURLComboBox.Text;
143         Indy.Request.UserAgent := GikoSys.GetUserAgent;
144         Indy.Request.Referer := '';
145         Indy.Request.AcceptEncoding := 'gzip';
146
147         Indy.Request.CacheControl := 'no-cache';
148         Indy.Request.CustomHeaders.Add('Pragma: no-cache');
149
150 //      s := '';
151         Stream := TMemoryStream.Create;
152         try
153                 try
154                         MessageMemo.Lines.Add('\88È\89º\82Ì\8fê\8f\8a\82©\82ç\8eæ\93¾\82µ\82Ü\82·');
155                         //MessageMemo.Lines.Add(GikoSys.Setting.BoardURL2ch);
156                         MessageMemo.Lines.Add(URL);
157                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ð\8aJ\8en\82µ\82Ü\82·');
158                         IdAntiFreeze.Active := True;
159                         try
160                                 Indy.Get(URL, Stream);
161                         finally
162                                 IdAntiFreeze.Active := False;
163                         end;
164                         Result.FContent := GikoSys.GzipDecompress(Stream, Indy.Response.ContentEncoding);
165                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ª\8a®\97¹\82µ\82Ü\82µ\82½');
166                 except
167                         on E: EIdConnectException do begin
168                                 MessageMemo.Lines.Add('');
169                                 MessageMemo.Lines.Add('\90Ú\91±\82ª\8e¸\94s\82µ\82Ü\82µ\82½ \89ñ\90ü\82â\83v\83\8d\83L\83V\81AFW\82Ì\8fó\91Ô\82ð\92²\82×\82Ä\82­\82¾\82³\82¢');
170                                 MessageMemo.Lines.Add('FW\82ð\93ü\82ê\82Ä\82¢\82é\90l\82Í\90Ý\92è\82ð\8am\94F\82µ\82Ä\82­\82¾\82³\82¢');
171                                 MessageMemo.Lines.Add('NEC\82ÌPC\82Ì\8fê\8d\87\82ÍPC GATE\82ª\88«\82³\82ð\82µ\82Ä\82¢\82é\89Â\94\\90«\82ª\8d\82\82¢\82Å\82·');
172                                 MessageMemo.Lines.Add('Message: ' + E.Message);
173                         end;
174                         on E: Exception do begin
175                                 if FAbort then
176                                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ð\92\86\92f\82µ\82Ü\82µ\82½')
177                                 else begin
178                                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ª\8e¸\94s\82µ\82Ü\82µ\82½');
179                                         MessageMemo.Lines.Add('ResponseCode: ' + IntToStr(Indy.ResponseCode));
180                                         MessageMemo.Lines.Add('Message: ' + E.Message);
181                                         MessageMemo.Lines.Add('------------------------');
182                                         for i := 0 to Indy.Response.RawHeaders.Count - 1 do begin
183                                                 s := Indy.Response.RawHeaders.Names[i];
184                                                 s := s + ': ' + Indy.Response.RawHeaders.Values[s];
185                                                 MessageMemo.Lines.Add(s);
186                                         end;
187                                         MessageMemo.Lines.Add('------------------------');
188                                 end;
189                         end;
190                 end;
191                 Result.FResponseCode := Indy.ResponseCode;
192         finally
193                 Stream.Free;
194         end;
195 end;
196
197 function TNewBoardDialog.UpdateURL(s: string): boolean;
198 var
199         i: Integer;
200         idx: Integer;
201         idx1: Integer;
202         idx2: Integer;
203         tmp: string;
204         URL: string;
205         Title: string;
206         cate: string;
207         Board: TBoard;
208         Change: Boolean;
209         Ignore: Boolean;
210         ini: TMemIniFile;
211         oldURLs : TStringList;
212         newURLs : TStringList;
213 begin
214         Change := False;
215         MessageMemo.Lines.Add('\90V\94Â\81A\94ÂURL\95Ï\8dX\83`\83F\83b\83N\82ð\8aJ\8en\82µ\82Ü\82·');
216         MessageMemo.Lines.Add('');
217         s := CustomStringReplace(s, '<B>', '<b>', true);
218         s := CustomStringReplace(s, '<BR>', '<br>', true);
219         s := CustomStringReplace(s, '</B>', '</b>', true);
220         s := CustomStringReplace(s, '<A HREF', '<a href', true);
221         s := CustomStringReplace(s, '</A', '</a', true);
222         cate := '';
223
224         oldURLs := TStringList.Create;
225         newURLs := TStringList.Create;
226
227         try
228
229                 GikoSys.ForceDirectoriesEx(GikoSys.GetConfigDir);
230                 ini := TMemIniFile.Create(GikoSys.GetBoardFileName);
231                 try
232                         //
233                         //\8dí\8f\9c\83I\83v\83V\83\87\83\93\82ª\91I\91ð\82³\82ê\82Ä\82¢\82é\8fê\8d\87\82Í\83N\83\8a\83A
234
235                         ini.Clear;
236
237                         while True do begin
238                                 idx1 := AnsiPos('<b>', s);
239                                 idx2 := AnsiPos('<a', s);
240                                 if (idx1 = 0) and (idx2 = 0) then Break;
241
242                                 if idx1 < idx2 then begin
243                                         //<br>
244                                         idx := AnsiPos('</b>', s);
245                                         if idx = 0 then begin
246                                                 s := Copy(s, idx1 + 4, Length(s));
247                                                 continue;
248                                         end;
249                                         tmp := Copy(s, idx1, (idx - idx1) + 4);
250                                         tmp := CustomStringReplace(tmp, '<b>', '');
251                                         tmp := CustomStringReplace(tmp, '</b>', '');
252                                         Ignore := false;
253                                         for i := 0 to IgnoreLists.Count - 1 do begin
254                                                 if tmp = Trim(IgnoreLists[i]) then begin
255                                                         cate := '';
256                                                         s := Copy(s, idx + 5, Length(s));
257                                                         Ignore := True;
258                                                         break;
259                                                 end;
260                                         end;
261                                         if Ignore then
262                                                 Continue;
263                                         {
264                                         if (tmp = '\82¨\82·\82·\82ß') or
265                                                  (tmp = '\93Á\95Ê\8aé\89æ') or
266                                                  (tmp = '\82Ü\82¿\82a\82a\82r') or
267                                                  (tmp = '\83`\83\83\83b\83g') or
268                                                  (tmp = '\82¨\8aG\82©\82«') or
269                                                  (tmp = '\89^\89c\88Ä\93à') or
270                                                  (tmp = '\83c\81[\83\8b\97Þ') or
271                                                  (tmp = '\91¼\82Ì\83T\83C\83g') then begin
272                                                 cate := '';
273                                                 s := Copy(s, idx + 5, Length(s));
274                                                 Continue;
275                                         end;
276                                         }
277                                         s := Copy(s, idx + 5, Length(s));
278                                         cate := tmp;
279                                 end else begin
280                                         //<a href=
281                                         if cate = '' then begin
282                                                 s := Copy(s, idx2 + 2, Length(s));
283                                         end else begin
284                                                 idx := AnsiPos('</a>', s);
285                                                 tmp := Copy(s, idx2, (idx - idx2) + 4);
286                                                 tmp := CustomStringReplace(tmp, '<a href=', '');
287                                                 tmp := CustomStringReplace(tmp, '</a>', '');
288                         tmp := CustomStringReplace(tmp, 'TARGET=_blank', '');
289                                                 i := AnsiPos('>', tmp);
290                                                 if i <> 0 then begin
291                                                         URL := Copy(tmp, 1, i - 1);
292                                                         Title := Copy(tmp, i + 1, Length(tmp));
293                             Board := BBSs[ 0 ].FindBoardFromTitle(Title);
294                             if Board = nil then begin
295                                 MessageMemo.Lines.Add('\90V\94Â\92Ç\89Á\81u' + Title + '(' + URL + ')\81v');
296                                 ini.WriteString(cate, Title, URL);
297                                 Change := True;
298                             end else begin
299                                 if Board.URL <> URL then begin
300                                         MessageMemo.Lines.Add('URL\95Ï\8dX\81u' + Board.Title + '(' + URL +')\81v');
301                                     ini.WriteString(cate, Title, URL);
302                                     oldURLs.Add(Board.URL);
303                                     newURLs.Add(URL);
304                                     Change := True;
305                                 end else begin
306                                         ini.WriteString(cate, Title, URL);
307                                 end;
308                             end;
309                                                 end else begin
310                                                         s := Copy(s, idx2 + 2, Length(s));
311                                                         Continue;
312                                                 end;
313                                                 s := Copy(s, idx + 5, Length(s));
314                                         end;
315                                 end;
316                         end;
317                 finally
318                         if Change then
319                                 ini.UpdateFile;
320                         ini.Free;
321                 end;
322                 MessageMemo.Lines.Add('');
323             if Change then begin
324             GikoForm.FavoritesURLReplace(oldURLs, newURLs);
325             GikoForm.RoundListURLReplace(oldURLs, newURLs);
326             GikoForm.TabFileURLReplace(oldURLs, newURLs);
327                         MessageMemo.Lines.Add('\90V\94Â\81A\94ÂURL\95Ï\8dX\83`\83F\83b\83N\82ª\8a®\97¹\82µ\82Ü\82µ\82½');
328                         MessageMemo.Lines.Add('\81u\95Â\82\82é\81v\83{\83^\83\93\82ð\89\9f\82µ\82Ä\82­\82¾\82³\82¢');
329                 end else
330                         MessageMemo.Lines.Add('\90V\94Â\81A\94ÂURL\95Ï\8dX\82Í \82 \82è\82Ü\82¹\82ñ\82Å\82µ\82½');
331     finally
332         oldURLs.Free;
333         newURLs.Free;
334         end;
335         Result := Change;
336 end;
337
338 procedure TNewBoardDialog.FormCreate(Sender: TObject);
339 begin
340         StopButton.Enabled := False;
341         BoardURLComboBox.Clear;
342         BoardURLComboBox.Items.AddStrings(GikoSys.Setting.BoardURLs);
343         try
344                 BoardURLComboBox.ItemIndex := GikoSys.Setting.BoardURLSelected - 1;
345         except
346                 BoardURLComboBox.ItemIndex := 0;
347         end;
348         SetIgnoreCategory(false);
349 end;
350 //\94Â\8dX\90V\82Ì\8f\9c\8aO\83J\83e\83S\83\8a\83\8a\83X\83g\82Ì\93o\98^
351 {['\82¨\82·\82·\82ß', '\93Á\95Ê\8aé\89æ', '\82Ü\82¿\82a\82a\82r', '\83`\83\83\83b\83g', '\82¨\8aG\82©\82«', '\89^\89c\88Ä\93à', '\83c\81[\83\8b\97Þ', '\91¼\82Ì\83T\83C\83g']}
352 procedure TNewBoardDialog.SetIgnoreCategory(b: boolean);
353 begin
354         IgnoreLists := TStringList.Create;
355         if not( FileExists(GikoSys.Setting.GetIgnoreFileName) ) or ( b )then begin
356                 IgnoreLists.Add('\82¨\82·\82·\82ß');
357                 IgnoreLists.Add('\93Á\95Ê\8aé\89æ');
358                 IgnoreLists.Add('\82Ü\82¿\82a\82a\82r');
359                 IgnoreLists.Add('\83`\83\83\83b\83g');
360                 IgnoreLists.Add('\82¨\8aG\82©\82«');
361                 IgnoreLists.Add('\89^\89c\88Ä\93à');
362                 IgnoreLists.Add('\83c\81[\83\8b\97Þ');
363                 IgnoreLists.Add('\91¼\82Ì\83T\83C\83g');
364         end else begin
365                 try
366                         IgnoreLists.LoadFromFile(GikoSys.Setting.GetIgnoreFileName);
367                 except
368                         IgnoreLists.Free;
369                         SetIgnoreCategory(true);
370                 end;
371         end;
372 end;
373
374 procedure TNewBoardDialog.EditIgnoreListsButtonClick(Sender: TObject);
375 begin
376         EditIgnoreList(Sender);
377         EditIgnoreListsButton.OnClick := UpdateIgnoreList;
378 end;
379 procedure TNewBoardDialog.EditIgnoreList(Sender: TObject);
380 var
381         i: Integer;
382 begin
383         EditIgnoreListsButton.Caption := '\8f\9c\8aO\83J\83e\83S\83\8a\81[\8dX\90V';
384         Label2.Caption := '\8ae\82P\8ds\82É\83J\83e\83S\83\8a\96¼\82ð\8bL\93ü\82µ\82Ä\82­\82¾\82³\82¢\81B\81i\89ü\8ds\82ÍCtrl+Enter\81j';
385         UpdateButton.Enabled := false;
386         //MessageMemo.ReadOnly := false;
387         MessageMemo.Clear;
388         for i := 0 to IgnoreLists.Count - 1 do
389                 MessageMemo.Lines.Add(IgnoreLists[i]);
390 end;
391 procedure TNewBoardDialog.UpdateIgnoreList(Sender: TObject);
392 var
393         i: Integer;
394 begin
395         Label2.Caption := '';
396     UpdateButton.Enabled := true;
397         EditIgnoreListsButton.Caption := '\8f\9c\8aO\83J\83e\83S\83\8a\81[\95Ò\8fW';
398         IgnoreLists.Clear;
399         for i := 0 to MessageMemo.Lines.Count - 1 do
400                 IgnoreLists.Add(MessageMemo.Lines[i]);
401         IgnoreLists.SaveToFile(GikoSys.Setting.GetIgnoreFileName);
402         IgnoreLists.Free;
403         SetIgnoreCategory(false);
404         //MessageMemo.ReadOnly := true;
405         MessageMemo.Clear;
406         EditIgnoreListsButton.OnClick := EditIgnoreListsButtonClick;
407 end;
408
409 procedure TNewBoardDialog.FormClose(Sender: TObject;
410   var Action: TCloseAction);
411 begin
412         IgnoreLists.Free;
413 end;
414 //! \83\8d\81[\83J\83\8b\83t\83@\83C\83\8b\82ð\83\8d\81[\83h\82·\82é
415 function TNewBoardDialog.BoardLoardFromFile(const FilePath: String): String;
416 var
417         html : TStringList;
418 begin
419         Result := '';
420         // \83t\83@\83C\83\8b\82ª\91\8dÝ\82µ\82Ä\82¢\82é\82©\83`\83F\83b\83N
421         if (FileExists(FilePath)) then begin
422                 html := TStringList.Create();
423                 try
424                         html.LoadFromFile(FilePath);
425                         Result := html.Text;
426                 finally
427                         html.Free;
428                 end;
429         end;
430 end;
431 end.