Add notable contributions plugin (#222)

This commit is contained in:
Simon Lecoq
2021-04-09 20:51:45 +02:00
committed by GitHub
parent e63dee0c6e
commit 19bb1b3766
15 changed files with 218 additions and 4 deletions

View File

@@ -0,0 +1,48 @@
//Setup
export default async function({login, q, imports, graphql, data, account, queries}, {enabled = false} = {}) {
//Plugin execution
try {
//Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.notable))
return null
//Load inputs
imports.metadata.plugins.notable.inputs({data, account, q})
//Initialization
const organizations = new Map()
//Load organization memberships
try {
const {user:{organizations:{nodes}}} = await graphql(queries.notable.organizations({login}))
nodes.map(({login, avatarUrl}) => organizations.set(login, avatarUrl))
}
catch (error) {
console.debug(`metrics/compute/${login}/plugins > notable > failed to load organizations memberships: ${error}`)
}
//Iterate through contributed repositories from organizations
{
let cursor = null
let pushed = 0
do {
console.debug(`metrics/compute/${login}/plugins > notable > retrieving contributed repositories after ${cursor}`)
const {user:{repositoriesContributedTo:{edges}}} = await graphql(queries.notable.contributions({login, after:cursor ? `after: "${cursor}"` : "", repositories:100}))
cursor = edges?.[edges?.length-1]?.cursor
edges.map(({node}) => node.isInOrganization ? organizations.set(node.owner.login, node.owner.avatarUrl) : null)
pushed = edges.length
} while ((pushed)&&(cursor))
}
//Set contributions
const contributions = (await Promise.all([...organizations.entries()].map(async([name, avatarUrl]) => ({name, avatar:await imports.imgb64(avatarUrl)})))).sort((a, b) => a.name.localeCompare(b.name))
console.debug(`metrics/compute/${login}/plugins > notable > found contributions to ${organizations.length} organizations`)
//Results
return {contributions}
}
//Handle errors
catch (error) {
throw {error:{message:"An error occured", instance:error}}
}
}