1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-12 15:57:54 +00:00

Add injector program

This is an initial implementation of injector service needed for parse
external hosts.txt and adds hosts from them into our database.
This commit is contained in:
Hidden Z 2010-10-09 19:10:11 +00:00
parent 85981abf58
commit bc33f75238

31
injector Executable file
View File

@ -0,0 +1,31 @@
#!/usr/bin/python
import os
import sys
# django setup
DJANGO_SETTINGS_MODULE = 'settings'
DJANGO_PROJECT_PATH = 'web'
sys.path.insert(1, DJANGO_PROJECT_PATH)
os.environ['DJANGO_SETTINGS_MODULE'] = DJANGO_SETTINGS_MODULE
from web.postkey.models import i2phost
# hosts.txt we want to parse
hostsfile = os.environ['HOME'] + '/.i2p/hosts.txt'
f = open(hostsfile, 'r')
for line in f:
entry = line.split('=')
# check for already existed hosts in database to avoid adding duplicates
# 1. do lookup by hostname
# 2. do lookup by base64 hash
if not i2phost.objects.filter(name=entry[0]) \
and not i2phost.objects.filter(b64hash=entry[1]):
print 'Adding %s' % entry[0]
host = i2phost(name=entry[0], b64hash=entry[1],
description='Auto-added from external hosts.txt',
activated=True)
host.save()
else:
print 'Host %s already exists' % entry[0]
f.close()