Failed Conditions
Pull Request — master (#1665)
by k-yamamura
38:49
created

CartService::addProduct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
ccs 2
cts 2
cp 1
cc 1
eloc 4
nc 1
nop 2
crap 1
1
<?php
2
/*
3
 * This file is part of EC-CUBE
4
 *
5
 * Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
6
 *
7
 * http://www.lockon.co.jp/
8
 *
9
 * This program is free software; you can redistribute it and/or
10
 * modify it under the terms of the GNU General Public License
11
 * as published by the Free Software Foundation; either version 2
12
 * of the License, or (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program; if not, write to the Free Software
21
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
 */
23
24
25
namespace Eccube\Service;
26
27
use Doctrine\ORM\EntityManager;
28
use Eccube\Common\Constant;
29
use Eccube\Entity\CartItem;
30
use Eccube\Entity\Master\Disp;
31
use Eccube\Entity\ProductClass;
32
use Eccube\Exception\CartException;
33
use Symfony\Component\HttpFoundation\Session\Session;
34
35
class CartService
0 ignored issues
show
introduced by
Missing class doc comment
Loading history...
36
{
37
    /** @var \Eccube\Application */
38
    public $app;
39
40
    /**
41
     * @var Session
42
     */
43
    private $session;
44
45
    /**
46
     * @var EntityManager
47
     */
48
    private $entityManager;
49
50
    /**
51
     * @var \Eccube\Entity\Cart
52
     */
53
    private $cart;
54
55
    /**
56
     * @var \Eccube\Entity\BaseInfo
57
     */
58
    private $BaseInfo;
59
60
    /**
61
     * @var array
62
     */
63
    private $errors = array();
64
65
    private $ProductType = null;
66
67
    /**
68
     * @var array
69
     */
70
    private $messages = array();
71
72
    /**
73
     * @var array
74
     */
75
    private $error;
76
77 121
    public function __construct(\Eccube\Application $app)
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
78
    {
79 121
        $this->app = $app;
80
        $this->session = $app['session'];
81
        $this->entityManager = $app['orm.em'];
82
83
        if ($this->session->has('cart')) {
84
            $this->cart = $this->session->get('cart');
85
        } else {
86
            $this->cart = new \Eccube\Entity\Cart();
87
        }
88
89
        $this->loadProductClassFromCart();
90
91
        $this->BaseInfo = $app['eccube.repository.base_info']->get();
92
    }
93
94
    /**
95
     * カートに保存されている商品の ProductClass エンティティを読み込み、カートへ設定します。
96
     */
97 121
    protected function loadProductClassFromCart()
98
    {
99
        /* @var $softDeleteFilter \Eccube\Doctrine\Filter\SoftDeleteFilter */
100
        $softDeleteFilter = $this->entityManager->getFilters()->getFilter('soft_delete');
101
        $excludes = $softDeleteFilter->getExcludes();
102
        $softDeleteFilter->setExcludes(array(
103
            'Eccube\Entity\ProductClass',
104
        ));
105 121
106
        foreach ($this->cart->getCartItems() as $CartItem) {
107 121
            $this->loadProductClassFromCartItem($CartItem);
108
        }
109
110 121
        $softDeleteFilter->setExcludes($excludes);
111
    }
112
113
    /**
114
     * CartItem に対応する ProductClass を設定します。
115
     *
116
     * @param CartItem $CartItem
117 29
     */
118
    protected function loadProductClassFromCartItem(CartItem $CartItem)
119
    {
120 29
        $ProductClass = $this
121
            ->entityManager
122
            ->getRepository($CartItem->getClassName())
123
            ->find($CartItem->getClassId());
124
125
        $CartItem->setObject($ProductClass);
126
127
        if (is_null($this->ProductType) && $ProductClass->getDelFlg() == Constant::DISABLED) {
128
            $this->setCanAddProductType($ProductClass->getProductType());
129
        }
130
    }
131 68
132
    public function setCanAddProductType(\Eccube\Entity\Master\ProductType $ProductType)
0 ignored issues
show
introduced by
Declare public methods first, then protected ones and finally private ones
Loading history...
introduced by
Missing function doc comment
Loading history...
133
    {
134 68
        if (is_null($this->ProductType)) {
135
            $this->ProductType = $ProductType;
136
        }
137 60
138 60
        return $this;
139
    }
140
141
    public function save()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
142
    {
143
        return $this->session->set('cart', $this->cart);
144
    }
145 3
146
    public function unlock()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
147 3
    {
148 3
        $this->cart
149
            ->setLock(false)
150 3
            ->setPreOrderId(null);
151
    }
152 13
153
    public function lock()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
154 13
    {
155 13
        $this->cart
156
            ->setLock(true)
157 13
            ->setPreOrderId(null);
158
    }
159
160
    /**
161
     * @return bool
162
     */
163
    public function isLocked()
164
    {
165
        return $this->cart->getLock();
166
    }
167
168
    /**
169
     * @param  string $pre_order_id
170
     * @return \Eccube\Service\CartService
171 17
     */
172
    public function setPreOrderId($pre_order_id)
173
    {
174
        $this->cart->setPreOrderId($pre_order_id);
175 17
176
        return $this;
177
    }
178
179
    /**
180
     * @return string
181
     */
182
    public function getPreOrderId()
183
    {
184
        return $this->cart->getPreOrderId();
185
    }
186
187
    /**
188
     * @return \Eccube\Service\CartService
189 7
     */
190
    public function clear()
191 7
    {
192 7
        $this->cart
193 7
            ->setPreOrderId(null)
194
            ->setLock(false)
195
            ->clearCartItems();
196 7
197
        return $this;
198
    }
199 1
200
    public function getCanAddProductType()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
201 1
    {
202
        return $this->ProductType;
203
    }
204
205
    /**
206
     *
207
     * @param  string $productClassId
0 ignored issues
show
introduced by
Expected 2 spaces after parameter type; 1 found
Loading history...
208
     * @param  integer $quantity
209
     * @return \Eccube\Service\CartService
210 25
     */
211
    public function addProduct($productClassId, $quantity = 1)
212
    {
213
        $quantity += $this->getProductQuantity($productClassId);
214
        $this->setProductQuantity($productClassId, $quantity);
215 25
216 3
        return $this;
217
    }
218
219
    /**
220
     * @param  string $productClassId
221
     * @return integer
222 27
     */
223
    public function getProductQuantity($productClassId)
224
    {
225 26
        $CartItem = $this->cart->getCartItemByIdentifier('Eccube\Entity\ProductClass', (string)$productClassId);
0 ignored issues
show
Coding Style introduced by
As per coding-style, a cast statement should be followed by a single space.
Loading history...
226
        if ($CartItem) {
227
            return $CartItem->getQuantity();
228 27
        } else {
229
            return 0;
230
        }
231
    }
232
233
    /**
234
     * @param  \Eccube\Entity\ProductClass|integer $ProductClass
235
     * @param  integer $quantity
0 ignored issues
show
introduced by
Expected 29 spaces after parameter type; 1 found
Loading history...
236
     * @return \Eccube\Service\CartService
237
     * @throws CartException
238 61
     */
239
    public function setProductQuantity($ProductClass, $quantity)
240 61
    {
241 56
        if (!$ProductClass instanceof ProductClass) {
0 ignored issues
show
Bug introduced by
The class Eccube\Entity\ProductClass does not exist. Did you forget a USE statement, or did you not list all dependencies?

This error could be the result of:

1. Missing dependencies

PHP Analyzer uses your composer.json file (if available) to determine the dependencies of your project and to determine all the available classes and functions. It expects the composer.json to be in the root folder of your repository.

Are you sure this class is defined by one of your dependencies, or did you maybe not list a dependency in either the require or require-dev section?

2. Missing use statement

PHP does not complain about undefined classes in ìnstanceof checks. For example, the following PHP code will work perfectly fine:

if ($x instanceof DoesNotExist) {
    // Do something.
}

If you have not tested against this specific condition, such errors might go unnoticed.

Loading history...
242 56
            $ProductClass = $this->entityManager
243
                ->getRepository('Eccube\Entity\ProductClass')
244 56
                ->find($ProductClass);
245
            if (!$ProductClass) {
246
                throw new CartException('cart.product.delete');
247
            }
248
        }
249
250
        if (!$this->isProductDisplay($ProductClass)) {
251
            throw new CartException('cart.product.not.status');
252
        }
253
254
        $productName = $this->getProductName($ProductClass);
255
256
        // 商品種別に紐づく配送業者を取得
257
        $deliveries = $this->app['eccube.repository.delivery']->getDeliveries($ProductClass->getProductType());
258
259
        if (count($deliveries) == 0) {
260
            // 商品種別が存在しなければエラー
261
            $this->removeProduct($ProductClass->getId());
262
            $this->addError('cart.product.not.producttype', $productName);
263
            throw new CartException('cart.product.not.producttype');
264
        }
265
266
        $this->setCanAddProductType($ProductClass->getProductType());
267
268
        if ($this->BaseInfo->getOptionMultipleShipping() != Constant::ENABLED) {
269
            if (!$this->canAddProduct($ProductClass->getId())) {
270
                // 複数配送対応でなければ商品種別が異なればエラー
271
                throw new CartException('cart.product.type.kind');
272
            }
273
        } else {
274
            // 複数配送の場合、同一支払方法がなければエラー
275
            if (!$this->canAddProductPayment($ProductClass->getProductType())) {
276
                throw new CartException('cart.product.payment.kind');
277
            }
278
        }
279
280
        $tmp_subtotal = 0;
281
        $tmp_quantity = 0;
282
        foreach ($this->getCart()->getCartItems() as $cartitem) {
283
            $pc = $cartitem->getObject();
284 60
            if ($pc->getId() != $ProductClass->getId()) {
285
                // 追加された商品以外のtotal priceをセット
286 61
                $tmp_subtotal += $cartitem->getTotalPrice();
287 61
            }
288
        }
289
        for ($i = 0; $i < $quantity; $i++) {
290
            $tmp_subtotal += $ProductClass->getPrice02IncTax();
291
            if ($tmp_subtotal > $this->app['config']['max_total_fee']) {
292
                $this->setError('cart.over.price_limit');
293
                break;
294 61
            }
295
            $tmp_quantity++;
296
        }
297
        if ($tmp_quantity == 0) {
298
            // 数量が0の場合、エラー
299 1
            throw new CartException('cart.over.price_limit');
300
        }
301 56
302 1
        // 制限数チェック
303 61
        $quantity = $this->setProductLimit($ProductClass, $productName, $tmp_quantity);
304
305 61
        $CartItem = new CartItem();
306
        $CartItem
307
            ->setClassName('Eccube\Entity\ProductClass')
308
            ->setClassId((string)$ProductClass->getId())
0 ignored issues
show
Coding Style introduced by
As per coding-style, a cast statement should be followed by a single space.
Loading history...
309
            ->setPrice($ProductClass->getPrice02IncTax())
310
            ->setQuantity($quantity);
311
312
        $this->cart->setCartItem($CartItem);
313
314
        return $this;
315
    }
316
317
    /**
318 1
     * @param  string $productClassId
319
     * @return boolean
320
     */
321
    public function canAddProduct($productClassId)
322
    {
323
        $ProductClass = $this
324 61
            ->entityManager
325 2
            ->getRepository('\Eccube\Entity\ProductClass')
326
            ->find($productClassId);
327
328
        if (!$ProductClass) {
329
            return false;
330 61
        }
331
332
        $ProductType = $ProductClass->getProductType();
333
334
        return $this->ProductType == $ProductType;
335
    }
336
337 61
    /**
338
     * @param \Eccube\Entity\Master\ProductType $ProductType
339
     * @return bool
340
     */
341
    public function canAddProductPayment(\Eccube\Entity\Master\ProductType $ProductType)
342
    {
343
        $deliveries = $this
344 59
            ->entityManager
345
            ->getRepository('\Eccube\Entity\Delivery')
346
            ->findBy(array('ProductType' => $ProductType));
347 59
348 59
        // 支払方法を取得
349
        $payments = $this->entityManager->getRepository('Eccube\Entity\Payment')->findAllowedPayments($deliveries);
350
351 59
        if ($this->getCart()->getTotalPrice() < 1) {
352
            // カートになければ支払方法を全て設定
353
            $this->getCart()->setPayments($payments);
354
355
            return true;
356
        }
357 59
358
        // カートに存在している支払方法と追加された商品の支払方法チェック
359
        $arr = array();
360
        foreach ($payments as $payment) {
361
            foreach ($this->getCart()->getPayments() as $p) {
362
                if ($payment['id'] == $p['id']) {
363
                    $arr[] = $payment;
364 5
                    break;
365
                }
366
            }
367 1
        }
368 1
369
        if (count($arr) > 0) {
370
            $this->getCart()->setPayments($arr);
371
372
            return true;
373
        }
374
375
        // 支払条件に一致しない
376
        return false;
377 5
378
    }
379
380
    /**
381 2
     * カートブロックに表示するカートを取得します。
382
     * ブロックに表示するカートはチェックを行わず、セットされているカートを返します。
383
     *
384
     * @return \Eccube\Entity\Cart
385 1
     */
386 1
    public function getCartObj()
387
    {
388
389
        foreach ($this->cart->getCartItems() as $CartItem) {
390
391
            /** @var \Eccube\Entity\ProductClass $ProductClass */
392
            $ProductClass = $CartItem->getObject();
393 1
            if (!$ProductClass) {
394
                $this->loadProductClassFromCartItem($CartItem);
395
396
                $ProductClass = $CartItem->getObject();
397 1
            }
398
399 1
            if ($ProductClass->getDelFlg()) {
400
                // 商品情報が削除されていたらエラー
401
                $this->setError('cart.product.delete');
402
                // カートから削除
403
                $this->removeProduct($ProductClass->getId());
404
            }
405
        }
406 67
407
        return $this->cart;
408 67
409
    }
410 3
411
    /**
412
     * カートを取得します。
413
     *
414
     * @return \Eccube\Entity\Cart
415
     */
416
    public function getCart()
417
    {
418
        foreach ($this->cart->getCartItems() as $CartItem) {
419 3
420
            /** @var \Eccube\Entity\ProductClass $ProductClass */
421
            $ProductClass = $CartItem->getObject();
422
            if (!$ProductClass) {
423
                $this->loadProductClassFromCartItem($CartItem);
424
425
                $ProductClass = $CartItem->getObject();
426 3
            }
427
428
            if ($ProductClass->getDelFlg() == Constant::DISABLED) {
429
                // 商品情報が有効
430
431
                if (!$this->isProductDisplay($ProductClass)) {
432
                    $this->setError('cart.product.not.status');
433
                } else {
0 ignored issues
show
Coding Style introduced by
Blank line found at start of control structure
Loading history...
434
435
                    $productName = $this->getProductName($ProductClass);
436
437
                    // 制限数チェック
438
                    $quantity = $this->setProductLimit($ProductClass, $productName, $CartItem->getQuantity());
439 3
440 67
                    if ($CartItem->getQuantity() != $quantity) {
441
                        // 個数が異なれば更新
442 67
                        $CartItem->setQuantity($quantity);
443
                        $this->cart->setCartItem($CartItem);
444
                    }
445
                }
446
0 ignored issues
show
Coding Style introduced by
Blank line found at end of control structure
Loading history...
447
            } else {
448
                // 商品情報が削除されていたらエラー
449 6
                $this->setError('cart.product.delete');
450
                // カートから削除
451
                $this->removeProduct($ProductClass->getId());
452
            }
453
        }
454
455
        return $this->cart;
456
    }
457 1
458
    /**
459
     * @param  string $productClassId
460
     * @return \Eccube\Service\CartService
461
     */
462
    public function removeProduct($productClassId)
463
    {
464
        $this->cart->removeCartItemByIdentifier('Eccube\Entity\ProductClass', (string)$productClassId);
0 ignored issues
show
Coding Style introduced by
As per coding-style, a cast statement should be followed by a single space.
Loading history...
465
466
        // 支払方法の再設定
467
        if ($this->BaseInfo->getOptionMultipleShipping() == Constant::ENABLED) {
0 ignored issues
show
Coding Style introduced by
Blank line found at start of control structure
Loading history...
468
469
            // 複数配送対応
470
            $productTypes = array();
471
            foreach ($this->getCart()->getCartItems() as $item) {
472
                /* @var $ProductClass \Eccube\Entity\ProductClass */
473 6
                $ProductClass = $item->getObject();
474
                $productTypes[] = $ProductClass->getProductType();
475
            }
476
477
            // 配送業者を取得
478
            $deliveries = $this->entityManager->getRepository('Eccube\Entity\Delivery')->getDeliveries($productTypes);
479
480
            // 支払方法を取得
481 6
            $payments = $this->entityManager->getRepository('Eccube\Entity\Payment')->findAllowedPayments($deliveries);
482
483 6
            $this->getCart()->setPayments($payments);
484
        }
485
486
        return $this;
487
    }
488 6
489
    /**
490
     * @param  string $error
491
     * @param  string $productName
492
     * @return \Eccube\Service\CartService
493
     */
494
    public function addError($error = null, $productName = null)
495 2
    {
496
        $this->errors[] = $error;
497
        $this->session->getFlashBag()->add('eccube.front.request.error', $error);
498
        if (!is_null($productName)) {
499
            $this->session->getFlashBag()->add('eccube.front.request.product', $productName);
500 2
        }
501
502
        return $this;
503
    }
504
505
    /**
506
     * @param  string $productClassId
507 3
     * @return \Eccube\Service\CartService
508
     */
509
    public function upProductQuantity($productClassId)
510
    {
511 3
        $quantity = $this->getProductQuantity($productClassId) + 1;
512
        $this->setProductQuantity($productClassId, $quantity);
513
514
        return $this;
515 1
    }
516
517 3
    /**
518
     * @param  string $productClassId
519
     * @return \Eccube\Service\CartService
520
     */
521
    public function downProductQuantity($productClassId)
522
    {
523 17
        $quantity = $this->getProductQuantity($productClassId) - 1;
524
525
        if ($quantity > 0) {
526 17
            $this->setProductQuantity($productClassId, $quantity);
527
        } else {
528
            $this->removeProduct($productClassId);
529
        }
530
531
        return $this;
532
    }
533
534
    /**
535
     * @return array
536
     */
537
    public function getProductTypes()
538
    {
539 2
540
        $productTypes = array();
541 2
        foreach ($this->getCart()->getCartItems() as $item) {
542
            /* @var $ProductClass \Eccube\Entity\ProductClass */
543
            $ProductClass = $item->getObject();
544
            $productTypes[] = $ProductClass->getProductType();
545
        }
546
547
        return array_unique($productTypes);
548
549
    }
550
551
    /**
552
     * @return string[]
553
     */
554
    public function getErrors()
555
    {
556
        return $this->errors;
557
    }
558
559
    /**
560
     * @return string[]
561
     */
562
    public function getMessages()
563
    {
564
        return $this->messages;
565
    }
566 1
567
    /**
568 1
     * @param  string $message
569
     * @return \Eccube\Service\CartService
570
     */
571
    public function setMessage($message)
572
    {
573
        $this->messages[] = $message;
574
575 1
        return $this;
576
    }
577 1
578
    /**
579 1
     * @return string
580
     */
581
    public function getError()
582
    {
583
        return $this->error;
584
    }
585
586
    /**
587
     * @param  string $error
588
     * @return \Eccube\Service\CartService
589
     */
590
    public function setError($error = null)
591
    {
592
        $this->error = $error;
0 ignored issues
show
Documentation Bug introduced by
It seems like $error of type string or null is incompatible with the declared type array of property $error.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
593
        $this->session->getFlashBag()->set('eccube.front.request.error', $error);
594
595
        return $this;
596
    }
597
598
    /**
599
     * 商品名を取得
600
     *
601
     * @param ProductClass $ProductClass
602
     * @return string
603
     */
604
    private function getProductName(ProductClass $ProductClass)
605
    {
606
607
        $productName = $ProductClass->getProduct()->getName();
608
609
        if ($ProductClass->hasClassCategory1()) {
610
            $productName .= " - ".$ProductClass->getClassCategory1()->getName();
611
        }
612
613
        if ($ProductClass->hasClassCategory2()) {
614
            $productName .= " - ".$ProductClass->getClassCategory2()->getName();
615
        }
616
617
        return $productName;
618
    }
619
620
621
    /**
622
     * 非公開商品の場合、カートから削除
623
     *
624
     * @param ProductClass $ProductClass
625
     * @return bool
626
     */
627
    private function isProductDisplay(ProductClass $ProductClass)
628
    {
629
630
        if ($ProductClass->getProduct()->getStatus()->getId() !== Disp::DISPLAY_SHOW) {
631
            // 非公開の商品はカートから削除
632
            $this->removeProduct($ProductClass->getId());
633
634
            return false;
635
        }
636
637
        return true;
638
    }
639
640
641
    /**
642
     * 在庫数と販売制限数のチェック
643
     * 在庫数または販売制限数以上の個数が設定されていれば、それぞれの個数にセットし、
644
     * 在庫数と販売制限数ともに個数が超えていれば、少ない方を適用させてメッセージを表示する
645
     *
646
     * @param ProductClass $ProductClass
647
     * @param $productName
648
     * @param $quantity
649
     * @return int|string
650
     */
651
    private function setProductLimit(ProductClass $ProductClass, $productName, $quantity)
652
    {
653
654
        /**
655
         * 実際の在庫は ProductClass::ProductStock だが、購入時にロックがかかるため、
656
         * ここでは ProductClass::stock で在庫のチェックをする
657
         */
658
659
        $tmp_quantity = 0;
660
661
        // 在庫数(在庫無制限の場合、null)
662
        $stock = $ProductClass->getStock();
663
        // 在庫無制限(在庫無制限の場合、1)
664
        $stockUnlimited = $ProductClass->getStockUnlimited();
665
666
        // 販売制限数(設定されていなければnull)
667
        $saleLimit = $ProductClass->getSaleLimit();
668
669
        if ($stockUnlimited) {
670
            // 在庫無制限
671
672
            if ($saleLimit && $saleLimit < $quantity) {
673
                // 販売制限数を超えていれば販売制限数をセット
674
                $tmp_quantity = $saleLimit;
675
                $this->addError('cart.over.sale_limit', $productName);
676
            }
677
        } else {
678
            // 在庫制限あり
679
680
            if ($stock < 1) {
681
                // 在庫がなければカートから削除
682
                $this->addError('cart.zero.stock', $productName);
683
                $this->removeProduct($ProductClass->getId());
684
            } else {
685
                // 在庫数チェックと販売制限数チェックどちらを適用するか設定
686
                $message = 'cart.over.stock';
687
                if ($saleLimit) {
688
                    if ($stock > $saleLimit) {
689
                        // 販売制限数チェック
690
                        $limit = $saleLimit;
691
                        $message = 'cart.over.sale_limit';
692
                    } else {
693
                        // 在庫数チェック
694
                        $limit = $stock;
695
                    }
696
                } else {
697
                    // 在庫数チェック
698
                    $limit = $stock;
699
                }
700
701
                if ($limit < $quantity) {
702
                    // 在庫数、販売制限数を超えていれば購入可能数までをセット
703
                    $tmp_quantity = $limit;
704
                    $this->addError($message, $productName);
705
                }
706
            }
707
        }
708
709
        if ($tmp_quantity) {
710
            $quantity = $tmp_quantity;
711
        }
712
713
        return $quantity;
714
715
    }
716
717
}
718