/usr/bin/whups-svn-hook is in php-horde-whups 3.0.0~beta1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | #!/usr/bin/env php
<?php
die('Needs to be converted to H4');
/**
* This script scans commit logs for ticket numbers (denoted by a flexible
* regular expression and post the log message and a link to the changeset diff
* in a comment to those tickets.
*
* Usage: whups-svn-hook REPOS REVISION
*
* @category Horde
* @package maintainer_tools
*/
require_once 'Horde/Autoloader/Default.php';
/**
** Initialize expected values to rule out pre-existing input by any
** means, then include our configuration file.
**/
$svnlook = null;
$rpc_endpoint = null;
$rpc_method = null;
$rpc_options = array();
include __DIR__ . '/commit-update-tickets-conf.php';
/**
** Sanity checks
**/
if (!is_executable($svnlook)) {
abort("Required program $svnlook is not executable.");
}
if (is_null($rpc_endpoint) || is_null($rpc_method)) {
abort("Required XML-RPC configuration is missing or incomplete.");
}
if (count($_SERVER['argv']) != 3) {
usage();
}
/**
** Command-line parsing
**/
$repos = $_SERVER['argv'][1];
$rev = $_SERVER['argv'][2];
if (!file_exists($repos)) {
abort("Repository $repos does not exist.");
}
if (!is_dir($repos)) {
abort("Repository $repos is not a directory.");
}
/**
** Read the log message for this revision
**/
// Run svnlook log to get the log message for this revision
exec(implode(' ', array($svnlook,
'log',
'--revision',
escapeshellarg($rev),
escapeshellarg($repos))),
$log_message);
$tickets = find_tickets($log_message);
if (count($tickets)) {
foreach ($tickets as $ticket) {
post_comment($ticket, $log_message);
}
}
exit(0);
/**
** Functions
**/
function abort($msg) {
fputs(STDERR, $msg . "\n");
exit(1);
}
function usage() {
abort("usage: commit-update-tickets.php REPOS REVISION");
}
function find_tickets($log_message) {
preg_match_all('/#(\d+)/', $log_message, $matches_1);
preg_match_all('/(bug|ticket|request|enhancement|issue):\s*#?(\d+)/i', $log_message, $matches_2);
return array_unique(array_merge($matches_1[1], $matches_2[2]));
}
function post_comment($ticket, $log_message) {
$http = new Horde_Http_Client($GLOBALS['rpc_options']);
try {
$result = Horde_Rpc::request(
'xmlrpc',
$GLOBALS['rpc_endpoint'],
$GLOBALS['rpc_method'],
$http,
array((int)$ticket, $log_message));
} catch (Horde_Http_Client_Exception $e) {
abort($e->getMessage());
}
return true;
}
|