Jan Dittberner
9af353765d
- add logging to ddportfolioservice/model/keyfinder.py and ddportfolioservice/model/keyringanalyzer.py - use ~ instead of ${HOME} in ddportfolioservice/model/ddportfolio.ini - use subprocess.Popen instead of os.popen
76 lines
2.4 KiB
Python
76 lines
2.4 KiB
Python
# -*- python -*-
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# DDPortfolio service key finder module
|
|
# Copyright (c) 2009 Jan Dittberner <jan@dittberner.info>
|
|
#
|
|
# This file is part of DDPortfolio service.
|
|
#
|
|
# DDPortfolio service is free software: you can redistribute it and/or
|
|
# modify it under the terms of the GNU Affero General Public License
|
|
# as published by the Free Software Foundation, either version 3 of
|
|
# the License, or (at your option) any later version.
|
|
#
|
|
# DDPortfolio service 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
|
|
# Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public
|
|
# License along with this program. If not, see
|
|
# <http://www.gnu.org/licenses/>.
|
|
#
|
|
"""
|
|
This module provides tools for finding PGP key information from a
|
|
given keyring.
|
|
"""
|
|
import logging
|
|
import time
|
|
|
|
db = None
|
|
cachetimestamp = 0
|
|
|
|
def _get_keyring_cache():
|
|
global db, cachetimestamp
|
|
if db is None or (time.time() - cachetimestamp) > 86300:
|
|
import anydbm
|
|
import pkg_resources
|
|
import os.path
|
|
filename = pkg_resources.resource_filename(__name__,
|
|
'keyringcache')
|
|
logging.debug('reading cache data from %s', filename)
|
|
assert os.path.exists(filename) and os.path.isfile(filename)
|
|
db = anydbm.open(filename, 'r')
|
|
cachetimestamp = time.time()
|
|
return db
|
|
|
|
def _get_cached(cachekey):
|
|
cache = _get_keyring_cache()
|
|
logging.debug('cache lookup for %s', cachekey)
|
|
if cachekey in cache:
|
|
logging.debug('found entry %s', cache[cachekey])
|
|
return cache[cachekey]
|
|
return None
|
|
|
|
def getFingerprintByEmail(email):
|
|
"""Gets the fingerprints associated with the given email address
|
|
if available."""
|
|
return _get_cached('fpr:email:%s' % email)
|
|
|
|
|
|
def getRealnameByEmail(email):
|
|
"""Gets the real names associated with the given email address if
|
|
available."""
|
|
return _get_cached('name:email:%s' % email)
|
|
|
|
|
|
def getLoginByEmail(email):
|
|
"""Gets the logins associated with the given email address if
|
|
available."""
|
|
return _get_cached('login:email:%s' % email)
|
|
|
|
|
|
def getLoginByFingerprint(fpr):
|
|
"""Gets the login associated with the given fingerprint if
|
|
available."""
|
|
return _get_cached('login:fpr:%s' % fpr)
|