spee.ch/server/models/certificate.js

217 lines
5.2 KiB
JavaScript
Raw Permalink Normal View History

const logger = require('winston');
const returnShortId = require('./utils/returnShortId.js');
const NO_CHANNEL = 'NO_CHANNEL';
function isLongChannelId (channelId) {
return (channelId && (channelId.length === 40));
}
function isShortChannelId (channelId) {
return (channelId && (channelId.length < 40));
}
module.exports = (sequelize, { STRING, BOOLEAN, INTEGER, TEXT, DECIMAL }) => {
2017-08-21 22:27:13 +02:00
const Certificate = sequelize.define(
'Certificate',
{
address: {
type : STRING,
default: null,
},
amount: {
type : DECIMAL(19, 8),
2017-08-21 22:27:13 +02:00
default: null,
},
claimId: {
type : STRING,
default: null,
},
claimSequence: {
type : INTEGER,
default: null,
},
decodedClaim: {
type : BOOLEAN,
default: null,
},
depth: {
type : INTEGER,
default: null,
},
effectiveAmount: {
type : DECIMAL(19, 8),
2017-08-21 22:27:13 +02:00
default: null,
},
hasSignature: {
type : BOOLEAN,
default: null,
},
height: {
type : INTEGER,
2017-08-21 22:27:13 +02:00
default: null,
},
hex: {
type : TEXT('long'),
default: null,
},
name: {
type : STRING,
default: null,
},
nout: {
type : INTEGER,
default: null,
},
txid: {
type : STRING,
default: null,
},
validAtHeight: {
type : INTEGER,
2017-08-21 22:27:13 +02:00
default: null,
},
outpoint: {
type : STRING,
default: null,
},
valueVersion: {
type : STRING,
default: null,
},
claimType: {
type : STRING,
default: null,
},
certificateVersion: {
type : STRING,
default: null,
},
keyType: {
type : STRING,
default: null,
},
publicKey: {
type : TEXT('long'),
default: null,
},
},
{
freezeTableName: true,
}
);
2017-09-15 23:41:47 +02:00
Certificate.associate = db => {
2017-09-26 06:03:43 +02:00
Certificate.belongsTo(db.Channel, {
2017-09-15 23:41:47 +02:00
foreignKey: {
allowNull: true,
},
});
};
Certificate.getShortChannelIdFromLongChannelId = function (longChannelId, channelName) {
logger.debug(`getShortChannelIdFromLongChannelId ${channelName}:${longChannelId}`);
return new Promise((resolve, reject) => {
this
.findAll({
where: {name: channelName},
order: [['height', 'ASC']],
})
.then(result => {
switch (result.length) {
case 0:
return reject(NO_CHANNEL);
default:
2017-11-04 01:10:08 +01:00
return resolve(returnShortId(result, longChannelId));
}
})
.catch(error => {
reject(error);
});
});
};
Certificate.validateLongChannelId = function (name, claimId) {
logger.debug(`validateLongChannelId(${name}, ${claimId})`);
return new Promise((resolve, reject) => {
this.findOne({
where: {name, claimId},
})
.then(result => {
if (!result) {
return reject(NO_CHANNEL);
}
resolve(claimId);
})
.catch(error => {
logger.error(error);
reject(NO_CHANNEL);
});
});
};
2017-12-06 00:11:16 +01:00
Certificate.getLongChannelIdFromShortChannelId = function (channelName, channelClaimId) {
logger.debug(`getLongChannelIdFromShortChannelId(${channelName}, ${channelClaimId})`);
2017-11-01 00:23:11 +01:00
return new Promise((resolve, reject) => {
this
.findAll({
where: {
name : channelName,
claimId: {
2018-05-15 00:23:50 +02:00
[sequelize.Op.like]: `${channelClaimId}%`,
2017-11-01 00:23:11 +01:00
},
},
2017-11-01 04:35:33 +01:00
order: [['height', 'ASC']],
2017-11-01 00:23:11 +01:00
})
.then(result => {
switch (result.length) {
case 0:
return reject(NO_CHANNEL);
default:
2017-11-01 00:23:11 +01:00
return resolve(result[0].claimId);
}
})
.catch(error => {
logger.error(error);
reject(NO_CHANNEL);
2017-11-01 00:23:11 +01:00
});
});
};
Certificate.getLongChannelIdFromChannelName = function (channelName) {
logger.debug(`getLongChannelIdFromChannelName(${channelName})`);
return new Promise((resolve, reject) => {
this
.findAll({
where: { name: channelName },
order: [['effectiveAmount', 'DESC'], ['height', 'ASC']],
})
.then(result => {
switch (result.length) {
case 0:
return reject(NO_CHANNEL);
2017-11-01 00:23:11 +01:00
default:
return resolve(result[0].claimId);
}
})
.catch(error => {
logger.error(error);
reject(NO_CHANNEL);
});
2017-11-21 21:53:43 +01:00
});
};
2017-12-06 00:11:16 +01:00
Certificate.getLongChannelId = function (channelName, channelClaimId) {
logger.debug(`getLongChannelId(${channelName}, ${channelClaimId})`);
if (isLongChannelId(channelClaimId)) {
2017-12-06 00:11:16 +01:00
return this.validateLongChannelId(channelName, channelClaimId);
} else if (isShortChannelId(channelClaimId)) {
2017-12-06 00:11:16 +01:00
return this.getLongChannelIdFromShortChannelId(channelName, channelClaimId);
2017-11-01 00:23:11 +01:00
} else {
return this.getLongChannelIdFromChannelName(channelName);
2017-11-01 00:23:11 +01:00
}
};
2017-08-21 22:27:13 +02:00
return Certificate;
};