mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-04-23 11:17:54 +08:00
54 lines
1.6 KiB
CoffeeScript
54 lines
1.6 KiB
CoffeeScript
{jade, path} = app.libs
|
|
{Account} = app.models
|
|
{pluggable, config, utils} = app
|
|
|
|
exports = module.exports = class BitcoinPlugin extends pluggable.Plugin
|
|
@NAME: 'bitcoin'
|
|
@type: 'extension'
|
|
|
|
bitcoin = require './bitcoin'
|
|
|
|
exports.registerHook 'account.before_register',
|
|
filter: (account, callback) ->
|
|
bitcoin_secret = utils.randomSalt()
|
|
|
|
bitcoin.genAddress bitcoin_secret, (address) ->
|
|
account.pluggable.bitcoin =
|
|
bitcoin_deposit_address: address
|
|
bitcoin_secret: bitcoin_secret
|
|
|
|
callback()
|
|
|
|
exports.registerHook 'billing.payment_methods',
|
|
widget_generator: (req, callback) ->
|
|
bitcoin.getExchangeRate config.billing.currency, (rate) ->
|
|
exports.render 'payment_method', req,
|
|
exchange_rate: rate
|
|
, callback
|
|
|
|
exports.registerHook 'view.pay.display_payment_details',
|
|
type: 'bitcoin'
|
|
filter: (req, deposit_log, callback) ->
|
|
callback exports.t(req) 'view.payment_details',
|
|
order_id: deposit_log.payload.order_id
|
|
short_order_id: deposit_log.payload.order_id[0 .. 40]
|
|
|
|
app.express.post '/bitcoin/coinbase_callback', (req, res) ->
|
|
Account.findOne
|
|
'pluggable.bitcoin.bitcoin_deposit_address': req.body.address
|
|
, (err, account) ->
|
|
unless account
|
|
return res.send 400, 'Invalid Address'
|
|
|
|
unless req.query.secret == account.pluggable.bitcoin.bitcoin_secret
|
|
return res.send 400, 'Invalid Secret'
|
|
|
|
bitcoin.getExchangeRate config.billing.currency, (rate) ->
|
|
amount = req.body.amount / rate
|
|
|
|
Account.incBalance amount, 'deposit',
|
|
type: 'bitcoin'
|
|
order_id: req.body.transaction.hash
|
|
, ->
|
|
res.send 'Success'
|