forked from fruitl00p/php-mt940
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRabo.php
157 lines (138 loc) · 4.29 KB
/
Rabo.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
namespace Kingsquare\Parser\Banking\Mt940\Engine;
use Kingsquare\Parser\Banking\Mt940\Engine;
/**
* @author Kingsquare (source@kingsquare.nl)
* @license http://opensource.org/licenses/MIT MIT
*/
class Rabo extends Engine
{
/**
* returns the name of the bank.
*
* @return string
*/
protected function parseStatementBank()
{
return 'Rabo';
}
/**
* Overloaded: Rabo has different way of storing account info.
*
* {@inheritdoc}
*/
protected function parseTransactionAccount()
{
$results = [];
// SEPA MT940 Structured
if (preg_match('/^:61:.*\n(.*?)(\n|\:8)/im', $this->getCurrentTransactionData(), $results)
&& !empty($results[1])
) {
return $this->sanitizeAccount($results[1]);
}
if (preg_match('/^:61:.{26}(.{16})/m', $this->getCurrentTransactionData(), $results)
&& !empty($results[1])
) {
return $this->sanitizeAccount($results[1]);
}
return '';
}
/**
* Overloaded: Rabo has different way of storing account name.
*
* {@inheritdoc}
*/
protected function parseTransactionAccountName()
{
$results = [];
// SEPA MT940 Structured
if (preg_match('#/NAME/(.+?)\n?/(REMI|ADDR|ISDT|CSID)/#ms', $this->getCurrentTransactionData(), $results)) {
$accountName = trim($results[1]);
if (!empty($accountName)) {
return $this->sanitizeAccountName($accountName);
}
}
if (preg_match('/^:61:.*? (.+)/m', $this->getCurrentTransactionData(), $results)) {
$accountName = trim($results[1]);
if (!empty($accountName)) {
return $this->sanitizeAccountName($accountName);
}
}
if (preg_match('/(.*) Betaalautomaat/', $this->parseTransactionDescription(), $results)) {
$accountName = trim($results[1]);
if (!empty($accountName)) {
return $this->sanitizeAccountName($accountName);
}
}
return '';
}
/**
* Overloaded: Rabo has different way of storing transaction value timestamps (ymd).
*
* {@inheritdoc}
*/
protected function parseTransactionEntryTimestamp()
{
$results = [];
if (preg_match('/^:60F:[C|D]([\d]{6})/m', $this->getCurrentStatementData(), $results) && !empty($results[1])) {
return $this->sanitizeTimestamp($results[1], 'ymd');
}
return 0;
}
/**
* Overloaded: Rabo has different way of storing transaction value timestamps (ymd).
*
* {@inheritdoc}
*/
protected function parseTransactionValueTimestamp()
{
$results = [];
if (preg_match('/^:61:([\d]{6})[C|D]/', $this->getCurrentTransactionData(), $results) && !empty($results[1])) {
return $this->sanitizeTimestamp($results[1], 'ymd');
}
return 0;
}
/**
* Overloaded: Rabo uses longer strings for accountnumbers.
*
* {@inheritdoc}
*/
protected function sanitizeAccount($string)
{
$account = parent::sanitizeAccount($string);
if (strlen($account) > 20 && strpos($account, '80000') === 0) {
$account = substr($account, 5);
}
return $account;
}
/**
* Overloaded: Rabo encapsulates the description with /REMI/ for SEPA.
*
* {@inheritdoc}
*/
protected function sanitizeDescription($string)
{
$description = parent::sanitizeDescription($string);
if (strpos($description, '/REMI/') !== false
&& preg_match('#/REMI/(.*?)(/((PURP|ISDT|CSID|RTRN)/)|$)#s', $description, $results) && !empty($results[1])
) {
return $results[1];
}
if (strpos($description, '/EREF/') !== false
&& preg_match('#/EREF/(.*?)/(ORDP)/#s', $description, $results) && !empty($results[1])
) {
return $results[1];
}
return $description;
}
/**
* Overloaded: Is applicable if first line has :940:.
*
* {@inheritdoc}
*/
public static function isApplicable($string)
{
$firstline = strtok($string, "\r\n\t");
return strpos($firstline, ':940:') !== false;
}
}