Files
shields/services/keybase/keybase-btc.service.js
chris48s c73072deed Remove requestOptions2GotOptions compatibility layer (#7270)
* gzip --> decompress

* strictSSL --> https.rejectUnauthorized

* auth --> username/password

* qs --> searchParams

* fix base service auth docs

* completely remove requestOptions2GotOptions layer

* update the docs

Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
2021-11-15 19:56:08 +00:00

85 lines
1.8 KiB
JavaScript

import Joi from 'joi'
import { nonNegativeInteger } from '../validators.js'
import KeybaseProfile from './keybase-profile.js'
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()
export default 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 = {
searchParams: {
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 })
}
}