0.3.2 • Published 8 years ago

cmcic v0.3.2

Weekly downloads
12
License
MIT
Repository
-
Last release
8 years ago

CMCIC

Build Status Coverage Status Dependency Status NPM version

NPM

How-to use

var cmcic = require('cmcic');

var tpe = new cmcic.tpe({
  CMCIC_TPE: 'tpeid',
  CMCIC_CODESOCIETE: 'societykey',
  CMCIC_CLE: '1234567890abcdef',
  CMCIC_BANK: 'CIC',
  CMCIC_LNG: 'FR',
  CMCIC_CURRENCY: 'EUR',
  CMCIC_URL_RETOUR: '/url/return',
  CMCIC_URLOK: '/url/ok',
  CMCIC_URLKO: '/url/ko'
});

var t = {
  email: 'exemple@exemple.fr',
  amount: 300,
  reference: 'qwerty'
};

var trans = new cmcic.transaction(tpe, t);

// if you use expressjs

res.send(trans.form('paimentid', true));

On your return url (still with expressjs)

var ret = tpe.checkTransactionReturn((req.method == 'POST')? req.body : req.query);

if (!ret.isSealValidated) {
  console.log('MAC seal is invalid')
  return res.send(tpe.RETURN_NOTOK);
}

if (ret.status) {
  console.error('Payment is ok');
  res.send(tpe.RETURN_OK);
} else {
  console.error('Payment is fail : ', ret.motifrefus );
  res.send(tpe.RETURN_OK);
}

Official documentation

https://www.monetico-paiement.fr/fr/info/documentations/Monetico_Paiement_documentation_technique_v1_0c.pdf

Tips

For handle different kind of payment with the same TPE, you can use the 'texte-libre' field ! You can use 'texte-libre' field like an object, it ll be stringified/parsed for you.

Coding Style

  • tabulation (4 width)
  • JsHint

TODO

https://github.com/PierrickP/cmcic/issues?labels=new-feature&page=1&state=open

License

Under MIT license, feel free to contribuate with fork and PR !

0.3.2

8 years ago

0.3.0

8 years ago

0.2.2

10 years ago

0.2.0

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago