2008-07-13 20:50:37 -04:00
|
|
|
! Copyright (C) 2008 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-05-05 19:07:18 -04:00
|
|
|
USING: kernel sequences io.files io.launcher io.encodings.ascii
|
2008-07-13 20:50:37 -04:00
|
|
|
io.streams.string http.client generalizations combinators
|
2008-05-05 19:07:18 -04:00
|
|
|
math.parser math.vectors math.intervals interval-maps memoize
|
2008-06-11 19:54:03 -04:00
|
|
|
csv accessors assocs strings math splitting grouping arrays ;
|
2008-05-05 19:07:18 -04:00
|
|
|
IN: geo-ip
|
|
|
|
|
2008-06-09 03:14:14 -04:00
|
|
|
: db-path ( -- path ) "IpToCountry.csv" temp-file ;
|
2008-05-05 19:07:18 -04:00
|
|
|
|
2008-06-09 03:14:14 -04:00
|
|
|
: db-url ( -- url ) "http://software77.net/cgi-bin/ip-country/geo-ip.pl?action=download" ;
|
2008-05-05 19:07:18 -04:00
|
|
|
|
|
|
|
: download-db ( -- path )
|
|
|
|
db-path dup exists? [
|
|
|
|
db-url over ".gz" append download-to
|
|
|
|
{ "gunzip" } over ".gz" append (normalize-path) suffix try-process
|
|
|
|
] unless ;
|
|
|
|
|
|
|
|
TUPLE: ip-entry from to registry assigned city cntry country ;
|
|
|
|
|
|
|
|
: parse-ip-entry ( row -- ip-entry )
|
|
|
|
7 firstn {
|
|
|
|
[ string>number ]
|
|
|
|
[ string>number ]
|
|
|
|
[ ]
|
|
|
|
[ ]
|
|
|
|
[ ]
|
|
|
|
[ ]
|
|
|
|
[ ]
|
|
|
|
} spread ip-entry boa ;
|
|
|
|
|
|
|
|
MEMO: ip-db ( -- seq )
|
|
|
|
download-db ascii file-lines
|
|
|
|
[ "#" head? not ] filter "\n" join <string-reader> csv
|
|
|
|
[ parse-ip-entry ] map ;
|
|
|
|
|
2008-06-11 19:54:03 -04:00
|
|
|
: filter-overlaps ( alist -- alist' )
|
|
|
|
2 clump
|
|
|
|
[ first2 [ first second ] [ first first ] bi* < ] filter
|
|
|
|
[ first ] map ;
|
|
|
|
|
2008-05-05 19:07:18 -04:00
|
|
|
MEMO: ip-intervals ( -- interval-map )
|
2008-06-11 19:54:03 -04:00
|
|
|
ip-db [ [ [ from>> ] [ to>> ] bi 2array ] keep ] { } map>assoc
|
|
|
|
filter-overlaps <interval-map> ;
|
2008-05-05 19:07:18 -04:00
|
|
|
|
|
|
|
GENERIC: lookup-ip ( ip -- ip-entry )
|
|
|
|
|
|
|
|
M: string lookup-ip
|
|
|
|
"." split [ string>number ] map
|
2008-06-11 19:54:03 -04:00
|
|
|
{ HEX: 1000000 HEX: 10000 HEX: 100 HEX: 1 } v.
|
2008-05-05 19:07:18 -04:00
|
|
|
lookup-ip ;
|
|
|
|
|
|
|
|
M: integer lookup-ip ip-intervals interval-at ;
|