-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHgCloneTask.php
108 lines (101 loc) · 2.79 KB
/
HgCloneTask.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
<?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 clone
*
* @category Tasks
* @package phing.tasks.ext.hg
* @author Ken Guest <[email protected]>
* @license LGPL (see http://www.gnu.org/licenses/lgpl.html)
* @link HgCloneTask.php
*/
class HgCloneTask extends HgBaseTask
{
/**
* Path to target directory
*
* @var string
*/
protected $targetPath = '';
/**
* Set path to source repo
*
* @param string $targetPath Path to repository used as source
*
* @return void
*/
public function setTargetPath($targetPath)
{
$this->targetPath = $targetPath;
}
/**
* Get path to the target directory/repo.
*
* @return string
*/
public function getTargetPath()
{
return $this->targetPath;
}
/**
* The main entry point.
*
* @return void
* @throws BuildException
*/
public function main()
{
$clone = $this->getFactoryInstance('clone');
$repository = $this->getRepository();
if ($repository === '') {
throw new BuildException('"repository" is a required parameter');
}
$target = $this->getTargetPath();
if ($target === '') {
throw new BuildException('"targetPath" is a required parameter');
}
// Is target path empty?
if (file_exists($target)) {
$files = scandir($target);
if (is_array($files) && count($files) > 2) {
throw new BuildException("Directory \"$target\" is not empty");
}
if (!is_dir($target)) {
throw new BuildException("\"$target\" is not a directory");
}
}
$msg = sprintf('hg cloning %s to %s', $repository, $target);
$this->log($msg, Project::MSG_INFO);
$clone->setSource($repository);
$clone->setDestination($target);
$clone->setInsecure($this->getInsecure());
$clone->setQuiet($this->getQuiet());
try {
$this->log("Executing: " . $clone->asString(), Project::MSG_INFO);
$output = $clone->execute();
if ($output !== '') {
$this->log($output);
}
} catch (\Exception $ex) {
$msg = $ex->getMessage();
$p = strpos($msg, 'hg returned:');
if ($p !== false) {
$msg = substr($msg, $p + 13);
}
throw new BuildException($msg);
}
}
}