forked from phergie/phergie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PhergiePackageTask.php
161 lines (152 loc) · 5.35 KB
/
PhergiePackageTask.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
/**
* Phergie
*
* PHP version 5
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.
* It is also available through the world-wide-web at this URL:
* http://phergie.org/license
*
* @category Phergie
* @package Phergie
* @author Phergie Development Team <team@phergie.org>
* @copyright 2008-2012 Phergie Development Team (http://phergie.org)
* @license http://phergie.org/license New BSD License
* @link http://pear.phergie.org/package/Phergie
*/
require_once 'phing/tasks/ext/PearPackage2Task.php';
/**
* TODO Class Desk
*
* @category Phergie
* @package Phergie
* @author Phergie Development Team <team@phergie.org>
* @license http://phergie.org/license New BSD License
* @link http://pear.phergie.org/package/Phergie
*/
class PhergiePackageTask extends PearPackage2Task
{
/**
* TODO: Desc
*
* @return void
*/
protected function setOptions()
{
$this->pkg->addMaintainer(
'lead', 'team', 'Phergie Development Team', 'team@phergie.org'
);
$path = str_replace('_', '/', $this->package) . '.php';
if (file_exists($path)) {
$contents = file_get_contents($path);
preg_match_all('#/\*\*(.*)\*/#Ums', $contents, $matches, PREG_SET_ORDER);
foreach ($matches as $match) {
if (strpos($match[1], '@author') !== false) {
$doc = $match[1];
}
}
$have_summary = false;
$have_description = false;
foreach ($this->options as $option) {
switch ($option->getName()) {
case 'summary':
$have_summary = true;
break;
case 'description':
$have_descripion = true;
break;
}
}
if (!$have_summary || !$have_description) {
$description = substr($doc, 0, strpos($doc, '@'));
$description = trim(
preg_replace(
array('#^[\h*]*|[\h*]*$#m', '#[\h]+#m'),
array('', ' '),
$description
)
);
$split = preg_split('/\v\v+/', $description);
$summary = trim(array_shift($split));
if (!$have_summary) {
$this->pkg->setSummary(htmlentities($summary, ENT_QUOTES));
}
if (!$have_description) {
$this->pkg->setDescription(
htmlentities($description, ENT_QUOTES)
);
}
}
$doc = preg_split('/\v+/', $doc);
$doc = preg_grep('/@uses/', $doc);
$doc = preg_replace('/\s*\* @uses\s+|\s+$/', '', $doc);
foreach ($doc as $line) {
if (strpos($line, 'extension') === 0) {
$line = explode(' ', $line);
$name = $line[1];
$optional = 'required';
if (isset($line[2])) {
$optional = $line[2];
}
$this->pkg->addExtensionDep(
$optional,
$name
);
} else {
$line = explode(' ', $line);
$name = $line[0];
$channel = $line[1];
$optional = 'required';
if (isset($line[2])) {
$optional = $line[2];
}
$this->pkg->addPackageDepWithChannel(
$optional,
$name,
$channel
);
}
}
}
$newmap = array();
foreach ($this->mappings as $key => $map) {
switch ($map->getName()) {
case 'releases':
$releases = $map->getValue();
foreach ($releases as $release) {
$this->pkg->addRelease();
if (isset($release['installconditions'])) {
if (isset($release['installconditions']['os'])) {
$this->pkg->setOsInstallCondition(
$release['installconditions']['os']
);
}
}
if (isset($release['filelist'])) {
if (isset($release['filelist']['install'])) {
foreach (
$release['filelist']['install'] as $file => $as
) {
$this->pkg->addInstallAs($file, $as);
}
}
if (isset($release['filelist']['ignore'])) {
foreach ($release['filelist']['ignore'] as $file) {
$this->pkg->addIgnoreToRelease($file);
}
}
}
}
break;
default:
$newmap[] = $map;
}
}
$this->mappings = $newmap;
parent::setOptions();
}
}