Develop and Download Open Source Software

Browse CVS Repository

Annotation of /gikonavigoeson/gikonavi/NewBoard.pas

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.18.4.3 - (hide annotations) (download) (as text)
Sat Jul 23 07:28:39 2005 UTC (18 years, 9 months ago) by h677
Branch: Bb50
CVS Tags: v1_50_2_606, v1_50_0_603, v1_50_0_604, v1_50_0_606, v1_50_0_600, v1_50_2_604, v1_50_0_602, v1_50_0_601, v1_50_0_605
Changes since 1.18.4.2: +7 -2 lines
File MIME type: text/x-pascal
Indyコンポーネントで送受信するときのみIdAntiFreezeを有効にするように変更した。

1 hi_ 1.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 h677 1.6 GikoSystem, BoardGroup, MojuUtils;
10 hi_ 1.1
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 h677 1.12 CloseButton: TButton;
22 hi_ 1.1 Indy: TIdHTTP;
23     IdAntiFreeze: TIdAntiFreeze;
24     StopButton: TButton;
25 h677 1.12 BoardURLComboBox: TComboBox;
26     Label13: TLabel;
27     EditIgnoreListsButton: TButton;
28 h677 1.18.4.1 Label2: TLabel;
29 hi_ 1.1 procedure UpdateButtonClick(Sender: TObject);
30     procedure StopButtonClick(Sender: TObject);
31     procedure CloseButtonClick(Sender: TObject);
32     procedure FormCreate(Sender: TObject);
33 h677 1.12 procedure EditIgnoreListsButtonClick(Sender: TObject);
34     procedure FormClose(Sender: TObject; var Action: TCloseAction);
35 hi_ 1.1 private
36     { Private ?辿?転 }
37 h677 1.12 IgnoreLists : TStringList;
38 hi_ 1.1 FAbort: Boolean;
39     function BoardDownload: TNewBoardItem;
40     procedure UpdateURL(s: string);
41 h677 1.12 procedure SetIgnoreCategory(b: boolean);
42     procedure EditIgnoreList(Sender: TObject);
43     procedure UpdateIgnoreList(Sender: TObject);
44 hi_ 1.1 public
45     { Public ?辿?転 }
46     end;
47    
48     var
49     NewBoardDialog: TNewBoardDialog;
50    
51 h677 1.12
52 hi_ 1.1 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 h677 1.3 GikoSys.Setting.BoardURLSelected := BoardURLComboBox.ItemIndex + 1;
64 hi_ 1.1 FAbort := False;
65     UpdateButton.Enabled := False;
66     StopButton.Enabled := True;
67     CloseButton.Enabled := False;
68 q9_ 1.18 EditIgnoreListsButton.Enabled := False;
69 hi_ 1.1 Item := BoardDownload;
70     StopButton.Enabled := False;
71     if FAbort then
72     Exit;
73     if Item.FContent <> '' then begin
74 h677 1.17 GikoForm.TabsSaveAction.Tag := 1;
75     GikoForm.TabsOpenAction.Tag := 1;
76 h677 1.16 GikoForm.TabsSaveAction.Execute;
77 hi_ 1.1 UpdateURL(Item.FContent);
78     GikoForm.ReloadBBS;
79 h677 1.17 GikoForm.TabsSaveAction.Tag := 0;
80     GikoForm.TabsOpenAction.Tag := 0;
81 hi_ 1.1 end else
82     MessageMemo.Lines.Add('?_?E?????[?h???存?s?直???直??[' + IntToStr(Item.FResponseCode) + ']');
83     finally
84     UpdateButton.Enabled := True;
85     StopButton.Enabled := False;
86     CloseButton.Enabled := True;
87 q9_ 1.18 EditIgnoreListsButton.Enabled := True;
88 hi_ 1.1 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 h677 1.3 //URL := GikoSys.Setting.BoardURL2ch;
135     URL := BoardURLComboBox.Text;
136 hi_ 1.1 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('?????????????巽???転?直????');
148 h677 1.3 //MessageMemo.Lines.Add(GikoSys.Setting.BoardURL2ch);
149 h677 1.18.4.3 MessageMemo.Lines.Add(URL);
150 hi_ 1.1 MessageMemo.Lines.Add('?_?E?????[?h???J?n?直????');
151 h677 1.18.4.3 IdAntiFreeze.Active := True;
152     try
153     Indy.Get(URL, Stream);
154     finally
155     IdAntiFreeze.Active := False;
156     end;
157 hi_ 1.1 Result.FContent := GikoSys.GzipDecompress(Stream, Indy.Response.ContentEncoding);
158     MessageMemo.Lines.Add('?_?E?????[?h???貼?邸?直???直??');
159     except
160     on E: EIdConnectException do begin
161     MessageMemo.Lines.Add('');
162 yoffy 1.2 MessageMemo.Lines.Add('???????存?s?直???直?? ???端?但?v???L?V?AFW???坦???????????足?転????');
163     MessageMemo.Lines.Add('FW???端???????辿?l?????????m?F?直???足?転????');
164     MessageMemo.Lines.Add('NEC??PC????????PC GATE???鼎?????直?????辿???\?鼎???????長??');
165 hi_ 1.1 MessageMemo.Lines.Add('Message: ' + E.Message);
166     end;
167     on E: Exception do begin
168     if FAbort then
169     MessageMemo.Lines.Add('?_?E?????[?h?????f?直???直??')
170     else begin
171     MessageMemo.Lines.Add('?_?E?????[?h???存?s?直???直??');
172     MessageMemo.Lines.Add('ResponseCode: ' + IntToStr(Indy.ResponseCode));
173     MessageMemo.Lines.Add('Message: ' + E.Message);
174     MessageMemo.Lines.Add('------------------------');
175     for i := 0 to Indy.Response.RawHeaders.Count - 1 do begin
176     s := Indy.Response.RawHeaders.Names[i];
177     s := s + ': ' + Indy.Response.RawHeaders.Values[s];
178     MessageMemo.Lines.Add(s);
179     end;
180     MessageMemo.Lines.Add('------------------------');
181     end;
182     end;
183     end;
184     Result.FResponseCode := Indy.ResponseCode;
185     finally
186     Stream.Free;
187     end;
188     end;
189    
190     procedure TNewBoardDialog.UpdateURL(s: string);
191     var
192     i: Integer;
193 h677 1.13 // j: Integer;
194 hi_ 1.1 idx: Integer;
195     idx1: Integer;
196     idx2: Integer;
197     tmp: string;
198     URL: string;
199     Title: string;
200     cate: string;
201     Board: TBoard;
202     Change: Boolean;
203 h677 1.12 Ignore: Boolean;
204 hi_ 1.1 ini: TMemIniFile;
205 h677 1.12 oldURLs : TStringList;
206     newURLs : TStringList;
207 hi_ 1.1 begin
208     Change := False;
209     MessageMemo.Lines.Add('?V???A??URL???X?`?F?b?N???J?n?直????');
210     MessageMemo.Lines.Add('');
211 h677 1.6 s := CustomStringReplace(s, '<B>', '<b>', true);
212     s := CustomStringReplace(s, '<BR>', '<br>', true);
213     s := CustomStringReplace(s, '</B>', '</b>', true);
214     s := CustomStringReplace(s, '<A HREF', '<a href', true);
215     s := CustomStringReplace(s, '</A', '</a', true);
216 hi_ 1.1 cate := '';
217 h677 1.6
218 h677 1.12 oldURLs := TStringList.Create;
219     newURLs := TStringList.Create;
220 h677 1.6
221 hi_ 1.1 try
222    
223 h677 1.6 GikoSys.ForceDirectoriesEx(GikoSys.GetConfigDir);
224     ini := TMemIniFile.Create(GikoSys.GetBoardFileName);
225     try
226     //
227     //?鱈???I?v?V???????I???????????辿???????N???A
228    
229     ini.Clear;
230    
231     while True do begin
232     idx1 := AnsiPos('<b>', s);
233     idx2 := AnsiPos('<a', s);
234     if (idx1 = 0) and (idx2 = 0) then Break;
235    
236     if idx1 < idx2 then begin
237     //<br>
238     idx := AnsiPos('</b>', s);
239     if idx = 0 then begin
240     s := Copy(s, idx1 + 4, Length(s));
241     continue;
242     end;
243     tmp := Copy(s, idx1, (idx - idx1) + 4);
244     tmp := CustomStringReplace(tmp, '<b>', '');
245     tmp := CustomStringReplace(tmp, '</b>', '');
246 h677 1.12 Ignore := false;
247     for i := 0 to IgnoreLists.Count - 1 do begin
248     if tmp = Trim(IgnoreLists[i]) then begin
249     cate := '';
250     s := Copy(s, idx + 5, Length(s));
251     Ignore := True;
252     break;
253     end;
254     end;
255     if Ignore then
256     Continue;
257     {
258 h677 1.6 if (tmp = '?即??????') or
259     (tmp = '?????辿??') or
260 h677 1.8 (tmp = '???甜?a?a?r') or
261 h677 1.6 (tmp = '?`???b?g') or
262     (tmp = '?即?G???鼎') or
263 h677 1.9 (tmp = '?^?c????') or
264 h677 1.6 (tmp = '?c?[???鄭') or
265     (tmp = '?添???T?C?g') then begin
266     cate := '';
267     s := Copy(s, idx + 5, Length(s));
268     Continue;
269     end;
270 h677 1.12 }
271 hi_ 1.1 s := Copy(s, idx + 5, Length(s));
272 h677 1.6 cate := tmp;
273 hi_ 1.1 end else begin
274 h677 1.6 //<a href=
275     if cate = '' then begin
276     s := Copy(s, idx2 + 2, Length(s));
277     end else begin
278     idx := AnsiPos('</a>', s);
279     tmp := Copy(s, idx2, (idx - idx2) + 4);
280     tmp := CustomStringReplace(tmp, '<a href=', '');
281     tmp := CustomStringReplace(tmp, '</a>', '');
282 h677 1.7 tmp := CustomStringReplace(tmp, 'TARGET=_blank', '');
283 h677 1.6 i := AnsiPos('>', tmp);
284     if i <> 0 then begin
285     URL := Copy(tmp, 1, i - 1);
286     Title := Copy(tmp, i + 1, Length(tmp));
287 h677 1.8 Board := BBSs[ 0 ].FindBoardFromTitle(Title);
288     if Board = nil then begin
289     MessageMemo.Lines.Add('?V???????u' + Title + '(' + URL + ')?v');
290     ini.WriteString(cate, Title, URL);
291     Change := True;
292     end else begin
293     if Board.URL <> URL then begin
294     MessageMemo.Lines.Add('URL???X?u' + Board.Title + '(' + URL +')?v');
295     ini.WriteString(cate, Title, URL);
296 h677 1.6 oldURLs.Add(Board.URL);
297 h677 1.8 newURLs.Add(URL);
298     Change := True;
299     end else begin
300     ini.WriteString(cate, Title, URL);
301     end;
302     end;
303 h677 1.6 end else begin
304     s := Copy(s, idx2 + 2, Length(s));
305     Continue;
306 hi_ 1.1 end;
307 h677 1.6 s := Copy(s, idx + 5, Length(s));
308 hi_ 1.1 end;
309     end;
310     end;
311 h677 1.6 finally
312     if Change then
313     ini.UpdateFile;
314     ini.Free;
315 hi_ 1.1 end;
316 h677 1.6 MessageMemo.Lines.Add('');
317     if Change then begin
318     GikoForm.FavoritesURLReplace(oldURLs, newURLs);
319 h677 1.11 GikoForm.RoundListURLReplace(oldURLs, newURLs);
320 genyakun 1.15 GikoForm.TabFileURLReplace(oldURLs, newURLs);
321 h677 1.6 MessageMemo.Lines.Add('?V???A??URL???X?`?F?b?N???貼?邸?直???直??');
322     MessageMemo.Lines.Add('?u?????辿?v?{?^???????直???足?転????');
323     end else
324     MessageMemo.Lines.Add('?V???A??URL???X?? ???????邸???長?直??');
325     finally
326     oldURLs.Free;
327     newURLs.Free;
328 h677 1.12 end;
329 hi_ 1.1 end;
330    
331     procedure TNewBoardDialog.FormCreate(Sender: TObject);
332     begin
333     StopButton.Enabled := False;
334 h677 1.12 BoardURLComboBox.Clear;
335     BoardURLComboBox.Items.AddStrings(GikoSys.Setting.BoardURLs);
336     try
337     BoardURLComboBox.ItemIndex := GikoSys.Setting.BoardURLSelected - 1;
338     except
339     BoardURLComboBox.ItemIndex := 0;
340     end;
341     SetIgnoreCategory(false);
342     end;
343     //???X?V?????O?J?e?S?????X?g???o?^
344     {['?即??????', '?????辿??', '???甜?a?a?r', '?`???b?g', '?即?G???鼎', '?^?c????', '?c?[???鄭', '?添???T?C?g']}
345     procedure TNewBoardDialog.SetIgnoreCategory(b: boolean);
346     begin
347     IgnoreLists := TStringList.Create;
348     if not( FileExists(GikoSys.Setting.GetIgnoreFileName) ) or ( b )then begin
349     IgnoreLists.Add('?即??????');
350     IgnoreLists.Add('?????辿??');
351     IgnoreLists.Add('???甜?a?a?r');
352     IgnoreLists.Add('?`???b?g');
353     IgnoreLists.Add('?即?G???鼎');
354     IgnoreLists.Add('?^?c????');
355     IgnoreLists.Add('?c?[???鄭');
356     IgnoreLists.Add('?添???T?C?g');
357     end else begin
358     try
359     IgnoreLists.LoadFromFile(GikoSys.Setting.GetIgnoreFileName);
360     except
361     IgnoreLists.Free;
362     SetIgnoreCategory(true);
363     end;
364     end;
365     end;
366    
367     procedure TNewBoardDialog.EditIgnoreListsButtonClick(Sender: TObject);
368     begin
369     EditIgnoreList(Sender);
370     EditIgnoreListsButton.OnClick := UpdateIgnoreList;
371     end;
372     procedure TNewBoardDialog.EditIgnoreList(Sender: TObject);
373     var
374     i: Integer;
375     begin
376     EditIgnoreListsButton.Caption := '???O?J?e?S???[?X?V';
377     Label2.Caption := '?e?P?s???J?e?S???添???L?端?直???足?転?????B?i?端?s??Ctrl+Enter?j';
378     UpdateButton.Enabled := false;
379     //MessageMemo.ReadOnly := false;
380     MessageMemo.Clear;
381     for i := 0 to IgnoreLists.Count - 1 do
382     MessageMemo.Lines.Add(IgnoreLists[i]);
383     end;
384     procedure TNewBoardDialog.UpdateIgnoreList(Sender: TObject);
385     var
386     i: Integer;
387     begin
388 h677 1.18.4.2 Label2.Caption := '';
389 h677 1.12 UpdateButton.Enabled := true;
390     EditIgnoreListsButton.Caption := '???O?J?e?S???[???W';
391     IgnoreLists.Clear;
392     for i := 0 to MessageMemo.Lines.Count - 1 do
393     IgnoreLists.Add(MessageMemo.Lines[i]);
394     IgnoreLists.SaveToFile(GikoSys.Setting.GetIgnoreFileName);
395     IgnoreLists.Free;
396     SetIgnoreCategory(false);
397     //MessageMemo.ReadOnly := true;
398     MessageMemo.Clear;
399     EditIgnoreListsButton.OnClick := EditIgnoreListsButtonClick;
400     end;
401    
402     procedure TNewBoardDialog.FormClose(Sender: TObject;
403     var Action: TCloseAction);
404     begin
405     IgnoreLists.Free;
406 hi_ 1.1 end;
407    
408     end.

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26