ip2location_ruby 8.0.1 → 8.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.document +5 -5
- data/.rspec +1 -1
- data/Gemfile +16 -16
- data/Gemfile.lock +74 -74
- data/LICENSE.txt +20 -20
- data/README.md +71 -0
- data/Rakefile +49 -49
- data/VERSION +1 -1
- data/example.rb +41 -0
- data/ip2location_ruby.gemspec +87 -79
- data/lib/ip2location_ruby.rb +578 -199
- data/lib/ip2location_ruby/database_config.rb +34 -34
- data/lib/ip2location_ruby/i2l_float_data.rb +6 -6
- data/lib/ip2location_ruby/i2l_ip_data.rb +9 -9
- data/lib/ip2location_ruby/i2l_string_data.rb +15 -15
- data/lib/ip2location_ruby/ip2location_config.rb +16 -16
- data/lib/ip2location_ruby/ip2location_record.rb +21 -21
- data/rb/data/IP2LOCATION-LITE-DB1.IPV6.BIN +0 -0
- data/spec/ip2location_ruby_spec.rb +53 -53
- data/spec/spec_helper.rb +12 -12
- metadata +17 -8
- data/README.rdoc +0 -35
data/ip2location_ruby.gemspec
CHANGED
@@ -1,79 +1,87 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
-
# -*- encoding: utf-8 -*-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
s.
|
9
|
-
|
10
|
-
|
11
|
-
s.
|
12
|
-
s.
|
13
|
-
s.
|
14
|
-
s.
|
15
|
-
s.
|
16
|
-
s.
|
17
|
-
|
18
|
-
"
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
".
|
23
|
-
"
|
24
|
-
"Gemfile",
|
25
|
-
"
|
26
|
-
"
|
27
|
-
"
|
28
|
-
"
|
29
|
-
"
|
30
|
-
"ip2location_ruby.
|
31
|
-
"lib/ip2location_ruby.rb",
|
32
|
-
"lib/ip2location_ruby/
|
33
|
-
"lib/ip2location_ruby/
|
34
|
-
"lib/ip2location_ruby/
|
35
|
-
"lib/ip2location_ruby/
|
36
|
-
"lib/ip2location_ruby/
|
37
|
-
"
|
38
|
-
"spec/assets/DB24.
|
39
|
-
"spec/assets/
|
40
|
-
"spec/
|
41
|
-
"spec/
|
42
|
-
"
|
43
|
-
]
|
44
|
-
s.homepage = "https://github.com/ip2location/ip2location-ruby"
|
45
|
-
s.licenses = ["MIT"]
|
46
|
-
s.
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
s.
|
62
|
-
s.
|
63
|
-
s.
|
64
|
-
s.
|
65
|
-
s.
|
66
|
-
s.
|
67
|
-
s.
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "ip2location_ruby"
|
8
|
+
s.version = "8.2.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.require_paths = ["lib"]
|
12
|
+
s.authors = ["ip2location"]
|
13
|
+
s.email = ["support@ip2location.com"]
|
14
|
+
s.description = "The official IP2Location Ruby library to geolocate an IP address. You can lookup for country, region, city, latitude, longitude, zip code, time zone, ISP, domain, area code, usage type, mobile data, weather data and elevation from an IP address. Supported both IPv4 and IPv6 lookup."
|
15
|
+
s.email = "support@ip2location.com"
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE.txt",
|
18
|
+
"README.md"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".document",
|
22
|
+
".rspec",
|
23
|
+
"Gemfile",
|
24
|
+
"Gemfile.lock",
|
25
|
+
"LICENSE.txt",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"ip2location_ruby.gemspec",
|
29
|
+
"example.rb",
|
30
|
+
"lib/ip2location_ruby.rb",
|
31
|
+
"lib/ip2location_ruby/database_config.rb",
|
32
|
+
"lib/ip2location_ruby/i2l_float_data.rb",
|
33
|
+
"lib/ip2location_ruby/i2l_ip_data.rb",
|
34
|
+
"lib/ip2location_ruby/i2l_string_data.rb",
|
35
|
+
"lib/ip2location_ruby/ip2location_config.rb",
|
36
|
+
"lib/ip2location_ruby/ip2location_record.rb",
|
37
|
+
"spec/assets/DB24.DEMO4.BIN",
|
38
|
+
"spec/assets/DB24.DEMO6.BIN",
|
39
|
+
"spec/assets/IP-COUNTRY-SAMPLE.BIN",
|
40
|
+
"spec/ip2location_ruby_spec.rb",
|
41
|
+
"spec/spec_helper.rb",
|
42
|
+
"rb/data/IP2LOCATION-LITE-DB1.IPV6.BIN"
|
43
|
+
]
|
44
|
+
s.homepage = "https://github.com/ip2location/ip2location-ruby"
|
45
|
+
s.licenses = ["MIT"]
|
46
|
+
s.summary = "the ip2location ruby library"
|
47
|
+
|
48
|
+
if s.respond_to?(:metadata=)
|
49
|
+
s.metadata = {
|
50
|
+
"bug_tracker_uri" => "https://github.com/ip2location/ip2location-ruby/issues",
|
51
|
+
"documentation_uri" => "https://www.rubydoc.info/gems/ip2location_ruby",
|
52
|
+
"homepage_uri" => "https://www.ip2location.com",
|
53
|
+
"source_code_uri" => "https://github.com/ip2location/ip2location-ruby",
|
54
|
+
}
|
55
|
+
end
|
56
|
+
|
57
|
+
if s.respond_to? :specification_version then
|
58
|
+
s.specification_version = 4
|
59
|
+
|
60
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
61
|
+
s.add_runtime_dependency(%q<bindata>, [">= 0"])
|
62
|
+
s.add_development_dependency(%q<awesome_print>, [">= 0"])
|
63
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
|
64
|
+
s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
|
65
|
+
s.add_development_dependency(%q<bundler>, [">= 1.2.0"])
|
66
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
|
67
|
+
s.add_development_dependency(%q<simplecov>, [">= 0"])
|
68
|
+
else
|
69
|
+
s.add_dependency(%q<bindata>, [">= 0"])
|
70
|
+
s.add_dependency(%q<awesome_print>, [">= 0"])
|
71
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
72
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
73
|
+
s.add_dependency(%q<bundler>, [">= 1.2.0"])
|
74
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
|
75
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
76
|
+
end
|
77
|
+
else
|
78
|
+
s.add_dependency(%q<bindata>, [">= 0"])
|
79
|
+
s.add_dependency(%q<awesome_print>, [">= 0"])
|
80
|
+
s.add_dependency(%q<rspec>, ["~> 2.8.0"])
|
81
|
+
s.add_dependency(%q<rdoc>, ["~> 3.12"])
|
82
|
+
s.add_dependency(%q<bundler>, [">= 1.2.0"])
|
83
|
+
s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
|
84
|
+
s.add_dependency(%q<simplecov>, [">= 0"])
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
data/lib/ip2location_ruby.rb
CHANGED
@@ -1,200 +1,579 @@
|
|
1
|
-
# encoding: utf-8
|
2
|
-
require 'bindata'
|
3
|
-
require 'ipaddr'
|
4
|
-
require '
|
5
|
-
require '
|
6
|
-
require 'ip2location_ruby/
|
7
|
-
require 'ip2location_ruby/
|
8
|
-
require 'ip2location_ruby/
|
9
|
-
require 'ip2location_ruby/
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
self.
|
21
|
-
|
22
|
-
self.
|
23
|
-
self.
|
24
|
-
self.
|
25
|
-
self.
|
26
|
-
|
27
|
-
|
28
|
-
self
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
self
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
end
|
180
|
-
|
181
|
-
def
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'bindata'
|
3
|
+
require 'ipaddr'
|
4
|
+
require 'net/http'
|
5
|
+
require 'json'
|
6
|
+
require 'ip2location_ruby/ip2location_config'
|
7
|
+
require 'ip2location_ruby/database_config'
|
8
|
+
require 'ip2location_ruby/i2l_float_data'
|
9
|
+
require 'ip2location_ruby/i2l_string_data'
|
10
|
+
require 'ip2location_ruby/i2l_ip_data'
|
11
|
+
require 'ip2location_ruby/ip2location_record'
|
12
|
+
|
13
|
+
class Ip2location
|
14
|
+
attr_accessor :record_class4, :record_class6, :v4, :file, :db_index, :count, :base_addr, :ipno, :count, :record, :database, :columns, :ip_version, :ipv4databasecount, :ipv4databaseaddr, :ipv4indexbaseaddr, :ipv6databasecount, :ipv6databaseaddr, :ipv6indexbaseaddr
|
15
|
+
|
16
|
+
FIELD_NOT_SUPPORTED = 'NOT SUPPORTED'
|
17
|
+
INVALID_IP_ADDRESS = 'INVALID IP ADDRESS'
|
18
|
+
|
19
|
+
def open(url)
|
20
|
+
self.file = File.open(File.expand_path url, 'rb')
|
21
|
+
i2l = Ip2locationConfig.read(file)
|
22
|
+
self.db_index = i2l.databasetype
|
23
|
+
self.columns = i2l.databasecolumn + 0
|
24
|
+
self.database = DbConfig.setup_database(self.db_index)
|
25
|
+
self.ipv4databasecount = i2l.ipv4databasecount
|
26
|
+
self.ipv4databaseaddr = i2l.ipv4databaseaddr
|
27
|
+
self.ipv6databasecount = i2l.ipv6databasecount
|
28
|
+
self.ipv6databaseaddr = i2l.ipv6databaseaddr
|
29
|
+
self.ipv4indexbaseaddr = i2l.ipv4indexbaseaddr
|
30
|
+
self.ipv6indexbaseaddr = i2l.ipv6indexbaseaddr
|
31
|
+
self.record_class4 = (Ip2LocationRecord.init database, 4)
|
32
|
+
self.record_class6 = (Ip2LocationRecord.init database, 6)
|
33
|
+
self
|
34
|
+
end
|
35
|
+
|
36
|
+
def close()
|
37
|
+
self.file.close
|
38
|
+
end
|
39
|
+
|
40
|
+
def get_record(ip)
|
41
|
+
ipno = IPAddr.new(ip, Socket::AF_UNSPEC)
|
42
|
+
self.ip_version, ipnum = validateip(ipno)
|
43
|
+
self.v4 = ip_version == 4 ? true : false
|
44
|
+
self.count = v4 ? self.ipv4databasecount + 0 : self.ipv6databasecount + 0
|
45
|
+
self.base_addr = (v4 ? self.ipv4databaseaddr - 1 : self.ipv6databaseaddr - 1)
|
46
|
+
col_length = columns * 4
|
47
|
+
if ipv4indexbaseaddr > 0 || ipv6indexbaseaddr > 0
|
48
|
+
indexpos = 0
|
49
|
+
case ip_version
|
50
|
+
when 4
|
51
|
+
indexpos = ipv4indexbaseaddr + ((ipnum >> 16) << 3)
|
52
|
+
realipno = ipnum
|
53
|
+
# if ipnum reach MAX_IPV4_RANGE
|
54
|
+
if realipno == 4294967295
|
55
|
+
ipnum = realipno - 1
|
56
|
+
end
|
57
|
+
when 6
|
58
|
+
indexpos = ipv6indexbaseaddr + ((ipnum >> 112) << 3)
|
59
|
+
realipno = ipnum
|
60
|
+
# if ipnum reach MAX_IPV6_RANGE
|
61
|
+
if realipno == 340282366920938463463374607431768211455
|
62
|
+
ipnum = realipno - 1
|
63
|
+
end
|
64
|
+
end
|
65
|
+
low = read32(indexpos)
|
66
|
+
high = read32(indexpos + 4)
|
67
|
+
return self.record = bsearch(low, high, ipnum, self.base_addr, col_length)
|
68
|
+
else
|
69
|
+
return self.record = bsearch(0, self.count, ipnum, self.base_addr, col_length)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
def get_all(ip)
|
74
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
75
|
+
if valid
|
76
|
+
rec = get_record(ip)
|
77
|
+
if !(rec.nil?)
|
78
|
+
country_short = (defined?(rec.country_short) && rec.country_short != '') ? rec.country_short : FIELD_NOT_SUPPORTED
|
79
|
+
country_long = (defined?(rec.country_long) && rec.country_long != '') ? rec.country_long : FIELD_NOT_SUPPORTED
|
80
|
+
region = (defined?(rec.region) && rec.region != '') ? rec.region : FIELD_NOT_SUPPORTED
|
81
|
+
city = (defined?(rec.city) && rec.city != '') ? rec.city : FIELD_NOT_SUPPORTED
|
82
|
+
latitude = (defined?(rec.latitude) && rec.latitude != '') ? rec.latitude : FIELD_NOT_SUPPORTED
|
83
|
+
longitude = (defined?(rec.longitude) && rec.longitude != '') ? rec.longitude : FIELD_NOT_SUPPORTED
|
84
|
+
isp = (defined?(rec.isp) && rec.isp != '') ? rec.isp : FIELD_NOT_SUPPORTED
|
85
|
+
domain = (defined?(rec.domain) && rec.domain != '') ? rec.domain : FIELD_NOT_SUPPORTED
|
86
|
+
netspeed = (defined?(rec.netspeed) && rec.netspeed != '') ? rec.netspeed : FIELD_NOT_SUPPORTED
|
87
|
+
areacode = (defined?(rec.areacode) && rec.areacode != '') ? rec.areacode : FIELD_NOT_SUPPORTED
|
88
|
+
iddcode = (defined?(rec.iddcode) && rec.iddcode != '') ? rec.iddcode : FIELD_NOT_SUPPORTED
|
89
|
+
timezone = (defined?(rec.timezone) && rec.timezone != '') ? rec.timezone : FIELD_NOT_SUPPORTED
|
90
|
+
zipcode = (defined?(rec.zipcode) && rec.zipcode != '') ? rec.zipcode : FIELD_NOT_SUPPORTED
|
91
|
+
weatherstationname = (defined?(rec.weatherstationname) && rec.weatherstationname != '') ? rec.weatherstationname : FIELD_NOT_SUPPORTED
|
92
|
+
weatherstationcode = (defined?(rec.weatherstationcode) && rec.weatherstationcode != '') ? rec.weatherstationcode : FIELD_NOT_SUPPORTED
|
93
|
+
mcc = (defined?(rec.mcc) && rec.mcc != '') ? rec.mcc : FIELD_NOT_SUPPORTED
|
94
|
+
mnc = (defined?(rec.mnc) && rec.mnc != '') ? rec.mnc : FIELD_NOT_SUPPORTED
|
95
|
+
mobilebrand = (defined?(rec.mobilebrand) && rec.mobilebrand != '') ? rec.mobilebrand : FIELD_NOT_SUPPORTED
|
96
|
+
elevation = (defined?(rec.elevation) && rec.elevation != '') ? rec.elevation : FIELD_NOT_SUPPORTED
|
97
|
+
usagetype = (defined?(rec.usagetype) && rec.usagetype != '') ? rec.usagetype : FIELD_NOT_SUPPORTED
|
98
|
+
else
|
99
|
+
country_short = INVALID_IP_ADDRESS
|
100
|
+
country_long = INVALID_IP_ADDRESS
|
101
|
+
region = INVALID_IP_ADDRESS
|
102
|
+
city = INVALID_IP_ADDRESS
|
103
|
+
latitude = INVALID_IP_ADDRESS
|
104
|
+
longitude = INVALID_IP_ADDRESS
|
105
|
+
isp = INVALID_IP_ADDRESS
|
106
|
+
domain = INVALID_IP_ADDRESS
|
107
|
+
netspeed = INVALID_IP_ADDRESS
|
108
|
+
areacode = INVALID_IP_ADDRESS
|
109
|
+
iddcode = INVALID_IP_ADDRESS
|
110
|
+
timezone = INVALID_IP_ADDRESS
|
111
|
+
zipcode = INVALID_IP_ADDRESS
|
112
|
+
weatherstationname = INVALID_IP_ADDRESS
|
113
|
+
weatherstationcode = INVALID_IP_ADDRESS
|
114
|
+
mcc = INVALID_IP_ADDRESS
|
115
|
+
mnc = INVALID_IP_ADDRESS
|
116
|
+
mobilebrand = INVALID_IP_ADDRESS
|
117
|
+
elevation = INVALID_IP_ADDRESS
|
118
|
+
usagetype = INVALID_IP_ADDRESS
|
119
|
+
end
|
120
|
+
else
|
121
|
+
country_short = INVALID_IP_ADDRESS
|
122
|
+
country_long = INVALID_IP_ADDRESS
|
123
|
+
region = INVALID_IP_ADDRESS
|
124
|
+
city = INVALID_IP_ADDRESS
|
125
|
+
latitude = INVALID_IP_ADDRESS
|
126
|
+
longitude = INVALID_IP_ADDRESS
|
127
|
+
isp = INVALID_IP_ADDRESS
|
128
|
+
domain = INVALID_IP_ADDRESS
|
129
|
+
netspeed = INVALID_IP_ADDRESS
|
130
|
+
areacode = INVALID_IP_ADDRESS
|
131
|
+
iddcode = INVALID_IP_ADDRESS
|
132
|
+
timezone = INVALID_IP_ADDRESS
|
133
|
+
zipcode = INVALID_IP_ADDRESS
|
134
|
+
weatherstationname = INVALID_IP_ADDRESS
|
135
|
+
weatherstationcode = INVALID_IP_ADDRESS
|
136
|
+
mcc = INVALID_IP_ADDRESS
|
137
|
+
mnc = INVALID_IP_ADDRESS
|
138
|
+
mobilebrand = INVALID_IP_ADDRESS
|
139
|
+
elevation = INVALID_IP_ADDRESS
|
140
|
+
usagetype = INVALID_IP_ADDRESS
|
141
|
+
end
|
142
|
+
results = {}
|
143
|
+
results['country_short'] = country_short
|
144
|
+
results['country_long'] = country_long
|
145
|
+
results['region'] = region
|
146
|
+
results['city'] = city
|
147
|
+
results['latitude'] = latitude
|
148
|
+
results['longitude'] = longitude
|
149
|
+
results['isp'] = isp
|
150
|
+
results['domain'] = domain
|
151
|
+
results['netspeed'] = netspeed
|
152
|
+
results['areacode'] = areacode
|
153
|
+
results['iddcode'] = iddcode
|
154
|
+
results['timezone'] = timezone
|
155
|
+
results['zipcode'] = zipcode
|
156
|
+
results['weatherstationname'] = weatherstationname
|
157
|
+
results['weatherstationcode'] = weatherstationcode
|
158
|
+
results['mcc'] = mcc
|
159
|
+
results['mnc'] = mnc
|
160
|
+
results['mobilebrand'] = mobilebrand
|
161
|
+
results['elevation'] = elevation
|
162
|
+
results['usagetype'] = usagetype
|
163
|
+
return results
|
164
|
+
end
|
165
|
+
|
166
|
+
def get_country_short(ip)
|
167
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
168
|
+
if valid
|
169
|
+
rec = get_record(ip)
|
170
|
+
if !(rec.nil?)
|
171
|
+
country_short = (defined?(rec.country_short) && rec.country_short != '') ? rec.country_short : FIELD_NOT_SUPPORTED
|
172
|
+
else
|
173
|
+
country_short = INVALID_IP_ADDRESS
|
174
|
+
end
|
175
|
+
else
|
176
|
+
country_short = INVALID_IP_ADDRESS
|
177
|
+
end
|
178
|
+
return country_short
|
179
|
+
end
|
180
|
+
|
181
|
+
def get_country_long(ip)
|
182
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
183
|
+
if valid
|
184
|
+
rec = get_record(ip)
|
185
|
+
if !(rec.nil?)
|
186
|
+
country_long = (defined?(rec.country_long) && rec.country_long != '') ? rec.country_long : FIELD_NOT_SUPPORTED
|
187
|
+
else
|
188
|
+
country_long = INVALID_IP_ADDRESS
|
189
|
+
end
|
190
|
+
else
|
191
|
+
country_long = INVALID_IP_ADDRESS
|
192
|
+
end
|
193
|
+
return country_long
|
194
|
+
end
|
195
|
+
|
196
|
+
def get_region(ip)
|
197
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
198
|
+
if valid
|
199
|
+
rec = get_record(ip)
|
200
|
+
if !(rec.nil?)
|
201
|
+
region = (defined?(rec.region) && rec.region != '') ? rec.region : FIELD_NOT_SUPPORTED
|
202
|
+
else
|
203
|
+
region = INVALID_IP_ADDRESS
|
204
|
+
end
|
205
|
+
else
|
206
|
+
region = INVALID_IP_ADDRESS
|
207
|
+
end
|
208
|
+
return region
|
209
|
+
end
|
210
|
+
|
211
|
+
def get_city(ip)
|
212
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
213
|
+
if valid
|
214
|
+
rec = get_record(ip)
|
215
|
+
if !(rec.nil?)
|
216
|
+
city = (defined?(rec.city) && rec.city != '') ? rec.city : FIELD_NOT_SUPPORTED
|
217
|
+
else
|
218
|
+
city = INVALID_IP_ADDRESS
|
219
|
+
end
|
220
|
+
else
|
221
|
+
city = INVALID_IP_ADDRESS
|
222
|
+
end
|
223
|
+
return city
|
224
|
+
end
|
225
|
+
|
226
|
+
def get_latitude(ip)
|
227
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
228
|
+
if valid
|
229
|
+
rec = get_record(ip)
|
230
|
+
if !(rec.nil?)
|
231
|
+
latitude = (defined?(rec.latitude) && rec.latitude != '') ? rec.latitude : FIELD_NOT_SUPPORTED
|
232
|
+
else
|
233
|
+
latitude = INVALID_IP_ADDRESS
|
234
|
+
end
|
235
|
+
else
|
236
|
+
latitude = INVALID_IP_ADDRESS
|
237
|
+
end
|
238
|
+
return latitude
|
239
|
+
end
|
240
|
+
|
241
|
+
def get_longitude(ip)
|
242
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
243
|
+
if valid
|
244
|
+
rec = get_record(ip)
|
245
|
+
if !(rec.nil?)
|
246
|
+
longitude = (defined?(rec.longitude) && rec.longitude != '') ? rec.longitude : FIELD_NOT_SUPPORTED
|
247
|
+
else
|
248
|
+
longitude = INVALID_IP_ADDRESS
|
249
|
+
end
|
250
|
+
else
|
251
|
+
longitude = INVALID_IP_ADDRESS
|
252
|
+
end
|
253
|
+
return longitude
|
254
|
+
end
|
255
|
+
|
256
|
+
def get_isp(ip)
|
257
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
258
|
+
if valid
|
259
|
+
rec = get_record(ip)
|
260
|
+
if !(rec.nil?)
|
261
|
+
isp = (defined?(rec.isp) && rec.isp != '') ? rec.isp : FIELD_NOT_SUPPORTED
|
262
|
+
else
|
263
|
+
isp = INVALID_IP_ADDRESS
|
264
|
+
end
|
265
|
+
else
|
266
|
+
isp = INVALID_IP_ADDRESS
|
267
|
+
end
|
268
|
+
return isp
|
269
|
+
end
|
270
|
+
|
271
|
+
def get_domain(ip)
|
272
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
273
|
+
if valid
|
274
|
+
rec = get_record(ip)
|
275
|
+
if !(rec.nil?)
|
276
|
+
domain = (defined?(rec.domain) && rec.domain != '') ? rec.domain : FIELD_NOT_SUPPORTED
|
277
|
+
else
|
278
|
+
domain = INVALID_IP_ADDRESS
|
279
|
+
end
|
280
|
+
else
|
281
|
+
domain = INVALID_IP_ADDRESS
|
282
|
+
end
|
283
|
+
return domain
|
284
|
+
end
|
285
|
+
|
286
|
+
def get_zipcode(ip)
|
287
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
288
|
+
if valid
|
289
|
+
rec = get_record(ip)
|
290
|
+
if !(rec.nil?)
|
291
|
+
zipcode = (defined?(rec.zipcode) && rec.zipcode != '') ? rec.zipcode : FIELD_NOT_SUPPORTED
|
292
|
+
else
|
293
|
+
zipcode = INVALID_IP_ADDRESS
|
294
|
+
end
|
295
|
+
else
|
296
|
+
zipcode = INVALID_IP_ADDRESS
|
297
|
+
end
|
298
|
+
return zipcode
|
299
|
+
end
|
300
|
+
|
301
|
+
def get_timezone(ip)
|
302
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
303
|
+
if valid
|
304
|
+
rec = get_record(ip)
|
305
|
+
if !(rec.nil?)
|
306
|
+
timezone = (defined?(rec.timezone) && rec.timezone != '') ? rec.timezone : FIELD_NOT_SUPPORTED
|
307
|
+
else
|
308
|
+
timezone = INVALID_IP_ADDRESS
|
309
|
+
end
|
310
|
+
else
|
311
|
+
timezone = INVALID_IP_ADDRESS
|
312
|
+
end
|
313
|
+
return timezone
|
314
|
+
end
|
315
|
+
|
316
|
+
def get_netspeed(ip)
|
317
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
318
|
+
if valid
|
319
|
+
rec = get_record(ip)
|
320
|
+
if !(rec.nil?)
|
321
|
+
netspeed = (defined?(rec.netspeed) && rec.netspeed != '') ? rec.netspeed : FIELD_NOT_SUPPORTED
|
322
|
+
else
|
323
|
+
netspeed = INVALID_IP_ADDRESS
|
324
|
+
end
|
325
|
+
else
|
326
|
+
netspeed = INVALID_IP_ADDRESS
|
327
|
+
end
|
328
|
+
return netspeed
|
329
|
+
end
|
330
|
+
|
331
|
+
def get_iddcode(ip)
|
332
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
333
|
+
if valid
|
334
|
+
rec = get_record(ip)
|
335
|
+
if !(rec.nil?)
|
336
|
+
iddcode = (defined?(rec.iddcode) && rec.iddcode != '') ? rec.iddcode : FIELD_NOT_SUPPORTED
|
337
|
+
else
|
338
|
+
iddcode = INVALID_IP_ADDRESS
|
339
|
+
end
|
340
|
+
else
|
341
|
+
iddcode = INVALID_IP_ADDRESS
|
342
|
+
end
|
343
|
+
return iddcode
|
344
|
+
end
|
345
|
+
|
346
|
+
def get_areacode(ip)
|
347
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
348
|
+
if valid
|
349
|
+
rec = get_record(ip)
|
350
|
+
if !(rec.nil?)
|
351
|
+
areacode = (defined?(rec.areacode) && rec.areacode != '') ? rec.areacode : FIELD_NOT_SUPPORTED
|
352
|
+
else
|
353
|
+
areacode = INVALID_IP_ADDRESS
|
354
|
+
end
|
355
|
+
else
|
356
|
+
areacode = INVALID_IP_ADDRESS
|
357
|
+
end
|
358
|
+
return areacode
|
359
|
+
end
|
360
|
+
|
361
|
+
def get_weatherstationcode(ip)
|
362
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
363
|
+
if valid
|
364
|
+
rec = get_record(ip)
|
365
|
+
if !(rec.nil?)
|
366
|
+
weatherstationcode = (defined?(rec.weatherstationcode) && rec.weatherstationcode != '') ? rec.weatherstationcode : FIELD_NOT_SUPPORTED
|
367
|
+
else
|
368
|
+
weatherstationcode = INVALID_IP_ADDRESS
|
369
|
+
end
|
370
|
+
else
|
371
|
+
weatherstationcode = INVALID_IP_ADDRESS
|
372
|
+
end
|
373
|
+
return weatherstationcode
|
374
|
+
end
|
375
|
+
|
376
|
+
def get_weatherstationname(ip)
|
377
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
378
|
+
if valid
|
379
|
+
rec = get_record(ip)
|
380
|
+
if !(rec.nil?)
|
381
|
+
weatherstationname = (defined?(rec.weatherstationname) && rec.weatherstationname != '') ? rec.weatherstationname : FIELD_NOT_SUPPORTED
|
382
|
+
else
|
383
|
+
weatherstationname = INVALID_IP_ADDRESS
|
384
|
+
end
|
385
|
+
else
|
386
|
+
weatherstationname = INVALID_IP_ADDRESS
|
387
|
+
end
|
388
|
+
return weatherstationname
|
389
|
+
end
|
390
|
+
|
391
|
+
def get_mcc(ip)
|
392
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
393
|
+
if valid
|
394
|
+
rec = get_record(ip)
|
395
|
+
if !(rec.nil?)
|
396
|
+
mcc = (defined?(rec.mcc) && rec.mcc != '') ? rec.mcc : FIELD_NOT_SUPPORTED
|
397
|
+
else
|
398
|
+
mcc = INVALID_IP_ADDRESS
|
399
|
+
end
|
400
|
+
else
|
401
|
+
mcc = INVALID_IP_ADDRESS
|
402
|
+
end
|
403
|
+
return mcc
|
404
|
+
end
|
405
|
+
|
406
|
+
def get_mnc(ip)
|
407
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
408
|
+
if valid
|
409
|
+
rec = get_record(ip)
|
410
|
+
if !(rec.nil?)
|
411
|
+
mnc = (defined?(mnc) && rec.mnc != '') ? rec.mnc : FIELD_NOT_SUPPORTED
|
412
|
+
else
|
413
|
+
mnc = INVALID_IP_ADDRESS
|
414
|
+
end
|
415
|
+
else
|
416
|
+
mnc = INVALID_IP_ADDRESS
|
417
|
+
end
|
418
|
+
return mnc
|
419
|
+
end
|
420
|
+
|
421
|
+
def get_mobilebrand(ip)
|
422
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
423
|
+
if valid
|
424
|
+
rec = get_record(ip)
|
425
|
+
if !(rec.nil?)
|
426
|
+
mobilebrand = (defined?(rec.mobilebrand) && rec.mobilebrand != '') ? rec.mobilebrand : FIELD_NOT_SUPPORTED
|
427
|
+
else
|
428
|
+
mobilebrand = INVALID_IP_ADDRESS
|
429
|
+
end
|
430
|
+
else
|
431
|
+
mobilebrand = INVALID_IP_ADDRESS
|
432
|
+
end
|
433
|
+
return mobilebrand
|
434
|
+
end
|
435
|
+
|
436
|
+
def get_elevation(ip)
|
437
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
438
|
+
if valid
|
439
|
+
rec = get_record(ip)
|
440
|
+
if !(rec.nil?)
|
441
|
+
elevation = (defined?(rec.elevation) && rec.elevation != '') ? rec.elevation : FIELD_NOT_SUPPORTED
|
442
|
+
else
|
443
|
+
elevation = INVALID_IP_ADDRESS
|
444
|
+
end
|
445
|
+
else
|
446
|
+
elevation = INVALID_IP_ADDRESS
|
447
|
+
end
|
448
|
+
return elevation
|
449
|
+
end
|
450
|
+
|
451
|
+
def get_usagetype(ip)
|
452
|
+
valid = !(IPAddr.new(ip) rescue nil).nil?
|
453
|
+
if valid
|
454
|
+
rec = get_record(ip)
|
455
|
+
if !(rec.nil?)
|
456
|
+
usagetype = (defined?(rec.usagetype) && rec.usagetype != '') ? rec.usagetype : FIELD_NOT_SUPPORTED
|
457
|
+
else
|
458
|
+
usagetype = INVALID_IP_ADDRESS
|
459
|
+
end
|
460
|
+
else
|
461
|
+
usagetype = INVALID_IP_ADDRESS
|
462
|
+
end
|
463
|
+
return usagetype
|
464
|
+
end
|
465
|
+
|
466
|
+
def bsearch(low, high, ipnum, base_addr, col_length)
|
467
|
+
while low <= high do
|
468
|
+
mid = (low + high) >> 1
|
469
|
+
ip_from, ip_to = get_from_to(mid, base_addr, col_length)
|
470
|
+
if ipnum >= ip_from && ipnum < ip_to
|
471
|
+
from_base = ( base_addr + mid * (col_length + (self.v4 ? 0 : 12)))
|
472
|
+
file.seek(from_base)
|
473
|
+
if v4
|
474
|
+
return self.record_class4.read(file)
|
475
|
+
else
|
476
|
+
return self.record_class6.read(file)
|
477
|
+
end
|
478
|
+
else
|
479
|
+
if ipnum < ip_from
|
480
|
+
high = mid - 1
|
481
|
+
else
|
482
|
+
low = mid + 1
|
483
|
+
end
|
484
|
+
end
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
488
|
+
def get_from_to(mid, base_addr, col_length)
|
489
|
+
from_base = ( base_addr + mid * (col_length + (v4 ? 0 : 12)))
|
490
|
+
file.seek(from_base)
|
491
|
+
ip_from = v4 ? file.read(4).unpack('V').first : readipv6(file)
|
492
|
+
file.seek(from_base + col_length + (v4 ? 0 : 12))
|
493
|
+
ip_to = v4 ? file.read(4).unpack('V').first : readipv6(file)
|
494
|
+
[ip_from, ip_to]
|
495
|
+
end
|
496
|
+
|
497
|
+
def validateip(ip)
|
498
|
+
if ip.ipv4?
|
499
|
+
ipv = 4
|
500
|
+
ipnum = ip.to_i + 0
|
501
|
+
else
|
502
|
+
ipv = 6
|
503
|
+
ipnum = ip.to_i + 0
|
504
|
+
#reformat ipv4 address in ipv6
|
505
|
+
if ipnum >= 281470681743360 && ipnum <= 281474976710655
|
506
|
+
ipv = 4
|
507
|
+
ipnum = ipnum - 281470681743360
|
508
|
+
end
|
509
|
+
#reformat 6to4 address to ipv4 address 2002:: to 2002:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF
|
510
|
+
if ipnum >= 42545680458834377588178886921629466624 && ipnum <= 42550872755692912415807417417958686719
|
511
|
+
ipv = 4
|
512
|
+
#bitshift right 80 bits
|
513
|
+
ipnum = ipnum >> 80
|
514
|
+
#bitwise modulus to get the last 32 bit
|
515
|
+
ipnum = ipnum % 4294967296
|
516
|
+
end
|
517
|
+
#reformat Teredo address to ipv4 address 2001:0000:: to 2001:0000:FFFF:FFFF:FFFF:FFFF:FFFF:FFFF:
|
518
|
+
if ipnum >= 42540488161975842760550356425300246528 && ipnum <= 42540488241204005274814694018844196863
|
519
|
+
ipv = 4
|
520
|
+
#bitwise not to invert binary
|
521
|
+
ipnum = ~ipnum
|
522
|
+
#bitwise modulus to get the last 32 bit
|
523
|
+
ipnum = ipnum % 4294967296
|
524
|
+
end
|
525
|
+
end
|
526
|
+
[ipv, ipnum]
|
527
|
+
end
|
528
|
+
|
529
|
+
def read32(indexp)
|
530
|
+
file.seek(indexp - 1)
|
531
|
+
return file.read(4).unpack('V').first
|
532
|
+
end
|
533
|
+
|
534
|
+
def readipv6(filer)
|
535
|
+
parts = filer.read(16).unpack('V*')
|
536
|
+
return parts[0] + parts[1] * 4294967296 + parts[2] * 4294967296**2 + parts[3] * 4294967296**3
|
537
|
+
end
|
538
|
+
|
539
|
+
private :get_record, :bsearch, :get_from_to, :read32, :readipv6
|
540
|
+
end
|
541
|
+
|
542
|
+
class Ip2locationWebService
|
543
|
+
attr_accessor :ws_api_key, :ws_package
|
544
|
+
|
545
|
+
def initialize(api_key, package)
|
546
|
+
if !api_key.match(/^[0-9A-Z]{10}$/) && api_key != 'demo'
|
547
|
+
raise Exception.new "Please provide a valid IP2Location web service API key."
|
548
|
+
end
|
549
|
+
if !package.match(/^WS[0-9]+$/)
|
550
|
+
package = 'WS1'
|
551
|
+
end
|
552
|
+
self.ws_api_key = api_key
|
553
|
+
self.ws_package = package
|
554
|
+
end
|
555
|
+
|
556
|
+
def lookup(ip, add_ons, language)
|
557
|
+
response = Net::HTTP.get(URI("https://api.ip2location.com/v2/?key=" + self.ws_api_key + "&ip=" + ip + "&package=" + self.ws_package + "&format=json&addon=" + add_ons + "&lang=" + language))
|
558
|
+
parsed_response = JSON.parse(response)
|
559
|
+
if parsed_response.nil?
|
560
|
+
return false
|
561
|
+
end
|
562
|
+
if !parsed_response["response"].nil?
|
563
|
+
raise Exception.new "Error: " + parsed_response["response"]
|
564
|
+
end
|
565
|
+
return parsed_response
|
566
|
+
end
|
567
|
+
|
568
|
+
def get_credit()
|
569
|
+
response = Net::HTTP.get(URI("https://api.ip2location.com/v2/?key=" + self.ws_api_key + "&check=true"))
|
570
|
+
parsed_response = JSON.parse(response)
|
571
|
+
if parsed_response.nil?
|
572
|
+
return 0
|
573
|
+
end
|
574
|
+
if parsed_response["response"].nil?
|
575
|
+
return 0
|
576
|
+
end
|
577
|
+
return parsed_response["response"]
|
578
|
+
end
|
200
579
|
end
|