-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDecorator.php
262 lines (221 loc) · 5.26 KB
/
Decorator.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<?php
/**
* Class FileObject
*/
class FileObject
{
/**
* @var MD5 Hash
*/
private $_uuid;
/**
* @var string
*/
private $_name;
/**
* @var string
*/
private $_type;
/**
* @var string
*/
private $_path;
/**
* @var string
*/
private $_metadata;
/**
* set a uniqid
*/
public function __construct()
{
$this->_uuid = md5(uniqid());
}
/**
* @return mixed
*/
public function getName()
{
return $this->_name;
}
/**
* @return mixed
*/
public function getType()
{
return $this->_type;
}
/**
* @return mixed
*/
public function getPath()
{
return $this->_path;
}
/**
* @return mixed
*/
public function getMetadata()
{
return $this->_metadata;
}
/**
* @param mixed $name
*/
public function setName($name)
{
$this->_name = $name;
}
/**
* @param mixed $type
*/
public function setType($type)
{
$this->_type = $type;
}
/**
* @param mixed $path
*/
public function setPath($path)
{
$this->_path = $path;
}
/**
* @param mixed $metadata
*/
public function setMetadata($metadata)
{
$this->_metadata = $metadata;
}
/**
* @return MD5
*/
public function getUuid()
{
return $this->_uuid;
}
}
/**
* Add an interface to get the decorators consistent
*
* Interface Ipublisher
*/
interface Ipublisher
{
public function publish(FileObject $fileObject);
}
/**
* First class which executes the first required functionality
*
* Class CommonRepositoryPublisher
*/
class CommonRepositoryPublisher implements Ipublisher
{
public function publish(FileObject $fileObject)
{
Logger::log(' => '.get_class($this) . ' => ' . __METHOD__ .' => ' . $fileObject->getName());
}
}
/**
* Now the customer wants a change on the designed behavior.
* For that we create an abstract class, from which all further extensions can inherit
*
* This abstract class saves a decorating classobject and implements the same methods like the originally class
*
* Class CommonPublisherDecorator
*/
abstract class CommonPublisherDecorator implements Ipublisher
{
public $_publisher;
public function __construct(Ipublisher $publisher)
{
$this->_publisher = $publisher;
}
public function publish(FileObject $fileObject)
{
$this->_publisher->publish($fileObject);
}
}
/**
* Now we can extend the decorator to modify the originally object
*
* Class MarsRepositoryPublisher
*/
class MarsRepositoryPublisher extends CommonPublisherDecorator
{
public function publish(FileObject $fileObject)
{
$fileObject->setName($fileObject->getName(). '->Mars');
$this->_publisher->publish($fileObject);
Logger::log(' => ' . get_class($this->_publisher) . ' => ' . __METHOD__ . ' => ' . $fileObject->getName());
}
}
/**
* Wen can even modify the modified object.
* Simply create a new instance with the previous decorator instance
*
* Class CummulusRepositoryPublisher
*/
class CummulusRepositoryPublisher extends CommonPublisherDecorator
{
public function publish(FileObject $fileObject)
{
$fileObject->setName($fileObject->getName().'->Cummulus');
$this->_publisher->publish($fileObject);
Logger::log(' => ' . get_class($this->_publisher) . ' => ' . __METHOD__ . ' => ' . $fileObject->getName());
}
}
/**
* Another decorator
*
* Class AdobeRepositoryPublisher
*/
class AdobeRepositoryPublisher extends CommonPublisherDecorator
{
public function publish(FileObject $fileObject)
{
$fileObject->setName($fileObject->getName().'->Adobe');
$this->_publisher->publish($fileObject);
Logger::log(' => ' . get_class($this->_publisher) . ' => ' . __METHOD__ . ' => ' . $fileObject->getName());
}
}
/**
* And so on...
*
* Class PictureParkRepositoryPublisher
*/
class PictureParkRepositoryPublisher extends CommonPublisherDecorator
{
public function publish(FileObject $fileObject)
{
$fileObject->setName($fileObject->getName().'->PicturePark');
$this->_publisher->publish($fileObject);
Logger::log(' => ' . get_class($this->_publisher) . ' => ' . __METHOD__ . ' => ' . $fileObject->getName());
}
}
/**
* Class Logger
*/
class Logger
{
public static function log(String $message)
{
echo $message . PHP_EOL;
}
}
//get an object to decorate
$fileObject = new FileObject();
$fileObject->setName("coolio_namus.pdf");
//first process an undecorated object (originally designed functionality)
$basePublisher = new CommonRepositoryPublisher();
$basePublisher->publish($fileObject);
//decorate the base object
$picturePark = new PictureParkRepositoryPublisher($basePublisher);
//modoify the modified object
$adobePublisher = new AdobeRepositoryPublisher($picturePark);
//adn so on
$cummulusRepositoryPublisher = new CummulusRepositoryPublisher($adobePublisher);
//finally decorate the last decorator..
$marsRepositoryPublisher = new MarsRepositoryPublisher($cummulusRepositoryPublisher);
$marsRepositoryPublisher->publish($fileObject);
echo PHP_EOL;