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
|
# Copyright 2009 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
__metaclass__ = type
__all__ = [
"mail_handlers",
]
from lp.services.config import config
from lp.answers.mail.handler import AnswerTrackerHandler
from lp.blueprints.mail.handler import BlueprintHandler
from lp.bugs.mail.handler import MaloneHandler
from lp.code.mail.codehandler import CodeHandler
class MailHandlers:
"""All the registered mail handlers."""
DEFAULT = (
(config.launchpad.bugs_domain, MaloneHandler),
(config.launchpad.specs_domain, BlueprintHandler),
(config.answertracker.email_domain, AnswerTrackerHandler),
# XXX flacoste 2007-04-23 Backward compatibility for old domain.
# We probably want to remove it in the future.
('support.launchpad.net', AnswerTrackerHandler),
(config.launchpad.code_domain, CodeHandler),
)
def __init__(self):
self._handlers = {}
for domain, handler_factory in self.DEFAULT:
self.add(domain, handler_factory())
def get(self, domain):
"""Return the handler for the given email domain.
Return None if no such handler exists.
"""
return self._handlers.get(domain.lower())
def add(self, domain, handler):
"""Adds a handler for a domain."""
self._handlers[domain.lower()] = handler
mail_handlers = MailHandlers()
|