OSDN Git Service

ハ゛タ50(1.50.1.599)までの変更分をマージ
[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, MojuUtils;
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: TNewBoardItem;
40                 procedure UpdateURL(s: string);
41                 procedure SetIgnoreCategory(b: boolean);
42                 procedure EditIgnoreList(Sender: TObject);
43                 procedure UpdateIgnoreList(Sender: TObject);
44         public
45                 { Public \90é\8c¾ }
46         end;
47
48 var
49         NewBoardDialog: TNewBoardDialog;
50
51
52 implementation
53
54 uses Giko, IdHeaderList;
55
56 {$R *.dfm}
57
58 procedure TNewBoardDialog.UpdateButtonClick(Sender: TObject);
59 var
60         Item: TNewBoardItem;
61 begin
62         try
63         GikoSys.Setting.BoardURLSelected := BoardURLComboBox.ItemIndex + 1;
64                 FAbort := False;
65                 UpdateButton.Enabled := False;
66                 StopButton.Enabled := True;
67                 CloseButton.Enabled := False;
68                 EditIgnoreListsButton.Enabled := False;
69                 Item := BoardDownload;
70                 StopButton.Enabled := False;
71                 if FAbort then
72                         Exit;
73                 if Item.FContent <> '' then begin
74                         GikoForm.TabsSaveAction.Tag := 1;
75                         GikoForm.TabsOpenAction.Tag := 1;
76                         GikoForm.TabsSaveAction.Execute;
77                         UpdateURL(Item.FContent);
78                         GikoForm.ReloadBBS;
79                         GikoForm.TabsSaveAction.Tag := 0;
80                         GikoForm.TabsOpenAction.Tag := 0;
81                 end else
82                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ª\8e¸\94s\82µ\82Ü\82µ\82½[' + IntToStr(Item.FResponseCode) + ']');
83         finally
84                 UpdateButton.Enabled := True;
85                 StopButton.Enabled := False;
86                 CloseButton.Enabled := True;
87                 EditIgnoreListsButton.Enabled := True;
88         end;
89 end;
90
91 procedure TNewBoardDialog.StopButtonClick(Sender: TObject);
92 begin
93         FAbort := True;
94         Indy.DisconnectSocket;
95 end;
96
97 procedure TNewBoardDialog.CloseButtonClick(Sender: TObject);
98 begin
99         Close;
100 end;
101
102 function TNewBoardDialog.BoardDownload: TNewBoardItem;
103 var
104         URL: string;
105         Stream: TMemoryStream;
106         s: string;
107         i: Integer;
108 begin
109         MessageMemo.Clear;
110         Indy.Request.Clear;
111         Indy.RecvBufferSize := Gikosys.Setting.RecvBufferSize;
112         Indy.ProxyParams.BasicAuthentication := False;
113         if GikoSys.Setting.ReadProxy then begin
114                 if GikoSys.Setting.ProxyProtocol then
115                         Indy.ProtocolVersion := pv1_1
116                 else
117                         Indy.ProtocolVersion := pv1_0;
118                 Indy.ProxyParams.ProxyServer := GikoSys.Setting.ReadProxyAddress;
119                 Indy.ProxyParams.ProxyPort := GikoSys.Setting.ReadProxyPort;
120                 Indy.ProxyParams.ProxyUsername := GikoSys.Setting.ReadProxyUserID;
121                 Indy.ProxyParams.ProxyPassword := GikoSys.Setting.ReadProxyPassword;
122                 if GikoSys.Setting.ReadProxyUserID <> '' then
123                         Indy.ProxyParams.BasicAuthentication := True;
124         end else begin
125                 if GikoSys.Setting.Protocol then
126                         Indy.ProtocolVersion := pv1_1
127                 else
128                         Indy.ProtocolVersion := pv1_0;
129                 Indy.ProxyParams.ProxyServer := '';
130                 Indy.ProxyParams.ProxyPort := 80;
131                 Indy.ProxyParams.ProxyUsername := '';
132                 Indy.ProxyParams.ProxyPassword := '';
133         end;
134         //URL := GikoSys.Setting.BoardURL2ch;
135     URL := BoardURLComboBox.Text;
136         Indy.Request.UserAgent := GikoSys.GetUserAgent;
137         Indy.Request.Referer := '';
138         Indy.Request.AcceptEncoding := 'gzip';
139
140         Indy.Request.CacheControl := 'no-cache';
141         Indy.Request.CustomHeaders.Add('Pragma: no-cache');
142
143 //      s := '';
144         Stream := TMemoryStream.Create;
145         try
146                 try
147                         MessageMemo.Lines.Add('\88È\89º\82Ì\8fê\8f\8a\82©\82ç\8eæ\93¾\82µ\82Ü\82·');
148                         //MessageMemo.Lines.Add(GikoSys.Setting.BoardURL2ch);
149             MessageMemo.Lines.Add(URL);
150                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ð\8aJ\8en\82µ\82Ü\82·');
151                         Indy.Get(URL, Stream);
152                         Result.FContent := GikoSys.GzipDecompress(Stream, Indy.Response.ContentEncoding);
153                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ª\8a®\97¹\82µ\82Ü\82µ\82½');
154                 except
155                         on E: EIdConnectException do begin
156                                 MessageMemo.Lines.Add('');
157                                 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¢');
158                                 MessageMemo.Lines.Add('FW\82ð\93ü\82ê\82Ä\82¢\82é\90l\82Í\90Ý\92è\82ð\8am\94F\82µ\82Ä\82­\82¾\82³\82¢');
159                                 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·');
160                                 MessageMemo.Lines.Add('Message: ' + E.Message);
161                         end;
162                         on E: Exception do begin
163                                 if FAbort then
164                                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ð\92\86\92f\82µ\82Ü\82µ\82½')
165                                 else begin
166                                         MessageMemo.Lines.Add('\83_\83E\83\93\83\8d\81[\83h\82ª\8e¸\94s\82µ\82Ü\82µ\82½');
167                                         MessageMemo.Lines.Add('ResponseCode: ' + IntToStr(Indy.ResponseCode));
168                                         MessageMemo.Lines.Add('Message: ' + E.Message);
169                                         MessageMemo.Lines.Add('------------------------');
170                                         for i := 0 to Indy.Response.RawHeaders.Count - 1 do begin
171                                                 s := Indy.Response.RawHeaders.Names[i];
172                                                 s := s + ': ' + Indy.Response.RawHeaders.Values[s];
173                                                 MessageMemo.Lines.Add(s);
174                                         end;
175                                         MessageMemo.Lines.Add('------------------------');
176                                 end;
177                         end;
178                 end;
179                 Result.FResponseCode := Indy.ResponseCode;
180         finally
181                 Stream.Free;
182         end;
183 end;
184
185 procedure TNewBoardDialog.UpdateURL(s: string);
186 var
187         i: Integer;
188 //      j: Integer;
189         idx: Integer;
190         idx1: Integer;
191         idx2: Integer;
192         tmp: string;
193         URL: string;
194         Title: string;
195         cate: string;
196         Board: TBoard;
197         Change: Boolean;
198         Ignore: Boolean;
199         ini: TMemIniFile;
200         oldURLs : TStringList;
201         newURLs : TStringList;
202 begin
203         Change := False;
204         MessageMemo.Lines.Add('\90V\94Â\81A\94ÂURL\95Ï\8dX\83`\83F\83b\83N\82ð\8aJ\8en\82µ\82Ü\82·');
205         MessageMemo.Lines.Add('');
206         s := CustomStringReplace(s, '<B>', '<b>', true);
207         s := CustomStringReplace(s, '<BR>', '<br>', true);
208         s := CustomStringReplace(s, '</B>', '</b>', true);
209         s := CustomStringReplace(s, '<A HREF', '<a href', true);
210         s := CustomStringReplace(s, '</A', '</a', true);
211         cate := '';
212
213         oldURLs := TStringList.Create;
214         newURLs := TStringList.Create;
215
216         try
217
218                 GikoSys.ForceDirectoriesEx(GikoSys.GetConfigDir);
219                 ini := TMemIniFile.Create(GikoSys.GetBoardFileName);
220                 try
221                         //
222                         //\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
223
224                         ini.Clear;
225
226                         while True do begin
227                                 idx1 := AnsiPos('<b>', s);
228                                 idx2 := AnsiPos('<a', s);
229                                 if (idx1 = 0) and (idx2 = 0) then Break;
230
231                                 if idx1 < idx2 then begin
232                                         //<br>
233                                         idx := AnsiPos('</b>', s);
234                                         if idx = 0 then begin
235                                                 s := Copy(s, idx1 + 4, Length(s));
236                                                 continue;
237                                         end;
238                                         tmp := Copy(s, idx1, (idx - idx1) + 4);
239                                         tmp := CustomStringReplace(tmp, '<b>', '');
240                                         tmp := CustomStringReplace(tmp, '</b>', '');
241                                         Ignore := false;
242                                         for i := 0 to IgnoreLists.Count - 1 do begin
243                                                 if tmp = Trim(IgnoreLists[i]) then begin
244                                                         cate := '';
245                                                         s := Copy(s, idx + 5, Length(s));
246                                                         Ignore := True;
247                                                         break;
248                                                 end;
249                                         end;
250                                         if Ignore then
251                                                 Continue;
252                                         {
253                                         if (tmp = '\82¨\82·\82·\82ß') or
254                                                  (tmp = '\93Á\95Ê\8aé\89æ') or
255                                                  (tmp = '\82Ü\82¿\82a\82a\82r') or
256                                                  (tmp = '\83`\83\83\83b\83g') or
257                                                  (tmp = '\82¨\8aG\82©\82«') or
258                                                  (tmp = '\89^\89c\88Ä\93à') or
259                                                  (tmp = '\83c\81[\83\8b\97Þ') or
260                                                  (tmp = '\91¼\82Ì\83T\83C\83g') then begin
261                                                 cate := '';
262                                                 s := Copy(s, idx + 5, Length(s));
263                                                 Continue;
264                                         end;
265                                         }
266                                         s := Copy(s, idx + 5, Length(s));
267                                         cate := tmp;
268                                 end else begin
269                                         //<a href=
270                                         if cate = '' then begin
271                                                 s := Copy(s, idx2 + 2, Length(s));
272                                         end else begin
273                                                 idx := AnsiPos('</a>', s);
274                                                 tmp := Copy(s, idx2, (idx - idx2) + 4);
275                                                 tmp := CustomStringReplace(tmp, '<a href=', '');
276                                                 tmp := CustomStringReplace(tmp, '</a>', '');
277                         tmp := CustomStringReplace(tmp, 'TARGET=_blank', '');
278                                                 i := AnsiPos('>', tmp);
279                                                 if i <> 0 then begin
280                                                         URL := Copy(tmp, 1, i - 1);
281                                                         Title := Copy(tmp, i + 1, Length(tmp));
282                             Board := BBSs[ 0 ].FindBoardFromTitle(Title);
283                             if Board = nil then begin
284                                 MessageMemo.Lines.Add('\90V\94Â\92Ç\89Á\81u' + Title + '(' + URL + ')\81v');
285                                 ini.WriteString(cate, Title, URL);
286                                 Change := True;
287                             end else begin
288                                 if Board.URL <> URL then begin
289                                         MessageMemo.Lines.Add('URL\95Ï\8dX\81u' + Board.Title + '(' + URL +')\81v');
290                                     ini.WriteString(cate, Title, URL);
291                                     oldURLs.Add(Board.URL);
292                                     newURLs.Add(URL);
293                                     Change := True;
294                                 end else begin
295                                         ini.WriteString(cate, Title, URL);
296                                 end;
297                             end;
298                                                 end else begin
299                                                         s := Copy(s, idx2 + 2, Length(s));
300                                                         Continue;
301                                                 end;
302                                                 s := Copy(s, idx + 5, Length(s));
303                                         end;
304                                 end;
305                         end;
306                 finally
307                         if Change then
308                                 ini.UpdateFile;
309                         ini.Free;
310                 end;
311                 MessageMemo.Lines.Add('');
312             if Change then begin
313             GikoForm.FavoritesURLReplace(oldURLs, newURLs);
314             GikoForm.RoundListURLReplace(oldURLs, newURLs);
315             GikoForm.TabFileURLReplace(oldURLs, newURLs);
316                         MessageMemo.Lines.Add('\90V\94Â\81A\94ÂURL\95Ï\8dX\83`\83F\83b\83N\82ª\8a®\97¹\82µ\82Ü\82µ\82½');
317                         MessageMemo.Lines.Add('\81u\95Â\82\82é\81v\83{\83^\83\93\82ð\89\9f\82µ\82Ä\82­\82¾\82³\82¢');
318                 end else
319                         MessageMemo.Lines.Add('\90V\94Â\81A\94ÂURL\95Ï\8dX\82Í \82 \82è\82Ü\82¹\82ñ\82Å\82µ\82½');
320     finally
321         oldURLs.Free;
322         newURLs.Free;
323         end;
324 end;
325
326 procedure TNewBoardDialog.FormCreate(Sender: TObject);
327 begin
328         StopButton.Enabled := False;
329         BoardURLComboBox.Clear;
330         BoardURLComboBox.Items.AddStrings(GikoSys.Setting.BoardURLs);
331         try
332                 BoardURLComboBox.ItemIndex := GikoSys.Setting.BoardURLSelected - 1;
333         except
334                 BoardURLComboBox.ItemIndex := 0;
335         end;
336         SetIgnoreCategory(false);
337 end;
338 //\94Â\8dX\90V\82Ì\8f\9c\8aO\83J\83e\83S\83\8a\83\8a\83X\83g\82Ì\93o\98^
339 {['\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']}
340 procedure TNewBoardDialog.SetIgnoreCategory(b: boolean);
341 begin
342         IgnoreLists := TStringList.Create;
343         if not( FileExists(GikoSys.Setting.GetIgnoreFileName) ) or ( b )then begin
344                 IgnoreLists.Add('\82¨\82·\82·\82ß');
345                 IgnoreLists.Add('\93Á\95Ê\8aé\89æ');
346                 IgnoreLists.Add('\82Ü\82¿\82a\82a\82r');
347                 IgnoreLists.Add('\83`\83\83\83b\83g');
348                 IgnoreLists.Add('\82¨\8aG\82©\82«');
349                 IgnoreLists.Add('\89^\89c\88Ä\93à');
350                 IgnoreLists.Add('\83c\81[\83\8b\97Þ');
351                 IgnoreLists.Add('\91¼\82Ì\83T\83C\83g');
352         end else begin
353                 try
354                         IgnoreLists.LoadFromFile(GikoSys.Setting.GetIgnoreFileName);
355                 except
356                         IgnoreLists.Free;
357                         SetIgnoreCategory(true);
358                 end;
359         end;
360 end;
361
362 procedure TNewBoardDialog.EditIgnoreListsButtonClick(Sender: TObject);
363 begin
364         EditIgnoreList(Sender);
365         EditIgnoreListsButton.OnClick := UpdateIgnoreList;
366 end;
367 procedure TNewBoardDialog.EditIgnoreList(Sender: TObject);
368 var
369         i: Integer;
370 begin
371         EditIgnoreListsButton.Caption := '\8f\9c\8aO\83J\83e\83S\83\8a\81[\8dX\90V';
372         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';
373         UpdateButton.Enabled := false;
374         //MessageMemo.ReadOnly := false;
375         MessageMemo.Clear;
376         for i := 0 to IgnoreLists.Count - 1 do
377                 MessageMemo.Lines.Add(IgnoreLists[i]);
378 end;
379 procedure TNewBoardDialog.UpdateIgnoreList(Sender: TObject);
380 var
381         i: Integer;
382 begin
383         Label2.Caption := '';
384     UpdateButton.Enabled := true;
385         EditIgnoreListsButton.Caption := '\8f\9c\8aO\83J\83e\83S\83\8a\81[\95Ò\8fW';
386         IgnoreLists.Clear;
387         for i := 0 to MessageMemo.Lines.Count - 1 do
388                 IgnoreLists.Add(MessageMemo.Lines[i]);
389         IgnoreLists.SaveToFile(GikoSys.Setting.GetIgnoreFileName);
390         IgnoreLists.Free;
391         SetIgnoreCategory(false);
392         //MessageMemo.ReadOnly := true;
393         MessageMemo.Clear;
394         EditIgnoreListsButton.OnClick := EditIgnoreListsButtonClick;
395 end;
396
397 procedure TNewBoardDialog.FormClose(Sender: TObject;
398   var Action: TCloseAction);
399 begin
400         IgnoreLists.Free;
401 end;
402
403 end.