1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-22 12:34:17 +00:00
py-i2phosts/injector

31 lines
805 B
Plaintext
Raw Normal View History

#!/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.
# Do lookup by hostname only.
qs = i2phost.objects.filter(name=entry[0])
if qs.exists():
print 'Host %s already exists' % entry[0]
else:
print 'Adding %s' % entry[0]
host = i2phost(name=entry[0], b64hash=entry[1],
description='Auto-added from external hosts.txt',
activated=True)
host.save()
f.close()