forked from eymengunay/EoSetefiBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClient.php
113 lines (100 loc) · 2.95 KB
/
Client.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
/*
* This file is part of the EoSetefi package.
*
* (c) 2014 Eymen Gunay <[email protected]>
*/
namespace Eo\SetefiBundle;
use Eo\SetefiBundle\Payment\PaymentRequestInterface;
use Guzzle\Http\Client as Guzzle;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
/**
* Setefi client
*/
class Client
{
protected $endpoint;
protected $id;
protected $password;
/**
* Class constructor
*
* @param string $endpoint
* @param string $id
* @param string $password
*/
public function __construct($endpoint, $id, $password)
{
$this->endpoint = $endpoint;
$this->id = $id;
$this->password = $password;
}
/**
* Create payment url
*
* @param PaymentRequestInterface $paymentRequest
* @return string
*/
public function createPaymentUrl(PaymentRequestInterface $paymentRequest)
{
$client = new Guzzle();
$parameters = array(
'id' => $this->id,
'password' => $this->password,
'operationType' => 'initialize',
'amount' => $paymentRequest->getAmount(),
'currencyCode' => $paymentRequest->getCurrencyCode(),
'language' => $paymentRequest->getLanguage(),
'responseToMerchantUrl' => $paymentRequest->getReturnUrl(),
'recoveryUrl' => $paymentRequest->getRecoveryUrl(),
'merchantOrderId' => $paymentRequest->getCartId(),
'cardHolderName' => $paymentRequest->getFullName(),
'cardHolderEmail' => $paymentRequest->getEmail(),
'description' => $paymentRequest->getDescription()
);
$request = $client->post($this->endpoint, array(), $parameters);
$response = $request->send();
$response = new \SimpleXMLElement($response->getBody());
$paymentId = $response->paymentid;
$paymentUrl = $response->hostedpageurl;
$securityToken = $response->securitytoken;
return "$paymentUrl?PaymentID=$paymentId";
}
/**
* Resolve notification parameters
*
* @param array $parameters
* @return Response
*/
public function resolveNotification($parameters)
{
$resolver = new OptionsResolver();
$resolver->setRequired(array(
"authorizationcode",
"cardcountry",
"cardexpirydate",
"customfield",
"maskedpan",
"merchantorderid",
"paymentid",
"responsecode",
"result",
"rrn",
"securitytoken",
"threedsecure"
));
return $resolver->resolve($parameters);
}
/**
* Generate notification response
*
* @param string $url
* @return Response
*/
public function generateNotificationResponse($url)
{
return new Response($url);
}
}