-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbehavioral-visitor.php
More file actions
296 lines (256 loc) · 7.96 KB
/
behavioral-visitor.php
File metadata and controls
296 lines (256 loc) · 7.96 KB
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
<?php
/**
* This example just to simulate how Visitor can be work
* 2nees.com
*/
/**
* Interface InsuranceContracts - Element Interface - Its used to declare accepting Method for Visitor,
** and you can additional method if you want...
*/
interface InsuranceContracts {
public function accept(Visitor $visitor): string;// The main method
public function getCost(): int;
public function getContracts(): string;
}
#region Concrete Element - were we implement the acceptance method
class HomeInsurance implements InsuranceContracts {
public function getCost(): int
{
return rand(200, 500);
}
public function getContracts(): string
{
return "Your Home Insurance Contracts Is Approved for 1 year: {$this->getCost()}";
}
public function accept(Visitor $visitor): string
{
return "Home Insurance: " . $visitor->visitHome($this);
}
}
class CarInsurance implements InsuranceContracts {
private int $engineSize;
/**
* CarInsurance constructor.
*/
public function __construct()
{
$this->engineSize = 1;
}
public function getCost(): int
{
return 100 * $this->getEngineSize();
}
/**
* @return int
*/
public function getEngineSize(): int
{
return $this->engineSize;
}
/**
* @param int $engineSize
*/
public function setEngineSize(int $engineSize): void
{
$this->engineSize = $engineSize;
}
public function getContracts(): string
{
return "Your Car Insurance Contracts Is Approved for 1 year: {$this->getCost()}
And Your Engine is: {$this->getEngineSize()}";
}
public function accept(Visitor $visitor): string
{
return "Car Insurance: " . $visitor->visitCar($this);
}
}
class BankInsurance implements InsuranceContracts {
private int $numberOfEmployee;
private int $cost;
/**
* BankInsurance constructor.
*/
public function __construct()
{
$this->numberOfEmployee = 50;
$this->cost = 250;
}
public function getCost(): int
{
return $this->cost * $this->numberOfEmployee;
}
/**
* @param $cost
*/
public function setCost($cost): void{
$this->cost = $cost;
}
public function getContracts(): string
{
return "
******************
Bank Contracts:
Total Cost: {$this->getCost()}
Number OF Employee: {$this->numberOfEmployee}
And Cost For every one is: {$this->cost}
******************
";
}
public function accept(Visitor $visitor): string
{
return "Bank Insurance: " . $visitor->visitBank($this);
}
}
class HospitalInsurance implements InsuranceContracts {
private int $numberOfRoom;
private int $numberOfBeds;
/**
* HospitalInsurance constructor.
*/
public function __construct()
{
$this->numberOfRoom = 20;
$this->numberOfBeds = 50;
}
public function getCost(): int
{
return 1000 * $this->numberOfBeds * $this->numberOfRoom;
}
public function getContracts(): string
{
return "
******************
Hospital Contracts:
Total Cost: {$this->getCost()}
******************
";
}
public function accept(Visitor $visitor): string
{
return "Hospital Insurance: " . $visitor->visitHospital($this);
}
/**
* @return int
*/
public function getNumberOfRoom(): int
{
return $this->numberOfRoom;
}
/**
* @return int
*/
public function getNumberOfBeds(): int
{
return $this->numberOfBeds;
}
/**
* @param int $numberOfRoom
*/
public function setNumberOfRoom(int $numberOfRoom): void
{
$this->numberOfRoom = $numberOfRoom;
}
/**
* @param int $numberOfBeds
*/
public function setNumberOfBeds(int $numberOfBeds): void
{
$this->numberOfBeds = $numberOfBeds;
}
}
#endregion
/**
* Interface Visitor -set of visiting methods that can take concrete elements of an object structure
*/
interface Visitor {
public function visitHome(HomeInsurance $homeInsurance);
public function visitCar(CarInsurance $carInsurance);
public function visitBank(BankInsurance $bankInsurance);
public function visitHospital(HospitalInsurance $hospitalInsurance);
}
/**
* Class CovidCondition - Concrete Visitor - Here we Implement several versions of the same behaviors set in Visitors interface
** Note: we can add Concrete Visitor As we need...
*/
class CovidCondition implements Visitor {
private bool $includeCovid;
/**
* CovidCondition constructor.
* @param bool $includeCovid
*/
public function __construct(bool $includeCovid)
{
$this->includeCovid = $includeCovid;
}
public function visitHome(HomeInsurance $homeInsurance)
{
echo "You are in Covid Visitor Conditions, and your contract cant contain Covid!" . PHP_EOL;
echo $homeInsurance->getContracts() . PHP_EOL;
}
public function visitCar(CarInsurance $carInsurance)
{
echo "You are in Covid Visitor Conditions, and your contract cant contain Covid!" . PHP_EOL;
echo $carInsurance->getContracts() . PHP_EOL;
}
public function visitBank(BankInsurance $bankInsurance)
{
if($this->includeCovid){
echo "You are in Covid Visitor Conditions, and your company pay to include Covid in your Insurance!" . PHP_EOL;
$bankInsurance->setCost(125);
}else {
echo "You are in Covid Visitor Conditions, and your company not pay to include this type of disease!" . PHP_EOL;
}
echo $bankInsurance->getContracts() . PHP_EOL;
}
public function visitHospital(HospitalInsurance $hospitalInsurance)
{
if($hospitalInsurance->getNumberOfRoom() < 25){
echo "Sorry, After Covid small hospital not supported!" . PHP_EOL;
return;
}
if($this->includeCovid){
echo "You are in Covid Visitor Conditions, and your company pay to include Covid in your Insurance!" . PHP_EOL;
$contracts = $hospitalInsurance->getContracts();
$contracts .= "Number of beds Support: {$hospitalInsurance->getNumberOfBeds()}" . PHP_EOL;
$contracts .= "Number of Room Support: {$hospitalInsurance->getNumberOfRoom()}" . PHP_EOL;
echo $contracts . PHP_EOL;
}else {
echo "Sorry, Your Hospital Must be include Covid Addon For its insurance Contract!!" . PHP_EOL;
}
}
}
// Clint
$homeInsurance = new HomeInsurance();
$carInsurance = new CarInsurance();
$bankInsurance = new BankInsurance();
$hospitalInsurance = new HospitalInsurance();
// Basic
echo $homeInsurance->getContracts() . PHP_EOL;
echo $carInsurance->getContracts() . PHP_EOL;
echo $bankInsurance->getContracts() . PHP_EOL;
echo $hospitalInsurance->getContracts() . PHP_EOL;
echo "====================Default Implementation===========================" . PHP_EOL;
// Test Scenario 1
$covid1 = new CovidCondition(true);
$homeInsurance->accept($covid1);
$carInsurance->accept($covid1);
$bankInsurance->accept($covid1);
$hospitalInsurance->accept($covid1);
echo "====================End 1===========================" . PHP_EOL;
// Test Scenario 2
$covid2 = new CovidCondition(false);
$homeInsurance->accept($covid2);
$carInsurance->accept($covid2);
$bankInsurance->accept($covid2);
$hospitalInsurance->accept($covid2);
echo "====================End 2===========================" . PHP_EOL;
// Test Scenario 3
$covid3 = new CovidCondition(true);
$homeInsurance->accept($covid3);
$carInsurance->setEngineSize(20);
$carInsurance->accept($covid3);
$bankInsurance->accept($covid3);
$hospitalInsurance->setNumberOfRoom(50);
$hospitalInsurance->setNumberOfBeds(100);
$hospitalInsurance->accept($covid3);
echo "====================End 3===========================" . PHP_EOL;