forked from snsparrish/NachaLibPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNacha.php
284 lines (254 loc) · 10.3 KB
/
Nacha.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
<?
// Nacha lib
// Copyright 2012 FH
// sparrish@nodeping.com
//
// Creates NACHA files
//
// Nacha lib is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// Nacha lib is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Nacha lib; if not, it is available at
// http://www.gnu.org/licenses/gpl.txt
/**
* NACHA file generator
**/
class NachaFile {
const LINES_GLUE = "\n"; // \n = LF, \r\n = CRLF
private $fileId;
private $companyId;
private $settlementAccount;
public $detailRecordCount = 0;
private $routingHash = 0;
public $creditTotal = 0;
public $debitTotal = 0;
public $errorRecords = array();
public $processedRecords = array();
private $tranid = 0;
private $bankrt;
private $filemodifier ='A';
private $originatingBank;
private $companyName;
private $scc = '200';
private $sec = 'PPD';
private $description = 'PAYMENT';
private $descriptionDate;
private $entryDate;
private $fileHeader = '';
public $validFileHeader = false;
private $batchHeader = '';
public $validBatchHeader = false;
private $batchInfo = '';
private $batchLines = '';
private $batchNumber = '1';
private $batchFooter = '';
public $validBatchFooter = false;
private $fileFooter = '';
public $validFileFooter = false;
private $recordsize = '094';
private $blockingfactor = '10';
private $formatcode = '1';
private $referencecode = ' ';
public $fileContents = '';
public $paymenttypecode = '';
// Takes money from someone else account and puts it in yours
public function addDebit($paymentinfo){
if(!is_array($paymentinfo))return false;
if(!isset($paymentinfo['Transcode'])){
if($paymentinfo['AccountType']){
if($paymentinfo['AccountType'] == 'CHECKING'){
$paymentinfo['Transcode'] = '27';
}elseif($paymentinfo['AccountType'] == 'SAVINGS'){
$paymentinfo['Transcode'] = '37';
}else{
return false;
}
}else{
$paymentinfo['Transcode'] = '27';
}
}
$this->addDetailLine($paymentinfo);
return true;
}
// Takes money from your account and puts it into someone elses.
public function addCredit($paymentinfo){
if(!is_array($paymentinfo))return false;
if(!isset($paymentinfo['Transcode'])){
if($paymentinfo['AccountType']){
if($paymentinfo['AccountType'] == 'CHECKING'){
$paymentinfo['Transcode'] = '22';
}elseif($paymentinfo['AccountType'] == 'SAVINGS'){
$paymentinfo['Transcode'] = '32';
}else{
return false;
}
}else{
$paymentinfo['Transcode'] = '22';
}
}
$this->addDetailLine($paymentinfo);
return true;
}
private function addDetailLine($paymentinfo){
if(!$paymentinfo['AccountNumber'] || !$paymentinfo['TotalAmount'] || !$paymentinfo['BankAccountNumber'] || !$paymentinfo['RoutingNumber'] || !$paymentinfo['FormattedName'] || !$paymentinfo['AccountType']){
return false;
}
$paymentinfo['TranId'] = $this->tranid+1;
if($this->createDetailRecord($paymentinfo)){
array_push($this->processedRecords, $paymentinfo);
$this->tranid++;
return true;
}else{
$paymentinfo['TranId'] = false;
array_push($this->errorRecords, $paymentinfo);
return false;
}
return true;
}
public function setCompanyId($companyId){
$this->companyId = $companyId;
return $this;
}
public function setSettlementAccount($settlementAccount){
$this->settlementAccount = $settlementAccount;
return $this;
}
public function setFileID($fileId){
$this->fileId = $fileId;
return $this;
}
public function setBankRT($rt){
$this->bankrt = $rt;
return $this;
}
public function setOriginatingBank($originatingBank){
$this->originatingBank = $originatingBank;
return $this;
}
public function setFileModifier($filemodifier){
$this->filemodifier = $filemodifier;
return $this;
}
public function setCompanyName($companyName){
$this->companyName = $companyName;
return $this;
}
public function setServiceClassCode($scc){
$this->scc = $scc;
return $this;
}
public function setSECCode($sec){
$this->sec = $sec;
return $this;
}
public function setRecordSize($size){
$this->recordsize = $size;
return $this;
}
public function setBlockingFactor($block){
$this->blockingfactor = $block;
return $this;
}
public function setFormatCode($code){
$this->formatcode = $code;
return $this;
}
public function setReferenceCode($code){
$this->referencecode = $code;
return $this;
}
public function setBatchInfo($batchinfo){
$this->batchInfo = $batchinfo;
return $this;
}
public function setDescription($des=false, $date=false){
if($des)$this->description = $des;
if($date)$this->descriptionDate = date('M d',strtotime($date));
return $this;
}
public function setEntryDate($date){
$this->entryDate = date('ymd',strtotime($date));
return $this;
}
public function setPaymentTypeCode($type){
$this->paymenttypecode = $type;
return $this;
}
public function generateFile($filemodifier=false){
if($filemodifier)$this->setFileModifier($filemodifier);
$this->createFileHeader();
$this->createBatchHeader();
$this->createBatchFooter();
$this->createFileFooter();
if(!$this->validFileHeader){
throw new Exception('Invalid File Header');
}
if(!$this->validBatchHeader){
throw new Exception('Invalid Batch Header');
}
if(!$this->validBatchFooter){
throw new Exception('Invalid Batch Footer');
}
if(!$this->validFileFooter){
throw new Exception('Invalid File Footer');
}
$this->fileContents = $this->fileHeader.$this::LINES_GLUE.$this->batchHeader.$this::LINES_GLUE.$this->batchLines.$this->batchFooter.$this::LINES_GLUE.$this->fileFooter;
return true;
}
private function createFileHeader(){
$this->fileHeader = '101 '.$this->bankrt.$this->fileId.date('ymdHi').$this->filemodifier.$this->recordsize.$this->blockingfactor.$this->formatcode.$this->formatText($this->originatingBank,23).$this->formatText($this->companyName,23).$this->formatText($this->referencecode,8);
if(strlen($this->fileHeader) == 94) $this->validFileHeader = true;
return $this;
}
private function createBatchHeader(){
$this->batchHeader = '5'.$this->scc.$this->formatText($this->companyName,16).$this->formatText($this->batchInfo,20).$this->companyId.$this->sec.$this->formatText($this->description,10).$this->formatText($this->descriptionDate,6).$this->entryDate.' 1'.substr($this->bankrt,0,8).$this->formatNumeric($this->batchNumber,7);
if(strlen($this->batchHeader) == 94) $this->validBatchHeader = true;
return $this;
}
private function createDetailRecord($info){
$line = '6'.$info['Transcode'].$info['RoutingNumber'].$this->formatText($info['BankAccountNumber'],17).$this->formatNumeric(number_format($info['TotalAmount'],2),10).$this->formatText($info['AccountNumber'],15).$this->formatText($info['FormattedName'],22). $this->formatText($this->paymenttypecode,2). '0'.substr($this->bankrt,0,8).$this->formatNumeric($info['TranId'],7);
if(strlen($line) == 94){
$this->batchLines .= $line.$this::LINES_GLUE;
$this->detailRecordCount++;
$this->routingHash += (int)substr($info['RoutingNumber'],0,8);
if($info['Transcode'] == '27' || $info['Transcode'] == '37'){
$this->debitTotal += (float)$info['TotalAmount'];
}else{
$this->creditTotal += (float)$info['TotalAmount'];
}
return true;
}
return false;
}
private function createBatchFooter(){
$this->batchFooter = '8'.$this->scc.$this->formatNumeric($this->detailRecordCount,6).$this->formatNumeric($this->routingHash,10).$this->formatNumeric(number_format($this->debitTotal,2),12).$this->formatNumeric(number_format($this->creditTotal,2),12).$this->formatText($this->companyId,10).$this->formatText('',25).substr($this->bankrt,0,8).$this->formatNumeric($this->batchNumber,7);
if(strlen($this->batchFooter) == 94) $this->validBatchFooter = true;
return $this;
}
private function createFileFooter(){
$linecount = $this->detailRecordCount+4;
$blocks = ceil(($linecount)/10);
$this->fileFooter = '9'.$this->formatNumeric('1',6).$this->formatNumeric($blocks,6).$this->formatNumeric($this->detailRecordCount,8).$this->formatNumeric($this->routingHash,10).$this->formatNumeric(number_format($this->debitTotal,2),12).$this->formatNumeric(number_format($this->creditTotal,2),12).$this->formatText('',39);
if(strlen($this->fileFooter) == 94) $this->validFileFooter = true;
// Add any additional '9' lines to get something evenly divisable by 10.
$fillersToAdd = ($blocks*10)-$linecount;
for($i=0;$i<$fillersToAdd;$i++){
$this->fileFooter .= $this::LINES_GLUE.str_pad('', 94,'9');
}
return $this;
}
private function formatText($txt, $spaces){
return substr(str_pad(strtoupper($txt), $spaces, ' ', STR_PAD_RIGHT),0,$spaces);
}
private function formatNumeric($nums, $spaces){
return substr(str_pad(str_replace(array('.',','),'',(string)$nums), $spaces, '0', STR_PAD_LEFT),($spaces)*-1);
}
}