hooks.py 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. # hooks.py -- for dealing with git hooks
  2. # Copyright (C) 2012-2013 Jelmer Vernooij and others.
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Access to hooks."""
  21. import os
  22. import subprocess
  23. from .errors import HookError
  24. class Hook:
  25. """Generic hook object."""
  26. def execute(self, *args):
  27. """Execute the hook with the given args.
  28. Args:
  29. args: argument list to hook
  30. Raises:
  31. HookError: hook execution failure
  32. Returns:
  33. a hook may return a useful value
  34. """
  35. raise NotImplementedError(self.execute)
  36. class ShellHook(Hook):
  37. """Hook by executable file.
  38. Implements standard githooks(5) [0]:
  39. [0] http://www.kernel.org/pub/software/scm/git/docs/githooks.html
  40. """
  41. def __init__(
  42. self,
  43. name,
  44. path,
  45. numparam,
  46. pre_exec_callback=None,
  47. post_exec_callback=None,
  48. cwd=None,
  49. ) -> None:
  50. """Setup shell hook definition.
  51. Args:
  52. name: name of hook for error messages
  53. path: absolute path to executable file
  54. numparam: number of requirements parameters
  55. pre_exec_callback: closure for setup before execution
  56. Defaults to None. Takes in the variable argument list from the
  57. execute functions and returns a modified argument list for the
  58. shell hook.
  59. post_exec_callback: closure for cleanup after execution
  60. Defaults to None. Takes in a boolean for hook success and the
  61. modified argument list and returns the final hook return value
  62. if applicable
  63. cwd: working directory to switch to when executing the hook
  64. """
  65. self.name = name
  66. self.filepath = path
  67. self.numparam = numparam
  68. self.pre_exec_callback = pre_exec_callback
  69. self.post_exec_callback = post_exec_callback
  70. self.cwd = cwd
  71. def execute(self, *args):
  72. """Execute the hook with given args."""
  73. if len(args) != self.numparam:
  74. raise HookError(
  75. "Hook %s executed with wrong number of args. \
  76. Expected %d. Saw %d. args: %s"
  77. % (self.name, self.numparam, len(args), args)
  78. )
  79. if self.pre_exec_callback is not None:
  80. args = self.pre_exec_callback(*args)
  81. try:
  82. ret = subprocess.call(
  83. [os.path.relpath(self.filepath, self.cwd), *list(args)], cwd=self.cwd
  84. )
  85. if ret != 0:
  86. if self.post_exec_callback is not None:
  87. self.post_exec_callback(0, *args)
  88. raise HookError(
  89. "Hook %s exited with non-zero status %d" % (self.name, ret)
  90. )
  91. if self.post_exec_callback is not None:
  92. return self.post_exec_callback(1, *args)
  93. except OSError: # no file. silent failure.
  94. if self.post_exec_callback is not None:
  95. self.post_exec_callback(0, *args)
  96. class PreCommitShellHook(ShellHook):
  97. """pre-commit shell hook."""
  98. def __init__(self, cwd, controldir) -> None:
  99. filepath = os.path.join(controldir, "hooks", "pre-commit")
  100. ShellHook.__init__(self, "pre-commit", filepath, 0, cwd=cwd)
  101. class PostCommitShellHook(ShellHook):
  102. """post-commit shell hook."""
  103. def __init__(self, controldir) -> None:
  104. filepath = os.path.join(controldir, "hooks", "post-commit")
  105. ShellHook.__init__(self, "post-commit", filepath, 0, cwd=controldir)
  106. class CommitMsgShellHook(ShellHook):
  107. """commit-msg shell hook."""
  108. def __init__(self, controldir) -> None:
  109. filepath = os.path.join(controldir, "hooks", "commit-msg")
  110. def prepare_msg(*args):
  111. import tempfile
  112. (fd, path) = tempfile.mkstemp()
  113. with os.fdopen(fd, "wb") as f:
  114. f.write(args[0])
  115. return (path,)
  116. def clean_msg(success, *args):
  117. if success:
  118. with open(args[0], "rb") as f:
  119. new_msg = f.read()
  120. os.unlink(args[0])
  121. return new_msg
  122. os.unlink(args[0])
  123. ShellHook.__init__(
  124. self, "commit-msg", filepath, 1, prepare_msg, clean_msg, controldir
  125. )
  126. class PostReceiveShellHook(ShellHook):
  127. """post-receive shell hook."""
  128. def __init__(self, controldir) -> None:
  129. self.controldir = controldir
  130. filepath = os.path.join(controldir, "hooks", "post-receive")
  131. ShellHook.__init__(self, "post-receive", path=filepath, numparam=0)
  132. def execute(self, client_refs):
  133. # do nothing if the script doesn't exist
  134. if not os.path.exists(self.filepath):
  135. return None
  136. try:
  137. env = os.environ.copy()
  138. env["GIT_DIR"] = self.controldir
  139. p = subprocess.Popen(
  140. self.filepath,
  141. stdin=subprocess.PIPE,
  142. stdout=subprocess.PIPE,
  143. stderr=subprocess.PIPE,
  144. env=env,
  145. )
  146. # client_refs is a list of (oldsha, newsha, ref)
  147. in_data = b"\n".join([b" ".join(ref) for ref in client_refs])
  148. out_data, err_data = p.communicate(in_data)
  149. if (p.returncode != 0) or err_data:
  150. err_fmt = b"post-receive exit code: %d\n" + b"stdout:\n%s\nstderr:\n%s"
  151. err_msg = err_fmt % (p.returncode, out_data, err_data)
  152. raise HookError(err_msg.decode("utf-8", "backslashreplace"))
  153. return out_data
  154. except OSError as err:
  155. raise HookError(repr(err)) from err