* update joi + joi-extension-semver * @hapi/joi --> joi Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
87 lines
1.8 KiB
JavaScript
87 lines
1.8 KiB
JavaScript
'use strict'
|
|
|
|
const Joi = require('joi')
|
|
const { nonNegativeInteger } = require('../validators')
|
|
const KeybaseProfile = require('./keybase-profile')
|
|
|
|
const bitcoinAddressSchema = Joi.object({
|
|
status: Joi.object({
|
|
code: nonNegativeInteger.required(),
|
|
}).required(),
|
|
them: Joi.array()
|
|
.items(
|
|
Joi.object({
|
|
cryptocurrency_addresses: Joi.object({
|
|
bitcoin: Joi.array().items(
|
|
Joi.object({
|
|
address: Joi.string().required(),
|
|
}).required()
|
|
),
|
|
})
|
|
.required()
|
|
.allow(null),
|
|
})
|
|
.required()
|
|
.allow(null)
|
|
)
|
|
.min(0)
|
|
.max(1),
|
|
}).required()
|
|
|
|
module.exports = class KeybaseBTC extends KeybaseProfile {
|
|
static route = {
|
|
base: 'keybase/btc',
|
|
pattern: ':username',
|
|
}
|
|
|
|
static examples = [
|
|
{
|
|
title: 'Keybase BTC',
|
|
namedParams: { username: 'skyplabs' },
|
|
staticPreview: this.render({
|
|
address: '12ufRLmbEmgjsdGzhUUFY4pcfiQZyRPV9J',
|
|
}),
|
|
keywords: ['bitcoin'],
|
|
},
|
|
]
|
|
|
|
static defaultBadgeData = {
|
|
label: 'btc',
|
|
color: 'informational',
|
|
}
|
|
|
|
static render({ address }) {
|
|
return {
|
|
message: address,
|
|
}
|
|
}
|
|
|
|
static apiVersion = '1.0'
|
|
|
|
async handle({ username }) {
|
|
const options = {
|
|
form: {
|
|
usernames: username,
|
|
fields: 'cryptocurrency_addresses',
|
|
},
|
|
}
|
|
|
|
const data = await this.fetch({
|
|
schema: bitcoinAddressSchema,
|
|
options,
|
|
})
|
|
|
|
const { user } = this.transform({ data })
|
|
const bitcoinAddresses = user.cryptocurrency_addresses.bitcoin
|
|
|
|
if (bitcoinAddresses == null || bitcoinAddresses.length === 0) {
|
|
return {
|
|
message: 'no bitcoin addresses found',
|
|
color: 'inactive',
|
|
}
|
|
}
|
|
|
|
return this.constructor.render({ address: bitcoinAddresses[0].address })
|
|
}
|
|
}
|