-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDateTimeTask.php
217 lines (184 loc) · 4.85 KB
/
DateTimeTask.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<?php
/*
*/
require_once 'phing/Task.php';
/**
* Sets properties to the current time, or offsets from the current time.
* The default properties are TSTAMP, DSTAMP and TODAY;
*
* Based on Phing's Tstamp task.
*
* @author Daniel Degasperi <[email protected]>
* @package ddegasperi.tasks.datetime
*/
class DateTimeTask extends Task
{
private $customFormats = array();
private $customIntervals = array();
/**
* Adds a custom format
*
* @param DateTimeCustomFormat custom format
*/
public function addFormat(DateTimeCustomFormat $cf)
{
$this->customFormats[] = $cf;
}
/**
* Adds a custom format
*
* @param DateTimeCustomInterval custom format
*/
public function addInterval(DateTimeCustomInterval $ci)
{
$this->customIntervals[] = $ci;
}
/**
* Create the timestamps. Custom ones are done before
* the standard ones.
*
* @throws BuildException
*/
public function main()
{
foreach ($this->customFormats as $cf)
{
$cf->execute($this);
}
foreach ($this->customIntervals as $ci)
{
$ci->execute($this);
}
$datetime = new Datetime();
$this->prefixProperty('DSTAMP', $datetime->format('Ymd'));
$this->prefixProperty('TSTAMP', $datetime->format('Hi'));
$this->prefixProperty('TODAY', $datetime->format('F d Y'));
}
/**
* helper that encapsulates prefix logic and property setting
* policy (i.e. we use setNewProperty instead of setProperty).
*/
public function prefixProperty($name, $value)
{
$this->getProject()->setNewProperty($this->prefix . $name, $value);
}
}
/**
* ddegasperi.tasks.datetime
*/
class DateTimeCustomFormat
{
protected $propertyName = "";
protected $pattern = "";
protected $locale = "";
protected $dt;
public function __construct() {
$this->dt = new Datetime();
}
/**
* The property to receive the datetime string in the given pattern
*
* @param propertyName the name of the property.
*/
public function setProperty($propertyName)
{
$this->propertyName = $propertyName;
}
/**
* The datetime pattern to be used. The values are as
* defined by the PHP date() function.
*
* @param pattern
*/
public function setPattern($pattern)
{
$this->pattern = $pattern;
}
/**
* The locale used to create date/time string.
*
* @param locale
*/
public function setLocale($locale)
{
$this->locale = $locale;
}
/**
* validate parameter and execute the format.
*
* @param DateTimeTask reference to task
*/
public function execute(DateTimeTask $datetime)
{
if (empty($this->propertyName))
{
throw new BuildException("property attribute must be provided");
}
if (empty($this->pattern))
{
throw new BuildException("pattern attribute must be provided");
}
if (!empty($this->locale))
{
setlocale(LC_ALL, $this->locale);
}
$datetime->prefixProperty($this->propertyName, $this->dt->format($this->pattern));
if (!empty($this->locale))
{
// reset locale
setlocale(LC_ALL, NULL);
}
}
}
/**
* @package ddegasperi.tasks.datetime
*/
class DateTimeCustomInterval extends DateTimeCustomFormat
{
private $interval = "";
private $operation = "";
/**
* The dateinterval pattern to be used. The values are as
* defined by the PHP DateInterval class.
*
* @param pattern
*/
public function setInterval($interval)
{
$this->interval = $interval;
}
/**
* The datetime operation to be used. The only possible values are add and sub.
*
* @param operation
*/
public function setOperation($operation)
{
$this->operation = $operation;
}
/**
* validate parameter and execute the format.
*
* @param DateTimeTask reference to task
*/
public function execute(DateTimeTask $datetime)
{
if (empty($this->interval))
{
throw new BuildException("interval attribute must be provided");
}
$di = new DateInterval($this->interval);
switch($this->operation)
{
case 'add':
$this->dt->add($di);
break;
case 'sub':
$this->dt->sub($di);
break;
default:
throw new BuildException("operation attribute must be add or sub");
}
parent::execute($datetime);
}
}