-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShippingWrapper.php
96 lines (86 loc) · 2.38 KB
/
ShippingWrapper.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
<?php
/*
* This file is part of the Elcodi package.
*
* Copyright (c) 2014-2016 Elcodi Networks S.L.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* Feel free to edit as you please, and have fun.
*
* @author Marc Morera <yuhu@mmoreram.com>
* @author Aldo Chiecchia <zimage@tiscali.it>
* @author Elcodi Team <tech@elcodi.com>
*/
namespace Elcodi\Component\Shipping\Wrapper;
use Elcodi\Component\Cart\Entity\Interfaces\CartInterface;
use Elcodi\Component\Shipping\Entity\ShippingMethod;
use Elcodi\Component\Shipping\EventDispatcher\ShippingEventDispatcher;
/**
* Class ShippingWrapper.
*/
class ShippingWrapper
{
/**
* @var ShippingEventDispatcher
*
* Shipping event dispatcher
*/
private $shippingEventDispatcher;
/**
* Construct.
*
* @param ShippingEventDispatcher $shippingEventDispatcher Shipping event dispatcher
*/
public function __construct(ShippingEventDispatcher $shippingEventDispatcher)
{
$this->shippingEventDispatcher = $shippingEventDispatcher;
}
/**
* Get loaded shipping methods given a cart.
*
* @param CartInterface $cart Cart
*
* @return ShippingMethod[] Shipping methods
*/
public function get(CartInterface $cart)
{
return $this
->shippingEventDispatcher
->dispatchShippingCollectionEvent($cart);
}
/**
* Get loaded shipping method given its id.
*
* @param CartInterface $cart Cart
* @param string $shippingMethodId Shipping method id
*
* @return ShippingMethod|null Required shipping method
*/
public function getOneById(CartInterface $cart, $shippingMethodId)
{
$shippingMethods = $this->get($cart);
return array_reduce(
$shippingMethods,
function (
$foundShippingMethod,
ShippingMethod $shippingMethod
) use ($shippingMethodId) {
return ($shippingMethodId === $shippingMethod->getId())
? $shippingMethod
: $foundShippingMethod;
},
null
);
}
/**
* Clean loaded object in order to reload it again.
*
* @return $this Self object
*/
public function clean()
{
return $this;
}
}