-
Notifications
You must be signed in to change notification settings - Fork 0
/
HgCommitTask.php
119 lines (107 loc) · 2.97 KB
/
HgCommitTask.php
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
119
<?php
/**
* Utilise Mercurial from within Phing.
*
* PHP Version 5.4
*
* @category Tasks
* @package phing.tasks.ext
* @author Ken Guest <[email protected]>
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
* @link https://github.com/kenguest/Phing-HG
*/
namespace Phing\Task\Ext\Hg;
use Phing\Exception\BuildException;
use Phing\Project;
/**
* Integration/Wrapper for hg commit
*
* @category Tasks
* @package phing.tasks.ext.hg
* @author Ken Guest <[email protected]>
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
* @link HgCommitTask.php
*/
class HgCommitTask extends HgBaseTask
{
/**
* Message to be recorded against commit.
*
* @var string
*/
protected $message = '';
/**
* Set message to be used.
*
* @param string $message Message to use
*
* @return void
*/
public function setMessage($message)
{
$this->message = $message;
}
/**
* Get message to apply for the commit.
*
* @return string
*/
public function getMessage()
{
return $this->message;
}
/**
* The main entry point method.
*
* @throws BuildException If message is not set
* @throws BuildException If error occurs during commit
* @return void
*/
public function main()
{
$message = $this->getMessage();
if ($message === '') {
throw new BuildException('"message" is a required parameter');
}
$user = $this->getUser();
$clone = $this->getFactoryInstance('commit');
$msg = sprintf("Commit: '%s'", $message);
$this->log($msg, Project::MSG_INFO);
$clone->setQuiet($this->getQuiet());
$clone->setMessage($message);
if (trim($user) === "") {
throw new BuildException('"user" parameter can not be set to ""');
}
if ($user !== null) {
$clone->setUser($user);
$this->log("Commit: user = '$user'", Project::MSG_VERBOSE);
}
if ($this->repository === '') {
$project = $this->getProject();
$dir = $project->getProperty('application.startdir');
} else {
$dir = $this->repository;
}
$this->log('DIR:' . $dir, Project::MSG_INFO);
$this->log('REPO: ' . $this->repository, Project::MSG_INFO);
$cwd = getcwd();
chdir($dir);
try {
$this->log("Executing: " . $clone->asString(), Project::MSG_INFO);
$output = $clone->execute();
if ($output !== '') {
$this->log($output);
}
} catch (\Exception $ex) {
$msg = $ex->getMessage();
$this->log("Exception: $msg", Project::MSG_INFO);
$p = strpos($msg, 'hg returned:');
if ($p !== false) {
$msg = substr($msg, $p + 13);
}
chdir($cwd);
throw new BuildException($msg);
}
chdir($cwd);
}
}