我有一个 Apache httpd+mod_wsgi+Mercurial 设置,我想在一个钩子中获得经过身份验证的用户,特别是pretxnchangegroup
钩子。我已经阅读(很可能是错误的)os.environ['REMOTE_USER']
应该包含该信息,但看起来不像。
我目前有一个扩展名,可以打印os.environ
到stderr
.
import sys
import os
def pretxnchangegroup_hook(ui, repo, **kwargs):
print >> sys.stderr, 'pretxnchangegroup activated'
print >> sys.stderr, os.environ
def reposetup(ui, repo):
ui.setconfig('hooks', 'incoming.accesscontrol', pretxnchangegroup_hook)
使用hg -v push
此代码输出:
remote: calling hook incoming.accesscontrol: <function pretxnchangegroup_hook at 0x7f8310221230>
remote: pretxnchangegroup activated
remote: {'LANG': 'C', 'TERM': 'xterm', 'SHLVL': '2', 'PWD': '/', 'PATH': '/sbin:/usr/sbin:/bin:/usr/bin', '_': '/usr/sbin/httpd'}