1 | <?php |
||
8 | class Payment extends MoipResource |
||
9 | { |
||
10 | /** |
||
11 | * @const string |
||
12 | */ |
||
13 | const PATH = 'payments'; |
||
14 | |||
15 | /** |
||
16 | * @const string |
||
17 | */ |
||
18 | const MULTI_PAYMENTS_PATH = 'multipayments'; |
||
19 | |||
20 | /** |
||
21 | * Payment means. |
||
22 | * |
||
23 | * @const string |
||
24 | */ |
||
25 | const METHOD_CREDIT_CARD = 'CREDIT_CARD'; |
||
26 | |||
27 | /** |
||
28 | * Payment means. |
||
29 | * |
||
30 | * @const string |
||
31 | */ |
||
32 | const METHOD_BOLETO = 'BOLETO'; |
||
33 | |||
34 | /** |
||
35 | * Payment means. |
||
36 | * |
||
37 | * @const string |
||
38 | */ |
||
39 | const METHOD_ONLINE_DEBIT = 'ONLINE_DEBIT'; |
||
40 | |||
41 | /** |
||
42 | * Payment means. |
||
43 | * |
||
44 | * @const string |
||
45 | */ |
||
46 | const METHOD_WALLET = 'WALLET'; |
||
47 | |||
48 | /** |
||
49 | * Payment means. |
||
50 | * |
||
51 | * @const string |
||
52 | */ |
||
53 | const METHOD_ONLINE_BANK_DEBIT = 'ONLINE_BANK_DEBIT'; |
||
54 | |||
55 | /** |
||
56 | * @var \Moip\Resource\Orders |
||
57 | */ |
||
58 | private $order; |
||
59 | |||
60 | /** |
||
61 | * @var \Moip\Resource\Multiorders |
||
62 | */ |
||
63 | private $multiorder; |
||
64 | |||
65 | /** |
||
66 | * Initializes new instances. |
||
67 | */ |
||
68 | protected function initialize() |
||
74 | |||
75 | /** |
||
76 | * Create a new payment in api MoIP. |
||
77 | * |
||
78 | * @return $this |
||
79 | */ |
||
80 | public function execute() |
||
81 | { |
||
82 | if ($this->order !== null) { |
||
83 | $path = sprintf('/%s/%s/%s/%s', MoipResource::VERSION, Orders::PATH, $this->order->getId(), self::PATH); |
||
84 | } else { |
||
85 | $path = sprintf('/%s/%s/%s/%s', MoipResource::VERSION, Multiorders::PATH, $this->multiorder->getId(), |
||
86 | self::MULTI_PAYMENTS_PATH); |
||
87 | } |
||
88 | $response = $this->httpRequest($path, HTTPRequest::POST, $this); |
||
89 | |||
90 | return $this->populate($response); |
||
91 | } |
||
92 | |||
93 | /** |
||
94 | * Get an payment in MoIP. |
||
95 | * |
||
96 | * @param string $id_moip Id MoIP payment |
||
97 | * |
||
98 | * @return stdClass |
||
99 | */ |
||
100 | public function get($id_moip) |
||
104 | |||
105 | /** |
||
106 | * Get id MoIP payment. |
||
107 | * |
||
108 | * |
||
109 | * @return \Moip\Resource\Payment |
||
110 | */ |
||
111 | public function getId() |
||
115 | |||
116 | /** |
||
117 | * Mount payment structure. |
||
118 | * |
||
119 | * @param \stdClass $response |
||
120 | * |
||
121 | * @return $this |
||
122 | */ |
||
123 | protected function populate(stdClass $response) |
||
124 | { |
||
125 | $payment = clone $this; |
||
126 | |||
127 | $payment->data->id = $this->getIfSet('id', $response); |
||
128 | $payment->data->status = $this->getIfSet('status', $response); |
||
129 | $payment->data->amount = new stdClass(); |
||
130 | $payment->data->amount->total = $this->getIfSet('total', $response->amount); |
||
131 | $payment->data->amount->currency = $this->getIfSet('currency', $response->amount); |
||
132 | $payment->data->installmentCount = $this->getIfSet('installmentCount', $response); |
||
133 | $payment->data->fundingInstrument = $this->getIfSet('fundingInstrument', $response); |
||
134 | $payment->data->fees = $this->getIfSet('fees', $response); |
||
135 | $payment->data->refunds = $this->getIfSet('refunds', $response); |
||
136 | $payment->data->_links = $this->getIfSet('_links', $response); |
||
137 | |||
138 | return $payment; |
||
139 | } |
||
140 | |||
141 | /** |
||
142 | * Refunds. |
||
143 | * |
||
144 | * @return Refund |
||
145 | */ |
||
146 | public function refunds() |
||
153 | |||
154 | /** |
||
155 | * Set means of payment. |
||
156 | * |
||
157 | * @param \stdClass $fundingInstrument |
||
158 | * |
||
159 | * @return $this |
||
160 | */ |
||
161 | public function setFundingInstrument(stdClass $fundingInstrument) |
||
167 | |||
168 | /** |
||
169 | * Set billet. |
||
170 | * |
||
171 | * @param \DateTime|string $expirationDate Expiration date of a billet. |
||
172 | * @param string $logoUri Logo of billet. |
||
173 | * @param array $instructionLines Instructions billet. |
||
174 | * |
||
175 | * @return $this |
||
176 | */ |
||
177 | public function setBoleto($expirationDate, $logoUri, array $instructionLines = []) |
||
198 | |||
199 | /** |
||
200 | * Set credit card holder. |
||
201 | * |
||
202 | * @param \Moip\Resource\Customer $holder |
||
203 | */ |
||
204 | private function setCreditCardHolder(Customer $holder) |
||
217 | |||
218 | /** |
||
219 | * Set credit cardHash. |
||
220 | * |
||
221 | * @param string $hash Credit card hash encripted using Moip.js |
||
222 | * @param \Moip\Resource\Customer $holder |
||
223 | * |
||
224 | * @return $this |
||
225 | */ |
||
226 | public function setCreditCardHash($hash, Customer $holder) |
||
235 | |||
236 | /** |
||
237 | * Set credit card |
||
238 | * Credit card used in a payment. |
||
239 | * The card when returned within a parent resource is presented in its minimum representation. |
||
240 | * |
||
241 | * @param int $expirationMonth Card expiration month |
||
242 | * @param int $expirationYear Year of card expiration. |
||
243 | * @param int $number Card number. |
||
244 | * @param int $cvc Card Security Code. |
||
245 | * @param \Moip\Resource\Customer $holder |
||
246 | * |
||
247 | * @return $this |
||
248 | */ |
||
249 | public function setCreditCard($expirationMonth, $expirationYear, $number, $cvc, Customer $holder) |
||
261 | |||
262 | /** |
||
263 | * Set installment count. |
||
264 | * |
||
265 | * @param int $installmentCount |
||
266 | * |
||
267 | * @return $this |
||
268 | */ |
||
269 | public function setInstallmentCount($installmentCount) |
||
275 | |||
276 | /** |
||
277 | * Set payment means made available by banks. |
||
278 | * |
||
279 | * @param string $bankNumber Bank number. Possible values: 001, 237, 341, 041. |
||
280 | * @param \DateTime|string $expirationDate Date of expiration debit. |
||
281 | * @param string $returnUri Return Uri. |
||
282 | * |
||
283 | * @return $this |
||
284 | */ |
||
285 | public function setOnlineBankDebit($bankNumber, $expirationDate, $returnUri) |
||
298 | |||
299 | /** |
||
300 | * Set Multiorders. |
||
301 | * |
||
302 | * @param \Moip\Resource\Multiorders $multiorder |
||
303 | */ |
||
304 | public function setMultiorder(Multiorders $multiorder) |
||
308 | |||
309 | /** |
||
310 | * Set order. |
||
311 | * |
||
312 | * @param \Moip\Resource\Orders $order |
||
313 | * |
||
314 | * @return $this |
||
315 | */ |
||
316 | public function setOrder(Orders $order) |
||
322 | } |
||
323 |