Implemented Allow/deny rules. Better Tcl autoconfig.
[tclrobot.git] / robot.tcl
1 #!/usr/bin/tclsh 
2 # $Id: robot.tcl,v 1.21 2001/10/26 13:26:11 adam Exp $
3 #
4 proc RobotFileNext1 {area lead} {
5     # puts "RobotFileNext1 area=$area lead=$lead"
6     if {[catch {set ns [glob ${area}/*]}]} {
7         return {}
8     }
9     foreach n $ns {
10         if {[file isfile $n]} {
11             set off [string last / $n]
12             incr off 2
13             return $lead/[string range $n $off end]
14         }
15     }
16     foreach n $ns {
17         if {[file isdirectory $n]} {
18             set off [string last / $n]
19             incr off 2
20             set sb [RobotFileNext1 $n $lead/[string range $n $off end]]
21             if {[string length $sb]} {
22                 return $sb
23             }
24         }
25     }
26     return {}
27 }
28
29 proc RobotWriteRecord {outf fromurl distance} {
30     puts $outf "<zmbot>"
31     puts $outf "<distance>"
32     puts $outf $distance
33     puts $outf "</distance>"
34     puts $outf "<fromurl>"
35     puts $outf $fromurl
36     puts $outf "</fromurl>"
37     puts $outf "</zmbot>"
38 }
39
40 proc RobotReadRecord {inf fromurlx distancex} {
41     upvar $fromurlx fromurl
42     upvar $distancex distance
43     gets $inf
44     gets $inf
45     set distance [string trim [gets $inf]]
46     # puts "got distance = $distance"
47     gets $inf
48     gets $inf
49     set fromurl [string trim [gets $inf]]
50 }
51
52 proc RobotFileNext {area} {
53     global robotSeq global idletime ns
54
55     # puts "RobotFileNext robotSeq=$robotSeq"
56     if {$robotSeq < 0} {
57         return {}
58     }
59     if {$robotSeq == 0} {
60         if {[catch {set ns [glob ${area}/*]}]} {
61             return {}
62         }
63     }
64     set off [string length $area]
65     incr off
66     set n [lindex $ns $robotSeq]
67     if {![string length $n]} {
68         set robotSeq -1
69         flush stdout
70         puts "Round robin"
71         return wait
72     }
73     incr robotSeq
74     if {[file isfile $n/frobots.txt]} {
75         puts "ok returning http://[string range $n $off end]/robots.txt"
76         return http://[string range $n $off end]/robots.txt
77     } elseif {[file isdirectory $n]} {
78         set sb [RobotFileNext1 $n http://[string range $n $off end]]
79         if {[string length $sb]} {
80             return $sb
81         }
82     }
83     puts "no more work at end of RobotFileNext n=$n"
84     puts "ns=$ns"
85     return {}
86 }
87
88
89 proc RobotFileExist {area host path} {
90     # puts "RobotFileExist begin area=$area host=$host path=$path"
91     set lpath [split $path /]
92     set l [llength $lpath]
93     incr l -1
94     set t [lindex $lpath $l]
95     incr l -1
96     set npath $area/$host[join [lrange $lpath 0 $l] /d]/f$t
97     # puts "RobotFileExist end npath=$npath"
98     return [file exists $npath]
99 }
100
101 proc RobotFileUnlink {area host path} {
102     # puts "RobotFileUnlink begin"
103     # puts "area=$area host=$host path=$path"
104     set lpath [split $path /]
105     set l [llength $lpath]
106     incr l -1
107     set t [lindex $lpath $l]
108     incr l -1
109     set npath $area/$host[join [lrange $lpath 0 $l] /d]/f$t
110     # puts "npath=$npath"
111     set comp [split $npath /]
112     set l [llength $comp]
113     incr l -1
114     if {[catch {exec rm [join $comp /]}]} return
115     incr l -1
116     for {set i $l} {$i > 0} {incr i -1} {
117         set path [join [lrange $comp 0 $i] /]
118         if {![catch {glob $path/*}]} return
119         exec rmdir ./$path
120     }
121     # puts "RobotFileUnlink end"
122 }
123
124 proc RobotFileClose {out} {
125     if [string compare $out stdout] {
126         close $out
127     }
128 }
129
130 proc RobotFileOpen {area host path {mode w}} {
131     set orgPwd [pwd]
132     global workdir
133
134     if {![info exists workdir]} {
135         return stdout
136     }
137     #puts "RobotFileOpen orgPwd=$orgPwd area=$area host=$host path=$path mode=$mode"
138     if {[string compare $orgPwd $workdir]} {
139         puts "ooops. RobotFileOpen failed"
140         puts "workdir = $workdir"
141         puts "pwd = $orgPwd"
142         exit 1
143     }
144     set comp [split $area/$host$path /]
145     set len [llength $comp]
146     incr len -1
147     for {set i 0} {$i < $len} {incr i} {
148         if {$i > 1} {
149             set d "d[lindex $comp $i]" 
150         } else {
151             set d [lindex $comp $i]
152         }
153         if {[catch {cd ./$d}]} {
154             exec mkdir $d
155             cd ./$d
156             if {![string compare $area unvisited] && $i == 1 && $mode == "w"} {
157                 set out [open frobots.txt w]
158                 puts "creating robots.txt in $d"
159                 close $out
160             }
161         }
162     }
163     set d [lindex $comp $len]
164     if {[string length $d]} {
165         if {[file isdirectory $d]} {
166             set out [open $d/f $mode]
167         } else {
168             set out [open f$d $mode]
169         }
170     } else {
171         set out [open f $mode]
172     }
173     cd $orgPwd
174     return $out
175 }
176
177 proc RobotRR {} {
178     global robotSeq robotsRunning
179
180     incr robotsRunning -1
181     while {$robotsRunning} {
182         vwait robotsRunning
183     }
184     set robotSeq 0
185     RobotStart
186 }
187
188 proc RobotRestart {url sock} {
189     global URL robotsRunning
190
191     close $sock
192     after cancel $URL($sock,cancel) 
193
194     foreach v [array names URL $url,*] {
195         unset URL($v)
196     }
197
198     incr robotsRunning -1
199     RobotStart
200 }
201
202 proc RobotStart {} {
203     global URL
204     global robotsRunning robotsMax idletime
205   
206     # puts "RobotStart"
207     while {1} {
208         set url [RobotFileNext unvisited]
209         if {![string length $url]} {
210             return
211         }
212         incr robotsRunning
213         if {[string compare $url wait] == 0} {
214             after $idletime RobotRR
215             return
216         }
217         set r [RobotGetUrl $url {}]
218         if {!$r} {
219             if {$robotsRunning >= $robotsMax} return
220         } else {
221             incr robotsRunning -1
222             if {![RobotFileExist bad $URL($url,hostport) $URL($url,path)]} {
223                 set outf [RobotFileOpen bad $URL($url,hostport) $URL($url,path)]
224                 RobotFileClose $outf
225             }
226             RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)
227         }
228     }
229 }
230
231 proc headSave {url out} {
232     global URL
233     
234     if {[info exists URL($url,head,last-modified)]} {
235         puts $out "<lastmodified>$URL($url,head,last-modified)</lastmodified>"
236     }
237     puts $out {<si>}
238     if {[info exists URL($url,head,date)]} {
239         puts $out " <date>$URL($url,head,date)</date>"
240     }
241     if {[info exists URL($url,head,content-length)]} {
242         puts $out " <by>$URL($url,head,content-length)</by>"
243     }
244     if {[info exists URL($url,head,server)]} {
245         puts $out " <format>$URL($url,head,server)</format>"
246     }
247     puts $out {</si>}
248     puts $out {<publisher>}
249     puts $out " <identifier>$url</identifier>"
250     if {[info exists URL($url,head,content-type)]} {
251         puts $out " <type>$URL($url,head,content-type)</type>"
252     }
253     puts $out {</publisher>}
254 }
255
256 proc RobotHref {url hrefx hostx pathx} {
257     global URL domains debuglevel
258     upvar $hrefx href
259     upvar $hostx host
260     upvar $pathx path
261
262     if {$debuglevel > 1} {
263         puts "Ref input url = $url href=$href"
264     }
265
266     if {[string first { } $href] >= 0} {
267         return 0
268     }
269     if {[string length $href] > 256} {
270         return 0
271     }
272     if {[string first {?} $href] >= 0} {
273         return 0
274     }
275     if {[string first {?} $url] >= 0 && [string first {?} $href] >= 0} {
276         return 0
277     }
278     # get method (if any)
279     if {![regexp {^([^/:]+):(.*)} $href x method hpath]} {
280         set hpath $href
281         set method http
282     } else {
283         if {[string compare $method http]} {
284             return 0
285         }
286     }
287     # get host (if any)
288     if {[regexp {^//([^/]+)([^\#]*)} $hpath x host surl]} {
289         if {![string length $surl]} {
290             set surl /
291         }
292         if {[info exist domains]} {
293             set ok 0
294             foreach domain $domains {
295                 if {[string match $domain $host]} {
296                     set ok 1
297                     break
298                  }
299             }
300             if {!$ok} {
301                 return 0
302             }
303         }
304     } else {
305         regexp {^([^\#]*)} $hpath x surl
306         set host $URL($url,hostport)
307     }
308     if {![string length $surl]} {
309         return 0
310     }
311     if {[string first / $surl]} {
312         # relative path
313         regexp {^([^\#?]*)} $URL($url,path) x dpart
314         set l [string last / $dpart]
315         if {[expr $l >= 0]} {
316             set surl [string range $dpart 0 $l]$surl
317         } else {
318             set surl $dpart/$surl
319         }
320     }
321     set surllist [split $surl /]
322     catch {unset path}
323     set pathl 0
324     foreach c $surllist {
325         switch -- $c {
326             .. {
327                 if {$pathl > 0} {
328                     incr pathl -2
329                     set path [lrange $path 0 $pathl]
330                     incr pathl
331                 }
332             }
333             . {
334
335             }
336             default {
337                 incr pathl
338                 lappend path $c
339             }
340         }
341     }
342     if {$pathl} {
343         set path [join $path /]
344     } else {
345         set path ""
346     }
347     regsub -all {~} $path {%7E} path
348     set href "$method://$host$path"
349
350     if {$debuglevel > 1} {
351         puts "Ref result = $href"
352     }
353     return [checkrule url $href]
354 }
355
356 proc RobotError {url code} {
357     global URL
358
359     puts "Bad URL $url (code $code)"
360     set fromurl {}
361     set distance -1
362     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
363         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
364         RobotReadRecord $inf fromurl distance
365         RobotFileClose $inf
366     }
367     RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)
368     if {![RobotFileExist bad $URL($url,hostport) $URL($url,path)]} {
369         set outf [RobotFileOpen bad $URL($url,hostport) $URL($url,path)]
370         RobotWriteRecord $outf $fromurl $distance
371         RobotFileClose $outf
372     }
373 }
374
375 proc RobotRedirect {url tourl code} {
376     global URL
377
378     puts "Redirecting from $url to $tourl"
379
380     set distance {}
381     set fromurl {}
382     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
383         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
384         RobotReadRecord $inf fromurl distance
385         RobotFileClose $inf
386     }
387     if {![RobotFileExist bad $URL($url,hostport) $URL($url,path)]} {
388         set outf [RobotFileOpen bad $URL($url,hostport) $URL($url,path)]
389         RobotWriteRecord $outf $fromurl $distance
390         RobotFileClose $outf
391     }
392     if {[RobotHref $url tourl host path]} {
393         if {![RobotFileExist visited $host $path]} {
394             if {![RobotFileExist unvisited $host $path]} {
395                 set outf [RobotFileOpen unvisited $host $path]
396                 RobotWriteRecord $outf $fromurl $distance
397                 RobotFileClose $outf
398             }
399         } else {
400             set olddistance {}
401             set inf [RobotFileOpen visited $host $path r]
402             RobotReadRecord $inf oldurl olddistance
403             RobotFileClose $inf
404             if {[string length $olddistance] == 0} {
405                 set olddistance 1000
406             }
407             if {[string length $distance] == 0} {
408                 set distance 1000
409             }
410             puts "distance=$distance olddistance=$olddistance"
411             if {[expr $distance < $olddistance]} {
412                 set outf [RobotFileOpen unvisited $host $path]
413                 RobotWriteRecord $outf $tourl $distance
414                 RobotFileClose $outf
415             }
416         }
417     }
418     if {[catch {RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)}]} {
419         puts "unlink failed"
420         exit 1
421     }
422 }
423
424 proc RobotTextHtml {url out} {
425     global URL maxdistance
426
427     set distance 0
428     if {$maxdistance < 1000 && [info exists URL($url,dist)]} {
429         set distance [expr $URL($url,dist) + 1]
430     }
431     htmlSwitch $URL($url,buf) \
432         title {
433             puts $out "<title>$body</title>"
434         } -nonest meta {
435             puts -nonewline $out "<meta"
436             foreach a [array names parm] {
437                 puts -nonewline $out " $a"
438                 puts -nonewline $out {="}
439                 puts -nonewline $out $parm($a)
440                 puts -nonewline $out {"}
441             }
442             puts $out {></meta>}
443         } body {
444             regsub -all -nocase {<script([^<]|(<!.*>))*</script>} $body {} abody
445             regsub -all {<[^\>]+>} $abody {} nbody
446             puts $out "<documentcontent>"
447             puts $out $nbody
448             puts $out "</documentcontent>"
449         } -nonest a {
450             if {![info exists parm(href)]} {
451                 puts "no href"
452                 continue
453             }
454             if {[expr $distance <= $maxdistance]} {
455                 set href [string trim $parm(href)]
456                 if {![RobotHref $url href host path]} continue
457                 
458                 puts $out "<cr>"
459                 puts $out "<identifier>$href</identifier>"
460                 puts $out "<description>$body</description>"
461                 puts $out "</cr>"
462
463                 if {![RobotFileExist visited $host $path]} {
464                     set olddistance 1000
465                     if {![RobotFileExist bad $host $path]} {
466                         if {[RobotFileExist unvisited $host $path]} {
467                             set inf [RobotFileOpen unvisited $host $path r]
468                             RobotReadRecord $inf oldurl olddistance
469                             RobotFileClose $inf
470                         }
471                     } else {
472                         set olddistance 0
473                     }
474                     if {[string length $olddistance] == 0} {
475                         set olddistance 1000
476                     }
477                     if {[expr $distance < $olddistance]} {
478                         set outf [RobotFileOpen unvisited $host $path]
479                         RobotWriteRecord $outf $url $distance
480                         RobotFileClose $outf
481                     }
482                 } elseif {[string compare $href $url]} {
483                     set inf [RobotFileOpen visited $host $path r]
484                     RobotReadRecord $inf xurl olddistance
485                     close $inf
486                     if {[string length $olddistance] == 0} {
487                         set olddistance 1000
488                     }
489                     if {[expr $distance < $olddistance]} {
490                         puts "OK remarking url=$url href=$href"
491                         puts "olddistance = $olddistance"
492                         puts "newdistance = $distance"
493                         set outf [RobotFileOpen unvisited $host $path]
494                         RobotWriteRecord $outf $url $distance
495                         RobotFileClose $outf
496                     }
497                 }
498             }
499         } -nonest area {
500             if {![info exists parm(href)]} {
501                 puts "no href"
502                 continue
503             }
504             if {[expr $distance <= $maxdistance]} {
505                 set href [string trim $parm(href)]
506                 if {![RobotHref $url href host path]} continue
507                 
508                 puts $out "<cr>"
509                 puts $out "<identifier>$href</identifier>"
510                 puts $out "<description></description>"
511                 puts $out "</cr>"
512
513                 if {![RobotFileExist visited $host $path]} {
514                     set olddistance 1000
515                     if {![RobotFileExist bad $host $path]} {
516                         if {[RobotFileExist unvisited $host $path]} {
517                             set inf [RobotFileOpen unvisited $host $path r]
518                             RobotReadRecord $inf oldurl olddistance
519                             RobotFileClose $inf
520                         }
521                     } else {
522                         set olddistance 0
523                     }
524                     if {[string length $olddistance] == 0} {
525                         set olddistance 1000
526                     }
527                     if {[expr $distance < $olddistance]} {
528                         set outf [RobotFileOpen unvisited $host $path]
529                         RobotWriteRecord $outf $url $distance
530                         RobotFileClose $outf
531                     }
532                 } elseif {[string compare $href $url]} {
533                     set inf [RobotFileOpen visited $host $path r]
534                     RobotReadRecord $inf xurl olddistance
535                     close $inf
536                     if {[string length $olddistance] == 0} {
537                         set olddistance 1000
538                     }
539                     if {[expr $distance < $olddistance]} {
540                         puts "OK remarking url=$url href=$href"
541                         puts "olddistance = $olddistance"
542                         puts "newdistance = $distance"
543                         set outf [RobotFileOpen unvisited $host $path]
544                         RobotWriteRecord $outf $url $distance
545                         RobotFileClose $outf
546                     }
547                 }
548             }
549         }
550 }
551
552 proc RobotsTxt {url} {
553     global agent URL
554
555     RobotsTxt0 URL(URL($url,hostport),robots) $URL($url,buf)
556 }
557
558 proc RobotsTxt0 {v buf} {
559     global URL agent
560     set section 0
561     foreach l [split $buf \n] {
562         if {[regexp {([-A-Za-z]+):[ ]*([^\# ]+)} $l match cmd arg]} {
563             puts "cmd=$cmd arg=$arg"
564             switch -- [string tolower $cmd] {
565                 user-agent {
566                     if {$section} break
567                     set pat [string tolower $arg]*
568                     set section [string match $pat $agent]
569                 }
570                 disallow {
571                     if {$section} {
572                         puts "rule [list 0 $arg]"
573                         lappend $v [list 0 $arg]
574                     }
575                 }
576                 allow {
577                     if {$section} {
578                         puts "rule [list 1 $arg]"
579                         lappend $v [list 1 $arg]
580                     }
581                 }
582             }
583         }
584     }
585 }
586
587 proc RobotTextPlain {url out} {
588     global URL
589
590     puts $out "<documentcontent>"
591     regsub -all {<} $URL($url,buf) {\&lt;} content
592     puts $out $content
593     puts $out "</documentcontent>"
594
595     if {![string compare $URL($url,path) /robots.txt]} {
596         RobotsTxt $url
597     }
598 }
599
600 proc Robot200 {url} {
601     global URL domains
602     
603     set out [RobotFileOpen raw $URL($url,hostport) $URL($url,path)]
604     puts -nonewline $out $URL($url,buf)
605     RobotFileClose $out
606
607     if {![checkrule mime $URL($url,head,content-type)]} {
608         RobotError $url mimedeny
609         return
610     }
611
612     set out [RobotFileOpen visited $URL($url,hostport) $URL($url,path)]
613     puts $out "<zmbot>"
614
615     set distance 1000
616     if {[RobotFileExist unvisited $URL($url,hostport) $URL($url,path)]} {
617         set inf [RobotFileOpen unvisited $URL($url,hostport) $URL($url,path) r]
618         RobotReadRecord $inf fromurl distance
619         RobotFileClose $inf
620     }
621     set URL($url,dist) $distance
622     puts $out "<distance>"
623     puts $out "  $distance"
624     puts $out "</distance>"
625     headSave $url $out
626     puts "Parsing $url distance=$distance"
627     switch $URL($url,head,content-type) {
628         text/html {
629             if {[string length $distance]} {
630                 RobotTextHtml $url $out
631             }
632         }
633         text/plain {
634             RobotTextPlain $url $out
635         }
636         application/pdf {
637             set pdff [open test.pdf w]
638             puts -nonewline $pdff $URL($url,buf)
639             close $pdff
640         }
641     }
642     puts $out "</zmbot>"
643     RobotFileClose $out
644     # puts "Parsing done"
645     RobotFileUnlink unvisited $URL($url,hostport) $URL($url,path)
646 }
647
648 proc RobotReadContent {url sock binary} {
649     global URL
650
651     set buffer [read $sock 16384]
652     set readCount [string length $buffer]
653
654     if {$readCount <= 0} {
655         Robot200 $url
656         RobotRestart $url $sock
657     } elseif {!$binary && [string first \0 $buffer] >= 0} {
658         Robot200 $url
659         RobotRestart $url $sock
660     } else {
661         # puts "Got $readCount bytes"
662         set URL($url,buf) $URL($url,buf)$buffer
663     }
664 }
665
666 proc RobotReadHeader {url sock} {
667     global URL debuglevel
668
669     if {$debuglevel > 1} {
670         puts "HTTP head $url"
671     }
672     if {[catch {set buffer [read $sock 2148]}]} {
673         RobotError $url 404
674         RobotRestart $url $sock
675     }
676     set readCount [string length $buffer]
677     
678     if {$readCount <= 0} {
679         RobotError $url 404
680         RobotRestart $url $sock
681     } else {
682         # puts "Got $readCount bytes"
683         set URL($url,buf) $URL($url,buf)$buffer
684         
685         set n [string first \r\n\r\n $URL($url,buf)]
686         if {$n > 1} {
687             set code 0
688             set version {}
689             set headbuf [string range $URL($url,buf) 0 $n]
690             incr n 4
691             set URL($url,buf) [string range $URL($url,buf) $n end]
692             
693             regexp {^HTTP/([0-9.]+)[ ]+([0-9]+)} $headbuf x version code
694             set lines [split $headbuf \n]
695             foreach line $lines {
696                 if {[regexp {^([^:]+):[ ]+([^;]*)} $line x name value]} {
697                     set URL($url,head,[string tolower $name]) [string trim $value]
698                 }
699             }
700             puts "HTTP CODE $code"
701             set URL($url,state) skip
702             switch $code {
703                 301 {
704                     RobotRedirect $url $URL($url,head,location) 301
705                     RobotRestart $url $sock
706                 }
707                 302 {
708                     RobotRedirect $url $URL($url,head,location) 302
709                     RobotRestart $url $sock
710                 }
711                 200 {
712                     if {![info exists URL($url,head,content-type)]} {
713                         set URL($url,head,content-type) {}
714                     }
715                     set binary 0
716                     switch $URL($url,head,content-type) {
717                         application/pdf {
718                             set binary 1
719                         }
720                     }
721                     fileevent $sock readable [list RobotReadContent $url $sock $binary]
722                 }
723                 default {
724                     RobotError $url $code
725                     RobotRestart $url $sock
726                 }
727             }
728         }
729     }
730 }
731
732 proc RobotSockCancel {url sock} {
733
734     puts "RobotSockCancel sock=$sock url=$url"
735     RobotError $url 401
736     RobotRestart $url $sock
737 }
738
739 proc RobotConnect {url sock} {
740     global URL agent acceptLanguage
741
742     fconfigure $sock -translation {lf crlf} -blocking 0
743     fileevent $sock readable [list RobotReadHeader $url $sock]
744     puts $sock "GET $URL($url,path) HTTP/1.0"
745     puts $sock "Host: $URL($url,host)"
746     puts $sock "User-Agent: $agent"
747     if {[string length $acceptLanguage]} {
748         puts $sock "Accept-Language: $acceptLanguage"
749     }
750     puts $sock ""
751     flush $sock
752     set URL($sock,cancel) [after 30000 [list RobotSockCancel $url $sock]]
753 }
754
755 proc RobotNop {} {
756
757 }
758
759 proc RobotGetUrl {url phost} {
760     global URL robotsRunning
761     flush stdout
762     puts "Retrieve $robotsRunning url=$url"
763     if {![regexp {([^:]+)://([^/]+)(.*)} $url x method hostport path]} {
764         return -1
765     }
766     if {![regexp {([^:]+):([0-9]+)} $hostport x host port]} {
767         set port 80
768         set host $hostport
769     }
770     set URL($url,method) $method
771     set URL($url,host) $host
772     set URL($url,hostport) $hostport
773     set URL($url,path) $path
774     set URL($url,state) head
775     set URL($url,buf) {}
776
777     if {[string compare $path /robots.txt]} {
778         set ok 1
779         if {![info exists URL($hostport,robots)]} {
780             puts "READING robots.txt for host $hostport"
781             if {[RobotFileExist visited $hostport /robots.txt]} {
782                 set inf [RobotFileOpen visited $hostport /robots.txt r]
783                 set buf [read $inf 32768]
784                 close $inf
785             } else {
786                 set buf "User-agent: *\nAllow: /\n"
787             }
788             RobotsTxt0 URL($hostport,robots) $buf
789         }
790         if {[info exists URL($hostport,robots)]} {
791             foreach l $URL($hostport,robots) {
792                 if {[string first [lindex $l 1] $path] == 0} {
793                     set ok [lindex $l 0]
794                     break
795                 }
796             }
797         }
798         if {!$ok} {
799             puts "skipped due to robots.txt"
800             return -1
801         }
802     }
803     if [catch {set sock [socket -async $host $port]}] {
804         return -1
805     }
806     RobotConnect $url $sock
807
808     return 0
809 }
810
811 if {![llength [info commands htmlSwitch]]} {
812     set e [info sharedlibextension]
813     if {[catch {load ./tclrobot$e}]} {
814         load tclrobot$e
815     }
816 }
817
818 set agent "zmbot/0.1"
819 if {![catch {set os [exec uname -s -r]}]} {
820     set agent "$agent ($os)"
821 }
822
823 puts "agent: $agent"
824
825 proc bgerror {m} {
826     global errorInfo
827     puts "BGERROR $m"
828     puts $errorInfo
829 }
830
831 set robotsRunning 0
832 set robotSeq 0
833 set workdir [pwd]
834 set idletime 60000
835 set acceptLanguage {}
836
837 set i 0
838 set l [llength $argv]
839
840 if {$l < 2} {
841     puts {tclrobot: usage:}
842     puts {tclrobot [-j jobs] [-i idle] [-c count] [-d domain] [-r rules] [url ..]}
843     puts " Example: -c 3 -d '*.dk' http://www.indexdata.dk/"
844     exit 1
845 }
846
847 # Rules: allow, deny, url
848 set debuglevel 0
849
850 proc checkrule {type this} {
851     global alrules
852     global debuglevel
853
854     if {$debuglevel > 3} {
855         puts "CHECKRULE $type $this"
856     }
857     if {[info exist alrules]} {
858         foreach l $alrules {
859             if {$debuglevel > 3} {
860                 puts "consider $l"
861             }
862             # consider type
863             if {[lindex $l 1] != $type} continue
864             # consider mask
865             if {![string match [lindex $l 2] $this]} continue
866             # OK, we have a match
867             if {[lindex $l 0] == "allow"} {
868                 if {$debuglevel > 3} {
869                     puts "CHECKRULE MATH OK"
870                 }
871                 return 1
872             } else {
873                 if {$debuglevel > 3} {
874                     puts "CHECKFULE MATCH FAIL"
875                 }
876                 return 0
877             }
878         }
879     }
880     if {$debuglevel > 3} {
881         puts "CHECKRULE MATH OK"
882     }
883     return 1
884 }
885
886
887 proc url {href} {
888     global debuglevel
889
890     if {[RobotHref http://www.indexdata.dk/ href host path]} {
891         if {![RobotFileExist visited $host $path]} {
892             set outf [RobotFileOpen unvisited $host $path]
893             RobotWriteRecord $outf href 0
894             RobotFileClose $outf
895         }
896     }
897 }
898
899 proc deny {type stuff} {
900     global alrules
901
902     lappend alrules [list deny $type $stuff]
903 }
904
905 proc allow {type stuff} {
906     global alrules
907
908     lappend alrules [list allow $type $stuff]
909 }
910
911 proc debug {level} {
912     global debuglevel
913
914     set debuglevel $level
915 }
916
917 # Parse options
918
919 while  {$i < $l} {
920     set arg [lindex $argv $i]
921     switch -glob -- $arg {
922         -j* {
923             set robotsMax [string range $arg 2 end]
924             if {![string length $robotsMax]} {
925                 set robotsMax [lindex $argv [incr i]]
926             }
927         }
928         -c* {
929             set maxdistance [string range $arg 2 end]
930             if {![string length $maxdistance]} {
931                 set maxdistance [lindex $argv [incr i]]
932             }
933         }
934         -d* {
935             set dom [string range $arg 2 end]
936             if {![string length $dom]} {
937                 set dom [lindex $argv [incr i]]
938             }
939             lappend domains $dom
940         }
941         -i* {
942             set idletime [string range $arg 2 end]
943             if {![string length $idletime]} {
944                 set idletime [lindex $argv [incr i]]
945             }
946         }
947         -l* {
948             set acceptLanguage [string range $arg 2 end]
949             if {![string length $acceptLanguage]} {
950                 set acceptLanguage [lindex $argv [incr i]]
951             }
952         }
953         -r* {
954             set rfile [string range $arg 2 end]
955             if {![string length $rfile]} {
956                 set rfile [lindex $argv [incr i]]
957             }
958             source $rfile
959         }
960         default {
961             set href $arg
962             if {[RobotHref http://www.indexdata.dk/ href host path]} {
963                 if {![RobotFileExist visited $host $path]} {
964                     set outf [RobotFileOpen unvisited $host $path]
965                     RobotWriteRecord $outf href 0
966                     RobotFileClose $outf
967                 }
968             }
969         }
970     }
971     incr i
972 }
973
974 if {![info exist domains]} {
975     set domains {*}
976 }
977 if {![info exist maxdistance]} {
978     set maxdistance 50
979 }
980 if {![info exist robotsMax]} {
981     set robotsMax 5
982 }
983
984 puts "domains=$domains"
985 puts "max distance=$maxdistance"
986 puts "max jobs=$robotsMax"
987
988 RobotStart
989
990 while {$robotsRunning} {
991     vwait robotsRunning
992 }