1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 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 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
|
# -*- coding: utf-8 -*-
###
# Copyright (c) 2009-2010 by Elián Hanisch <lambdae2@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
###
###
# Prints user's country and local time information in
# whois/whowas replies (for WeeChat 0.3.*)
#
# This script uses MaxMind's GeoLite database from
# http://www.maxmind.com/app/geolitecountry
#
# This script depends in pytz third party module for retrieving
# timezone information for a given country. Without it the local time
# for a user won't be displayed.
# Get it from http://pytz.sourceforge.net or from your distro packages,
# python-tz in Ubuntu/Debian
#
# Commands:
# * /country
# Prints country for a given ip, uri or nick. See /help country
#
# Settings:
# * plugins.var.python.country.show_in_whois:
# If 'off' /whois or /whowas replies won't contain country information.
# Valid values: on, off
# * plugins.var.python.country.show_localtime:
# If 'off' timezone and local time infomation won't be looked for.
# Valid values: on, off
#
# History:
#
# 2010-01-11
# version 0.3.1: bug fix
# * irc_nick infolist wasn't freed in get_host_by_nick()
#
# 2009-12-12
# version 0.3: update WeeChat site.
#
# 2009-09-17
# version 0.2: added timezone and local time information.
#
# 2009-08-24
# version 0.1.1: fixed python 2.5 compatibility.
#
# 2009-08-21
# version 0.1: initial release.
#
###
SCRIPT_NAME = "country"
SCRIPT_AUTHOR = "Elián Hanisch <lambdae2@gmail.com>"
SCRIPT_VERSION = "0.3.1"
SCRIPT_LICENSE = "GPL3"
SCRIPT_DESC = "Prints user's country and local time in whois replies"
SCRIPT_COMMAND = "country"
try:
import weechat
WEECHAT_RC_OK = weechat.WEECHAT_RC_OK
import_ok = True
except ImportError:
print "This script must be run under WeeChat."
print "Get WeeChat now at: http://www.weechat.org/"
import_ok = False
try:
import pytz, datetime
pytz_module = True
except:
pytz_module = False
import os
### ip database
database_url = 'http://geolite.maxmind.com/download/geoip/database/GeoIPCountryCSV.zip'
database_file = 'GeoIPCountryWhois.csv'
### config
settings = {'show_in_whois': 'on', 'show_localtime': 'on'}
boolDict = {'on':True, 'off':False}
def get_config_boolean(config):
value = weechat.config_get_plugin(config)
try:
return boolDict[value]
except KeyError:
default = settings[config]
error("Error while fetching config '%s'. Using default value '%s'." %(config, default))
error("'%s' is invalid, allowed: 'on', 'off'" %value)
return boolDict[default]
### messages
def say(s, prefix=SCRIPT_NAME, buffer=''):
weechat.prnt(buffer, '%s: %s' %(prefix, s))
def error(s, prefix=SCRIPT_NAME, buffer=''):
weechat.prnt(buffer, '%s%s: %s' %(weechat.prefix('error'), prefix, s))
def debug(s, prefix='debug', buffer=''):
weechat.prnt(buffer, '%s: %s' %(prefix, s))
def whois(nick, string, buffer=''):
"""Message formatted like a whois reply."""
prefix_network = weechat.prefix('network')
color_delimiter = weechat.color('chat_delimiters')
color_nick = weechat.color('chat_nick')
weechat.prnt(buffer, '%s%s[%s%s%s] %s' %(prefix_network, color_delimiter, color_nick, nick,
color_delimiter, string))
def string_country(country, code):
"""Format for country info string."""
color_delimiter = weechat.color('chat_delimiters')
color_chat = weechat.color('chat')
return '%s%s %s(%s%s%s)' %(color_chat, country, color_delimiter,
color_chat, code, color_delimiter)
def string_time(dt):
"""Format for local time info string."""
color_delimiter = weechat.color('chat_delimiters')
color_chat = weechat.color('chat')
date = dt.strftime('%x %X %Z')
tz = dt.strftime('UTC%z')
return '%s%s %s(%s%s%s)' %(color_chat, date, color_delimiter,
color_chat, tz, color_delimiter)
### functions
def get_script_dir():
"""Returns script's dir, creates it if needed."""
script_dir = weechat.info_get('weechat_dir', '')
script_dir = os.path.join(script_dir, 'country')
if not os.path.isdir(script_dir):
os.makedirs(script_dir)
return script_dir
ip_database = ''
def check_database():
"""Check if there's a database already installed."""
global ip_database
if not ip_database:
ip_database = os.path.join(get_script_dir(), database_file)
return os.path.isfile(ip_database)
timeout = 1000*60
hook_download = ''
def update_database():
"""Downloads and uncompress the database."""
global hook_download, ip_database
if not ip_database:
check_database()
if hook_download:
weechat.unhook(hook_download)
hook_download = ''
script_dir = get_script_dir()
say("Downloading IP database...")
hook_download = weechat.hook_process(
"python -c \"\n"
"import urllib2, zipfile, os, sys\n"
"try:\n"
" temp = os.path.join('%(script_dir)s', 'temp.zip')\n"
" try:\n"
" zip = urllib2.urlopen('%(url)s', timeout=10)\n"
" except TypeError: # python2.5\n"
" import socket\n"
" socket.setdefaulttimeout(10)\n"
" zip = urllib2.urlopen('%(url)s')\n"
" fd = open(temp, 'w')\n"
" fd.write(zip.read())\n"
" fd.close()\n"
" print 'Download complete, uncompressing...'\n"
" zip = zipfile.ZipFile(temp)\n"
" try:\n"
" zip.extractall(path='%(script_dir)s')\n"
" except AttributeError: # python2.5\n"
" fd = open('%(ip_database)s', 'w')\n"
" fd.write(zip.read('%(database_file)s'))\n"
" fd.close()\n"
" os.remove(temp)\n"
"except Exception, e:\n"
" print >>sys.stderr, e\n\"" %{'url':database_url, 'script_dir':script_dir,
'ip_database':ip_database, 'database_file':database_file},
timeout, 'update_database_cb', '')
process_stderr = ''
def update_database_cb(data, command, rc, stdout, stderr):
"""callback for our database download."""
global hook_download, process_stderr
#debug("%s @ stderr: '%s', stdout: '%s'" %(rc, stderr.strip('\n'), stdout.strip('\n')))
if stdout:
say(stdout)
if stderr:
process_stderr += stderr
if int(rc) >= 0:
if process_stderr:
error(process_stderr)
process_stderr = ''
else:
say('Success.')
hook_download = ''
return WEECHAT_RC_OK
hook_get_ip = ''
def get_ip_process(host):
"""Resolves host to ip."""
# because getting the ip might take a while, we must hook a process so weechat doesn't hang.
global hook_get_ip
if hook_get_ip:
weechat.unhook(hook_get_ip)
hook_get_ip = ''
hook_get_ip = weechat.hook_process(
"python -c \"\n"
"import socket, sys\n"
"try:\n"
" ip = socket.gethostbyname('%(host)s')\n"
" print ip\n"
"except Exception, e:\n"
" print >>sys.stderr, e\n\"" %{'host':host},
timeout, 'get_ip_process_cb', '')
def get_ip_process_cb(data, command, rc, stdout, stderr):
"""Called when uri resolve finished."""
global hook_get_ip, reply_wrapper
#debug("%s @ stderr: '%s', stdout: '%s'" %(rc, stderr.strip('\n'), stdout.strip('\n')))
if stdout and reply_wrapper:
code, country = search_in_database(stdout[:-1])
reply_wrapper(code, country)
reply_wrapper = None
if stderr and reply_wrapper:
reply_wrapper(*unknown)
reply_wrapper = None
if int(rc) >= 0:
hook_get_ip = ''
return WEECHAT_RC_OK
def is_ip(ip):
"""Checks if 'ip' is a valid ip number."""
if ip.count('.') == 3:
L = ip.split('.')
try:
for n in L:
n = int(n)
if not (n >= 0 and n <= 255):
return False
except:
return False
return True
else:
return False
def is_host(host):
"""A valid host must have at least one dot an no slashes."""
# This is a very poor check
# I will fix it when it fails
assert host
if '/' in host \
or not host[0].isalnum() or not host[-1].isalnum():
return False
elif '.' in host:
return True
return False
def get_host_by_nick(buffer, nick):
"""Return host of a given nick in buffer."""
channel = weechat.buffer_get_string(buffer, 'localvar_channel')
server = weechat.buffer_get_string(buffer, 'localvar_server')
if channel and server:
infolist = weechat.infolist_get('irc_nick', '', '%s,%s' %(server, channel))
if infolist:
try:
while weechat.infolist_next(infolist):
name = weechat.infolist_string(infolist, 'name')
if nick == name:
host = weechat.infolist_string(infolist, 'host')
return host[host.find('@')+1:] # strip everything in front of '@'
finally:
weechat.infolist_free(infolist)
return ''
def sum_ip(ip):
"""Converts the ip number from dot-decimal notation to decimal."""
L = map(int, ip.split('.'))
return L[0]*16777216 + L[1]*65536 + L[2]*256 + L[3]
unknown = ('--', 'unknown')
def search_in_database(ip):
"""
search_in_database(ip_number) => (code, country)
returns ('--', 'unknown') if nothing found
"""
import csv
global ip_database
if not ip or not ip_database:
return unknown
try:
n = sum_ip(ip)
fd = open(ip_database)
reader = csv.reader(fd)
max = os.path.getsize(ip_database)
last_high = last_low = min = 0
while True:
mid = (max + min)/2
fd.seek(mid)
fd.readline() # move cursor to next line
_, _, low, high, code, country = reader.next()
if low == last_low and high == last_high:
break
if n < long(low):
max = mid
elif n > long(high):
min = mid
elif n > long(low) and n < long(high):
return (code, country)
else:
break
last_low, last_high = low, high
except StopIteration:
pass
return unknown
def print_country(host, buffer, quiet=False, broken=False, nick=''):
"""
Prints country and local time for a given host, if quiet is True prints only if there's a match,
if broken is True reply will be split in two messages.
"""
#debug('host: ' + host)
def reply_country(code, country):
if quiet and code == '--':
return
if pytz_module and get_config_boolean('show_localtime') and code != '--':
dt = get_country_datetime(code)
if broken:
whois(nick or host, string_country(country, code), buffer)
whois(nick or host, string_time(dt), buffer)
else:
s = '%s - %s' %(string_country(country, code), string_time(dt))
whois(nick or host, s, buffer)
else:
whois(nick or host, string_country(country, code), buffer)
if is_ip(host):
# good, got an ip
code, country = search_in_database(host)
elif is_host(host):
# try to resolve uri
global reply_wrapper
reply_wrapper = reply_country
get_ip_process(host)
return
else:
# probably a cloak or ipv6
code, country = '--', 'cloaked'
reply_country(code, country)
### timezone
def get_country_datetime(code):
"""Get datetime object with country's timezone."""
tzname = pytz.country_timezones(code)[0]
tz = pytz.timezone(tzname)
return datetime.datetime.now(tz)
### commands
def cmd_country(data, buffer, args):
"""Shows country and local time for a given ip, uri or nick."""
if not args:
weechat.command('', '/HELP %s' %SCRIPT_COMMAND)
return WEECHAT_RC_OK
if ' ' in args:
# picks the first argument only
args = args[:args.find(' ')]
if args == 'update':
update_database()
else:
if not check_database():
error("IP database not found. You must download a database with '/country update' before "
"using this script.", buffer=buffer)
return WEECHAT_RC_OK
#check if is a nick
host = get_host_by_nick(buffer, args)
if not host:
host = args
print_country(host, buffer)
return WEECHAT_RC_OK
### signal callbacks
def whois_cb(data, signal, signal_data):
"""function for /WHOIS"""
if not get_config_boolean('show_in_whois') or not check_database():
return WEECHAT_RC_OK
nick, user, host = signal_data.split()[3:6]
server = signal[:signal.find(',')]
#debug('%s | %s | %s' %(data, signal, signal_data))
buffer = weechat.buffer_search('irc', 'server.%s' %server)
print_country(host, buffer, quiet=True, broken=True, nick=nick)
return WEECHAT_RC_OK
### main
if import_ok and weechat.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE,
SCRIPT_DESC, '', ''):
weechat.hook_signal('*,irc_in2_311', 'whois_cb', '') # /whois
weechat.hook_signal('*,irc_in2_314', 'whois_cb', '') # /whowas
weechat.hook_command('country', cmd_country.__doc__, 'update | (nick|ip|uri)',
" update: Downloads/updates ip database with country codes.\n"
"nick, ip, uri: Gets country and local time for a given ip, domain or nick.",
'update||%(nick)', 'cmd_country', '')
# settings
for opt, val in settings.iteritems():
if not weechat.config_is_set_plugin(opt):
weechat.config_set_plugin(opt, val)
if not check_database():
say("IP database not found. You must download a database with '/country update' before "
"using this script.")
if not pytz_module and get_config_boolean('show_localtime'):
error(
"pytz module isn't installed, local time information is DISABLED. "
"Get it from http://pytz.sourceforge.net or from your distro packages "
"(python-tz in Ubuntu/Debian).")
weechat.config_set_plugin('show_localtime', 'off')
# vim:set shiftwidth=4 tabstop=4 noexpandtab textwidth=100:
|