You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
188 lines
4.7 KiB
188 lines
4.7 KiB
import lock from '../utils/lock'
|
|
import { models } from '../models'
|
|
import * as socket from '../utils/socket'
|
|
import * as jsonUtils from '../utils/json'
|
|
import * as network from '../network'
|
|
import constants from '../constants'
|
|
import { failure, success } from '../utils/res'
|
|
|
|
export function sendConfirmation({ chat, sender, msg_id }) {
|
|
if (!msg_id) return
|
|
network.sendMessage({
|
|
chat,
|
|
sender,
|
|
message: { id: msg_id },
|
|
type: constants.message_types.confirmation,
|
|
})
|
|
}
|
|
|
|
export async function receiveConfirmation(payload) {
|
|
console.log('=> received confirmation', (payload.message && payload.message.id))
|
|
|
|
const dat = payload.content || payload
|
|
const chat_uuid = dat.chat.uuid
|
|
const msg_id = dat.message.id
|
|
const sender_pub_key = dat.sender.pub_key
|
|
|
|
const owner = await models.Contact.findOne({ where: { isOwner: true } })
|
|
const sender = await models.Contact.findOne({ where: { publicKey: sender_pub_key } })
|
|
const chat = await models.Chat.findOne({ where: { uuid: chat_uuid } })
|
|
|
|
// new confirmation logic
|
|
if (msg_id) {
|
|
lock.acquire('confirmation', async function (done) {
|
|
// console.log("update status map")
|
|
const message = await models.Message.findOne({ where: { id: msg_id } })
|
|
if (message) {
|
|
let statusMap = {}
|
|
try {
|
|
statusMap = JSON.parse(message.statusMap || '{}')
|
|
} catch (e) { }
|
|
statusMap[sender.id] = constants.statuses.received
|
|
|
|
await message.update({
|
|
status: constants.statuses.received,
|
|
statusMap: JSON.stringify(statusMap)
|
|
})
|
|
socket.sendJson({
|
|
type: 'confirmation',
|
|
response: jsonUtils.messageToJson(message, chat, sender)
|
|
})
|
|
}
|
|
done()
|
|
})
|
|
} else { // old logic
|
|
const messages = await models.Message.findAll({
|
|
limit: 1,
|
|
where: {
|
|
chatId: chat.id,
|
|
sender: owner.id,
|
|
type: [
|
|
constants.message_types.message,
|
|
constants.message_types.invoice,
|
|
constants.message_types.attachment,
|
|
],
|
|
status: constants.statuses.pending,
|
|
},
|
|
order: [['createdAt', 'desc']]
|
|
})
|
|
|
|
const message = messages[0]
|
|
message.update({ status: constants.statuses.received })
|
|
|
|
socket.sendJson({
|
|
type: 'confirmation',
|
|
response: jsonUtils.messageToJson(message, chat, sender)
|
|
})
|
|
}
|
|
}
|
|
|
|
export async function tribeOwnerAutoConfirmation(msg_id, chat_uuid) {
|
|
if (!msg_id || !chat_uuid) return
|
|
const message = await models.Message.findOne({ where: { id: msg_id } })
|
|
const chat = await models.Chat.findOne({ where: { uuid: chat_uuid } })
|
|
|
|
if (message) {
|
|
let statusMap = {}
|
|
try {
|
|
statusMap = JSON.parse(message.statusMap || '{}')
|
|
} catch (e) { }
|
|
statusMap['chat'] = constants.statuses.received
|
|
|
|
await message.update({
|
|
status: constants.statuses.received,
|
|
statusMap: JSON.stringify(statusMap)
|
|
})
|
|
socket.sendJson({
|
|
type: 'confirmation',
|
|
response: jsonUtils.messageToJson(message, chat, null)
|
|
})
|
|
}
|
|
}
|
|
|
|
export async function receiveHeartbeat(payload) {
|
|
console.log('=> received heartbeat')
|
|
|
|
const dat = payload.content || payload
|
|
const sender_pub_key = dat.sender.pub_key
|
|
const receivedAmount = dat.message.amount
|
|
|
|
if (!(sender_pub_key && sender_pub_key.length === 66)) return console.log('no sender')
|
|
if (!receivedAmount) return console.log('no amount')
|
|
|
|
const owner = await models.Contact.findOne({ where: { isOwner: true } })
|
|
|
|
const amount = Math.round(receivedAmount/2)
|
|
const amt = Math.max(amount || constants.min_sat_amount)
|
|
const opts = {
|
|
amt,
|
|
dest: sender_pub_key,
|
|
data: <network.Msg>{
|
|
type: constants.message_types.heartbeat_confirmation,
|
|
message: { amount: amt },
|
|
sender: { pub_key: owner.publicKey }
|
|
}
|
|
}
|
|
try {
|
|
await network.signAndSend(opts)
|
|
return true
|
|
} catch (e) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
let heartbeats:{[k:string]:boolean} = {}
|
|
export async function healthcheck(req, res) {
|
|
const pubkey:string = req.query.pubkey
|
|
if (!(pubkey&&pubkey.length===66)) {
|
|
return failure(res, 'missing pubkey')
|
|
}
|
|
|
|
const owner = await models.Contact.findOne({ where: { isOwner: true } })
|
|
|
|
const amt = 10
|
|
const opts = {
|
|
amt,
|
|
dest: pubkey,
|
|
data: <network.Msg>{
|
|
type: constants.message_types.heartbeat,
|
|
message: {
|
|
amount: amt,
|
|
},
|
|
sender: { pub_key: owner.publicKey }
|
|
}
|
|
}
|
|
try {
|
|
await network.signAndSend(opts)
|
|
} catch (e) {
|
|
failure(res, e)
|
|
return
|
|
}
|
|
|
|
let i = 0
|
|
let interval = setInterval(()=>{
|
|
if(i>=15) {
|
|
clearInterval(interval)
|
|
delete heartbeats[pubkey]
|
|
failure(res, 'no confimration received')
|
|
return
|
|
}
|
|
if(heartbeats[pubkey]) {
|
|
success(res, 'success')
|
|
clearInterval(interval)
|
|
delete heartbeats[pubkey]
|
|
return
|
|
}
|
|
i ++
|
|
}, 1000)
|
|
|
|
}
|
|
|
|
export async function receiveHeartbeatConfirmation(payload) {
|
|
console.log('=> received heartbeat confirmation')
|
|
|
|
const dat = payload.content || payload
|
|
const sender_pub_key = dat.sender.pub_key
|
|
|
|
heartbeats[sender_pub_key] = true
|
|
}
|