-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpankkiyhteysadmin.php
768 lines (620 loc) · 24.9 KB
/
pankkiyhteysadmin.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
<?php
require "inc/parametrit.inc";
require "inc/pankkiyhteys_functions.inc";
echo "<font class='head'>" . t('SEPA-pankkiyhteys') . "</font>";
echo "<hr>";
// Varmistetaan, että sepa pankkiyhteys on kunnossa. Funkio kuolee, jos ei ole.
sepa_pankkiyhteys_kunnossa();
$tee = empty($tee) ? '' : $tee;
$company_name = empty($company_name) ? '' : $company_name;
$customer_id = empty($customer_id) ? '' : $customer_id;
$pin = empty($pin) ? '' : $pin;
$bank = "";
$virheet_count = 0;
$pankki = isset($pankki) ? $pankki : null;
// Debug moodissa, voidaan upata suoraan key/cert käyttöliittymästä
$debug = empty($debug) ? 0 : 1;
$tuetut_pankit = tuetut_pankit();
if ($tee == 'paivita_hae_saldo') {
$hae_saldo = isset($hae_saldo) ? 1 : 0;
$query = "UPDATE pankkiyhteys SET
hae_saldo = {$hae_saldo}
WHERE yhtio = '{$kukarow['yhtio']}'
AND tunnus = {$pankkiyhteys_tunnus}";
pupe_query($query);
$tee = "";
}
if ($tee == 'paivita_hae_factoring') {
$hae_factoring = isset($hae_factoring) ? 1 : 0;
$query = "UPDATE pankkiyhteys SET
hae_factoring = {$hae_factoring}
WHERE yhtio = '{$kukarow['yhtio']}'
AND tunnus = {$pankkiyhteys_tunnus}";
pupe_query($query);
$tee = "";
}
if ($tee == 'paivita_hae_laskut') {
$hae_laskut = isset($hae_laskut) ? 1 : 0;
$query = "UPDATE pankkiyhteys SET
hae_laskut = {$hae_laskut}
WHERE yhtio = '{$kukarow['yhtio']}'
AND tunnus = {$pankkiyhteys_tunnus}";
pupe_query($query);
$tee = "";
}
// Poistetaan pankkiyhteys
if ($tee == "poista") {
$query = "DELETE
FROM pankkiyhteys
WHERE yhtio = '{$kukarow["yhtio"]}'
AND tunnus = {$pankkiyhteys_tunnus}";
$result = pupe_query($query);
if ($result) {
ok("Pankkiyhteys poistettu!");
}
else {
virhe("Pankkiyhteyden poisto epäonnistui!");
}
echo "<br>";
$tee = "";
}
// Vaihdetaan salasana, oikeellisuustarkastukset
if ($tee == "vaihda_salasana") {
if (empty($vanha_salasana)) {
virhe("Vanha salasana täytyy antaa!");
$virheet_count++;
}
else {
// Haetaan pankkiyhteys tässä, tätä käytetään salasanan vaihdossa
$vanha_pankkiyhteys = hae_pankkiyhteys_ja_pura_salaus($pankkiyhteys_tunnus, $vanha_salasana);
if ($vanha_pankkiyhteys === false) {
virhe("Antamasi vanha salasana on väärä!");
$virheet_count++;
}
}
if (empty($uusi_salasana1) or empty($uusi_salasana2)) {
virhe("Uudet salasanat täytyy antaa!");
$virheet_count++;
}
elseif ($uusi_salasana1 != $uusi_salasana2) {
virhe("Antamasi uudet salasanat ei täsmää!");
$virheet_count++;
}
if ($virheet_count > 0) {
echo "<br>";
$tee = "vaihda_salasana_form";
}
}
// Vaihdetaan salasana
if ($tee == "vaihda_salasana") {
$spk = salaa(base64_decode($vanha_pankkiyhteys['signing_private_key']), $uusi_salasana1);
$epk = salaa(base64_decode($vanha_pankkiyhteys['encryption_private_key']), $uusi_salasana1);
$oec = salaa(base64_decode($vanha_pankkiyhteys["encryption_certificate"]), $uusi_salasana1);
$osc = salaa(base64_decode($vanha_pankkiyhteys["signing_certificate"]), $uusi_salasana1);
$bec = salaa(base64_decode($vanha_pankkiyhteys["bank_encryption_certificate"]), $uusi_salasana1);
$brc = salaa(base64_decode($vanha_pankkiyhteys["bank_root_certificate"]), $uusi_salasana1);
$bca = salaa(base64_decode($vanha_pankkiyhteys["ca_certificate"]), $uusi_salasana1);
$query = "UPDATE pankkiyhteys SET
signing_certificate = '{$osc}',
signing_private_key = '{$spk}',
encryption_certificate = '{$oec}',
encryption_private_key = '{$epk}',
bank_encryption_certificate = '{$bec}',
bank_root_certificate = '{$brc}',
ca_certificate = '{$bca}',
signing_certificate_valid_to = '{$vanha_pankkiyhteys['signing_certificate_valid_to']}',
encryption_certificate_valid_to = '{$vanha_pankkiyhteys['encryption_certificate_valid_to']}',
bank_encryption_certificate_valid_to = '{$vanha_pankkiyhteys['bank_encryption_certificate_valid_to']}',
bank_root_certificate_valid_to = '{$vanha_pankkiyhteys['bank_root_certificate_valid_to']}',
ca_certificate_valid_to = '{$vanha_pankkiyhteys['ca_certificate_valid_to']}'
WHERE yhtio = '{$kukarow['yhtio']}'
AND tunnus = {$pankkiyhteys_tunnus}";
$result = pupe_query($query);
if (mysql_affected_rows() == 1) {
ok("Salasana vaihdettu!");
}
else {
virhe("Salasanan vaihto epäonnistui!");
}
echo "<br>";
$tee = "";
}
// Vaihda salasana formi
if ($tee == "vaihda_salasana_form") {
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='vaihda_salasana'/>";
echo "<input type='hidden' name='pankkiyhteys_tunnus' value='{$pankkiyhteys_tunnus}'/>";
echo "<table>";
echo "<tr>";
echo "<th><label for='vanha_salasana'>";
echo t("Vanha salasana");
echo "</label></th>";
echo "<td><input type='password' name='vanha_salasana'></td>";
echo "</tr>";
echo "<tr>";
echo "<th><label for='uusi_salasana1'>";
echo t("Uusi salasana");
echo "</label></th>";
echo "<td><input type='password' name='uusi_salasana1'></td>";
echo "</tr>";
echo "<tr>";
echo "<th><label for='uusi_salasana2'>";
echo t("Uusi salasana vahvistus");
echo "</label></th>";
echo "<td><input type='password' name='uusi_salasana2'></td>";
echo "</tr>";
echo "</table>";
echo "<br>";
echo "<input type='submit' value='" . t("Vaihda salasana") . "'/>";
echo "</form>";
}
// Haetaan uusi pankin sertifikaatti, oikeellisuustarkastus
if ($tee == "pankin_sertifikaatti_hae") {
if (empty($salasana)) {
virhe("Salasana täytyy antaa!");
$virheet_count++;
}
else {
// Haetaan pankkiyhteys tässä, tätä käytetään salasanan vaihdossa
$pankkiyhteys = hae_pankkiyhteys_ja_pura_salaus($pankkiyhteys_tunnus, $salasana);
if ($pankkiyhteys === false) {
virhe("Antamasi salasana on väärä!");
$virheet_count++;
}
}
if ($virheet_count > 0) {
echo "<br>";
$tee = "pankin_sertifikaatti";
}
}
// Haetaan ja tallennetaan uusi pankin sertifikaatti
if ($tee == "pankin_sertifikaatti_hae") {
$params = array(
"bank" => $pankkiyhteys['bank'],
"customer_id" => $pankkiyhteys['customer_id'],
);
$tunnukset_pankista = sepa_get_bank_certificate($params);
if (!$tunnukset_pankista) {
virhe("Sertifikaatin hakeminen epäonnistui!");
}
else {
// Salataan sertifikaatit
$bec = salaa($tunnukset_pankista["bank_encryption_certificate"], $salasana);
$brc = salaa($tunnukset_pankista["bank_root_certificate"], $salasana);
// Haetaan sertifikaattien expire datet
$_temp = parse_sertificate($tunnukset_pankista["bank_encryption_certificate"]);
$bec_time = $_temp['valid_to'];
$_temp = parse_sertificate($tunnukset_pankista["bank_root_certificate"]);
$brc_time = $_temp['valid_to'];
$query = "UPDATE pankkiyhteys SET
bank_encryption_certificate = '{$bec}',
bank_root_certificate = '{$brc}',
bank_encryption_certificate_valid_to = '{$bec_time}',
bank_root_certificate_valid_to = '{$brc_time}'
WHERE yhtio = '{$kukarow['yhtio']}'
AND tunnus = {$pankkiyhteys_tunnus}";
$result = pupe_query($query);
ok("Pankin sertifikaatit päivitetty!");
echo "<br>";
}
$tee = "";
}
// Haetaan uusi pankin sertifikaatti, kysytään salasana
if ($tee == "pankin_sertifikaatti") {
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='pankin_sertifikaatti_hae'/>";
echo "<input type='hidden' name='pankkiyhteys_tunnus' value='{$pankkiyhteys_tunnus}'/>";
echo "<table>";
echo "<tr>";
echo "<th><label for='salasana'>";
echo t("Salasana");
echo "</label></th>";
echo "<td><input type='password' name='salasana'></td>";
echo "</tr>";
echo "</table>";
echo "<br>";
echo "<input type='submit' value='" . t("Jatka") . "'/>";
echo "</form>";
}
// Haetaan uusi sertifikaatti, oikeellisuustarkastus
if ($tee == "uusi_sertifikaatti_hae") {
if (empty($salasana)) {
virhe("Salasana täytyy antaa!");
$virheet_count++;
}
else {
$pankkiyhteys = hae_pankkiyhteys_ja_pura_salaus($pankkiyhteys_tunnus, $salasana);
if ($pankkiyhteys === false) {
virhe("Antamasi salasana on väärä!");
$virheet_count++;
}
}
if ($virheet_count > 0) {
echo "<br>";
$tee = "uusi_sertifikaatti";
}
}
// Haetaan uusi sertifikaatti, kysytään salasana
if ($tee == "uusi_sertifikaatti") {
echo "<h2>" . t('Sertifikaatin uusiminen') . "</h2>";
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='uusi_sertifikaatti_hae'/>";
echo "<input type='hidden' name='pankkiyhteys_tunnus' value='{$pankkiyhteys_tunnus}'/>";
echo "<table>";
echo "<tr>";
echo "<th><label for='salasana'>";
echo t("Salasana");
echo "</label></th>";
echo "<td><input type='password' name='salasana'></td>";
echo "</tr>";
echo "</table>";
echo "<br>";
echo "<input type='submit' value='" . t("Jatka") . "'/>";
echo "</form>";
}
// Haetaan ja tallennetaan uusi sertifikaatti
if ($tee == "uusi_sertifikaatti_hae") {
$params = array(
"pankkiyhteys_tunnus" => $pankkiyhteys_tunnus,
"salasana" => $salasana,
"bank" => $pankkiyhteys['bank'],
);
$uudet_tunnukset = sepa_renew_certificate($params);
if (!$uudet_tunnukset) {
virhe("Sertifikaatin uusiminen epäonnistui!");
}
else {
// Salataan sertifikaatit
$osc = salaa($uudet_tunnukset["own_signing_certificate"], $salasana);
$oec = salaa($uudet_tunnukset["own_encryption_certificate"], $salasana);
$cac = salaa($uudet_tunnukset["ca_certificate"], $salasana);
$bec = salaa($uudet_tunnukset["bank_encryption_certificate"], $salasana);
$brc = salaa($uudet_tunnukset["bank_root_certificate"], $salasana);
$spk = salaa($uudet_tunnukset["signing_private_key"], $salasana);
$epk = salaa($uudet_tunnukset["encryption_private_key"], $salasana);
// Haetaan sertifikaattien expire datet
$_temp = parse_sertificate($uudet_tunnukset["own_signing_certificate"]);
$osc_time = $_temp['valid_to'];
$_temp = parse_sertificate($uudet_tunnukset["own_encryption_certificate"]);
$oec_time = $_temp['valid_to'];
$_temp = parse_sertificate($uudet_tunnukset["ca_certificate"]);
$cac_time = $_temp['valid_to'];
$_temp = parse_sertificate($uudet_tunnukset["bank_encryption_certificate"]);
$bec_time = $_temp['valid_to'];
$_temp = parse_sertificate($uudet_tunnukset["bank_root_certificate"]);
$brc_time = $_temp['valid_to'];
$query = "UPDATE pankkiyhteys
SET signing_certificate = '{$osc}',
encryption_certificate = '{$oec}',
ca_certificate = '{$cac}',
bank_encryption_certificate = '{$bec}',
bank_root_certificate = '{$brc}',
signing_private_key = '{$spk}',
encryption_private_key = '{$epk}',
signing_certificate_valid_to = '{$osc_time}',
encryption_certificate_valid_to = '{$oec_time}',
ca_certificate_valid_to = '{$cac_time}',
bank_encryption_certificate_valid_to = '{$bec_time}',
bank_root_certificate_valid_to = '{$brc_time}'
WHERE yhtio = '{$kukarow['yhtio']}'
AND tunnus = {$pankkiyhteys_tunnus}";
$result = pupe_query($query);
ok("Sertifikaatti päivitetty!");
echo "<br>";
}
$tee = "";
}
// Uuden pankkiyhteyden oikeellisuustarkistus
if ($tee == "luo") {
$virheet_count = 0;
// Otetaan pankin nimi muuttujaan
$bank = $tuetut_pankit[$pankki]["lyhyt_nimi"];
if (empty($salasana)) {
virhe("Salasana täytyy antaa");
$virheet_count++;
}
elseif ($salasana != $salasanan_vahvistus) {
virhe("Salasanan vahvistus ei vastaa salasanaa");
$virheet_count++;
}
if (empty($customer_id)) {
virhe("Asiakastunnus täytyy antaa");
$virheet_count++;
}
if (empty($pin) and $debug != 1) {
virhe("PIN-koodi täytyy antaa");
$virheet_count++;
}
if ($virheet_count > 0) {
echo "<br>";
$tee = "";
}
}
// Haetaan sertifikaatti jos PIN on annettu
if ($tee == "luo" and $pin != '') {
$csr_params = array(
"company_name" => $company_name,
"customer_id" => $customer_id,
"pankki" => $bank,
);
// Generoidaan allekirjoitusta ja salausta varten private key ja certificate-signing-request
$generoidut_tunnukset1 = generoi_private_key_ja_csr($csr_params);
$generoidut_tunnukset2 = generoi_private_key_ja_csr($csr_params);
$signing_private_key = $generoidut_tunnukset1["private_key"];
$encryption_private_key = $generoidut_tunnukset2["private_key"];
$params = array(
"bank" => $tuetut_pankit[$pankki]["lyhyt_nimi"],
"customer_id" => $customer_id,
"pin" => $pin,
"signing_csr" => $generoidut_tunnukset1["csr"],
"encryption_csr" => $generoidut_tunnukset2["csr"],
);
$tunnukset_pankista = sepa_get_certificate($params);
if (!$tunnukset_pankista) {
virhe("Sertifikaatin hakeminen epäonnistui, tarkista PIN-koodi ja asiakastunnus");
$tee = "";
}
}
// Avainpari annettu käyttöliittymästä debugmode!
if ($tee == "luo" and $pin == '' and $debug == 1) {
$signing_private_key = file_get_contents($_FILES["signing_private_key"]["tmp_name"]);
$encryption_private_key = file_get_contents($_FILES["encryption_private_key"]["tmp_name"]);
$tunnukset_pankista = array();
$tunnukset_pankista["own_encryption_certificate"] = file_get_contents($_FILES["own_encryption_certificate"]["tmp_name"]);
$tunnukset_pankista["own_signing_certificate"] = file_get_contents($_FILES["own_signing_certificate"]["tmp_name"]);
$tunnukset_pankista["bank_encryption_certificate"] = file_get_contents($_FILES["bank_encryption_certificate"]["tmp_name"]);
$tunnukset_pankista["bank_root_certificate"] = file_get_contents($_FILES["bank_root_certificate"]["tmp_name"]);
$tunnukset_pankista["ca_certificate"] = file_get_contents($_FILES["ca_certificate"]["tmp_name"]);
}
// Tallennetaan pankkiyhteys
if ($tee == "luo") {
$spk = salaa($signing_private_key, $salasana);
$epk = salaa($encryption_private_key, $salasana);
$oec = salaa($tunnukset_pankista["own_encryption_certificate"], $salasana);
$osc = salaa($tunnukset_pankista["own_signing_certificate"], $salasana);
$bec = salaa($tunnukset_pankista["bank_encryption_certificate"], $salasana);
$brc = salaa($tunnukset_pankista["bank_root_certificate"], $salasana);
$bca = salaa($tunnukset_pankista["ca_certificate"], $salasana);
// Tallennetaan certificaattien valid_to päivä kantaan
$_temp = parse_sertificate($tunnukset_pankista["own_encryption_certificate"]);
$oec_time = $_temp['valid_to'];
$_temp = parse_sertificate($tunnukset_pankista["own_signing_certificate"]);
$osc_time = $_temp['valid_to'];
$_temp = parse_sertificate($tunnukset_pankista["bank_encryption_certificate"]);
$bec_time = $_temp['valid_to'];
$_temp = parse_sertificate($tunnukset_pankista["bank_root_certificate"]);
$brc_time = $_temp['valid_to'];
$_temp = parse_sertificate($tunnukset_pankista["ca_certificate"]);
$bca_time = $_temp['valid_to'];
$query = "INSERT INTO pankkiyhteys SET
yhtio = '{$kukarow['yhtio']}',
pankki = '{$pankki}',
signing_certificate = '{$osc}',
signing_private_key = '{$spk}',
encryption_certificate = '{$oec}',
encryption_private_key = '{$epk}',
bank_encryption_certificate = '{$bec}',
bank_root_certificate = '{$brc}',
ca_certificate = '{$bca}',
signing_certificate_valid_to = '{$osc_time}',
encryption_certificate_valid_to = '{$oec_time}',
bank_encryption_certificate_valid_to = '{$bec_time}',
bank_root_certificate_valid_to = '{$brc_time}',
ca_certificate_valid_to = '{$bca_time}',
customer_id = '{$customer_id}'";
$result = pupe_query($query);
$tee = "";
}
if ($tee == "") {
// Käyttöliittymä
$mahdolliset_pankkiyhteydet = mahdolliset_pankkiyhteydet();
// Jos voidaan tehdä uusia pankkiyhteyksiä
if (!empty($mahdolliset_pankkiyhteydet)) {
echo "<font class='message'>" . t("Uusi pankkiyhteys") . "</font>";
echo "<hr>";
echo "<form action='pankkiyhteysadmin.php' method='post' enctype='multipart/form-data'>";
echo "<input type='hidden' name='tee' value='luo'/>";
echo "<table>";
echo "<tbody>";
echo "<tr>";
echo "<th><label for='pankki'>";
echo t("Pankki, jolle pankkiyhteys luodaan");
echo "</label></th>";
echo "<td>";
echo "<select name='pankki' id='pankki'>";
foreach ($mahdolliset_pankkiyhteydet as $bic => $nimi) {
$selected = $pankki == $bic ? " selected" : "";
echo "<option value='{$bic}'{$selected}>{$nimi}</option>";
}
echo "</select>";
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<th>";
echo "<label for='company_name'>";
echo t("Yrityksen nimi (Sama kuin sopimuksessa)");
echo "</label>";
echo "</th>";
echo "<td>";
echo "<input type='text' name='company_name' id='company_name' value='{$company_name}'>";
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<th><label for='customer_id'>";
echo t("Asiakastunnus");
echo "</label></th>";
echo "<td>";
echo "<input type='text' name='customer_id' id='customer_id' value='{$customer_id}'/>";
echo "</td>";
echo "</tr>";
echo "<tr>";
echo "<th><label for='pin'>";
echo t("Pankilta saatu PIN-koodi");
echo "</label></th>";
echo "<td><input type='text' name='pin' id='pin' value='{$pin}'/></td>";
echo "</tr>";
if ($debug == 1) {
echo "<tr>";
echo "<td class='back'></td>";
echo "</tr>";
echo "<tr>";
echo "<th>own_signing_certificate</th>";
echo "<td><input type='file' name='own_signing_certificate'/></td>";
echo "</tr>";
echo "<tr>";
echo "<th>own_signing_private_key</th>";
echo "<td><input type='file' name='signing_private_key'/></td>";
echo "</tr>";
echo "<tr>";
echo "<th>own_encryption_certificate</th>";
echo "<td><input type='file' name='own_encryption_certificate'/></td>";
echo "</tr>";
echo "<tr>";
echo "<th>own_encryption_private_key</th>";
echo "<td><input type='file' name='encryption_private_key'/></td>";
echo "</tr>";
echo "<tr>";
echo "<th>bank_encryption_certificate</th>";
echo "<td><input type='file' name='bank_encryption_certificate'/></td>";
echo "</tr>";
echo "<tr>";
echo "<th>bank_root_certificate</th>";
echo "<td><input type='file' name='bank_root_certificate'/></td>";
echo "</tr>";
echo "<tr>";
echo "<th>ca_certificate</th>";
echo "<td><input type='file' name='ca_certificate'/></td>";
echo "</tr>";
}
echo "<tr>";
echo "<td class='back'></td>";
echo "</tr>";
echo "<tr>";
echo "<th><label for='salasana'>";
echo t("Salasana, jolla pankkiyhteystunnukset suojataan");
echo "</label></th>";
echo "<td><input type='password' name='salasana' id='salasana'/></td>";
echo "</tr>";
echo "<tr>";
echo "<th><label for='salasanan_vahvistus'>";
echo t("Salasanan vahvistus");
echo "</label></th>";
echo "<td><input type='password' name='salasanan_vahvistus' id='salasanan_vahvistus'/></td>";
echo "</tr>";
echo "</tbody>";
echo "</table>";
echo "<br>";
echo "<input type='submit' value='" . t("Tallenna uusi pankkiyhteys") . "'/>";
echo "</form>";
echo "<br>";
}
$pankkiyhteydet = hae_pankkiyhteydet();
// Jos meillä on jo perustettuja pankkiyhteyksiä
if (!empty($pankkiyhteydet)) {
echo "<br/>";
echo "<font class='message'>" . t("Tallennetut pankkiyhteydet") . "</font>";
echo "<hr>";
echo "<table>";
echo "<thead>";
echo "<tr>";
echo "<th>" . t("Pankki") . "</th>";
echo "<th>" . t("Asiakastunnus") . "</th>";
echo "<th>" . t("Toiminnot") . "</th>";
echo "<th>" . t("Sertifikaattien voimassaolo") . "</th>";
echo "<td class='back'></td>";
echo "</tr>";
echo "</thead>";
echo "<tbody>";
$_confirm = t("Haluatko varmasti poistaa pankkiyhteyden?");
foreach ($pankkiyhteydet as $pankkiyhteys) {
echo "<tr class='aktiivi'>";
echo "<td>{$pankkiyhteys["pankin_nimi"]}</td>";
echo "<td>{$pankkiyhteys["customer_id"]}</td>";
echo "<td>";
echo "<ul class='list-unstyled'>";
$toiminnot = array(
'hae_saldo' => array(
'nimi' => 'Hae saldo',
'disable_for' => array('NDEAFIHH', 'DABAFIHH', 'HELSFIHH', 'ITELFIHH', 'POPFFI22', 'HANDFIHH'),
),
'hae_factoring' => array(
'nimi' => 'Hae factoring',
'disable_for' => array('OKOYFIHH', 'HELSFIHH', 'ITELFIHH', 'POPFFI22', 'HANDFIHH'),
),
'hae_laskut' => array(
'nimi' =>'Hae laskut',
),
);
foreach ($toiminnot as $toiminto => $options) {
echo "<li class='nowrap'>";
echo "<form>";
echo "<input type='hidden' name='tee' value='paivita_{$toiminto}'>";
echo "<input type='hidden' name='pankkiyhteys_tunnus' value='{$pankkiyhteys["tunnus"]}'/>";
$checked = $pankkiyhteys[$toiminto] == 1 ? ' checked' : '';
$disabled = isset($options['disable_for']) && in_array($pankkiyhteys['pankki'], $options['disable_for']) ? ' disabled' : '';
echo "<input type='checkbox' id='{$toiminto}' name='{$toiminto}' value='1'{$checked} onchange='this.form.submit()'{$disabled}>";
echo "<label for='{$toiminto}'>{$options['nimi']}</label>";
echo "</form>";
echo "</li>";
}
echo "</ul>";
echo "</td>";
echo "<td>";
// Lisätään tauluun certifikaattien expire datet
$certit = array(
"signing_certificate_valid_to" => "Allekirjoitus-sertifikaatti",
"encryption_certificate_valid_to" => "Salaus-sertifikaatti",
"bank_encryption_certificate_valid_to" => "Pankin salaus-sertifikaatti",
"bank_root_certificate_valid_to" => "Pankin juuri-sertifikaatti",
"ca_certificate_valid_to" => "Pankin CA-sertifikaatti",
);
foreach ($certit as $valid => $nimi) {
$_time = $pankkiyhteys[$valid];
if ($_time == '0000-00-00 00:00:00') {
continue;
}
$_nimi = t($nimi);
$_time = tv1dateconv($_time);
echo "{$_nimi}: {$_time}<br>";
}
echo "</td>";
echo "<td class='back'>";
echo "<div>";
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='vaihda_salasana_form'/>";
echo "<input type='hidden' name='pankkiyhteys_tunnus' value='{$pankkiyhteys["tunnus"]}'/>";
echo "<input type='submit' value='" . t("Vaihda salasana") . "' class='full-width'/>";
echo "</form>";
echo "</div>";
echo "<div>";
echo "<form method='post' class='multisubmit' onsubmit='return confirm(\"{$_confirm}\");'>";
echo "<input type='hidden' name='tee' value='poista'/>";
echo "<input type='hidden' name='pankkiyhteys_tunnus' value='{$pankkiyhteys["tunnus"]}'/>";
echo "<input type='submit' value='" . t("Poista pankkiyhteys") . "' class='full-width'/>";
echo "</form>";
echo "</div>";
if ($pankkiyhteys['pankki'] == "DABAFIHH") {
echo "<div>";
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='pankin_sertifikaatti'/>";
echo "<input type='hidden' name='pankkiyhteys_tunnus' value='{$pankkiyhteys["tunnus"]}'/>";
echo "<input type='submit' value='" . t("Päivitä pankin sertifikaatit") . "' class='full-width'/>";
echo "</form>";
echo "</div>";
}
if (in_array($pankkiyhteys['pankki'], array('NDEAFIHH', 'OKOYFIHH', 'DABAFIHH', 'HELSFIHH', 'ITELFIHH', 'POPFFI22', 'HANDFIHH'))) {
echo "<div>";
echo "<form method='post'>";
echo "<input type='hidden' name='tee' value='uusi_sertifikaatti'/>";
echo "<input type='hidden' name='pankkiyhteys_tunnus' value='{$pankkiyhteys["tunnus"]}'/>";
echo "<input type='submit' value='" . t("Uusi sertifikaatti") . "' class='full-width'/>";
echo "</form>";
echo "</div>";
}
echo "</tr>";
}
echo "</tbody>";
echo "</table>";
}
}
require "inc/footer.inc";