3
# Copyright (C) 2008, 2009 Canonical Ltd
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
"""Search for branches underneath a directory and serve them all."""
25
from bzrlib.plugin import load_plugins
26
from bzrlib.transport import get_transport
28
from paste import httpserver
29
from paste.httpexceptions import HTTPExceptionHandler, HTTPInternalServerError
30
from paste.translogger import TransLogger
32
from loggerhead import __version__
33
from loggerhead.apps.transport import (
34
BranchesFromTransportRoot, UserBranchesFromTransportRoot)
35
from loggerhead.config import LoggerheadConfig
36
from loggerhead.util import Reloader
37
from loggerhead.apps.error import ErrorHandlerApp
41
config = LoggerheadConfig()
43
if config.get_option('show_version'):
44
print "loggerhead %s" % __version__
47
if config.arg_count > 1:
50
elif config.arg_count == 1:
51
path = config.get_arg(0)
57
transport = get_transport(path)
59
if config.get_option('trunk_dir') and not config.get_option('user_dirs'):
60
print "--trunk-dir is only valid with --user-dirs"
63
if config.get_option('reload'):
64
if Reloader.is_installed():
67
return Reloader.restart_with_reloader()
69
if config.get_option('user_dirs'):
70
if not config.get_option('trunk_dir'):
71
print "You didn't specify a directory for the trunk directories."
73
app = UserBranchesFromTransportRoot(transport, config)
75
app = BranchesFromTransportRoot(transport, config)
79
logging.getLogger('').setLevel(logging.DEBUG)
80
logger = getattr(app, 'log', logging.getLogger('loggerhead'))
81
if config.get_option('log_folder'):
82
logfile_path = os.path.join(
83
config.get_option('log_folder'), 'serve-branches.log')
85
logfile_path = 'serve-branches.log'
86
logfile = logging.FileHandler(logfile_path, 'a')
87
formatter = logging.Formatter('%(asctime)s %(levelname)-8s %(name)s:'
89
logfile.setFormatter(formatter)
90
logfile.setLevel(logging.DEBUG)
91
logger.addHandler(logfile)
93
# setup_logging() #end
95
app = TransLogger(app, logger=logger)
96
if config.get_option('profile'):
97
from loggerhead.middleware.profile import LSProfMiddleware
98
app = LSProfMiddleware(app)
99
if config.get_option('memory_profile'):
100
from dozer import Dozer
103
if not config.get_option('user_prefix'):
106
prefix = config.get_option('user_prefix')
107
if not prefix.startswith('/'):
108
prefix = '/' + prefix
111
from paste.deploy.config import PrefixMiddleware
113
cant_proxy_correctly_message = (
114
'Unsupported configuration: PasteDeploy not available, but '
115
'loggerhead appears to be behind a proxy.')
116
def check_not_proxied(app):
117
def wrapped(environ, start_response):
118
if 'HTTP_X_FORWARDED_SERVER' in environ:
119
exc = HTTPInternalServerError()
120
exc.explanation = cant_proxy_correctly_message
122
return app(environ, start_response)
124
app = check_not_proxied(app)
126
app = PrefixMiddleware(app, prefix=prefix)
128
app = HTTPExceptionHandler(app)
129
app = ErrorHandlerApp(app)
131
if not config.get_option('user_port'):
134
port = config.get_option('user_port')
136
if not config.get_option('user_host'):
139
host = config.get_option('user_host')
141
httpserver.serve(app, host=host, port=port)
144
if __name__ == "__main__":