|
|
|
import { success, failure } from '../utils/res'
|
|
|
|
import * as path from 'path'
|
|
|
|
import * as network from '../network'
|
|
|
|
import { models } from '../models'
|
|
|
|
import * as short from 'short-uuid'
|
|
|
|
import * as rsa from '../crypto/rsa'
|
|
|
|
|
|
|
|
/*
|
|
|
|
hexdump -n 8 -e '4/4 "%08X" 1 "\n"' /dev/random
|
|
|
|
hexdump -n 16 -e '4/4 "%08X" 1 "\n"' /dev/random
|
|
|
|
*/
|
|
|
|
|
|
|
|
const constants = require(path.join(__dirname,'../../config/constants.json'))
|
|
|
|
|
|
|
|
export async function processAction(req, res) {
|
|
|
|
let body = req.body
|
|
|
|
if(body.data && typeof body.data==='string' && body.data[1]==="'") {
|
|
|
|
try { // parse out body from "data" for github webhook action
|
|
|
|
const dataBody = JSON.parse(body.data.replace(/'/g,'"'))
|
|
|
|
if(dataBody) body=dataBody
|
|
|
|
} catch(e) {
|
|
|
|
console.log(e)
|
|
|
|
return failure(res, 'failed to parse webhook body json')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const {action,bot_id,bot_secret,pubkey,amount,text} = body
|
|
|
|
|
|
|
|
const bot = await models.Bot.findOne({where:{id:bot_id}})
|
|
|
|
if(!bot) return failure(res,'no bot')
|
|
|
|
|
|
|
|
if(!(bot.secret&&bot.secret===bot_secret)) {
|
|
|
|
return failure(res, 'wrong secret')
|
|
|
|
}
|
|
|
|
if(!action){
|
|
|
|
return failure(res, 'no action')
|
|
|
|
}
|
|
|
|
|
|
|
|
if(action==='keysend') {
|
|
|
|
if(!(pubkey&&pubkey.length===66&&amount)) {
|
|
|
|
return failure(res, 'wrong params')
|
|
|
|
}
|
|
|
|
const MIN_SATS = 3
|
|
|
|
const destkey = pubkey
|
|
|
|
const opts = {
|
|
|
|
dest: destkey,
|
|
|
|
data: {},
|
|
|
|
amt: Math.max((amount||0), MIN_SATS)
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await network.signAndSend(opts)
|
|
|
|
return success(res, {success:true})
|
|
|
|
} catch(e) {
|
|
|
|
return failure(res, e)
|
|
|
|
}
|
|
|
|
} else if (action==='broadcast') {
|
|
|
|
if(!bot.chat_id || !text) return failure(res,'no uuid or text')
|
|
|
|
const owner = await models.Contact.findOne({ where: { isOwner: true } })
|
|
|
|
const theChat = await models.Chat.findOne({where:{id: bot.chat_id}})
|
|
|
|
if(!theChat || !owner) return failure(res,'no chat')
|
|
|
|
if(!theChat.type===constants.chat_types.tribe) return failure(res,'not a tribe')
|
|
|
|
|
|
|
|
const encryptedForMeText = rsa.encrypt(owner.contactKey, text)
|
|
|
|
const encryptedText = rsa.encrypt(theChat.groupKey, text)
|
|
|
|
const textMap = {'chat': encryptedText}
|
|
|
|
var date = new Date();
|
|
|
|
date.setMilliseconds(0)
|
|
|
|
const alias = bot.name || 'Bot'
|
|
|
|
const msg:{[k:string]:any}={
|
|
|
|
chatId: theChat.id,
|
|
|
|
uuid: short.generate(),
|
|
|
|
type: constants.message_types.message,
|
|
|
|
sender: owner.id,
|
|
|
|
amount: amount||0,
|
|
|
|
date: date,
|
|
|
|
messageContent: encryptedForMeText,
|
|
|
|
remoteMessageContent: JSON.stringify(textMap),
|
|
|
|
status: constants.statuses.confirmed,
|
|
|
|
createdAt: date,
|
|
|
|
updatedAt: date,
|
|
|
|
senderAlias: alias,
|
|
|
|
}
|
|
|
|
const message = await models.Message.create(msg)
|
|
|
|
await network.sendMessage({
|
|
|
|
chat: theChat,
|
|
|
|
sender: {...owner.dataValues, alias},
|
|
|
|
message: { content:textMap, id:message.id, uuid: message.uuid },
|
|
|
|
type: constants.message_types.message,
|
|
|
|
success: ()=> success(res, {success:true}),
|
|
|
|
failure: ()=> failure(res, 'failed'),
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
return failure(res, 'no action')
|
|
|
|
}
|
|
|
|
}
|