* [OpenCollective] update opencollective to api v2 (#9346) * update opencollective to api v2 * fix tests * fix: do not filter by accountType for opencollective/all * remove 404 * remove required in schema * cnt -> count * keep by-tier code as-is --------- Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com> * allow calling OpenCollective api with an auth token * add test for opencollective auth * cache OpenCollective badges for longer --------- Co-authored-by: xxchan <xxchan22f@gmail.com> Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
99 lines
2.3 KiB
JavaScript
99 lines
2.3 KiB
JavaScript
import gql from 'graphql-tag'
|
|
import Joi from 'joi'
|
|
import { BaseGraphqlService } from '../index.js'
|
|
import { nonNegativeInteger } from '../validators.js'
|
|
import { metric } from '../text-formatters.js'
|
|
|
|
const schema = Joi.object({
|
|
data: Joi.object({
|
|
account: Joi.object({
|
|
name: Joi.string(),
|
|
slug: Joi.string(),
|
|
members: Joi.object({
|
|
totalCount: nonNegativeInteger,
|
|
nodes: Joi.array().items(
|
|
Joi.object({
|
|
tier: Joi.object({
|
|
legacyId: Joi.number(),
|
|
name: Joi.string(),
|
|
}).allow(null),
|
|
}),
|
|
),
|
|
}).required(),
|
|
}).required(),
|
|
}).required(),
|
|
}).required()
|
|
|
|
export default class OpencollectiveBase extends BaseGraphqlService {
|
|
static category = 'funding'
|
|
|
|
static auth = {
|
|
passKey: 'opencollective_token',
|
|
authorizedOrigins: ['https://api.opencollective.com'],
|
|
isRequired: false,
|
|
}
|
|
|
|
static buildRoute(base, withTierId) {
|
|
return {
|
|
base: `opencollective${base ? `/${base}` : ''}`,
|
|
pattern: `:collective${withTierId ? '/:tierId' : ''}`,
|
|
}
|
|
}
|
|
|
|
static render(backersCount, label) {
|
|
return {
|
|
label,
|
|
message: metric(backersCount),
|
|
color: backersCount > 0 ? 'brightgreen' : 'lightgrey',
|
|
}
|
|
}
|
|
|
|
async fetchCollectiveInfo({ collective, accountType }) {
|
|
return this._requestGraphql(
|
|
this.authHelper.withQueryStringAuth(
|
|
{ passKey: 'personalToken' },
|
|
{
|
|
schema,
|
|
url: 'https://api.opencollective.com/graphql/v2',
|
|
query: gql`
|
|
query account($slug: String, $accountType: [AccountType]) {
|
|
account(slug: $slug) {
|
|
name
|
|
slug
|
|
members(accountType: $accountType, role: BACKER) {
|
|
totalCount
|
|
nodes {
|
|
tier {
|
|
legacyId
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
`,
|
|
variables: {
|
|
slug: collective,
|
|
accountType,
|
|
},
|
|
options: {
|
|
headers: { 'content-type': 'application/json' },
|
|
},
|
|
},
|
|
),
|
|
)
|
|
}
|
|
|
|
getCount(data) {
|
|
const {
|
|
data: {
|
|
account: {
|
|
members: { totalCount },
|
|
},
|
|
},
|
|
} = data
|
|
|
|
return totalCount
|
|
}
|
|
}
|