|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
class DMSDocumentCartController extends DMSCartAbstractController |
|
|
|
|
|
|
4
|
|
|
{ |
|
5
|
|
|
private static $url_handlers = array( |
|
|
|
|
|
|
6
|
|
|
'$Action//$ID' => 'handleAction', |
|
7
|
|
|
); |
|
8
|
|
|
|
|
9
|
|
|
private static $allowed_actions = array( |
|
|
|
|
|
|
10
|
|
|
'DMSCartEditForm', |
|
11
|
|
|
'add', |
|
12
|
|
|
'deduct', |
|
13
|
|
|
'remove', |
|
14
|
|
|
'view' |
|
15
|
|
|
); |
|
16
|
|
|
|
|
17
|
|
|
public function init() |
|
18
|
|
|
{ |
|
19
|
|
|
parent::init(); |
|
20
|
|
|
Requirements::css(DMS_CART_DIR . '/css/dms-cart.css'); |
|
21
|
|
|
} |
|
22
|
|
|
/** |
|
23
|
|
|
* See {@link DMSDocumentCart::getItems()} |
|
24
|
|
|
* |
|
25
|
|
|
* @return ArrayList |
|
26
|
|
|
*/ |
|
27
|
|
|
public function items() |
|
28
|
|
|
{ |
|
29
|
|
|
return $this->getCart()->getItems(); |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* Prepares receiver info for the template. |
|
34
|
|
|
* Additionally it uses Zend_Locale to retrieve the localised spelling of the Country |
|
35
|
|
|
* |
|
36
|
|
|
* @return array |
|
37
|
|
|
*/ |
|
38
|
|
|
public function getReceiverInfo() |
|
39
|
|
|
{ |
|
40
|
|
|
$receiverInfo = $this->getCart()->getReceiverInfo(); |
|
41
|
|
|
|
|
42
|
|
|
if (isset($receiverInfo['DeliveryAddressCountry']) && $receiverInfo['DeliveryAddressCountry']) { |
|
43
|
|
|
$source = Zend_Locale::getTranslationList('territory', $receiverInfo['DeliveryAddressCountry'], 2); |
|
44
|
|
|
$receiverInfo['DeliveryAddressCountryLiteral'] = $source[$receiverInfo['DeliveryAddressCountry']]; |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
if (!empty($receiverInfo)) { |
|
48
|
|
|
$result = $receiverInfo; |
|
49
|
|
|
} else { |
|
50
|
|
|
$result = array('Result' => 'no data'); |
|
51
|
|
|
} |
|
52
|
|
|
|
|
53
|
|
|
return $result; |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
/** |
|
57
|
|
|
* See DMSDocumentCart::isCartEmpty() |
|
58
|
|
|
* |
|
59
|
|
|
* @return bool |
|
60
|
|
|
*/ |
|
61
|
|
|
public function getIsCartEmpty() |
|
62
|
|
|
{ |
|
63
|
|
|
return $this->getCart()->isCartEmpty(); |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
/** |
|
67
|
|
|
* Add quantity to an item that exists in {@link DMSDocumentCart}. |
|
68
|
|
|
* If the item does nt exist, try to add a new item of the particular |
|
69
|
|
|
* class given the URL parameters available. |
|
70
|
|
|
* |
|
71
|
|
|
* @param SS_HTTPRequest $request |
|
72
|
|
|
* |
|
73
|
|
|
* @return SS_HTTPResponse|string |
|
74
|
|
|
*/ |
|
75
|
|
|
public function add(SS_HTTPRequest $request) |
|
76
|
|
|
{ |
|
77
|
|
|
$quantity = ($request->requestVar('quantity')) ? intval($request->requestVar('quantity')) : 1; |
|
78
|
|
|
$documentId = (int)$request->param('ID'); |
|
79
|
|
|
$result = true; |
|
80
|
|
|
$message = ''; |
|
81
|
|
|
|
|
82
|
|
|
if ($doc = DMSDocument::get()->byID($documentId)) { |
|
83
|
|
|
/** @var ValidationResult $validate */ |
|
84
|
|
|
$validate = $this->validateAddRequest($quantity, $doc); |
|
|
|
|
|
|
85
|
|
|
if ($validate->valid()) { |
|
86
|
|
|
if ($this->getCart()->getItem($documentId)) { |
|
87
|
|
|
$this->getCart()->updateItemQuantity($documentId, $quantity); |
|
88
|
|
|
} else { |
|
89
|
|
|
$requestItem = DMSRequestItem::create()->setDocument($doc)->setQuantity($quantity); |
|
|
|
|
|
|
90
|
|
|
$this->getCart()->addItem($requestItem); |
|
91
|
|
|
} |
|
92
|
|
|
$backURL = $request->getVar('BackURL'); |
|
93
|
|
|
// make sure that backURL is a relative path (starts with /) |
|
94
|
|
|
if (isset($backURL) && preg_match('/^\//', $backURL)) { |
|
95
|
|
|
$this->getCart()->setBackUrl($backURL); |
|
96
|
|
|
} |
|
97
|
|
|
} else { |
|
98
|
|
|
$message = $validate->starredList(); |
|
99
|
|
|
$result = false; |
|
100
|
|
|
} |
|
101
|
|
|
} |
|
102
|
|
|
|
|
103
|
|
View Code Duplication |
if ($request->isAjax()) { |
|
|
|
|
|
|
104
|
|
|
$this->response->addHeader('Content-Type', 'application/json'); |
|
105
|
|
|
return Convert::raw2json(array('result' => $result, 'message' => $message)); |
|
106
|
|
|
} |
|
107
|
|
|
|
|
108
|
|
|
if (!$result) { |
|
109
|
|
|
Session::set('dms-cart-validation-message', $message); |
|
110
|
|
|
} |
|
111
|
|
|
|
|
112
|
|
|
if ($backURL = $request->getVar('BackURL')) { |
|
113
|
|
|
return $this->redirect($backURL); |
|
114
|
|
|
} |
|
115
|
|
|
|
|
116
|
|
|
return $this->redirectBack(); |
|
117
|
|
|
} |
|
118
|
|
|
|
|
119
|
|
|
/** |
|
120
|
|
|
* Deduct quantity from an item that exists in {@link DMSDocumentCart} |
|
121
|
|
|
* |
|
122
|
|
|
* @param SS_HTTPRequest $request |
|
123
|
|
|
* |
|
124
|
|
|
* @return SS_HTTPResponse|string |
|
125
|
|
|
*/ |
|
126
|
|
|
public function deduct(SS_HTTPRequest $request) |
|
127
|
|
|
{ |
|
128
|
|
|
$quantity = ($request->requestVar('quantity')) ? intval($request->requestVar('quantity')) : 1; |
|
129
|
|
|
$this->getCart()->updateItemQuantity((int)$request->param('ID'), $quantity); |
|
130
|
|
|
$this->redirectBack(); |
|
131
|
|
|
|
|
132
|
|
View Code Duplication |
if ($request->isAjax()) { |
|
|
|
|
|
|
133
|
|
|
$this->response->addHeader('Content-Type', 'application/json'); |
|
134
|
|
|
|
|
135
|
|
|
return Convert::raw2json(array('result' => true)); |
|
136
|
|
|
} |
|
137
|
|
|
if ($backURL = $request->getVar('BackURL')) { |
|
138
|
|
|
return $this->redirect($backURL); |
|
139
|
|
|
} |
|
140
|
|
|
|
|
141
|
|
|
return $this->redirectBack(); |
|
142
|
|
|
} |
|
143
|
|
|
|
|
144
|
|
|
/** |
|
145
|
|
|
* Completely remove an item that exists in {@link DMSDocumentCart} |
|
146
|
|
|
* |
|
147
|
|
|
* @param SS_HTTPRequest $request |
|
148
|
|
|
* |
|
149
|
|
|
* @return string |
|
|
|
|
|
|
150
|
|
|
*/ |
|
151
|
|
|
public function remove(SS_HTTPRequest $request) |
|
152
|
|
|
{ |
|
153
|
|
|
$this->getCart()->removeItemByID(intval($request->param('ID'))); |
|
154
|
|
|
|
|
155
|
|
|
if ($request->isAjax()) { |
|
156
|
|
|
$this->response->addHeader('Content-Type', 'application/json'); |
|
157
|
|
|
|
|
158
|
|
|
return Convert::raw2json(array('result' => !$this->getIsCartEmpty())); |
|
159
|
|
|
} |
|
160
|
|
|
|
|
161
|
|
|
return $this->redirectBack(); |
|
162
|
|
|
} |
|
163
|
|
|
|
|
164
|
|
|
/** |
|
165
|
|
|
* Validates a request to add a document to the cart |
|
166
|
|
|
* |
|
167
|
|
|
* @param int $quantity |
|
168
|
|
|
* @param DMSDocument $document |
|
169
|
|
|
* @return ValidationResult |
|
170
|
|
|
*/ |
|
171
|
|
|
protected function validateAddRequest($quantity, DMSDocument $document) |
|
172
|
|
|
{ |
|
173
|
|
|
$result = ValidationResult::create(); |
|
174
|
|
|
|
|
175
|
|
|
if (!$document->isAllowedInCart()) { |
|
176
|
|
|
$result->error( |
|
177
|
|
|
_t('DMSDocumentCartController.ERROR_NOT_ALLOWED', 'You are not allowed to add this document') |
|
178
|
|
|
); |
|
179
|
|
|
} |
|
180
|
|
|
|
|
181
|
|
|
if ($document->getHasQuantityLimit() && $quantity > $document->getMaximumQuantity()) { |
|
182
|
|
|
$result->error(_t( |
|
183
|
|
|
'DMSDocumentCartController.ERROR_QUANTITY_EXCEEDED', |
|
184
|
|
|
'Maximum of {max} documents exceeded for "{title}", please select a lower quantity.', |
|
185
|
|
|
array('max' => $document->getMaximumQuantity(), 'title' => $document->getTitle()) |
|
|
|
|
|
|
186
|
|
|
)); |
|
187
|
|
|
} |
|
188
|
|
|
|
|
189
|
|
|
$this->extend('updateValidateAddRequest', $result, $quantity, $document); |
|
190
|
|
|
|
|
191
|
|
|
return $result; |
|
192
|
|
|
} |
|
193
|
|
|
|
|
194
|
|
|
/** |
|
195
|
|
|
* Updates the document quantities just before the request is sent. |
|
196
|
|
|
* |
|
197
|
|
|
* @param array $data |
|
198
|
|
|
* @param Form $form |
|
199
|
|
|
* @param SS_HTTPRequest $request |
|
200
|
|
|
* |
|
201
|
|
|
* @return SS_HTTPResponse |
|
|
|
|
|
|
202
|
|
|
*/ |
|
203
|
|
|
public function updateCartItems($data, Form $form, SS_HTTPRequest $request) |
|
|
|
|
|
|
204
|
|
|
{ |
|
205
|
|
|
if (!empty($data['ItemQuantity'])) { |
|
206
|
|
|
foreach ($data['ItemQuantity'] as $itemID => $quantity) { |
|
207
|
|
|
if (!is_numeric($quantity) || $quantity < 0) { |
|
208
|
|
|
continue; |
|
209
|
|
|
} |
|
210
|
|
|
// Only update if quantity has changed |
|
211
|
|
|
$item = $this->getCart()->getItem($itemID); |
|
212
|
|
|
if ($item->getQuantity() == $quantity) { |
|
213
|
|
|
continue; |
|
214
|
|
|
} |
|
215
|
|
|
// No validate item |
|
216
|
|
|
$validate = $this->validateAddRequest($quantity, $item->getDocument()); |
|
217
|
|
|
if ($validate->valid()) { |
|
218
|
|
|
// Removes, then adds a item new item. |
|
219
|
|
|
$this->getCart()->removeItem($item); |
|
|
|
|
|
|
220
|
|
|
$this->getCart()->addItem($item->setQuantity($quantity)); |
|
221
|
|
|
} else { |
|
222
|
|
|
$form->sessionMessage($validate->starredList(), 'bad'); |
|
223
|
|
|
return $this->redirectBack(); |
|
224
|
|
|
} |
|
225
|
|
|
} |
|
226
|
|
|
} |
|
227
|
|
|
|
|
228
|
|
|
return $this->redirect($this->getCart()->getBackUrl()); |
|
229
|
|
|
} |
|
230
|
|
|
|
|
231
|
|
|
/** |
|
232
|
|
|
* Presents an interface for user to update the cart quantities |
|
233
|
|
|
* |
|
234
|
|
|
* @param SS_HTTPRequest $request |
|
235
|
|
|
* @return ViewableData_Customised |
|
236
|
|
|
*/ |
|
237
|
|
|
public function view(SS_HTTPRequest $request) |
|
|
|
|
|
|
238
|
|
|
{ |
|
239
|
|
|
$this->getCart()->setViewOnly(true); |
|
240
|
|
|
$form = $this->DMSCartEditForm(); |
|
241
|
|
|
return $this |
|
242
|
|
|
->customise( |
|
243
|
|
|
array( |
|
244
|
|
|
'Form' => $form, |
|
245
|
|
|
'Title' => _t(__CLASS__ . '.UPDATE_TITLE', 'Updating cart items') |
|
246
|
|
|
) |
|
247
|
|
|
); |
|
248
|
|
|
} |
|
249
|
|
|
|
|
250
|
|
|
/** |
|
251
|
|
|
* Gets and displays an editable list of items within the cart. |
|
252
|
|
|
* |
|
253
|
|
|
* To extend use the following from within an Extension subclass: |
|
254
|
|
|
* |
|
255
|
|
|
* <code> |
|
256
|
|
|
* public function updateDMSCartEditForm($form) |
|
257
|
|
|
* { |
|
258
|
|
|
* // Do something here |
|
259
|
|
|
* } |
|
260
|
|
|
* </code> |
|
261
|
|
|
* |
|
262
|
|
|
* @return Form |
|
263
|
|
|
*/ |
|
264
|
|
|
public function DMSCartEditForm() |
|
265
|
|
|
{ |
|
266
|
|
|
$actions = FieldList::create( |
|
267
|
|
|
FormAction::create( |
|
268
|
|
|
'updateCartItems', |
|
269
|
|
|
_t(__CLASS__ . '.SAVE_BUTTON', 'Save changes') |
|
270
|
|
|
) |
|
271
|
|
|
); |
|
272
|
|
|
$form = Form::create( |
|
273
|
|
|
$this, |
|
274
|
|
|
'DMSCartEditForm', |
|
275
|
|
|
FieldList::create(), |
|
276
|
|
|
$actions |
|
277
|
|
|
); |
|
278
|
|
|
$form->setTemplate('DMSDocumentRequestForm'); |
|
279
|
|
|
$this->extend('updateDMSCartEditForm', $form); |
|
280
|
|
|
return $form; |
|
281
|
|
|
} |
|
282
|
|
|
} |
|
283
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.