parse sms transaction
This commit is contained in:
parent
2a67892f59
commit
aefc3fb727
@ -19,13 +19,50 @@ module.exports = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
create: async function (req, res) {
|
create: async function (req, res) {
|
||||||
var transaction = new cashTransactionModel({
|
const rawString = req.body.messageBody;
|
||||||
raw: req.body.messageBody
|
const transaction = new cashTransactionModel({
|
||||||
|
raw: rawString,
|
||||||
|
day: 0,
|
||||||
|
month: 0,
|
||||||
|
year: 0,
|
||||||
|
amount: 0,
|
||||||
|
type: 0,
|
||||||
|
company: "",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const datePattern = /(0[1-9]|[12][0-9]|3[01])\.(0[1-9]|1[0-2])\.(19|20)\d{2}/;
|
||||||
|
const amountPattern = /\d{1,3}(?:[.]\d{3})*(?:[.,]\d{2})(?=\sEUR)/;
|
||||||
|
const companyPattern1 = /(?<=(UR,|\sod)\s).*?(?=\s(na\s|za\s|Inf))/;
|
||||||
|
|
||||||
|
if (rawString.includes("ZAVRNITEV POS NAKUP")) transaction.type = 2;
|
||||||
|
else if (rawString.includes("POS NAKUP")) transaction.type = 1;
|
||||||
|
else if (rawString.includes("BA DVIG")) transaction.type = 3;
|
||||||
|
else if (rawString.includes("priliv")) transaction.type = 4;
|
||||||
|
else if (rawString.includes("SDD")) transaction.type = 5;
|
||||||
|
else if (rawString.includes("SPLET/TEL NAKUP")) transaction.type = 6;
|
||||||
|
else if (rawString.includes("PREDAVTORIZACIJE")) transaction.type = 7;
|
||||||
|
|
||||||
|
if(transaction.type != 0){
|
||||||
|
const amountMatch = rawString.match(amountPattern);
|
||||||
|
if (amountMatch){
|
||||||
|
const amount = amountMatch[0].replace('.', '').replace(',', '.');
|
||||||
|
transaction.amount = parseFloat( amount);
|
||||||
|
}
|
||||||
|
|
||||||
|
const companyMatch1 = rawString.match(companyPattern1);
|
||||||
|
if (companyMatch1) transaction.company = companyMatch1[0];
|
||||||
|
|
||||||
|
const dateMatch = rawString.match(datePattern);
|
||||||
|
if (dateMatch) {
|
||||||
|
const date = dateMatch[0].split('.');
|
||||||
|
transaction.day = date[0];
|
||||||
|
transaction.month = date[1];
|
||||||
|
transaction.year = date[2];
|
||||||
|
}
|
||||||
|
}
|
||||||
const trans = await transaction.save()
|
const trans = await transaction.save()
|
||||||
if(trans){
|
if(trans){
|
||||||
return res.status(201).json({ message: 'Welcome to the API POST' });
|
return res.status(201).json(trans);
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
return res.status(400).json({message: "something went wrong"});
|
return res.status(400).json({message: "something went wrong"});
|
||||||
|
@ -3,6 +3,12 @@ var Schema = mongoose.Schema;
|
|||||||
|
|
||||||
var cashTransaction = new Schema({
|
var cashTransaction = new Schema({
|
||||||
'raw': String,
|
'raw': String,
|
||||||
|
'day': Number,
|
||||||
|
'month': Number,
|
||||||
|
'year': Number,
|
||||||
|
'amount': Number,
|
||||||
|
'type': Number,
|
||||||
|
'company': String,
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = mongoose.model('cashTransaction', cashTransaction);
|
module.exports = mongoose.model('cashTransaction', cashTransaction);
|
||||||
|
@ -1,4 +1,32 @@
|
|||||||
<h1>Message:</h1>
|
<h1>Message:</h1>
|
||||||
|
|
||||||
|
<table class="table">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th scope="col">#</th>
|
||||||
|
<th scope="col">Day</th>
|
||||||
|
<th scope="col">Month</th>
|
||||||
|
<th scope="col">Year</th>
|
||||||
|
<th scope="col">Amount</th>
|
||||||
|
<th scope="col">Type</th>
|
||||||
|
<th scope="col">Company</th>
|
||||||
|
<th scope="col">Raw</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
|
||||||
{{#each messages}}
|
{{#each messages}}
|
||||||
<div>{{raw}}</div>
|
<tr>
|
||||||
|
<th scope="row">{{@index}}</th>
|
||||||
|
<td>{{day}}</td>
|
||||||
|
<td>{{month}}</td>
|
||||||
|
<td>{{year}}</td>
|
||||||
|
<td>{{amount}}</td>
|
||||||
|
<td>{{type}}</td>
|
||||||
|
<td>{{company}}</td>
|
||||||
|
<td>{{raw}}</td>
|
||||||
|
</tr>
|
||||||
{{/each}}
|
{{/each}}
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
Loading…
x
Reference in New Issue
Block a user