|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Omnipay\Sofort; |
|
4
|
|
|
|
|
5
|
|
|
use Omnipay\Common\AbstractGateway; |
|
6
|
|
|
|
|
7
|
|
|
class Gateway extends AbstractGateway |
|
8
|
|
|
{ |
|
9
|
|
|
public function getName() |
|
10
|
|
|
{ |
|
11
|
|
|
return 'Sofort'; |
|
12
|
|
|
} |
|
13
|
|
|
|
|
14
|
|
|
public function getDefaultParameters() |
|
15
|
|
|
{ |
|
16
|
|
|
return array( |
|
17
|
|
|
'username' => '', |
|
18
|
|
|
'password' => '', |
|
19
|
|
|
'projectId' => '', |
|
20
|
|
|
'protection' => true, |
|
21
|
|
|
'testMode' => false, |
|
22
|
|
|
); |
|
23
|
|
|
} |
|
24
|
|
|
|
|
25
|
|
|
public function getUsername() |
|
26
|
|
|
{ |
|
27
|
|
|
return $this->getParameter('username'); |
|
28
|
|
|
} |
|
29
|
|
|
|
|
30
|
|
|
public function setUsername($value) |
|
31
|
|
|
{ |
|
32
|
|
|
return $this->setParameter('username', $value); |
|
33
|
|
|
} |
|
34
|
|
|
|
|
35
|
|
|
public function getPassword() |
|
36
|
|
|
{ |
|
37
|
|
|
return $this->getParameter('password'); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
public function setPassword($value) |
|
41
|
|
|
{ |
|
42
|
|
|
return $this->setParameter('password', $value); |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
public function getProjectId() |
|
46
|
|
|
{ |
|
47
|
|
|
return $this->getParameter('projectId'); |
|
48
|
|
|
} |
|
49
|
|
|
|
|
50
|
|
|
public function setProjectId($value) |
|
51
|
|
|
{ |
|
52
|
|
|
return $this->setParameter('projectId', $value); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
public function getCountry() |
|
56
|
|
|
{ |
|
57
|
|
|
return $this->getParameter('country'); |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
public function setCountry($value) |
|
61
|
|
|
{ |
|
62
|
|
|
return $this->setParameter('country', $value); |
|
63
|
|
|
} |
|
64
|
|
|
|
|
65
|
|
|
public function getProtection() |
|
66
|
|
|
{ |
|
67
|
|
|
return $this->getParameter('protection'); |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
public function setProtection($value) |
|
71
|
|
|
{ |
|
72
|
|
|
return $this->setParameter('protection', $value); |
|
73
|
|
|
} |
|
74
|
|
|
|
|
75
|
|
|
public function authorize(array $parameters = array()) |
|
76
|
|
|
{ |
|
77
|
|
|
return $this->createRequest('\Omnipay\Sofort\Message\AuthorizeRequest', $parameters); |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
|
|
public function completeAuthorize(array $parameters = array()) |
|
81
|
|
|
{ |
|
82
|
|
|
return $this->createRequest('\Omnipay\Sofort\Message\CompleteAuthorizeRequest', $parameters); |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
public function purchase(array $parameters = array()) |
|
86
|
|
|
{ |
|
87
|
|
|
return $this->authorize($parameters); |
|
88
|
|
|
} |
|
89
|
|
|
|
|
90
|
|
|
public function refund(array $parameters = array()) |
|
91
|
|
|
{ |
|
92
|
|
|
return $this->createRequest('\Omnipay\Sofort\Message\RefundRequest', $parameters); |
|
93
|
|
|
} |
|
94
|
|
|
} |
|
95
|
|
|
|