Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[freeCodeCamp] Add points badge #6958

Merged
merged 2 commits into from
Aug 28, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions services/freecodecamp/freecodecamp-points.service.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
import Joi from 'joi'
import { metric } from '../text-formatters.js'
import { BaseJsonService, InvalidResponse, NotFound } from '../index.js'

const schema = Joi.object({
entities: Joi.object({
user: Joi.object()
.required()
.pattern(/^\w+$/, {
points: Joi.number().allow(null).required(),
}),
}).optional(),
}).required()

/**
* This badge displays the total number of points a student has accumulated
* from completing challenges on freeCodeCamp.
*/
export default class FreeCodeCampPoints extends BaseJsonService {
static category = 'other'
static route = {
base: 'freecodecamp/points',
pattern: ':username',
}

static examples = [
{
title: 'freeCodeCamp points',
namedParams: { username: 'sethi' },
staticPreview: this.render({ points: 934 }),
},
]

static defaultBadgeData = { label: 'points', color: 'info' }

static render({ points }) {
return { message: metric(points) }
}

async fetch({ username }) {
return this._requestJson({
schema,
url: `https://api.freecodecamp.org/api/users/get-public-profile`,
options: {
qs: {
username,
},
},
})
}

static transform(response, username) {
const { entities } = response

if (entities === undefined)
throw new NotFound({ prettyMessage: 'profile not found' })

const { points } = entities.user[username]

if (points === null) throw new InvalidResponse({ prettyMessage: 'private' })

return points
}

async handle({ username }) {
const response = await this.fetch({ username })
const points = this.constructor.transform(response, username)
return this.constructor.render({ points })
}
}
15 changes: 15 additions & 0 deletions services/freecodecamp/freecodecamp-points.tester.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { createServiceTester } from '../tester.js'
import { isMetric } from '../test-validators.js'
export const t = await createServiceTester()

t.create('Total Points Valid')
.get('/sethi.json')
.expectBadge({ label: 'points', message: isMetric })

t.create('Total Points Private')
.get('/set.json')
.expectBadge({ label: 'points', message: 'private' })

t.create('Total Points Invalid')
.get('/invalid@username.json')
.expectBadge({ label: 'points', message: 'profile not found' })