##// END OF EJS Templates
changelog update + whitespace cleanup
changelog update + whitespace cleanup

File last commit:

r2209:19a6c23a beta
r2235:b6adef46 beta
Show More
simplegit.py
300 lines | 11.1 KiB | text/x-python | PythonLexer
code docs, updates
r903 # -*- coding: utf-8 -*-
"""
rhodecode.lib.middleware.simplegit
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SimpleGit middleware for handling git protocol request (push/clone etc.)
source code cleanup: remove trailing white space, normalize file endings
r1203 It's implemented with basic auth function
code docs, updates
r903 :created_on: Apr 28, 2010
:author: marcink
2012 copyrights
r1824 :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
code docs, updates
r903 :license: GPLv3, see COPYING for more details.
"""
fixed license issue #149
r1206 # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
source code cleanup: remove trailing white space, normalize file endings
r1203 #
added base simple git middleware, for future usage
r620 # This program 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 General Public License for more details.
source code cleanup: remove trailing white space, normalize file endings
r1203 #
added base simple git middleware, for future usage
r620 # You should have received a copy of the GNU General Public License
fixed license issue #149
r1206 # along with this program. If not, see <http://www.gnu.org/licenses/>.
Fixed age, for new vcs implementation. Removed all obsolete date formatters...
r635
code docs, updates
r903 import os
fixes git-protocol with
r2052 import re
code docs, updates
r903 import logging
import traceback
Fixed age, for new vcs implementation. Removed all obsolete date formatters...
r635
some hacking on simplegit middleware
r625 from dulwich import server as dulserver
Added VCS into rhodecode core for faster and easier deployments of new versions
r2007
some hacking on simplegit middleware
r625 class SimpleGitUploadPackHandler(dulserver.UploadPackHandler):
def handle(self):
write = lambda x: self.proto.write_sideband(1, x)
pep8ify middlewares
r1275 graph_walker = dulserver.ProtocolGraphWalker(self,
self.repo.object_store,
self.repo.get_peeled)
some hacking on simplegit middleware
r625 objects_iter = self.repo.fetch_objects(
graph_walker.determine_wants, graph_walker, self.progress,
get_tagged=self.get_tagged)
Synced SimpleGitUploadPackHandler with latest dulwich code
r2197 # Did the process short-circuit (e.g. in a stateless RPC call)? Note
# that the client still expects a 0-object pack in most cases.
if objects_iter is None:
some hacking on simplegit middleware
r625 return
self.progress("counting objects: %d, done.\n" % len(objects_iter))
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 dulserver.write_pack_objects(dulserver.ProtocolFile(None, write),
Synced SimpleGitUploadPackHandler with latest dulwich code
r2197 objects_iter)
some hacking on simplegit middleware
r625 messages = []
messages.append('thank you for using rhodecode')
for msg in messages:
self.progress(msg + "\n")
# we are done
self.proto.write("0000")
Synced SimpleGitUploadPackHandler with latest dulwich code
r2197
some hacking on simplegit middleware
r625 dulserver.DEFAULT_HANDLERS = {
'git-upload-pack': SimpleGitUploadPackHandler,
'git-receive-pack': dulserver.ReceivePackHandler,
}
added base simple git middleware, for future usage
r620 from dulwich.repo import Repo
Tony Bussieres
Making RhodeCode ready for dulwich 0.8.4
r2137 from dulwich.web import make_wsgi_chain
code docs, updates
r903
added base simple git middleware, for future usage
r620 from paste.httpheaders import REMOTE_USER, AUTH_TYPE
code docs, updates
r903
utils/conf...
r2109 from rhodecode.lib.utils2 import safe_str
Wrapped calls for git and hg middleware in extra block that clears db Session....
r1761 from rhodecode.lib.base import BaseVCSController
from rhodecode.lib.auth import get_container_username
added emulation of pull hook for git-backend, and dummy git-push hook
r2203 from rhodecode.lib.utils import is_valid_repo, make_ui
Removed deprecated usage of UserModel() in simplehg and simplegit
r1497 from rhodecode.model.db import User
code docs, updates
r903
added base simple git middleware, for future usage
r620 from webob.exc import HTTPNotFound, HTTPForbidden, HTTPInternalServerError
log = logging.getLogger(__name__)
pep8ify middlewares
r1275
merge pull request #32 from codingtony
r2061 GIT_PROTO_PAT = re.compile(r'^/(.+)/(info/refs|git-upload-pack|git-receive-pack)')
fixes git-protocol with
r2052
updated CONTRIBUTORS...
r2058
reverted git fix as it broke pushing
r2060 def is_git(environ):
merge pull request #32 from codingtony
r2061 path_info = environ['PATH_INFO']
isgit_path = GIT_PROTO_PAT.match(path_info)
fixed some unicode problems with waitress...
r2100 log.debug('pathinfo: %s detected as GIT %s' % (
path_info, isgit_path != None)
)
merge pull request #32 from codingtony
r2061 return isgit_path
fixes git-protocol with
r2052
updated CONTRIBUTORS...
r2058
Wrapped calls for git and hg middleware in extra block that clears db Session....
r1761 class SimpleGit(BaseVCSController):
added base simple git middleware, for future usage
r620
Wrapped calls for git and hg middleware in extra block that clears db Session....
r1761 def _handle_request(self, environ, start_response):
merge pull request #32 from codingtony
r2061
reverted git fix as it broke pushing
r2060 if not is_git(environ):
added base simple git middleware, for future usage
r620 return self.application(environ, start_response)
Moved out reposcan into hg Model....
r665
Added HTTP_X_FORWARDED_FOR as another method of extracting IP for pull/push logs....
r2184 ipaddr = self._get_ip_addr(environ)
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 username = None
added emulation of pull hook for git-backend, and dummy git-push hook
r2203 self._git_first_op = False
fixed error propagation when using git/mercurial requests
r898 # skip passing error to error controller
environ['pylons.status_code_redirect'] = True
Moved out reposcan into hg Model....
r665
fixes #97 in simplehg and simplegit, force casting to headers
r918 #======================================================================
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 # EXTRACT REPOSITORY NAME FROM ENV
#======================================================================
try:
repo_name = self.__get_repository(environ)
log.debug('Extracted repo name is %s' % repo_name)
except:
return HTTPInternalServerError()(environ, start_response)
git+hg middleware do repo verification at earliest possible state, giving 404 as fast as possible. If repo is not found.
r2122 # quick check if that dir exists...
if is_valid_repo(repo_name, self.basepath) is False:
return HTTPNotFound()(environ, start_response)
reverted git fix as it broke pushing
r2060 #======================================================================
# GET ACTION PULL or PUSH
#======================================================================
action = self.__get_action(environ)
added base simple git middleware, for future usage
r620
fixes #97 in simplehg and simplegit, force casting to headers
r918 #======================================================================
# CHECK ANONYMOUS PERMISSION
#======================================================================
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 if action in ['pull', 'push']:
fixes #97 in simplehg and simplegit, force casting to headers
r918 anonymous_user = self.__get_user('default')
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 username = anonymous_user.username
improved logging in git/hg middlewares
r2026 anonymous_perm = self._check_permission(action, anonymous_user,
Wrapped calls for git and hg middleware in extra block that clears db Session....
r1761 repo_name)
fixes #97 in simplehg and simplegit, force casting to headers
r918
if anonymous_perm is not True or anonymous_user.active is False:
if anonymous_perm is not True:
pep8ify middlewares
r1275 log.debug('Not enough credentials to access this '
'repository as anonymous user')
fixes #97 in simplehg and simplegit, force casting to headers
r918 if anonymous_user.active is False:
log.debug('Anonymous access is disabled, running '
'authentication')
#==============================================================
source code cleanup: remove trailing white space, normalize file endings
r1203 # DEFAULT PERM FAILED OR ANONYMOUS ACCESS IS DISABLED SO WE
fixes #97 in simplehg and simplegit, force casting to headers
r918 # NEED TO AUTHENTICATE AND ASK FOR AUTH USER PERMISSIONS
#==============================================================
added base simple git middleware, for future usage
r620
Liad Shani
Improved container-based auth support for middleware
r1630 # Attempting to retrieve username from the container
username = get_container_username(environ, self.config)
# If not authenticated by the container, running basic auth
if not username:
Unicode fixes, added safe_str method for global str() operations +better test sandboxing
r1401 self.authenticate.realm = \
safe_str(self.config['rhodecode_realm'])
fixes #97 in simplehg and simplegit, force casting to headers
r918 result = self.authenticate(environ)
if isinstance(result, str):
AUTH_TYPE.update(environ, 'basic')
REMOTE_USER.update(environ, result)
Liad Shani
Improved container-based auth support for middleware
r1630 username = result
fixes #97 in simplehg and simplegit, force casting to headers
r918 else:
return result.wsgi_application(environ, start_response)
#==============================================================
Liad Shani
Improved container-based auth support for middleware
r1630 # CHECK PERMISSIONS FOR THIS REQUEST USING GIVEN USERNAME
fixes #97 in simplehg and simplegit, force casting to headers
r918 #==============================================================
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 if action in ['pull', 'push']:
fixes #97 in simplehg and simplegit, force casting to headers
r918 try:
user = self.__get_user(username)
Liad Shani
Fixed middleware to prevent deactivated users from authenticating
r1620 if user is None or not user.active:
auto white-space removal
r1818 return HTTPForbidden()(environ, start_response)
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 username = user.username
fixes #97 in simplehg and simplegit, force casting to headers
r918 except:
log.error(traceback.format_exc())
pep8ify middlewares
r1275 return HTTPInternalServerError()(environ,
start_response)
fixes #97 in simplehg and simplegit, force casting to headers
r918
#check permissions for this repository
fixes issue #372...
r2090 perm = self._check_permission(action, user, repo_name)
fixes #97 in simplehg and simplegit, force casting to headers
r918 if perm is not True:
return HTTPForbidden()(environ, start_response)
added emulation of pull hook for git-backend, and dummy git-push hook
r2203 extras = {
'ip': ipaddr,
'username': username,
'action': action,
'repository': repo_name,
'scm': 'git',
}
added base simple git middleware, for future usage
r620
#===================================================================
# GIT REQUEST HANDLING
#===================================================================
fixed some unicode problems with waitress...
r2100 repo_path = os.path.join(safe_str(self.basepath), safe_str(repo_name))
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 log.debug('Repository path is %s' % repo_path)
added emulation of pull hook for git-backend, and dummy git-push hook
r2203 baseui = make_ui('db')
Implemented pull command for remote repos for git...
r2209 self.__inject_extras(repo_path, baseui, extras)
added emulation of pull hook for git-backend, and dummy git-push hook
r2203
added base simple git middleware, for future usage
r620 try:
added emulation of pull hook for git-backend, and dummy git-push hook
r2203 # invalidate cache on push
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 if action == 'push':
Wrapped calls for git and hg middleware in extra block that clears db Session....
r1761 self._invalidate_cache(repo_name)
added emulation of pull hook for git-backend, and dummy git-push hook
r2203 self._handle_githooks(action, baseui, environ)
improved logging in git/hg middlewares
r2026 log.info('%s action on GIT repo "%s"' % (action, repo_name))
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 app = self.__make_app(repo_name, repo_path)
return app(environ, start_response)
except Exception:
added base simple git middleware, for future usage
r620 log.error(traceback.format_exc())
return HTTPInternalServerError()(environ, start_response)
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 def __make_app(self, repo_name, repo_path):
"""
Make an wsgi application using dulserver
auto white-space removal
r1818
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 :param repo_name: name of the repository
:param repo_path: full path to the repository
"""
_d = {'/' + repo_name: Repo(repo_path)}
pep8ify middlewares
r1275 backend = dulserver.DictBackend(_d)
Tony Bussieres
Making RhodeCode ready for dulwich 0.8.4
r2137 gitserve = make_wsgi_chain(backend)
added base simple git middleware, for future usage
r620
return gitserve
fixes #97 in simplehg and simplegit, force casting to headers
r918 def __get_repository(self, environ):
Rewrote git middleware with the same pattern as recent fix for #176...
r1496 """
Get's repository name out of PATH_INFO header
source code cleanup: remove trailing white space, normalize file endings
r1203
fixes #97 in simplehg and simplegit, force casting to headers
r918 :param environ: environ where PATH_INFO is stored
"""
try:
implements #285: Implemented non changeable urls for clone url, and web views
r1813 environ['PATH_INFO'] = self._get_by_id(environ['PATH_INFO'])
merge pull request #32 from codingtony
r2061 repo_name = GIT_PROTO_PAT.match(environ['PATH_INFO']).group(1)
fixes #97 in simplehg and simplegit, force casting to headers
r918 except:
log.error(traceback.format_exc())
raise
fixes git-protocol with
r2052
fixes #97 in simplehg and simplegit, force casting to headers
r918 return repo_name
added base simple git middleware, for future usage
r620 def __get_user(self, username):
Refactoring of model get functions
r1530 return User.get_by_username(username)
added base simple git middleware, for future usage
r620
def __get_action(self, environ):
fixes issue #372...
r2090 """
Maps git request commands into a pull or push command.
source code cleanup: remove trailing white space, normalize file endings
r1203
added base simple git middleware, for future usage
r620 :param environ:
"""
service = environ['QUERY_STRING'].split('=')
fixes issue #372...
r2090
added base simple git middleware, for future usage
r620 if len(service) > 1:
service_cmd = service[1]
updated CONTRIBUTORS...
r2058 mapping = {
'git-receive-pack': 'push',
'git-upload-pack': 'pull',
}
fixes issue #372...
r2090 op = mapping[service_cmd]
self._git_stored_op = op
return op
some hacking on simplegit middleware
r625 else:
fixes issue #372...
r2090 # try to fallback to stored variable as we don't know if the last
# operation is pull/push
op = getattr(self, '_git_stored_op', 'pull')
return op
added emulation of pull hook for git-backend, and dummy git-push hook
r2203
def _handle_githooks(self, action, baseui, environ):
from rhodecode.lib.hooks import log_pull_action, log_push_action
service = environ['QUERY_STRING'].split('=')
if len(service) < 2:
return
Implemented pull command for remote repos for git...
r2209 from rhodecode.model.db import Repository
_repo = Repository.get_by_repo_name(repo_name)
_repo = _repo.scm_instance
_repo._repo.ui = baseui
added emulation of pull hook for git-backend, and dummy git-push hook
r2203
push_hook = 'pretxnchangegroup.push_logger'
pull_hook = 'preoutgoing.pull_logger'
_hooks = dict(baseui.configitems('hooks')) or {}
if action == 'push' and _hooks.get(push_hook):
Implemented pull command for remote repos for git...
r2209 log_push_action(ui=baseui, repo=repo._repo)
added emulation of pull hook for git-backend, and dummy git-push hook
r2203 elif action == 'pull' and _hooks.get(pull_hook):
Implemented pull command for remote repos for git...
r2209 log_pull_action(ui=baseui, repo=repo._repo)
def __inject_extras(self, repo_path, baseui, extras={}):
"""
Injects some extra params into baseui instance
:param baseui: baseui instance
:param extras: dict with extra params to put into baseui
"""
# make our hgweb quiet so it doesn't print output
baseui.setconfig('ui', 'quiet', 'true')
#inject some additional parameters that will be available in ui
#for hooks
for k, v in extras.items():
baseui.setconfig('rhodecode_extras', k, v)