Files
freeplanet_serverside/src/server/models/circuit.js

607 lines
13 KiB
JavaScript
Raw Normal View History

2022-09-14 11:32:04 +02:00
const mongoose = require('mongoose').set('debug', false);
2022-04-07 08:19:40 +02:00
const Schema = mongoose.Schema;
mongoose.Promise = global.Promise;
mongoose.level = 'F';
const tools = require('../tools/general');
const {ObjectID} = require('mongodb');
2022-09-12 18:37:08 +02:00
const i18n = require('i18n');
2022-04-07 08:19:40 +02:00
// Resolving error Unknown modifier: $pushAll
mongoose.plugin(schema => {
schema.options.usePushEach = true;
});
const CircuitSchema = new Schema({
2022-09-03 13:06:58 +02:00
_id: {
2022-09-14 11:32:04 +02:00
type: String,
default: function () {
return new ObjectID().toString()
}
2022-04-07 08:19:40 +02:00
},
2022-08-30 17:00:48 +02:00
idapp: {
type: String,
required: true,
},
2022-08-17 00:36:47 +02:00
groupnameId: {
type: String,
},
2022-04-24 17:02:10 +02:00
name: {
2022-04-07 08:19:40 +02:00
type: String,
2022-04-24 17:02:10 +02:00
unique: true,
2022-04-07 08:19:40 +02:00
},
2022-08-30 17:00:48 +02:00
path: {
type: String,
unique: true,
},
2022-04-24 17:02:10 +02:00
subname: {
2022-04-07 08:19:40 +02:00
type: String,
},
idCity: [
{
type: Number,
}],
pub_to_share: {
type: Number, // PUB_TO_SHARE_ALL, PUB_TO_SHARE_ONLY_TABLE_FOLLOW
},
visibility: [
{
type: Number,
},
],
2022-08-17 00:36:47 +02:00
longdescr: {
2022-04-07 08:19:40 +02:00
type: String,
},
regulation: {
type: String,
},
2022-04-07 08:19:40 +02:00
systemUserDescr: {
type: String,
},
systemUserId: {
type: String,
},
totCircolante: {
type: Number,
},
totTransato: {
type: Number,
},
nome_valuta: {
type: String,
maxlength: 20,
},
2022-04-24 17:02:10 +02:00
symbol: {
2022-04-07 08:19:40 +02:00
type: String,
2022-09-03 13:06:58 +02:00
maxlength: 7,
2022-09-12 18:37:08 +02:00
},
color: {
type: String,
2022-04-07 08:19:40 +02:00
},
2022-04-24 17:02:10 +02:00
abbrev: {
2022-04-07 08:19:40 +02:00
type: String,
2022-09-03 13:06:58 +02:00
maxlength: 7,
2022-04-07 08:19:40 +02:00
},
compara_valuta: {
type: Number,
default: 1,
},
compara_euro: {
type: Number,
default: 1,
},
valuta_per_euro: {
type: Number,
default: 1,
},
fido_scoperto_default: {
type: Number,
},
qta_max_default: {
type: Number,
},
2022-04-07 08:19:40 +02:00
data_costituz: {
type: Date,
},
deperimento: {
type: Boolean,
default: true,
},
freq_deper: { // H, D, W, M, Y
type: String,
},
minuto_deper: {
type: Number,
},
ora_deper: {
type: Number,
},
giorno_deper: {
type: Number,
},
mese_deper: {
type: Number,
},
ultimo_deper: {
type: Date,
},
durata_deper: {
type: Number,
},
// -------------
2022-08-26 03:33:13 +02:00
createdBy: {
type: String,
},
date_created: {
type: Date,
},
date_updated: {
type: Date,
},
admins: [
{
username: {type: String},
date: {type: Date},
},
],
photos: [
{
imagefile: {
type: String,
},
alt: {
type: String,
},
description: {
type: String,
},
}],
2022-08-26 03:33:13 +02:00
req_users: [
{
_id: false,
username: {type: String},
date: {type: Date},
}], // username
refused_users: [
{
_id: false,
username: {type: String},
date: {type: Date},
}], // username
deleted: {
type: Boolean,
2022-09-03 13:06:58 +02:00
default: false,
2022-08-26 03:33:13 +02:00
},
transactionsEnabled: {
type: Boolean,
},
});
2022-04-07 08:19:40 +02:00
CircuitSchema.pre('save', async function(next) {
if (this.isNew) {
2022-09-14 11:32:04 +02:00
this._id = new ObjectID().toString();
this.date_created = new Date();
}
next();
});
2022-04-07 08:19:40 +02:00
CircuitSchema.statics.findAllIdApp = async function(idapp) {
2022-08-26 03:33:13 +02:00
const Circuit = this;
2022-04-07 08:19:40 +02:00
2022-09-03 13:06:58 +02:00
const myfind = {idapp, deleted: false};
2022-04-07 08:19:40 +02:00
2022-09-03 13:06:58 +02:00
const whatToShow = this.getWhatToShow(idapp, '');
return await Circuit.find(myfind, whatToShow, (err, arrrec) => {
2022-04-07 08:19:40 +02:00
return arrrec;
});
};
CircuitSchema.statics.getFieldsForSearch = function() {
return [
{field: 'nome_circuito', type: tools.FieldType.string},
{field: 'sotto_nome', type: tools.FieldType.string},
{field: 'nome_valuta', type: tools.FieldType.string},
{field: 'descr', type: tools.FieldType.string}];
};
CircuitSchema.statics.executeQueryTable = function(idapp, params, user) {
2022-04-07 08:19:40 +02:00
params.fieldsearch = this.getFieldsForSearch();
return tools.executeQueryTable(this, idapp, params, user);
2022-04-07 08:19:40 +02:00
};
2022-08-26 03:33:13 +02:00
CircuitSchema.statics.getWhatToShow = function(idapp, username) {
// FOR ME, PERMIT ALL
return {
2022-09-14 11:32:04 +02:00
_id: 1,
2022-08-26 03:33:13 +02:00
groupnameId: 1,
2022-08-30 17:00:48 +02:00
path: 1,
2022-08-26 03:33:13 +02:00
name: 1,
subname: 1,
longdescr: 1,
regulation: 1,
totCircolante: 1,
totTransato: 1,
2022-08-26 03:33:13 +02:00
systemUserId: 1,
createdBy: 1,
date_created: 1,
date_updated: 1,
2022-08-26 03:33:13 +02:00
nome_valuta: 1,
2022-09-12 18:37:08 +02:00
fido_scoperto_default: 1,
deperimento: 1,
transactionsEnabled: 1,
2022-09-12 18:37:08 +02:00
qta_max_default: 1,
2022-09-19 19:40:30 +02:00
valuta_per_euro: 1,
2022-08-26 03:33:13 +02:00
symbol: 1,
idCity: 1,
pub_to_share: 1,
visibility: 1,
2022-09-12 18:37:08 +02:00
color: 1,
2022-08-26 03:33:13 +02:00
abbrev: 1,
data_costituz: 1,
photos: 1,
admins: 1,
req_users: 1,
refused_users: 1,
'mycities': 1,
2022-08-26 03:33:13 +02:00
};
};
2022-09-20 11:14:23 +02:00
// Aggiungi agli Admin del Circuito
CircuitSchema.statics.addToAdminOfMyCircuit = async function(idapp, username, name) {
return await Circuit.updateOne({idapp, name},
{
$push:
{
admins: {
username,
date: new Date(),
},
},
});
};
2022-08-30 17:00:48 +02:00
// Rimuovi dagli Admin del Circuito
CircuitSchema.statics.removeAdminOfMyCircuit = async function(idapp, username, name) {
2022-08-30 17:00:48 +02:00
return await Circuit.updateOne({idapp, name},
2022-08-30 17:00:48 +02:00
{$pull: {admins: {username: {$in: [username]}}}});
};
2022-08-26 03:33:13 +02:00
CircuitSchema.statics.getWhatToShow_Unknown = function(idapp, username) {
return {
groupnameId: 1,
2022-08-30 17:00:48 +02:00
path: 1,
2022-08-26 03:33:13 +02:00
name: 1,
subname: 1,
longdescr: 1,
regulation: 1,
systemUserId: 1,
founderUserId: 1,
nome_valuta: 1,
totCircolante: 1,
totTransato: 1,
2022-09-12 18:37:08 +02:00
fido_scoperto_default: 1,
qta_max_default: 1,
2022-09-19 19:40:30 +02:00
valuta_per_euro: 1,
2022-08-26 03:33:13 +02:00
symbol: 1,
2022-09-12 18:37:08 +02:00
color: 1,
idCity: 1,
pub_to_share: 1,
visibility: 1,
2022-08-26 03:33:13 +02:00
abbrev: 1,
data_costituz: 1,
photos: 1,
admins: 1,
createdBy: 1,
date_created: 1,
date_updated: 1,
req_users: 1,
refused_users: 1,
'mycities': 1,
2022-08-26 03:33:13 +02:00
};
};
2022-09-14 11:32:04 +02:00
CircuitSchema.statics.getCircuitsByUsername = async function(idapp, username, user) {
2022-08-26 03:33:13 +02:00
try {
const {User} = require('../models/user');
const {Account} = require('../models/account');
const whatToShow = this.getWhatToShow(idapp, username);
const whatToShow_Unknown = this.getWhatToShow_Unknown(idapp, username);
// const arrUsernameCircuits = await User.getUsernameCircuitsByUsername(idapp, username);
2022-08-26 03:33:13 +02:00
// const arrUsernameReqCircuits = await MyCircuit.getUsernameReqCircuitsByCircuitname(idapp, username);
const manage_mycircuits = await Circuit.find({
idapp,
'admins': {
$elemMatch: {username: {$eq: username}},
},
$or: [
{deleted: {$exists: false}},
{deleted: {$exists: true, $eq: false}}],
}).lean();
2022-08-26 03:33:13 +02:00
let listcircuits = await Circuit.find({
idapp,
$or: [
{deleted: {$exists: false}},
{deleted: {$exists: true, $eq: false}}],
}, whatToShow_Unknown).lean();
2022-08-26 03:33:13 +02:00
let asked_circuits = await Circuit.find({
2022-08-26 03:33:13 +02:00
idapp,
'req_users': {
$elemMatch: {username: {$eq: username}},
},
$or: [
{deleted: {$exists: false}},
{deleted: {$exists: true, $eq: false}}],
}, whatToShow_Unknown).lean();
2022-08-26 03:33:13 +02:00
let refused_circuits = await Circuit.find({
2022-08-26 03:33:13 +02:00
idapp,
'refused_users': {
$elemMatch: {username: {$eq: username}},
},
$or: [
{deleted: {$exists: false}},
{deleted: {$exists: true, $eq: false}}],
}, whatToShow_Unknown).lean();
2022-08-26 03:33:13 +02:00
return {
listcircuits,
asked_circuits,
refused_circuits,
manage_mycircuits,
2022-09-14 11:32:04 +02:00
mycircuits: user.profile.mycircuits,
2022-08-26 03:33:13 +02:00
};
} catch (e) {
console.log('Error getCircuitsByUsername', e);
2022-08-26 03:33:13 +02:00
}
return {
listUsersCircuit: [],
listRequestUsersCircuit: [],
listTrusted: [],
asked_circuits: [],
refused_circuits: [],
};
};
CircuitSchema.statics.getInfoCircuitByName = async function(idapp, name) {
const whatToShow = this.getWhatToShow(idapp, '');
2022-08-26 03:33:13 +02:00
const myfind = {
idapp,
name,
2022-08-26 03:33:13 +02:00
};
try {
return await Circuit.findOne(myfind, whatToShow).lean();
} catch (e) {
return null;
}
};
2022-09-03 13:06:58 +02:00
CircuitSchema.statics.getCircuitByName = async function(idapp, name) {
const myfind = {
idapp,
name,
};
try {
return await Circuit.findOne(myfind);
2022-09-03 13:06:58 +02:00
} catch (e) {
return null;
}
};
CircuitSchema.statics.getCircuitById = async function(circuitId) {
const myfind = {
2022-09-14 11:32:04 +02:00
_id: circuitId,
};
try {
return await Circuit.findOne(myfind);
} catch (e) {
return null;
}
};
CircuitSchema.statics.deleteCircuit = async function(idapp, usernameOrig, name) {
console.log('Circuito ' + name + ' rimosso da ' + usernameOrig);
return await Circuit.findOneAndRemove({idapp, name});
2022-08-26 03:33:13 +02:00
};
2022-09-12 18:37:08 +02:00
CircuitSchema.statics.getUserCircuits = async function(idapp, username) {
try {
let aggr1 = [
{
$match: {idapp, username,
$or: [
{deleted: {$exists: false}},
{deleted: {$exists: true, $eq: false}}],
},
2022-09-12 18:37:08 +02:00
},
{
$lookup: {
from: 'circuits',
localField: 'circuitId',
foreignField: '_id',
as: 'circuit',
},
},
{
'$replaceRoot': {
'newRoot': {
'$mergeObjects': [
{
'$arrayElemAt': [
'$circuit',
0,
],
},
'$$ROOT',
],
},
},
},
/*
{
$project: {
"circuit.name": 1,
},
},
*/
];
ris = await this.aggregate(aggr1);
return ris;
} catch (e) {
console.error('e', e);
}
};
CircuitSchema.statics.getCircolanteSingolaTransaz = function(accountorigTable, accountdestTable) {
let circolante = 0;
if (accountdestTable.saldo > 0)
circolante += accountdestTable.saldo;
if (accountorigTable.saldo > 0)
circolante += accountorigTable.saldo;
return circolante;
};
2022-09-12 18:37:08 +02:00
CircuitSchema.statics.sendCoins = async function(onlycheck, idapp, usernameOrig, extrarec) {
2022-09-03 13:06:58 +02:00
const {Movement} = require('../models/movement');
const {Account} = require('../models/account');
2022-09-12 18:37:08 +02:00
let ris = {
result: false,
2022-09-12 18:37:08 +02:00
cansend: true,
errormsg: '',
2022-09-13 12:28:49 +02:00
rec: null,
useraccounts: [],
2022-09-12 18:37:08 +02:00
};
2022-09-03 13:06:58 +02:00
try {
let circuittable = null;
2022-09-12 18:37:08 +02:00
if (extrarec.circuitname)
circuittable = await Circuit.getCircuitByName(idapp, extrarec.circuitname);
2022-09-12 18:37:08 +02:00
if (extrarec.circuitId)
circuittable = await Circuit.getCircuitById(idapp, extrarec.circuitId);
if (circuittable) {
const myqty = Math.abs(extrarec.qty);
2022-09-03 13:06:58 +02:00
const accountdestTable = await Account.getAccountByUsernameAndCircuitId(idapp, extrarec.dest, { circuitId: circuittable._id }, true);
const accountorigTable = await Account.getAccountByUsernameAndCircuitId(idapp, usernameOrig, { circuitId: circuittable._id }, true);
2022-09-03 13:06:58 +02:00
const circolantePrec = this.getCircolanteSingolaTransaz(accountorigTable, accountdestTable);
2022-09-12 18:37:08 +02:00
// Check if Sender has enough money
if (accountorigTable.saldo - myqty < -accountorigTable.fidoConcesso) {
2022-09-12 18:37:08 +02:00
ris.cansend = false;
ris.errormsg = i18n.__('CIRCUIT_AMOUNT_EXCEED_FIDO', usernameOrig);
2022-09-12 18:37:08 +02:00
}
if (accountdestTable.saldo + myqty > accountorigTable.qta_maxConcessa) {
2022-09-12 18:37:08 +02:00
ris.cansend = false;
ris.errormsg = i18n.__('CIRCUIT_AMOUNT_EXCEED_QTAMAX', extrarec.dest);
2022-09-12 18:37:08 +02:00
}
if (!onlycheck) {
// Add a Transaction !
if (ris.cansend) {
ris.rec = await Movement.addMov(idapp, accountorigTable, accountdestTable, myqty, extrarec.causal);
}
2022-09-13 12:28:49 +02:00
if (ris.cansend && ris.rec) {
const circolanteAtt = this.getCircolanteSingolaTransaz(accountorigTable, accountdestTable);
// Somma di tutte le transazioni
circuittable.totTransato += myqty;
2022-09-19 15:10:23 +02:00
// circuittable.totCircolante = circuittable.totCircolante + (circolanteAtt - circolantePrec);
circuittable.totCircolante = await Account.calcTotCircolante(idapp, circuittable._id);
await circuittable.save();
ris.result = true;
console.log('Inviate Monete da', usernameOrig, extrarec.dest, myqty, extrarec.causal);
ris.useraccounts = await Account.getUserAccounts(idapp, usernameOrig);
2022-09-12 18:37:08 +02:00
extrarec.saldoOrig = accountorigTable.saldo;
extrarec.saldoDest = accountdestTable.saldo;
2022-09-12 18:37:08 +02:00
} else {
console.log('NON Inviate Monete da', usernameOrig, extrarec.dest, myqty, extrarec.causal);
2022-09-12 18:37:08 +02:00
}
}
2022-09-12 18:37:08 +02:00
return ris;
2022-09-03 13:06:58 +02:00
}
} catch (e) {
2022-09-03 13:06:58 +02:00
console.error('Err sendCoins', e);
ris.result = false;
return ris;
2022-09-03 13:06:58 +02:00
}
};
// Rimuovo la Richiesta del Circuito
CircuitSchema.statics.removeReqCircuit = async function(idapp, username, name) {
return await Circuit.updateOne({idapp, name},
{$pull: {req_users: {username: {$in: [username]}}}});
};
// Aggiungi agli utenti Rifiutati del Circuito
CircuitSchema.statics.refuseReqCircuit = async function(idapp, username, name) {
return await Circuit.updateOne({idapp, name},
{
$push:
{
refused_users: {
username,
date: new Date(),
},
},
});
};
2022-04-07 08:19:40 +02:00
const Circuit = mongoose.model('Circuit', CircuitSchema);
module.exports = {Circuit};