Skip to content

Commit

Permalink
Merge 51d24fa into 4e6383e
Browse files Browse the repository at this point in the history
  • Loading branch information
Herrie82 committed Nov 25, 2019
2 parents 4e6383e + 51d24fa commit cd380d6
Show file tree
Hide file tree
Showing 11 changed files with 225 additions and 0 deletions.
30 changes: 30 additions & 0 deletions examples/send-c52-order.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#! /usr/bin/env node

'use strict';

const ebics = require('../index');

const client = new ebics.Client({
url: 'https://ebics.server',
partnerId: '',
userId: '',
hostId: '',
passphrase: 'test', // keys-test will be decrypted with this passphrase
keyStorage: ebics.fsKeysStorage('./keys-test'),
});

// The bank keys must have been already saved
client.send(ebics.Orders.C52(null, null)) // startDate 'YYYY-MM-DD', endDate 'YYYY-MM-DD'
.then((resp) => {
console.log('Response for C52 order %j', resp);
if (resp.technicalCode !== '000000')
throw new Error('Something went wrong');

// Parsing and processing the CAMT052 file should happen somewhere here, ideally after saving it to disk
const data = Buffer.from(resp.orderData);
console.log(data.toString('utf8'));
})
.catch((err) => {
console.error(err);
process.exit(1);
});
30 changes: 30 additions & 0 deletions examples/send-c53-order.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#! /usr/bin/env node

'use strict';

const ebics = require('../index');

const client = new ebics.Client({
url: 'https://ebics.server',
partnerId: '',
userId: '',
hostId: '',
passphrase: 'test', // keys-test will be decrypted with this passphrase
keyStorage: ebics.fsKeysStorage('./keys-test'),
});

// The bank keys must have been already saved
client.send(ebics.Orders.C53(null, null)) // startDate 'YYYY-MM-DD', endDate 'YYYY-MM-DD'
.then((resp) => {
console.log('Response for C53 order %j', resp);
if (resp.technicalCode !== '000000')
throw new Error('Something went wrong');

// Parsing and processing the CAMT053 file should happen somewhere here, ideally after saving it to disk
const data = Buffer.from(resp.orderData);
console.log(data.toString('utf8'));
})
.catch((err) => {
console.error(err);
process.exit(1);
});
30 changes: 30 additions & 0 deletions examples/send-dki-order.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#! /usr/bin/env node

'use strict';

const ebics = require('../index');

const client = new ebics.Client({
url: 'https://ebics.server',
partnerId: '',
userId: '',
hostId: '',
passphrase: 'test', // keys-test will be decrypted with this passphrase
keyStorage: ebics.fsKeysStorage('./keys-test'),
});

// The bank keys must have been already saved
client.send(ebics.Orders.DKI(null, null)) // startDate 'YYYY-MM-DD', endDate 'YYYY-MM-DD'
.then((resp) => {
console.log('Response for DKI order %j', resp);
if (resp.technicalCode !== '000000')
throw new Error('Something went wrong');

// Processing of the Exchange Rate file should go here, ideally after saving it to disk
const data = Buffer.from(resp.orderData);
console.log(data.toString('utf8'));
})
.catch((err) => {
console.error(err);
process.exit(1);
});
29 changes: 29 additions & 0 deletions examples/send-hkd-order.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#! /usr/bin/env node

'use strict';

const ebics = require('../index');

const client = new ebics.Client({
url: 'https://ebics.server',
partnerId: '',
userId: '',
hostId: '',
passphrase: 'test', // keys-test will be decrypted with this passphrase
keyStorage: ebics.fsKeysStorage('./keys-test'),
});

// The bank keys must have been already saved
client.send(ebics.Orders.HKD)
.then((resp) => {
console.log('Response for HKD order %j', resp);
if (resp.technicalCode !== '000000')
throw new Error('Something went wrong');

const data = Buffer.from(resp.orderData);
console.log(data.toString('utf8'));
})
.catch((err) => {
console.error(err);
process.exit(1);
});
File renamed without changes.
30 changes: 30 additions & 0 deletions examples/send-sta-order.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#! /usr/bin/env node

'use strict';

const ebics = require('../index');

const client = new ebics.Client({
url: 'https://ebics.server',
partnerId: '',
userId: '',
hostId: '',
passphrase: 'test', // keys-test will be decrypted with this passphrase
keyStorage: ebics.fsKeysStorage('./keys-test'),
});

// The bank keys must have been already saved
client.send(ebics.Orders.STA(null, null)) // startDate 'YYYY-MM-DD', endDate 'YYYY-MM-DD'
.then((resp) => {
console.log('Response for STA order %j', resp);
if (resp.technicalCode !== '000000')
throw new Error('Something went wrong');

// Parsing and processing the MT940 file should happen somewhere here, ideally after saving it to disk
const data = Buffer.from(resp.orderData);
console.log(data.toString('utf8'));
})
.catch((err) => {
console.error(err);
process.exit(1);
});
30 changes: 30 additions & 0 deletions examples/send-vmk-order.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#! /usr/bin/env node

'use strict';

const ebics = require('../index');

const client = new ebics.Client({
url: 'https://ebics.server',
partnerId: '',
userId: '',
hostId: '',
passphrase: 'test', // keys-test will be decrypted with this passphrase
keyStorage: ebics.fsKeysStorage('./keys-test'),
});

// The bank keys must have been already saved
client.send(ebics.Orders.VMK(null, null)) // startDate 'YYYY-MM-DD', endDate 'YYYY-MM-DD'
.then((resp) => {
console.log('Response for VMK order %j', resp);
if (resp.technicalCode !== '000000')
throw new Error('Something went wrong');

// Parsing and processing the MT942 file should happen somewhere here, ideally after saving it to disk
const data = Buffer.from(resp.orderData);
console.log(data.toString('utf8'));
})
.catch((err) => {
console.error(err);
process.exit(1);
});
13 changes: 13 additions & 0 deletions lib/predefinedOrders/C52.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';

const utils = require('../utils');

module.exports = (start = null, end = null) => ({
version: 'h004',
orderDetails: {
OrderType: 'C52',
OrderAttribute: 'DZHNN',
StandardOrderParams: utils.dateRange(start, end),
},
operation: 'download',
});
13 changes: 13 additions & 0 deletions lib/predefinedOrders/C53.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';

const utils = require('../utils');

module.exports = (start = null, end = null) => ({
version: 'h004',
orderDetails: {
OrderType: 'C53',
OrderAttribute: 'DZHNN',
StandardOrderParams: utils.dateRange(start, end),
},
operation: 'download',
});
13 changes: 13 additions & 0 deletions lib/predefinedOrders/DKI.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict';

const utils = require('../utils');

module.exports = (start = null, end = null) => ({
version: 'h004',
orderDetails: {
OrderType: 'DKI',
OrderAttribute: 'DZHNN',
StandardOrderParams: utils.dateRange(start, end),
},
operation: 'download',
});
7 changes: 7 additions & 0 deletions lib/predefinedOrders/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ const HKD = require('./HKD');
const PTK = require('./PTK');
const HAC = require('./HAC');
const Z53 = require('./Z53');
const DKI = require('./DKI');
const C52 = require('./C52');
const C53 = require('./C53');

module.exports = {
INI,
Expand All @@ -39,6 +42,7 @@ module.exports = {
CCS,
XE3,
XCT,

STA,
VMK,
HAA,
Expand All @@ -47,4 +51,7 @@ module.exports = {
HKD,
PTK,
HAC,
DKI,
C52,
C53
};

0 comments on commit cd380d6

Please sign in to comment.