mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2025-08-15 12:15:36 +00:00
Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
82b226eec2 | ||
|
0f6dcf9eb2 | ||
|
ca31edf245 | ||
|
4464349d0f | ||
|
15546df9ea | ||
|
40467a2c5e | ||
|
eb9fbf5834 | ||
|
166c61aec4 | ||
|
5a63e19aab | ||
|
9e6c318372 | ||
|
ce6e58b3f3 | ||
|
7dad7c8787 |
35
.eslintrc
35
.eslintrc
@@ -1,35 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "airbnb-base",
|
|
||||||
"env": {
|
|
||||||
"node": true,
|
|
||||||
"mocha": true
|
|
||||||
},
|
|
||||||
"parserOptions": {
|
|
||||||
"ecmaVersion": 8,
|
|
||||||
"sourceType": "script",
|
|
||||||
"ecmaFeatures": {
|
|
||||||
"modules": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rules": {
|
|
||||||
"max-len": 0,
|
|
||||||
"linebreak-style": 0,
|
|
||||||
"no-plusplus": [
|
|
||||||
2,
|
|
||||||
{
|
|
||||||
"allowForLoopAfterthoughts": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"no-continue": 0,
|
|
||||||
"indent": [2, "tab"],
|
|
||||||
"no-tabs": 0,
|
|
||||||
"strict": [2, "safe"],
|
|
||||||
"curly": [2, "multi", "consistent"],
|
|
||||||
"import/no-extraneous-dependencies": 0,
|
|
||||||
"import/no-unresolved": 0,
|
|
||||||
"no-underscore-dangle": 0,
|
|
||||||
"no-param-reassign": 0,
|
|
||||||
"generator-star-spacing": 0,
|
|
||||||
"jsx-a11y/href-no-hash": "off"
|
|
||||||
}
|
|
||||||
}
|
|
4
.eslintrc.js
Normal file
4
.eslintrc.js
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
module.exports = {
|
||||||
|
root: true,
|
||||||
|
extends: "ecollect-base"
|
||||||
|
}
|
@@ -1,4 +1,4 @@
|
|||||||
# node-ebics-client v0.0.35
|
# node-ebics-client
|
||||||
---
|
---
|
||||||
|
|
||||||
Pure node.js ( >=8 ) implementation of [EBICS](https://en.wikipedia.org/wiki/Electronic_Banking_Internet_Communication_Standard) ( Electronic Banking Internet Communication ).
|
Pure node.js ( >=8 ) implementation of [EBICS](https://en.wikipedia.org/wiki/Electronic_Banking_Internet_Communication_Standard) ( Electronic Banking Internet Communication ).
|
||||||
@@ -21,4 +21,4 @@ The basic concept of this library was inspired by the [EPICS](https://github.com
|
|||||||
|
|
||||||
## Copyright
|
## Copyright
|
||||||
|
|
||||||
Copyright: eCollect AG, 2018.
|
Copyright: eCollect AG, 2018-9.
|
||||||
|
8
lerna.json
Normal file
8
lerna.json
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"packages": [
|
||||||
|
"packages/*"
|
||||||
|
],
|
||||||
|
"npmClient": "yarn",
|
||||||
|
"useWorkspaces": true,
|
||||||
|
"version": "independent"
|
||||||
|
}
|
54
package.json
54
package.json
@@ -1,46 +1,14 @@
|
|||||||
{
|
{
|
||||||
"name": "ebics-client",
|
"name": "ebics-client-root",
|
||||||
"version": "0.0.7",
|
"private": true,
|
||||||
"description": "Node.js ISO 20022 Compliant EBICS Client",
|
"workspaces": [
|
||||||
"main": "index.js",
|
"packages/*"
|
||||||
"scripts": {
|
],
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"devDependencies": {
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/eCollect/node-ebics-client"
|
|
||||||
},
|
|
||||||
"keywords": [
|
|
||||||
"EBICS",
|
|
||||||
"ISO20022",
|
|
||||||
"nodejs",
|
|
||||||
"api"
|
|
||||||
],
|
|
||||||
"author": "eCollect Sofia Tech Team",
|
|
||||||
"contributors": [
|
|
||||||
{
|
|
||||||
"name": "Vasyl Stashuk",
|
|
||||||
"url": "https://github.com/vasyas"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
|
||||||
"bn.js": "^4.11.8",
|
|
||||||
"handlebars": "^4.0.11",
|
|
||||||
"js2xmlparser": "^3.0.0",
|
|
||||||
"moment": "^2.22.1",
|
|
||||||
"node-rsa": "^0.4.2",
|
|
||||||
"request": "^2.87.0",
|
|
||||||
"uuid": "^3.3.2",
|
|
||||||
"xml-crypto": "^0.10.1",
|
|
||||||
"xmldom": "^0.1.27",
|
|
||||||
"xpath": "0.0.27"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"chai": "^4.2.0",
|
"chai": "^4.2.0",
|
||||||
"eslint": "^4.19.1",
|
"lerna": "^3.16.4",
|
||||||
"eslint-config-airbnb-base": "^12.1.0",
|
"eslint": "^6.5.1",
|
||||||
"eslint-plugin-import": "^2.12.0",
|
"eslint-config-ecollect-base": "^0.1.2",
|
||||||
"mocha": "^6.1.4"
|
"eslint-plugin-import": "^2.18.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
31
packages/ebics-client/examples/bankLetter.js
Executable file
31
packages/ebics-client/examples/bankLetter.js
Executable file
@@ -0,0 +1,31 @@
|
|||||||
|
#! /usr/bin/env node
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
const ebics = require('../index');
|
||||||
|
const path = require('path');
|
||||||
|
const fs = require('fs');
|
||||||
|
const os = require('os');
|
||||||
|
|
||||||
|
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'),
|
||||||
|
});
|
||||||
|
|
||||||
|
const bankName = 'Bank name';
|
||||||
|
const template = fs.readFileSync('./templates/ini.hbs').toString();
|
||||||
|
const letter = new ebics.BankLetter({ client, bankName, template });
|
||||||
|
const bankLetterFile = path.join(os.homedir(), 'bankLetter.html');
|
||||||
|
|
||||||
|
letter.serialize(bankLetterFile)
|
||||||
|
.then(() => {
|
||||||
|
console.log('Send your bank the letter (%s)', bankLetterFile);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error(err);
|
||||||
|
process.exit(1);
|
||||||
|
});
|
32
packages/ebics-client/examples/initialize.js
Executable file
32
packages/ebics-client/examples/initialize.js
Executable file
@@ -0,0 +1,32 @@
|
|||||||
|
#! /usr/bin/env node
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
const ebics = require('../index');
|
||||||
|
|
||||||
|
const client = new ebics.Client({
|
||||||
|
url: 'https://ebics.server',
|
||||||
|
partnerId: 'PARTNER',
|
||||||
|
userId: 'USER',
|
||||||
|
hostId: 'HOST',
|
||||||
|
passphrase: 'test', // keys-test will be encrypted with this passphrase
|
||||||
|
keyStorage: ebics.fsKeysStorage('./keys-test'),
|
||||||
|
});
|
||||||
|
|
||||||
|
// New keys will be generated and saved in ./keys-test
|
||||||
|
client.send(ebics.Orders.INI)
|
||||||
|
.then((resp) => {
|
||||||
|
console.log('Respose for INI order %j', resp);
|
||||||
|
return client.send(ebics.Orders.HIA);
|
||||||
|
})
|
||||||
|
.then((resp) => {
|
||||||
|
console.log('Reponse for HIA order %j', resp);
|
||||||
|
if (resp.technicalCode !== '000000')
|
||||||
|
throw new Error('Something might went wrong');
|
||||||
|
|
||||||
|
console.log('Public keys should be sent to bank now. See examples/bankLetter.js');
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error(err);
|
||||||
|
process.exit(1);
|
||||||
|
});
|
30
packages/ebics-client/examples/save-bank-kesy.js
Executable file
30
packages/ebics-client/examples/save-bank-kesy.js
Executable file
@@ -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'),
|
||||||
|
});
|
||||||
|
|
||||||
|
// Client keys must be already generated and send by letter.
|
||||||
|
// The bank should have enabled the user
|
||||||
|
client.send(ebics.Orders.HPB)
|
||||||
|
.then((resp) => {
|
||||||
|
console.log('Respose for HPB order %j', resp);
|
||||||
|
if (resp.technicalCode !== '000000')
|
||||||
|
throw new Error('Something went wrong');
|
||||||
|
|
||||||
|
console.log('Received bank keys: %j', resp.bankKeys);
|
||||||
|
return client.setBankKeys(resp.bankKeys);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error(err);
|
||||||
|
process.exit(1);
|
||||||
|
});
|
29
packages/ebics-client/examples/send-hbt-order.js
Executable file
29
packages/ebics-client/examples/send-hbt-order.js
Executable file
@@ -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.HTD)
|
||||||
|
.then((resp) => {
|
||||||
|
console.log('Respose for HTD 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);
|
||||||
|
});
|
43
packages/ebics-client/package.json
Normal file
43
packages/ebics-client/package.json
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
{
|
||||||
|
"name": "ebics-client",
|
||||||
|
"version": "0.0.7",
|
||||||
|
"description": "Node.js ISO 20022 Compliant EBICS Client",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/eCollect/node-ebics-client"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"EBICS",
|
||||||
|
"ISO20022",
|
||||||
|
"nodejs",
|
||||||
|
"api"
|
||||||
|
],
|
||||||
|
"author": "eCollect Sofia Tech Team",
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "Vasyl Stashuk",
|
||||||
|
"url": "https://github.com/vasyas"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Yago",
|
||||||
|
"url": "https://github.com/yagop"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"bn.js": "^4.11.8",
|
||||||
|
"handlebars": "^4.0.11",
|
||||||
|
"js2xmlparser": "^3.0.0",
|
||||||
|
"moment": "^2.22.1",
|
||||||
|
"node-rsa": "^0.4.2",
|
||||||
|
"request": "^2.87.0",
|
||||||
|
"uuid": "^3.3.2",
|
||||||
|
"xml-crypto": "^0.10.1",
|
||||||
|
"xmldom": "^0.1.27",
|
||||||
|
"xpath": "0.0.27"
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user