Code formatting (#280)

This commit is contained in:
Simon Lecoq
2021-04-29 14:32:34 +02:00
committed by GitHub
parent 92090b60b5
commit ce18af8573
98 changed files with 10278 additions and 9807 deletions

View File

@@ -1,51 +1,55 @@
//Imports //Imports
import core from "@actions/core" import core from "@actions/core"
import github from "@actions/github" import github from "@actions/github"
import octokit from "@octokit/graphql" import octokit from "@octokit/graphql"
import setup from "../metrics/setup.mjs" import fs from "fs/promises"
import mocks from "../mocks/index.mjs" import paths from "path"
import metrics from "../metrics/index.mjs" import sgit from "simple-git"
import fs from "fs/promises" import metrics from "../metrics/index.mjs"
import paths from "path" import setup from "../metrics/setup.mjs"
import sgit from "simple-git" import mocks from "../mocks/index.mjs"
process.on("unhandledRejection", error => { process.on("unhandledRejection", error => {
throw error throw error
}) })
//Debug message buffer //Debug message buffer
let DEBUG = true let DEBUG = true
const debugged = [] const debugged = []
//Info logger //Info logger
const info = (left, right, {token = false} = {}) => console.log(`${`${left}`.padEnd(56 + 9*(/0m$/.test(left)))}${ const info = (left, right, {token = false} = {}) => console.log(`${`${left}`.padEnd(56 + 9 * (/0m$/.test(left)))}${
Array.isArray(right) ? right.join(", ") || "(none)" : Array.isArray(right)
right === undefined ? "(default)" : ? right.join(", ") || "(none)"
token ? /^MOCKED/.test(right) ? "(MOCKED TOKEN)" : /^NOT_NEEDED$/.test(right) ? "(NOT NEEDED)" : (right ? "(provided)" : "(missing)") : : right === undefined
typeof right === "object" ? JSON.stringify(right) : ? "(default)"
right : token
? /^MOCKED/.test(right) ? "(MOCKED TOKEN)" : /^NOT_NEEDED$/.test(right) ? "(NOT NEEDED)" : (right ? "(provided)" : "(missing)")
: typeof right === "object"
? JSON.stringify(right)
: right
}`) }`)
info.section = (left = "", right = " ") => info(`\x1b[36m${left}\x1b[0m`, right) info.section = (left = "", right = " ") => info(`\x1b[36m${left}\x1b[0m`, right)
info.group = ({metadata, name, inputs}) => { info.group = ({metadata, name, inputs}) => {
info.section(metadata.plugins[name]?.name?.match(/(?<section>[\w\s]+)/i)?.groups?.section?.trim(), " ") info.section(metadata.plugins[name]?.name?.match(/(?<section>[\w\s]+)/i)?.groups?.section?.trim(), " ")
for (const [input, value] of Object.entries(inputs)) for (const [input, value] of Object.entries(inputs))
info(metadata.plugins[name]?.inputs[input]?.description ?? input, value, {token:metadata.plugins[name]?.inputs[input]?.type === "token"}) info(metadata.plugins[name]?.inputs[input]?.description ?? input, value, {token:metadata.plugins[name]?.inputs[input]?.type === "token"})
} }
info.break = () => console.log("─".repeat(88)) info.break = () => console.log("─".repeat(88))
//Waiter //Waiter
async function wait(seconds) { async function wait(seconds) {
await new Promise(solve => setTimeout(solve, seconds*1000)) await new Promise(solve => setTimeout(solve, seconds * 1000))
} }
//Runner //Runner
(async function() { (async function() {
try { try {
//Initialization //Initialization
info.break() info.break()
info.section("Metrics") info.section("Metrics")
//Skip process if needed //Skip process if needed
if ((github.context.eventName === "push")&&(github.context.payload?.head_commit)) { if ((github.context.eventName === "push") && (github.context.payload?.head_commit)) {
if (/\[Skip GitHub Action\]/.test(github.context.payload.head_commit.message)) { if (/\[Skip GitHub Action\]/.test(github.context.payload.head_commit.message)) {
console.log("Skipped because [Skip GitHub Action] is in commit message") console.log("Skipped because [Skip GitHub Action] is in commit message")
process.exit(0) process.exit(0)
@@ -65,14 +69,28 @@
//Core inputs //Core inputs
const { const {
user:_user, repo:_repo, token, user:_user,
template, query, "setup.community.templates":_templates, repo:_repo,
filename:_filename, optimize, verify, "markdown.cache":_markdown_cache, token,
debug, "debug.flags":dflags, "use.mocked.data":mocked, dryrun, template,
query,
"setup.community.templates":_templates,
filename:_filename,
optimize,
verify,
"markdown.cache":_markdown_cache,
debug,
"debug.flags":dflags,
"use.mocked.data":mocked,
dryrun,
"plugins.errors.fatal":die, "plugins.errors.fatal":die,
"committer.token":_token, "committer.branch":_branch, "committer.message":_message, "committer.gist":_gist, "committer.token":_token,
"committer.branch":_branch,
"committer.message":_message,
"committer.gist":_gist,
"use.prebuilt.image":_image, "use.prebuilt.image":_image,
retries, "retries.delay":retries_delay, retries,
"retries.delay":retries_delay,
"output.action":_action, "output.action":_action,
...config ...config
} = metadata.plugins.core.inputs.action({core}) } = metadata.plugins.core.inputs.action({core})
@@ -111,8 +129,11 @@
//Test token validity //Test token validity
else if (!/^NOT_NEEDED$/.test(token)) { else if (!/^NOT_NEEDED$/.test(token)) {
const {headers} = await api.rest.request("HEAD /") const {headers} = await api.rest.request("HEAD /")
if (!("x-oauth-scopes" in headers)) if (!("x-oauth-scopes" in headers)) {
throw new Error("GitHub API did not send any \"x-oauth-scopes\" header back from provided \"token\". It means that your token may not be valid or you're using GITHUB_TOKEN which cannot be used since metrics will fetch data outside of this repository scope. Use a personal access token instead (see https://github.com/lowlighter/metrics/blob/master/.github/readme/partials/setup/action/setup.md for more informations).") throw new Error(
'GitHub API did not send any "x-oauth-scopes" header back from provided "token". It means that your token may not be valid or you\'re using GITHUB_TOKEN which cannot be used since metrics will fetch data outside of this repository scope. Use a personal access token instead (see https://github.com/lowlighter/metrics/blob/master/.github/readme/partials/setup/action/setup.md for more informations).',
)
}
info("Token validity", "seems ok") info("Token validity", "seems ok")
} }
//Extract octokits //Extract octokits
@@ -179,17 +200,21 @@
} }
else else
throw error throw error
} }
//Retrieve previous render SHA to be able to update file content through API //Retrieve previous render SHA to be able to update file content through API
committer.sha = null committer.sha = null
try { try {
const {repository:{object:{oid}}} = await graphql(` const {repository:{object:{oid}}} = await graphql(
`
query Sha { query Sha {
repository(owner: "${github.context.repo.owner}", name: "${github.context.repo.repo}") { repository(owner: "${github.context.repo.owner}", name: "${github.context.repo.repo}") {
object(expression: "${committer.head}:${filename}") { ... on Blob { oid } } object(expression: "${committer.head}:${filename}") { ... on Blob { oid } }
} }
} }
`, {headers:{authorization:`token ${committer.token}`}}) `,
{headers:{authorization:`token ${committer.token}`}},
)
committer.sha = oid committer.sha = oid
} }
catch (error) { catch (error) {
@@ -200,6 +225,7 @@
else else
info("Dry-run", true) info("Dry-run", true)
//SVG file //SVG file
conf.settings.optimize = optimize conf.settings.optimize = optimize
info("SVG output", filename) info("SVG output", filename)
@@ -297,13 +323,16 @@
console.debug(`Processing ${path}`) console.debug(`Processing ${path}`)
let sha = null let sha = null
try { try {
const {repository:{object:{oid}}} = await graphql(` const {repository:{object:{oid}}} = await graphql(
`
query Sha { query Sha {
repository(owner: "${github.context.repo.owner}", name: "${github.context.repo.repo}") { repository(owner: "${github.context.repo.owner}", name: "${github.context.repo.repo}") {
object(expression: "${committer.head}:${path}") { ... on Blob { oid } } object(expression: "${committer.head}:${path}") { ... on Blob { oid } }
} }
} }
`, {headers:{authorization:`token ${committer.token}`}}) `,
{headers:{authorization:`token ${committer.token}`}},
)
sha = oid sha = oid
} }
catch (error) { catch (error) {
@@ -311,8 +340,11 @@
} }
finally { finally {
await committer.rest.repos.createOrUpdateFileContents({ await committer.rest.repos.createOrUpdateFileContents({
...github.context.repo, path, content, ...github.context.repo,
message:`${committer.message} (cache)`, ...(sha ? {sha} : {}), path,
content,
message:`${committer.message} (cache)`,
...(sha ? {sha} : {}),
branch:committer.pr ? committer.head : committer.branch, branch:committer.pr ? committer.head : committer.branch,
}) })
rendered = rendered.replace(match, `<img src="https://github.com/${github.context.repo.owner}/${github.context.repo.repo}/blob/${committer.branch}/${path}">`) rendered = rendered.replace(match, `<img src="https://github.com/${github.context.repo.owner}/${github.context.repo.repo}/blob/${committer.branch}/${path}">`)
@@ -322,7 +354,7 @@
} }
//Check editions //Check editions
if ((committer.commit)||(committer.pr)) { if ((committer.commit) || (committer.pr)) {
const git = sgit() const git = sgit()
const sha = await git.hashObject(paths.join("/renders", filename)) const sha = await git.hashObject(paths.join("/renders", filename))
info("Current render sha", sha) info("Current render sha", sha)
@@ -342,7 +374,9 @@
//Commit metrics //Commit metrics
if (committer.commit) { if (committer.commit) {
await committer.rest.repos.createOrUpdateFileContents({ await committer.rest.repos.createOrUpdateFileContents({
...github.context.repo, path:filename, message:committer.message, ...github.context.repo,
path:filename,
message:committer.message,
content:Buffer.from(rendered).toString("base64"), content:Buffer.from(rendered).toString("base64"),
branch:committer.pr ? committer.head : committer.branch, branch:committer.pr ? committer.head : committer.branch,
...(committer.sha ? {sha:committer.sha} : {}), ...(committer.sha ? {sha:committer.sha} : {}),
@@ -379,6 +413,7 @@
} }
else else
throw error throw error
} }
info("Pull request number", number) info("Pull request number", number)
//Merge pull request //Merge pull request
@@ -430,4 +465,4 @@
core.setFailed(error.message) core.setFailed(error.message)
process.exit(1) process.exit(1)
} }
})() })()

View File

@@ -1,15 +1,14 @@
//Imports //Imports
import * as utils from "./utils.mjs" import ejs from "ejs"
import ejs from "ejs" import SVGO from "svgo"
import util from "util" import util from "util"
import SVGO from "svgo" import xmlformat from "xml-formatter"
import xmlformat from "xml-formatter" import * as utils from "./utils.mjs"
//Setup //Setup
export default async function metrics({login, q}, {graphql, rest, plugins, conf, die = false, verify = false, convert = null}, {Plugins, Templates}) { export default async function metrics({login, q}, {graphql, rest, plugins, conf, die = false, verify = false, convert = null}, {Plugins, Templates}) {
//Compute rendering //Compute rendering
try { try {
//Debug //Debug
login = login.replace(/[\n\r]/g, "") login = login.replace(/[\n\r]/g, "")
console.debug(`metrics/compute/${login} > start`) console.debug(`metrics/compute/${login} > start`)
@@ -17,7 +16,7 @@
//Load template //Load template
const template = q.template || conf.settings.templates.default const template = q.template || conf.settings.templates.default
if ((!(template in Templates))||(!(template in conf.templates))||((conf.settings.templates.enabled.length)&&(!conf.settings.templates.enabled.includes(template)))) if ((!(template in Templates)) || (!(template in conf.templates)) || ((conf.settings.templates.enabled.length) && (!conf.settings.templates.enabled.includes(template))))
throw new Error("unsupported template") throw new Error("unsupported template")
const {image, style, fonts, views, partials} = conf.templates[template] const {image, style, fonts, views, partials} = conf.templates[template]
const computer = Templates[template].default || Templates[template] const computer = Templates[template].default || Templates[template]
@@ -28,9 +27,19 @@
const pending = [] const pending = []
const {queries} = conf const {queries} = conf
const data = {animated:true, base:{}, config:{}, errors:[], plugins:{}, computed:{}} const data = {animated:true, base:{}, config:{}, errors:[], plugins:{}, computed:{}}
const imports = {plugins:Plugins, templates:Templates, metadata:conf.metadata, ...utils, ...(/markdown/.test(convert) ? {imgb64(url, options) { const imports = {
plugins:Plugins,
templates:Templates,
metadata:conf.metadata,
...utils,
...(/markdown/.test(convert)
? {
imgb64(url, options) {
return options?.force ? utils.imgb64(...arguments) : url return options?.force ? utils.imgb64(...arguments) : url
}} : null)} },
}
: null),
}
const experimental = new Set(decodeURIComponent(q["experimental.features"] ?? "").split(" ").map(x => x.trim().toLocaleLowerCase()).filter(x => x)) const experimental = new Set(decodeURIComponent(q["experimental.features"] ?? "").split(" ").map(x => x.trim().toLocaleLowerCase()).filter(x => x))
if (conf.settings["debug.headless"]) if (conf.settings["debug.headless"])
imports.puppeteer.headless = false imports.puppeteer.headless = false
@@ -74,7 +83,7 @@
try { try {
let template = `${q.markdown}`.replace(/\n/g, "") let template = `${q.markdown}`.replace(/\n/g, "")
if (!/^https:/.test(template)) { if (!/^https:/.test(template)) {
const {data:{default_branch:branch, full_name:repo}} = await rest.repos.get({owner:login, repo:q.repo||login}) const {data:{default_branch:branch, full_name:repo}} = await rest.repos.get({owner:login, repo:q.repo || login})
console.debug(`metrics/compute/${login} > on ${repo} with default branch ${branch}`) console.debug(`metrics/compute/${login} > on ${repo} with default branch ${branch}`)
template = `https://raw.githubusercontent.com/${repo}/${branch}/${template}` template = `https://raw.githubusercontent.com/${repo}/${branch}/${template}`
} }
@@ -85,16 +94,16 @@
console.debug(error) console.debug(error)
} }
//Embed method //Embed method
const embed = async(name, q = {}) => { const embed = async (name, q = {}) => {
//Check arguments //Check arguments
if ((!name)||(typeof q !== "object")||(q === null)) { if ((!name) || (typeof q !== "object") || (q === null)) {
if (die) if (die)
throw new Error("An error occured during embed rendering, dying") throw new Error("An error occured during embed rendering, dying")
return "<p>⚠️ Failed to execute embed function: invalid arguments</p>" return "<p>⚠️ Failed to execute embed function: invalid arguments</p>"
} }
//Translate action syntax to web syntax //Translate action syntax to web syntax
let parts = [] let parts = []
if (q.base === true) if (q.base === true);
({parts} = conf.settings.plugins.base) ({parts} = conf.settings.plugins.base)
if (typeof q.base === "string") if (typeof q.base === "string")
parts = q.base.split(",").map(x => x.trim()) parts = q.base.split(",").map(x => x.trim())
@@ -134,7 +143,7 @@
//Rendering //Rendering
console.debug(`metrics/compute/${login} > render`) console.debug(`metrics/compute/${login} > render`)
let rendered = await ejs.render(image, {...data, s:imports.s, f:imports.format, style:style+(conf.settings.extras?.css ?? conf.settings.extras?.default ? q["extras.css"] ?? "" : ""), fonts}, {views, async:true}) let rendered = await ejs.render(image, {...data, s:imports.s, f:imports.format, style:style + (conf.settings.extras?.css ?? conf.settings.extras?.default ? q["extras.css"] ?? "" : ""), fonts}, {views, async:true})
//Additional transformations //Additional transformations
if (q["config.twemoji"]) if (q["config.twemoji"])
@@ -144,10 +153,12 @@
//Optimize rendering //Optimize rendering
if (!q.raw) if (!q.raw)
rendered = xmlformat(rendered, {lineSeparator:"\n", collapseContent:true}) rendered = xmlformat(rendered, {lineSeparator:"\n", collapseContent:true})
if ((conf.settings?.optimize)&&(!q.raw)) { if ((conf.settings?.optimize) && (!q.raw)) {
console.debug(`metrics/compute/${login} > optimize`) console.debug(`metrics/compute/${login} > optimize`)
if (experimental.has("--optimize")) { if (experimental.has("--optimize")) {
const {error, data:optimized} = await SVGO.optimize(rendered, {multipass:true, plugins:SVGO.extendDefaultPlugins([ const {error, data:optimized} = await SVGO.optimize(rendered, {
multipass:true,
plugins:SVGO.extendDefaultPlugins([
//Additional cleanup //Additional cleanup
{name:"cleanupListOfValues"}, {name:"cleanupListOfValues"},
{name:"removeRasterImages"}, {name:"removeRasterImages"},
@@ -155,7 +166,8 @@
//Force CSS style consistency //Force CSS style consistency
{name:"inlineStyles", active:false}, {name:"inlineStyles", active:false},
{name:"removeViewBox", active:false}, {name:"removeViewBox", active:false},
])}) ]),
})
if (error) if (error)
throw new Error(`Could not optimize SVG: \n${error}`) throw new Error(`Could not optimize SVG: \n${error}`)
rendered = optimized rendered = optimized
@@ -163,6 +175,7 @@
} }
else else
console.debug(`metrics/compute/${login} > optimize > this feature is currently disabled due to display issues (use --optimize flag in experimental features to force enable it)`) console.debug(`metrics/compute/${login} > optimize > this feature is currently disabled due to display issues (use --optimize flag in experimental features to force enable it)`)
} }
//Verify svg //Verify svg
if (verify) { if (verify) {
@@ -184,10 +197,9 @@
//Internal error //Internal error
catch (error) { catch (error) {
//User not found //User not found
if (((Array.isArray(error.errors))&&(error.errors[0].type === "NOT_FOUND"))) if (((Array.isArray(error.errors)) && (error.errors[0].type === "NOT_FOUND")))
throw new Error("user not found") throw new Error("user not found")
//Generic error //Generic error
throw error throw error
} }
} }

View File

@@ -1,14 +1,14 @@
//Imports //Imports
import fs from "fs" import fs from "fs"
import path from "path" import yaml from "js-yaml"
import url from "url" import path from "path"
import yaml from "js-yaml" import url from "url"
//Defined categories //Defined categories
const categories = ["core", "github", "social", "other"] const categories = ["core", "github", "social", "other"]
/**Metadata descriptor parser */ /**Metadata descriptor parser */
export default async function metadata({log = true} = {}) { export default async function metadata({log = true} = {}) {
//Paths //Paths
const __metrics = path.join(path.dirname(url.fileURLToPath(import.meta.url)), "../../..") const __metrics = path.join(path.dirname(url.fileURLToPath(import.meta.url)), "../../..")
const __templates = path.join(__metrics, "source/templates") const __templates = path.join(__metrics, "source/templates")
@@ -51,10 +51,10 @@
//Metadata //Metadata
return {plugins:Plugins, templates:Templates, packaged} return {plugins:Plugins, templates:Templates, packaged}
} }
/**Metadata extractor for templates */ /**Metadata extractor for templates */
metadata.plugin = async function({__plugins, name, logger}) { metadata.plugin = async function({__plugins, name, logger}) {
try { try {
//Load meta descriptor //Load meta descriptor
const raw = `${await fs.promises.readFile(path.join(__plugins, name, "metadata.yml"), "utf-8")}` const raw = `${await fs.promises.readFile(path.join(__plugins, name, "metadata.yml"), "utf-8")}`
@@ -76,7 +76,8 @@
throw {error:{message:`Not supported for: ${context}`, instance:new Error()}} throw {error:{message:`Not supported for: ${context}`, instance:new Error()}}
} }
//Inputs checks //Inputs checks
const result = Object.fromEntries(Object.entries(inputs).map(([key, {type, format, default:defaulted, min, max, values}]) => [ const result = Object.fromEntries(
Object.entries(inputs).map(([key, {type, format, default:defaulted, min, max, values}]) => [
//Format key //Format key
metadata.to.query(key, {name}), metadata.to.query(key, {name}),
//Format value //Format value
@@ -86,7 +87,7 @@
//Apply type conversion //Apply type conversion
switch (type) { switch (type) {
//Booleans //Booleans
case "boolean":{ case "boolean": {
if (/^(?:[Tt]rue|[Oo]n|[Yy]es|1)$/.test(value)) if (/^(?:[Tt]rue|[Oo]n|[Yy]es|1)$/.test(value))
return true return true
if (/^(?:[Ff]alse|[Oo]ff|[Nn]o|0)$/.test(value)) if (/^(?:[Ff]alse|[Oo]ff|[Nn]o|0)$/.test(value))
@@ -94,7 +95,7 @@
return defaulted return defaulted
} }
//Numbers //Numbers
case "number":{ case "number": {
value = Number(value) value = Number(value)
if (!Number.isFinite(value)) if (!Number.isFinite(value))
value = defaulted value = defaulted
@@ -105,7 +106,7 @@
return value return value
} }
//Array //Array
case "array":{ case "array": {
try { try {
value = decodeURIComponent(value) value = decodeURIComponent(value)
} }
@@ -118,7 +119,7 @@
return value.split(separator).map(v => v.trim().toLocaleLowerCase()).filter(v => Array.isArray(values) ? values.includes(v) : true).filter(v => v) return value.split(separator).map(v => v.trim().toLocaleLowerCase()).filter(v => Array.isArray(values) ? values.includes(v) : true).filter(v => v)
} }
//String //String
case "string":{ case "string": {
value = `${value}`.trim() value = `${value}`.trim()
if (user) { if (user) {
if (value === ".user.login") if (value === ".user.login")
@@ -128,12 +129,12 @@
if (value === ".user.website") if (value === ".user.website")
return user.websiteUrl return user.websiteUrl
} }
if ((Array.isArray(values))&&(!values.includes(value))) if ((Array.isArray(values)) && (!values.includes(value)))
return defaulted return defaulted
return value return value
} }
//JSON //JSON
case "json":{ case "json": {
try { try {
value = JSON.parse(value) value = JSON.parse(value)
} }
@@ -144,16 +145,17 @@
return value return value
} }
//Token //Token
case "token":{ case "token": {
return value return value
} }
//Default //Default
default:{ default: {
return value return value
} }
} }
})(defaults[key] ?? defaulted), })(defaults[key] ?? defaulted),
])) ]),
)
logger(`metrics/inputs > ${name} > ${JSON.stringify(result)}`) logger(`metrics/inputs > ${name} > ${JSON.stringify(result)}`)
return result return result
} }
@@ -174,13 +176,15 @@
}) })
//Action descriptor //Action descriptor
meta.action = Object.fromEntries(Object.entries(inputs).map(([key, value]) => [ meta.action = Object.fromEntries(
Object.entries(inputs).map(([key, value]) => [
key, key,
{ {
comment:comments[key] ?? "", comment:comments[key] ?? "",
descriptor:yaml.dump({[key]:Object.fromEntries(Object.entries(value).filter(([key]) => ["description", "default", "required"].includes(key)))}, {quotingType:'"', noCompatMode:true}), descriptor:yaml.dump({[key]:Object.fromEntries(Object.entries(value).filter(([key]) => ["description", "default", "required"].includes(key)))}, {quotingType:'"', noCompatMode:true}),
}, },
])) ]),
)
//Action inputs //Action inputs
meta.inputs.action = function({core}) { meta.inputs.action = function({core}) {
@@ -202,7 +206,8 @@
//Web metadata //Web metadata
{ {
meta.web = Object.fromEntries(Object.entries(inputs).map(([key, {type, description:text, example, default:defaulted, min = 0, max = 9999, values}]) => [ meta.web = Object.fromEntries(
Object.entries(inputs).map(([key, {type, description:text, example, default:defaulted, min = 0, max = 9999, values}]) => [
//Format key //Format key
metadata.to.query(key), metadata.to.query(key),
//Value descriptor //Value descriptor
@@ -214,7 +219,7 @@
return {text, type:"number", min, max, defaulted} return {text, type:"number", min, max, defaulted}
case "array": case "array":
return {text, type:"text", placeholder:example ?? defaulted, defaulted} return {text, type:"text", placeholder:example ?? defaulted, defaulted}
case "string":{ case "string": {
if (Array.isArray(values)) if (Array.isArray(values))
return {text, type:"select", values, defaulted} return {text, type:"select", values, defaulted}
return {text, type:"text", placeholder:example ?? defaulted, defaulted} return {text, type:"text", placeholder:example ?? defaulted, defaulted}
@@ -225,7 +230,8 @@
return null return null
} }
})(), })(),
]).filter(([key, value]) => (value)&&(key !== name))) ]).filter(([key, value]) => (value) && (key !== name)),
)
} }
//Readme metadata //Readme metadata
@@ -248,10 +254,10 @@
logger(`metrics/metadata > failed to load plugin ${name}: ${error}`) logger(`metrics/metadata > failed to load plugin ${name}: ${error}`)
return null return null
} }
} }
/**Metadata extractor for templates */ /**Metadata extractor for templates */
metadata.template = async function({__templates, name, plugins, logger}) { metadata.template = async function({__templates, name, plugins, logger}) {
try { try {
//Load meta descriptor //Load meta descriptor
const raw = fs.existsSync(path.join(__templates, name, "metadata.yml")) ? `${await fs.promises.readFile(path.join(__templates, name, "metadata.yml"), "utf-8")}` : "" const raw = fs.existsSync(path.join(__templates, name, "metadata.yml")) ? `${await fs.promises.readFile(path.join(__templates, name, "metadata.yml"), "utf-8")}` : ""
@@ -261,7 +267,7 @@
//Compatibility //Compatibility
const partials = path.join(__templates, name, "partials") const partials = path.join(__templates, name, "partials")
const compatibility = Object.fromEntries(Object.entries(plugins).map(([key]) => [key, false])) const compatibility = Object.fromEntries(Object.entries(plugins).map(([key]) => [key, false]))
if ((fs.existsSync(partials))&&((await fs.promises.lstat(partials)).isDirectory())) { if ((fs.existsSync(partials)) && ((await fs.promises.lstat(partials)).isDirectory())) {
for (let plugin of await fs.promises.readdir(partials)) { for (let plugin of await fs.promises.readdir(partials)) {
plugin = plugin.match(/(?<plugin>^[\s\S]+(?=[.]ejs$))/)?.groups?.plugin ?? null plugin = plugin.match(/(?<plugin>^[\s\S]+(?=[.]ejs$))/)?.groups?.plugin ?? null
if (plugin in compatibility) if (plugin in compatibility)
@@ -283,11 +289,11 @@
//Support check //Support check
if (account !== "bypass") { if (account !== "bypass") {
const context = q.repo ? "repository" : account const context = q.repo ? "repository" : account
if ((Array.isArray(this.supports))&&(!this.supports.includes(context))) if ((Array.isArray(this.supports)) && (!this.supports.includes(context)))
throw new Error(`not supported for: ${context}`) throw new Error(`not supported for: ${context}`)
} }
//Format check //Format check
if ((format)&&(Array.isArray(this.formats))&&(!this.formats.includes(format))) if ((format) && (Array.isArray(this.formats)) && (!this.formats.includes(format)))
throw new Error(`not supported for: ${format}`) throw new Error(`not supported for: ${format}`)
}, },
} }
@@ -296,12 +302,12 @@
logger(`metrics/metadata > failed to load template ${name}: ${error}`) logger(`metrics/metadata > failed to load template ${name}: ${error}`)
return null return null
} }
} }
/**Metadata converters */ /**Metadata converters */
metadata.to = { metadata.to = {
query(key, {name = null} = {}) { query(key, {name = null} = {}) {
key = key.replace(/^plugin_/, "").replace(/_/g, ".") key = key.replace(/^plugin_/, "").replace(/_/g, ".")
return name ? key.replace(new RegExp(`^(${name}.)`, "g"), "") : key return name ? key.replace(new RegExp(`^(${name}.)`, "g"), "") : key
}, },
} }

View File

@@ -1,20 +1,19 @@
//Imports //Imports
import fs from "fs" import OctokitRest from "@octokit/rest"
import metadata from "./metadata.mjs" import processes from "child_process"
import path from "path" import fs from "fs"
import processes from "child_process" import yaml from "js-yaml"
import util from "util" import path from "path"
import url from "url" import url from "url"
import yaml from "js-yaml" import util from "util"
import OctokitRest from "@octokit/rest" import metadata from "./metadata.mjs"
//Templates and plugins //Templates and plugins
const Templates = {} const Templates = {}
const Plugins = {} const Plugins = {}
/**Setup */ /**Setup */
export default async function({log = true, nosettings = false, community = {}} = {}) { export default async function({log = true, nosettings = false, community = {}} = {}) {
//Paths //Paths
const __metrics = path.join(path.dirname(url.fileURLToPath(import.meta.url)), "../../..") const __metrics = path.join(path.dirname(url.fileURLToPath(import.meta.url)), "../../..")
const __statics = path.join(__metrics, "source/app/web/statics") const __statics = path.join(__metrics, "source/app/web/statics")
@@ -52,6 +51,8 @@
} }
else else
logger("metrics/setup > load settings.json > (missing)") logger("metrics/setup > load settings.json > (missing)")
if (!conf.settings.templates) if (!conf.settings.templates)
conf.settings.templates = {default:"classic", enabled:[]} conf.settings.templates = {default:"classic", enabled:[]}
if (!conf.settings.plugins) if (!conf.settings.plugins)
@@ -67,11 +68,11 @@
logger("metrics/setup > load package.json > success") logger("metrics/setup > load package.json > success")
//Load community templates //Load community templates
if ((typeof conf.settings.community.templates === "string")&&(conf.settings.community.templates.length)) { if ((typeof conf.settings.community.templates === "string") && (conf.settings.community.templates.length)) {
logger("metrics/setup > parsing community templates list") logger("metrics/setup > parsing community templates list")
conf.settings.community.templates = [...new Set([...decodeURIComponent(conf.settings.community.templates).split(",").map(v => v.trim().toLocaleLowerCase()).filter(v => v)])] conf.settings.community.templates = [...new Set([...decodeURIComponent(conf.settings.community.templates).split(",").map(v => v.trim().toLocaleLowerCase()).filter(v => v)])]
} }
if ((Array.isArray(conf.settings.community.templates))&&(conf.settings.community.templates.length)) { if ((Array.isArray(conf.settings.community.templates)) && (conf.settings.community.templates.length)) {
//Clean remote repository //Clean remote repository
logger(`metrics/setup > ${conf.settings.community.templates.length} community templates to install`) logger(`metrics/setup > ${conf.settings.community.templates.length} community templates to install`)
await fs.promises.rmdir(path.join(__templates, ".community"), {recursive:true}) await fs.promises.rmdir(path.join(__templates, ".community"), {recursive:true})
@@ -104,10 +105,13 @@
} }
else else
logger(`metrics/setup > @${name} could not extends ${inherit} as it does not exist`) logger(`metrics/setup > @${name} could not extends ${inherit} as it does not exist`)
} }
} }
else else
logger(`metrics/setup > @${name}/template.mjs does not exist`) logger(`metrics/setup > @${name}/template.mjs does not exist`)
//Clean remote repository //Clean remote repository
logger(`metrics/setup > clean ${repo}@${branch}`) logger(`metrics/setup > clean ${repo}@${branch}`)
await fs.promises.rmdir(path.join(__templates, ".community"), {recursive:true}) await fs.promises.rmdir(path.join(__templates, ".community"), {recursive:true})
@@ -122,11 +126,12 @@
else else
logger("metrics/setup > no community templates to install") logger("metrics/setup > no community templates to install")
//Load templates //Load templates
for (const name of await fs.promises.readdir(__templates)) { for (const name of await fs.promises.readdir(__templates)) {
//Search for templates //Search for templates
const directory = path.join(__templates, name) const directory = path.join(__templates, name)
if ((!(await fs.promises.lstat(directory)).isDirectory())||(!fs.existsSync(path.join(directory, "partials/_.json")))) if ((!(await fs.promises.lstat(directory)).isDirectory()) || (!fs.existsSync(path.join(directory, "partials/_.json"))))
continue continue
logger(`metrics/setup > load template [${name}]`) logger(`metrics/setup > load template [${name}]`)
//Cache templates files //Cache templates files
@@ -136,7 +141,7 @@
conf.templates[name] = {image, style, fonts, partials, views:[directory]} conf.templates[name] = {image, style, fonts, partials, views:[directory]}
//Cache templates scripts //Cache templates scripts
Templates[name] = await (async() => { Templates[name] = await (async () => {
const template = path.join(directory, "template.mjs") const template = path.join(directory, "template.mjs")
const fallback = path.join(__templates, "classic", "template.mjs") const fallback = path.join(__templates, "classic", "template.mjs")
return (await import(url.pathToFileURL(fs.existsSync(template) ? template : fallback).href)).default return (await import(url.pathToFileURL(fs.existsSync(template) ? template : fallback).href)).default
@@ -201,7 +206,8 @@
for (const [key, value] of Object.entries(vars)) for (const [key, value] of Object.entries(vars))
queried = queried.replace(new RegExp(`[$]${key}`, "g"), value) queried = queried.replace(new RegExp(`[$]${key}`, "g"), value)
return queried return queried
}) }
)
} }
} }
@@ -220,12 +226,13 @@
} }
//Set no token property //Set no token property
Object.defineProperty(conf.settings, "notoken", {get() { Object.defineProperty(conf.settings, "notoken", {
get() {
return conf.settings.token === "NOT_NEEDED" return conf.settings.token === "NOT_NEEDED"
}}) },
})
//Conf //Conf
logger("metrics/setup > setup > success") logger("metrics/setup > setup > success")
return {Templates, Plugins, conf} return {Templates, Plugins, conf}
}
}

View File

@@ -1,37 +1,37 @@
//Imports //Imports
import fs from "fs/promises" import fs from "fs/promises"
import fss from "fs" import prism_lang from "prismjs/components/index.js"
import os from "os" import axios from "axios"
import paths from "path" import processes from "child_process"
import url from "url" import fss from "fs"
import util from "util" import GIFEncoder from "gifencoder"
import processes from "child_process" import jimp from "jimp"
import axios from "axios" import marked from "marked"
import _puppeteer from "puppeteer" import nodechartist from "node-chartist"
import git from "simple-git" import opengraph from "open-graph-scraper"
import twemojis from "twemoji-parser" import os from "os"
import jimp from "jimp" import paths from "path"
import opengraph from "open-graph-scraper" import PNG from "png-js"
import rss from "rss-parser" import prism from "prismjs"
import nodechartist from "node-chartist" import _puppeteer from "puppeteer"
import GIFEncoder from "gifencoder" import rss from "rss-parser"
import PNG from "png-js" import htmlsanitize from "sanitize-html"
import marked from "marked" import git from "simple-git"
import htmlsanitize from "sanitize-html" import twemojis from "twemoji-parser"
import prism from "prismjs" import url from "url"
import prism_lang from "prismjs/components/index.js" import util from "util"
prism_lang() prism_lang()
//Exports //Exports
export {fs, os, paths, url, util, processes, axios, git, opengraph, jimp, rss} export {axios, fs, git, jimp, opengraph, os, paths, processes, rss, url, util}
/**Returns module __dirname */ /**Returns module __dirname */
export function __module(module) { export function __module(module) {
return paths.join(paths.dirname(url.fileURLToPath(module))) return paths.join(paths.dirname(url.fileURLToPath(module)))
} }
/**Puppeteer instantier */ /**Puppeteer instantier */
export const puppeteer = { export const puppeteer = {
async launch() { async launch() {
return _puppeteer.launch({ return _puppeteer.launch({
headless:this.headless, headless:this.headless,
@@ -41,95 +41,97 @@
}) })
}, },
headless:true, headless:true,
} }
/**Plural formatter */ /**Plural formatter */
export function s(value, end = "") { export function s(value, end = "") {
return value !== 1 ? {y:"ies", "":"s"}[end] : end return value !== 1 ? {y:"ies", "":"s"}[end] : end
} }
/**Formatter */ /**Formatter */
export function format(n, {sign = false, unit = true, fixed} = {}) { export function format(n, {sign = false, unit = true, fixed} = {}) {
if (unit) { if (unit) {
for (const {u, v} of [{u:"b", v:10**9}, {u:"m", v:10**6}, {u:"k", v:10**3}]) { for (const {u, v} of [{u:"b", v:10 ** 9}, {u:"m", v:10 ** 6}, {u:"k", v:10 ** 3}]) {
if (n/v >= 1) if (n / v >= 1)
return `${(sign)&&(n > 0) ? "+" : ""}${(n/v).toFixed(fixed ?? 2).substr(0, 4).replace(/[.]0*$/, "")}${u}` return `${(sign) && (n > 0) ? "+" : ""}${(n / v).toFixed(fixed ?? 2).substr(0, 4).replace(/[.]0*$/, "")}${u}`
} }
} }
return `${(sign)&&(n > 0) ? "+" : ""}${fixed ? n.toFixed(fixed) : n}` return `${(sign) && (n > 0) ? "+" : ""}${fixed ? n.toFixed(fixed) : n}`
} }
/**Bytes formatter */ /**Bytes formatter */
export function bytes(n) { export function bytes(n) {
for (const {u, v} of [{u:"E", v:10**18}, {u:"P", v:10**15}, {u:"T", v:10**12}, {u:"G", v:10**9}, {u:"M", v:10**6}, {u:"k", v:10**3}]) { for (const {u, v} of [{u:"E", v:10 ** 18}, {u:"P", v:10 ** 15}, {u:"T", v:10 ** 12}, {u:"G", v:10 ** 9}, {u:"M", v:10 ** 6}, {u:"k", v:10 ** 3}]) {
if (n/v >= 1) if (n / v >= 1)
return `${(n/v).toFixed(2).substr(0, 4).replace(/[.]0*$/, "")} ${u}B` return `${(n / v).toFixed(2).substr(0, 4).replace(/[.]0*$/, "")} ${u}B`
} }
return `${n} byte${n > 1 ? "s" : ""}` return `${n} byte${n > 1 ? "s" : ""}`
} }
format.bytes = bytes format.bytes = bytes
/**Percentage formatter */ /**Percentage formatter */
export function percentage(n, {rescale = true} = {}) { export function percentage(n, {rescale = true} = {}) {
return `${(n*(rescale ? 100 : 1)).toFixed(2) return `${
(n * (rescale ? 100 : 1)).toFixed(2)
.replace(/(?<=[.])(?<decimal>[1-9]*)0+$/, "$<decimal>") .replace(/(?<=[.])(?<decimal>[1-9]*)0+$/, "$<decimal>")
.replace(/[.]$/, "")}%` .replace(/[.]$/, "")
} }%`
format.percentage = percentage }
format.percentage = percentage
/**Text ellipsis formatter */ /**Text ellipsis formatter */
export function ellipsis(text, {length = 20} = {}) { export function ellipsis(text, {length = 20} = {}) {
text = `${text}` text = `${text}`
if (text.length < length) if (text.length < length)
return text return text
return `${text.substring(0, length)}` return `${text.substring(0, length)}`
} }
format.ellipsis = ellipsis format.ellipsis = ellipsis
/**Date formatter */ /**Date formatter */
export function date(string, options) { export function date(string, options) {
return new Intl.DateTimeFormat("en-GB", options).format(new Date(string)) return new Intl.DateTimeFormat("en-GB", options).format(new Date(string))
} }
format.date = date format.date = date
/**Array shuffler */ /**Array shuffler */
export function shuffle(array) { export function shuffle(array) {
for (let i = array.length-1; i > 0; i--) { for (let i = array.length - 1; i > 0; i--) {
const j = Math.floor(Math.random()*(i+1)) const j = Math.floor(Math.random() * (i + 1))
;[array[i], array[j]] = [array[j], array[i]] ;[array[i], array[j]] = [array[j], array[i]]
} }
return array return array
} }
/**Escape html */ /**Escape html */
export function htmlescape(string, u = {"&":true, "<":true, ">":true, '"':true, "'":true}) { export function htmlescape(string, u = {"&":true, "<":true, ">":true, '"':true, "'":true}) {
return string return string
.replace(/&(?!(?:amp|lt|gt|quot|apos);)/g, u["&"] ? "&amp;" : "&") .replace(/&(?!(?:amp|lt|gt|quot|apos);)/g, u["&"] ? "&amp;" : "&")
.replace(/</g, u["<"] ? "&lt;" : "<") .replace(/</g, u["<"] ? "&lt;" : "<")
.replace(/>/g, u[">"] ? "&gt;" : ">") .replace(/>/g, u[">"] ? "&gt;" : ">")
.replace(/"/g, u['"'] ? "&quot;" : '"') .replace(/"/g, u['"'] ? "&quot;" : '"')
.replace(/'/g, u["'"] ? "&apos;" : "'") .replace(/'/g, u["'"] ? "&apos;" : "'")
} }
/**Unescape html */ /**Unescape html */
export function htmlunescape(string, u = {"&":true, "<":true, ">":true, '"':true, "'":true}) { export function htmlunescape(string, u = {"&":true, "<":true, ">":true, '"':true, "'":true}) {
return string return string
.replace(/&lt;/g, u["<"] ? "<" : "&lt;") .replace(/&lt;/g, u["<"] ? "<" : "&lt;")
.replace(/&gt;/g, u[">"] ? ">" : "&gt;") .replace(/&gt;/g, u[">"] ? ">" : "&gt;")
.replace(/&quot;/g, u['"'] ? '"' : "&quot;") .replace(/&quot;/g, u['"'] ? '"' : "&quot;")
.replace(/&(?:apos|#39);/g, u["'"] ? "'" : "&apos;") .replace(/&(?:apos|#39);/g, u["'"] ? "'" : "&apos;")
.replace(/&amp;/g, u["&"] ? "&" : "&amp;") .replace(/&amp;/g, u["&"] ? "&" : "&amp;")
} }
/**Chartist */ /**Chartist */
export async function chartist() { export async function chartist() {
const css = `<style>${await fs.readFile(paths.join(__module(import.meta.url), "../../../node_modules", "node-chartist/dist/main.css")).catch(_ => "")}</style>` const css = `<style>${await fs.readFile(paths.join(__module(import.meta.url), "../../../node_modules", "node-chartist/dist/main.css")).catch(_ => "")}</style>`
return (await nodechartist(...arguments)) return (await nodechartist(...arguments))
.replace(/class="ct-chart-line">/, `class="ct-chart-line">${css}`) .replace(/class="ct-chart-line">/, `class="ct-chart-line">${css}`)
} }
/**Run command */ /**Run command */
export async function run(command, options, {prefixed = true} = {}) { export async function run(command, options, {prefixed = true} = {}) {
const prefix = {win32:"wsl"}[process.platform] ?? "" const prefix = {win32:"wsl"}[process.platform] ?? ""
command = `${prefixed ? prefix : ""} ${command}`.trim() command = `${prefixed ? prefix : ""} ${command}`.trim()
return new Promise((solve, reject) => { return new Promise((solve, reject) => {
@@ -145,10 +147,10 @@
return code === 0 ? solve(stdout) : reject(stderr) return code === 0 ? solve(stdout) : reject(stderr)
}) })
}) })
} }
/**Check command existance */ /**Check command existance */
export async function which(command) { export async function which(command) {
try { try {
console.debug(`metrics/command > checking existence of ${command}`) console.debug(`metrics/command > checking existence of ${command}`)
await run(`which ${command}`) await run(`which ${command}`)
@@ -158,10 +160,10 @@
console.debug(`metrics/command > checking existence of ${command} > failed`) console.debug(`metrics/command > checking existence of ${command} > failed`)
} }
return false return false
} }
/**Markdown-html sanitizer-interpreter */ /**Markdown-html sanitizer-interpreter */
export async function markdown(text, {mode = "inline", codelines = Infinity} = {}) { export async function markdown(text, {mode = "inline", codelines = Infinity} = {}) {
//Sanitize user input once to prevent injections and parse into markdown //Sanitize user input once to prevent injections and parse into markdown
let rendered = await marked(htmlunescape(htmlsanitize(text)), { let rendered = await marked(htmlunescape(htmlsanitize(text)), {
highlight(code, lang) { highlight(code, lang) {
@@ -172,14 +174,17 @@
}) })
//Markdown mode //Markdown mode
switch (mode) { switch (mode) {
case "inline":{ case "inline": {
rendered = htmlsanitize(htmlsanitize(rendered, { rendered = htmlsanitize(
htmlsanitize(rendered, {
allowedTags:["h1", "h2", "h3", "h4", "h5", "h6", "br", "blockquote", "code", "span"], allowedTags:["h1", "h2", "h3", "h4", "h5", "h6", "br", "blockquote", "code", "span"],
allowedAttributes:{code:["class"], span:["class"]}, allowedAttributes:{code:["class"], span:["class"]},
}), { }),
{
allowedAttributes:{code:["class"], span:["class"]}, allowedAttributes:{code:["class"], span:["class"]},
transformTags:{h1:"b", h2:"b", h3:"b", h4:"b", h5:"b", h6:"b", blockquote:"i"}, transformTags:{h1:"b", h2:"b", h3:"b", h4:"b", h5:"b", h6:"b", blockquote:"i"},
}) },
)
break break
} }
default: default:
@@ -188,15 +193,15 @@
//Trim code snippets //Trim code snippets
rendered = rendered.replace(/(?<open><code[\s\S]*?>)(?<code>[\s\S]*?)(?<close><\/code>)/g, (m, open, code, close) => { //eslint-disable-line max-params rendered = rendered.replace(/(?<open><code[\s\S]*?>)(?<code>[\s\S]*?)(?<close><\/code>)/g, (m, open, code, close) => { //eslint-disable-line max-params
const lines = code.trim().split("\n") const lines = code.trim().split("\n")
if ((lines.length > 1)&&(!/class="[\s\S]*"/.test(open))) if ((lines.length > 1) && (!/class="[\s\S]*"/.test(open)))
open = open.replace(/>/g, ' class="language-multiline">') open = open.replace(/>/g, ' class="language-multiline">')
return `${open}${lines.slice(0, codelines).join("\n")}${lines.length > codelines ? `\n<span class="token trimmed">(${lines.length-codelines} more ${lines.length-codelines === 1 ? "line was" : "lines were"} trimmed)</span>` : ""}${close}` return `${open}${lines.slice(0, codelines).join("\n")}${lines.length > codelines ? `\n<span class="token trimmed">(${lines.length - codelines} more ${lines.length - codelines === 1 ? "line was" : "lines were"} trimmed)</span>` : ""}${close}`
}) })
return rendered return rendered
} }
/**Check GitHub filter against object */ /**Check GitHub filter against object */
export function ghfilter(text, object) { export function ghfilter(text, object) {
console.debug(`metrics/svg/ghquery > checking ${text} against ${JSON.stringify(object)}`) console.debug(`metrics/svg/ghquery > checking ${text} against ${JSON.stringify(object)}`)
const result = text.split(" ").map(x => x.trim()).filter(x => x).map(criteria => { const result = text.split(" ").map(x => x.trim()).filter(x => x).map(criteria => {
const [key, filters] = criteria.split(":") const [key, filters] = criteria.split(":")
@@ -210,34 +215,34 @@
return value < Number(filter.substring(1)) return value < Number(filter.substring(1))
case /^\d+$/.test(filter): case /^\d+$/.test(filter):
return value === Number(filter) return value === Number(filter)
case /^\d+..\d+$/.test(filter):{ case /^\d+..\d+$/.test(filter): {
const [a, b] = filter.split("..").map(Number) const [a, b] = filter.split("..").map(Number)
return (value >= a)&&(value <= b) return (value >= a) && (value <= b)
} }
default: default:
return false return false
} }
}).reduce((a, b) => a||b, false) }).reduce((a, b) => a || b, false)
}).reduce((a, b) => a&&b, true) }).reduce((a, b) => a && b, true)
console.debug(`metrics/svg/ghquery > ${result ? "matching" : "not matching"}`) console.debug(`metrics/svg/ghquery > ${result ? "matching" : "not matching"}`)
return result return result
} }
/**Image to base64 */ /**Image to base64 */
export async function imgb64(image, {width, height, fallback = true} = {}) { export async function imgb64(image, {width, height, fallback = true} = {}) {
//Undefined image //Undefined image
if (!image) if (!image)
return fallback ? "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mOcOnfpfwAGfgLYttYINwAAAABJRU5ErkJggg==" : null return fallback ? "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mOcOnfpfwAGfgLYttYINwAAAABJRU5ErkJggg==" : null
//Load image //Load image
image = await jimp.read(image) image = await jimp.read(image)
//Resize image //Resize image
if ((width)&&(height)) if ((width) && (height))
image = image.resize(width, height) image = image.resize(width, height)
return image.getBase64Async(jimp.AUTO) return image.getBase64Async(jimp.AUTO)
} }
/**SVG utils */ /**SVG utils */
export const svg = { export const svg = {
/**Render as pdf */ /**Render as pdf */
async pdf(rendered, {paddings = "", style = "", twemojis = false, gemojis = false, rest = null} = {}) { async pdf(rendered, {paddings = "", style = "", twemojis = false, gemojis = false, rest = null} = {}) {
//Instantiate browser if needed //Instantiate browser if needed
@@ -248,7 +253,7 @@
//Additional transformations //Additional transformations
if (twemojis) if (twemojis)
rendered = await svg.twemojis(rendered, {custom:false}) rendered = await svg.twemojis(rendered, {custom:false})
if ((gemojis)&&(rest)) if ((gemojis) && (rest))
rendered = await svg.gemojis(rendered, {rest}) rendered = await svg.gemojis(rendered, {rest})
rendered = marked(rendered) rendered = marked(rendered)
//Render through browser and print pdf //Render through browser and print pdf
@@ -257,11 +262,13 @@
page.on("console", ({_text:text}) => console.debug(`metrics/svg/pdf > puppeteer > ${text}`)) page.on("console", ({_text:text}) => console.debug(`metrics/svg/pdf > puppeteer > ${text}`))
await page.setContent(`<main class="markdown-body">${rendered}</main>`, {waitUntil:["load", "domcontentloaded", "networkidle2"]}) await page.setContent(`<main class="markdown-body">${rendered}</main>`, {waitUntil:["load", "domcontentloaded", "networkidle2"]})
console.debug("metrics/svg/pdf > loaded svg successfully") console.debug("metrics/svg/pdf > loaded svg successfully")
await page.addStyleTag({content:` await page.addStyleTag({
content:`
main { margin: ${(Array.isArray(paddings) ? paddings : paddings.split(",")).join(" ")}; } main { margin: ${(Array.isArray(paddings) ? paddings : paddings.split(",")).join(" ")}; }
main svg { height: 1em; width: 1em; } main svg { height: 1em; width: 1em; }
${await fs.readFile(paths.join(__module(import.meta.url), "../../../node_modules", "@primer/css/dist/markdown.css")).catch(_ => "")}${style} ${await fs.readFile(paths.join(__module(import.meta.url), "../../../node_modules", "@primer/css/dist/markdown.css")).catch(_ => "")}${style}
`}) `,
})
rendered = await page.pdf() rendered = await page.pdf()
//Result //Result
await page.close() await page.close()
@@ -276,7 +283,7 @@
console.debug(`metrics/svg/resize > started ${await svg.resize.browser.version()}`) console.debug(`metrics/svg/resize > started ${await svg.resize.browser.version()}`)
} }
//Format padding //Format padding
const [pw = 1, ph] = (Array.isArray(paddings) ? paddings : `${paddings}`.split(",").map(x => x.trim())).map(padding => `${padding}`.substring(0, padding.length-1)).map(value => 1+Number(value)/100) const [pw = 1, ph] = (Array.isArray(paddings) ? paddings : `${paddings}`.split(",").map(x => x.trim())).map(padding => `${padding}`.substring(0, padding.length - 1)).map(value => 1 + Number(value) / 100)
const padding = {width:pw, height:(ph ?? pw)} const padding = {width:pw, height:(ph ?? pw)}
if (!Number.isFinite(padding.width)) if (!Number.isFinite(padding.width))
padding.width = 1 padding.width = 1
@@ -304,8 +311,8 @@
//Get bounds and resize //Get bounds and resize
let {y:height, width} = document.querySelector("svg #metrics-end").getBoundingClientRect() let {y:height, width} = document.querySelector("svg #metrics-end").getBoundingClientRect()
console.debug(`bounds width=${width}, height=${height}`) console.debug(`bounds width=${width}, height=${height}`)
height = Math.ceil(height*padding.height) height = Math.ceil(height * padding.height)
width = Math.ceil(width*padding.width) width = Math.ceil(width * padding.width)
console.debug(`bounds after applying padding width=${width} (*${padding.width}), height=${height} (*${padding.height})`) console.debug(`bounds after applying padding width=${width} (*${padding.width}), height=${height} (*${padding.height})`)
//Resize svg //Resize svg
document.querySelector("svg").setAttribute("height", height) document.querySelector("svg").setAttribute("height", height)
@@ -356,7 +363,7 @@
const emojis = new Map() const emojis = new Map()
try { try {
for (const [emoji, url] of Object.entries((await rest.emojis.get()).data).map(([key, value]) => [`:${key}:`, value])) { for (const [emoji, url] of Object.entries((await rest.emojis.get()).data).map(([key, value]) => [`:${key}:`, value])) {
if (((!emojis.has(emoji)))&&(new RegExp(emoji, "g").test(rendered))) if (((!emojis.has(emoji))) && (new RegExp(emoji, "g").test(rendered)))
emojis.set(emoji, `<img class="gemoji" src="${await imgb64(url)}" height="16" width="16" alt="">`) emojis.set(emoji, `<img class="gemoji" src="${await imgb64(url)}" height="16" width="16" alt="">`)
} }
} }
@@ -369,33 +376,33 @@
rendered = rendered.replace(new RegExp(emoji, "g"), gemoji) rendered = rendered.replace(new RegExp(emoji, "g"), gemoji)
return rendered return rendered
}, },
} }
/**Wait */ /**Wait */
export async function wait(seconds) { export async function wait(seconds) {
await new Promise(solve => setTimeout(solve, seconds*1000)) await new Promise(solve => setTimeout(solve, seconds * 1000))
} }
/**Create record from puppeteer browser */ /**Create record from puppeteer browser */
export async function record({page, width, height, frames, scale = 1, quality = 80, x = 0, y = 0, delay = 150, background = true}) { export async function record({page, width, height, frames, scale = 1, quality = 80, x = 0, y = 0, delay = 150, background = true}) {
//Register images frames //Register images frames
const images = [] const images = []
for (let i = 0; i < frames; i++) { for (let i = 0; i < frames; i++) {
images.push(await page.screenshot({type:"png", clip:{width, height, x, y}, omitBackground:background})) images.push(await page.screenshot({type:"png", clip:{width, height, x, y}, omitBackground:background}))
await wait(delay/1000) await wait(delay / 1000)
if (i%10 === 0) if (i % 10 === 0)
console.debug(`metrics/record > processed ${i}/${frames} frames`) console.debug(`metrics/record > processed ${i}/${frames} frames`)
} }
console.debug(`metrics/record > processed ${frames}/${frames} frames`) console.debug(`metrics/record > processed ${frames}/${frames} frames`)
//Post-processing //Post-processing
console.debug("metrics/record > applying post-processing") console.debug("metrics/record > applying post-processing")
return Promise.all(images.map(async buffer => (await jimp.read(buffer)).scale(scale).quality(quality).getBase64Async("image/png"))) return Promise.all(images.map(async buffer => (await jimp.read(buffer)).scale(scale).quality(quality).getBase64Async("image/png")))
} }
/**Create gif from puppeteer browser*/ /**Create gif from puppeteer browser*/
export async function gif({page, width, height, frames, x = 0, y = 0, repeat = true, delay = 150, quality = 10}) { export async function gif({page, width, height, frames, x = 0, y = 0, repeat = true, delay = 150, quality = 10}) {
//Create temporary stream //Create temporary stream
const path = paths.join(os.tmpdir(), `${Math.round(Math.random()*1000000000)}.gif`) const path = paths.join(os.tmpdir(), `${Math.round(Math.random() * 1000000000)}.gif`)
console.debug(`metrics/puppeteergif > set write stream to "${path}"`) console.debug(`metrics/puppeteergif > set write stream to "${path}"`)
if (fss.existsSync(path)) if (fss.existsSync(path))
await fs.unlink(path) await fs.unlink(path)
@@ -410,7 +417,7 @@
for (let i = 0; i < frames; i++) { for (let i = 0; i < frames; i++) {
const buffer = new PNG(await page.screenshot({clip:{width, height, x, y}})) const buffer = new PNG(await page.screenshot({clip:{width, height, x, y}}))
encoder.addFrame(await new Promise(solve => buffer.decode(pixels => solve(pixels)))) encoder.addFrame(await new Promise(solve => buffer.decode(pixels => solve(pixels))))
if (frames%10 === 0) if (frames % 10 === 0)
console.debug(`metrics/puppeteergif > processed ${i}/${frames} frames`) console.debug(`metrics/puppeteergif > processed ${i}/${frames} frames`)
} }
console.debug(`metrics/puppeteergif > processed ${frames}/${frames} frames`) console.debug(`metrics/puppeteergif > processed ${frames}/${frames} frames`)
@@ -419,4 +426,4 @@
const result = await fs.readFile(path, "base64") const result = await fs.readFile(path, "base64")
await fs.unlink(path) await fs.unlink(path)
return `data:image/gif;base64,${result}` return `data:image/gif;base64,${result}`
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, options, login = faker.internet.userName()}) { export default function({faker, url, options, login = faker.internet.userName()}) {
//Last.fm api //Last.fm api
if (/^https:..ws.audioscrobbler.com.*$/.test(url)) { if (/^https:..ws.audioscrobbler.com.*$/.test(url)) {
//Get recently played tracks //Get recently played tracks
@@ -63,4 +63,4 @@
}) })
} }
} }
} }

View File

@@ -21,8 +21,8 @@ export default function({faker, url}) {
rssi:100, rssi:100,
noise:1, noise:1,
sysTime:new Date(lastInterval).toISOString(), sysTime:new Date(lastInterval).toISOString(),
utcOffset:faker.datatype.number({min:-12, max:14})*60, utcOffset:faker.datatype.number({min:-12, max:14}) * 60,
})), })),
}) })
} }
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, options, login = faker.internet.userName()}) { export default function({faker, url, options, login = faker.internet.userName()}) {
//Tested url //Tested url
const tested = url.match(/&url=(?<tested>.*?)(?:&|$)/)?.groups?.tested ?? faker.internet.url() const tested = url.match(/&url=(?<tested>.*?)(?:&|$)/)?.groups?.tested ?? faker.internet.url()
//Pagespeed api //Pagespeed api
@@ -102,4 +102,4 @@
}) })
} }
} }
} }

View File

@@ -1,9 +1,9 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, options, login = faker.internet.userName()}) { export default function({faker, url, options, login = faker.internet.userName()}) {
//Spotify api //Spotify api
if (/^https:..api.spotify.com.*$/.test(url)) { if (/^https:..api.spotify.com.*$/.test(url)) {
//Get recently played tracks //Get recently played tracks
if (/me.player.recently-played/.test(url)&&(options?.headers?.Authorization === "Bearer MOCKED_TOKEN_ACCESS")) { if (/me.player.recently-played/.test(url) && (options?.headers?.Authorization === "Bearer MOCKED_TOKEN_ACCESS")) {
console.debug(`metrics/compute/mocks > mocking spotify api result > ${url}`) console.debug(`metrics/compute/mocks > mocking spotify api result > ${url}`)
const artist = faker.random.words() const artist = faker.random.words()
const track = faker.random.words(5) const track = faker.random.words(5)
@@ -62,4 +62,4 @@
}) })
} }
} }
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, options, login = faker.internet.userName()}) { export default function({faker, url, options, login = faker.internet.userName()}) {
//Stackoverflow api //Stackoverflow api
if (/^https:..api.stackexchange.com.2.2.*$/.test(url)) { if (/^https:..api.stackexchange.com.2.2.*$/.test(url)) {
//Extract user id //Extract user id
@@ -41,7 +41,7 @@
}) })
} }
//Questions //Questions
if ((/questions[?]site=stackoverflow/.test(url))||(/questions[/][\d;]+[?]site=stackoverflow/.test(url))) { if ((/questions[?]site=stackoverflow/.test(url)) || (/questions[/][\d;]+[?]site=stackoverflow/.test(url))) {
console.debug(`metrics/compute/mocks > mocking stackoverflow api result > ${url}`) console.debug(`metrics/compute/mocks > mocking stackoverflow api result > ${url}`)
return ({ return ({
status:200, status:200,
@@ -71,7 +71,7 @@
}) })
} }
//Answers //Answers
if ((/answers[?]site=stackoverflow/.test(url))||(/answers[/][\d;]+[?]site=stackoverflow/.test(url))) { if ((/answers[?]site=stackoverflow/.test(url)) || (/answers[/][\d;]+[?]site=stackoverflow/.test(url))) {
console.debug(`metrics/compute/mocks > mocking stackoverflow api result > ${url}`) console.debug(`metrics/compute/mocks > mocking stackoverflow api result > ${url}`)
return ({ return ({
status:200, status:200,
@@ -96,4 +96,4 @@
}) })
} }
} }
} }

View File

@@ -1,9 +1,9 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, options, login = faker.internet.userName()}) { export default function({faker, url, options, login = faker.internet.userName()}) {
//Twitter api //Twitter api
if (/^https:..api.twitter.com.*$/.test(url)) { if (/^https:..api.twitter.com.*$/.test(url)) {
//Get user profile //Get user profile
if ((/users.by.username/.test(url))&&(options?.headers?.Authorization === "Bearer MOCKED_TOKEN")) { if ((/users.by.username/.test(url)) && (options?.headers?.Authorization === "Bearer MOCKED_TOKEN")) {
console.debug(`metrics/compute/mocks > mocking twitter api result > ${url}`) console.debug(`metrics/compute/mocks > mocking twitter api result > ${url}`)
const username = url.match(/username[/](?<username>.*?)[?]/)?.groups?.username ?? faker.internet.userName() const username = url.match(/username[/](?<username>.*?)[?]/)?.groups?.username ?? faker.internet.userName()
return ({ return ({
@@ -20,7 +20,7 @@
}) })
} }
//Get recent tweets //Get recent tweets
if ((/tweets.search.recent/.test(url))&&(options?.headers?.Authorization === "Bearer MOCKED_TOKEN")) { if ((/tweets.search.recent/.test(url)) && (options?.headers?.Authorization === "Bearer MOCKED_TOKEN")) {
console.debug(`metrics/compute/mocks > mocking twitter api result > ${url}`) console.debug(`metrics/compute/mocks > mocking twitter api result > ${url}`)
return ({ return ({
status:200, status:200,
@@ -61,4 +61,4 @@
}) })
} }
} }
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, options, login = faker.internet.userName()}) { export default function({faker, url, options, login = faker.internet.userName()}) {
//Wakatime api //Wakatime api
if (/^https:..wakatime.com.api.v1.users..*.stats.*$/.test(url)) { if (/^https:..wakatime.com.api.v1.users..*.stats.*$/.test(url)) {
//Get user profile //Get user profile
@@ -7,18 +7,20 @@
console.debug(`metrics/compute/mocks > mocking wakatime api result > ${url}`) console.debug(`metrics/compute/mocks > mocking wakatime api result > ${url}`)
const stats = array => { const stats = array => {
const elements = [] const elements = []
let results = new Array(4+faker.datatype.number(2)).fill(null).map(_ => ({ let results = new Array(4 + faker.datatype.number(2)).fill(null).map(_ => ({
get digital() { get digital() {
return `${this.hours}:${this.minutes}` return `${this.hours}:${this.minutes}`
}, },
hours:faker.datatype.number(1000), minutes:faker.datatype.number(1000), hours:faker.datatype.number(1000),
minutes:faker.datatype.number(1000),
name:array ? faker.random.arrayElement(array) : faker.random.words(2).replace(/ /g, "-").toLocaleLowerCase(), name:array ? faker.random.arrayElement(array) : faker.random.words(2).replace(/ /g, "-").toLocaleLowerCase(),
percent:0, total_seconds:faker.datatype.number(1000000), percent:0,
total_seconds:faker.datatype.number(1000000),
})) }))
results = results.filter(({name}) => elements.includes(name) ? false : (elements.push(name), true)) results = results.filter(({name}) => elements.includes(name) ? false : (elements.push(name), true))
let percents = 100 let percents = 100
for (const result of results) { for (const result of results) {
result.percent = 1+faker.datatype.number(percents-1) result.percent = 1 + faker.datatype.number(percents - 1)
percents -= result.percent percents -= result.percent
} }
return results return results
@@ -33,8 +35,8 @@
total_seconds:faker.datatype.number(1000000), total_seconds:faker.datatype.number(1000000),
}, },
categories:stats(), categories:stats(),
daily_average:faker.datatype.number(12*60*60), daily_average:faker.datatype.number(12 * 60 * 60),
daily_average_including_other_language:faker.datatype.number(12*60*60), daily_average_including_other_language:faker.datatype.number(12 * 60 * 60),
dependencies:stats(), dependencies:stats(),
editors:stats(["VS Code", "Chrome", "IntelliJ", "PhpStorm", "WebStorm", "Android Studio", "Visual Studio", "Sublime Text", "PyCharm", "Vim", "Atom", "Xcode"]), editors:stats(["VS Code", "Chrome", "IntelliJ", "PhpStorm", "WebStorm", "Android Studio", "Visual Studio", "Sublime Text", "PyCharm", "Vim", "Atom", "Xcode"]),
languages:stats(["JavaScript", "TypeScript", "PHP", "Java", "Python", "Vue.js", "HTML", "C#", "JSON", "Dart", "SCSS", "Kotlin", "JSX", "Go", "Ruby", "YAML"]), languages:stats(["JavaScript", "TypeScript", "PHP", "Java", "Python", "Vue.js", "HTML", "C#", "JSON", "Dart", "SCSS", "Kotlin", "JSX", "Go", "Ruby", "YAML"]),
@@ -49,4 +51,4 @@
}) })
} }
} }
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, options, login = faker.internet.userName()}) { export default function({faker, url, options, login = faker.internet.userName()}) {
//Wakatime api //Wakatime api
if (/^https:..apidojo-yahoo-finance-v1.p.rapidapi.com.stock.v2.*$/.test(url)) { if (/^https:..apidojo-yahoo-finance-v1.p.rapidapi.com.stock.v2.*$/.test(url)) {
//Get company profile //Get company profile
@@ -43,15 +43,15 @@
meta:{ meta:{
currency:"USD", currency:"USD",
symbol:"OCTO", symbol:"OCTO",
regularMarketPrice:faker.datatype.number(10000)/100, regularMarketPrice:faker.datatype.number(10000) / 100,
chartPreviousClose:faker.datatype.number(10000)/100, chartPreviousClose:faker.datatype.number(10000) / 100,
previousClose:faker.datatype.number(10000)/100, previousClose:faker.datatype.number(10000) / 100,
}, },
timestamp:new Array(1000).fill(Date.now()).map((x, i) => x+i*60000), timestamp:new Array(1000).fill(Date.now()).map((x, i) => x + i * 60000),
indicators:{ indicators:{
quote:[ quote:[
{ {
close:new Array(1000).fill(null).map(_ => faker.datatype.number(10000)/100), close:new Array(1000).fill(null).map(_ => faker.datatype.number(10000) / 100),
get low() { get low() {
return this.close return this.close
}, },
@@ -72,4 +72,4 @@
}) })
} }
} }
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, body, login = faker.internet.userName()}) { export default function({faker, url, body, login = faker.internet.userName()}) {
if (/^https:..graphql.anilist.co.*$/.test(url)) { if (/^https:..graphql.anilist.co.*$/.test(url)) {
//Initialization and media generator //Initialization and media generator
const {query} = body const {query} = body
@@ -8,9 +8,9 @@
description:faker.lorem.paragraphs(), description:faker.lorem.paragraphs(),
type, type,
status:faker.random.arrayElement(["FINISHED", "RELEASING", "NOT_YET_RELEASED", "CANCELLED", "HIATUS"]), status:faker.random.arrayElement(["FINISHED", "RELEASING", "NOT_YET_RELEASED", "CANCELLED", "HIATUS"]),
episodes:100+faker.datatype.number(100), episodes:100 + faker.datatype.number(100),
volumes:faker.datatype.number(100), volumes:faker.datatype.number(100),
chapters:100+faker.datatype.number(1000), chapters:100 + faker.datatype.number(1000),
averageScore:faker.datatype.number(100), averageScore:faker.datatype.number(100),
countryOfOrigin:"JP", countryOfOrigin:"JP",
genres:new Array(6).fill(null).map(_ => faker.lorem.word()), genres:new Array(6).fill(null).map(_ => faker.lorem.word()),
@@ -57,7 +57,7 @@
User:{ User:{
favourites:{ favourites:{
characters:{ characters:{
nodes:new Array(2+faker.datatype.number(16)).fill(null).map(_ => ({ nodes:new Array(2 + faker.datatype.number(16)).fill(null).map(_ => ({
name:{full:faker.name.findName(), native:faker.name.findName()}, name:{full:faker.name.findName(), native:faker.name.findName()},
image:{medium:null}, image:{medium:null},
})), })),
@@ -118,6 +118,5 @@
}, },
}) })
} }
}
} }
}

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, url, body, login = faker.internet.userName()}) { export default function({faker, url, body, login = faker.internet.userName()}) {
if (/^https:..api.hashnode.com.*$/.test(url)) { if (/^https:..api.hashnode.com.*$/.test(url)) {
console.debug(`metrics/compute/mocks > mocking hashnode result > ${url}`) console.debug(`metrics/compute/mocks > mocking hashnode result > ${url}`)
return ({ return ({
@@ -20,4 +20,4 @@
}, },
}) })
} }
} }

View File

@@ -1,12 +1,12 @@
//Imports //Imports
import urls from "url" import urls from "url"
/**Mocked data */ /**Mocked data */
export default function({faker, url, body, login = faker.internet.userName()}) { export default function({faker, url, body, login = faker.internet.userName()}) {
if (/^https:..accounts.spotify.com.api.token.*$/.test(url)) { if (/^https:..accounts.spotify.com.api.token.*$/.test(url)) {
//Access token generator //Access token generator
const params = new urls.URLSearchParams(body) const params = new urls.URLSearchParams(body)
if ((params.get("grant_type") === "refresh_token")&&(params.get("client_id") === "MOCKED_CLIENT_ID")&&(params.get("client_secret") === "MOCKED_CLIENT_SECRET")&&(params.get("refresh_token") === "MOCKED_REFRESH_TOKEN")) { if ((params.get("grant_type") === "refresh_token") && (params.get("client_id") === "MOCKED_CLIENT_ID") && (params.get("client_secret") === "MOCKED_CLIENT_SECRET") && (params.get("refresh_token") === "MOCKED_REFRESH_TOKEN")) {
console.debug(`metrics/compute/mocks > mocking spotify api result > ${url}`) console.debug(`metrics/compute/mocks > mocking spotify api result > ${url}`)
return ({ return ({
status:200, status:200,
@@ -19,4 +19,4 @@
}) })
} }
} }
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > achievements/metrics") console.debug("metrics/compute/mocks > mocking graphql api result > achievements/metrics")
return ({ return ({
user:{ user:{
@@ -64,4 +64,4 @@
sponsorshipsAsSponsor:{totalCount:faker.datatype.number(100)}, sponsorshipsAsSponsor:{totalCount:faker.datatype.number(100)},
}, },
}) })
} }

View File

@@ -1,8 +1,8 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > achievements/metrics") console.debug("metrics/compute/mocks > mocking graphql api result > achievements/metrics")
return ({ return ({
repository:{viewerHasStarred:faker.datatype.boolean()}, repository:{viewerHasStarred:faker.datatype.boolean()},
viewer:{login}, viewer:{login},
}) })
} }

View File

@@ -1,8 +1,8 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > achievements/octocat") console.debug("metrics/compute/mocks > mocking graphql api result > achievements/octocat")
return ({ return ({
user:{viewerIsFollowing:faker.datatype.boolean()}, user:{viewerIsFollowing:faker.datatype.boolean()},
viewer:{login}, viewer:{login},
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > achievements/organizations") console.debug("metrics/compute/mocks > mocking graphql api result > achievements/organizations")
return ({ return ({
organization:{ organization:{
@@ -30,4 +30,4 @@
sponsorshipsAsSponsor:{totalCount:faker.datatype.number(100)}, sponsorshipsAsSponsor:{totalCount:faker.datatype.number(100)},
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > achievements/ranking") console.debug("metrics/compute/mocks > mocking graphql api result > achievements/ranking")
return ({ return ({
repo_rank:{repositoryCount:faker.datatype.number(100000)}, repo_rank:{repositoryCount:faker.datatype.number(100000)},
@@ -9,4 +9,4 @@
repo_total:{repositoryCount:faker.datatype.number(100000)}, repo_total:{repositoryCount:faker.datatype.number(100000)},
user_total:{userCount:faker.datatype.number(100000)}, user_total:{userCount:faker.datatype.number(100000)},
}) })
} }

View File

@@ -1,14 +1,16 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > base/repositories") console.debug("metrics/compute/mocks > mocking graphql api result > base/repositories")
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query)
? ({
user:{ user:{
repositories:{ repositories:{
edges:[], edges:[],
nodes:[], nodes:[],
}, },
}, },
}) : ({ })
: ({
user:{ user:{
repositories:{ repositories:{
edges:[ edges:[
@@ -46,4 +48,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > base/repository") console.debug("metrics/compute/mocks > mocking graphql api result > base/repository")
return ({ return ({
user:{ user:{
@@ -7,7 +7,7 @@
name:"metrics", name:"metrics",
owner:{login}, owner:{login},
createdAt:new Date().toISOString(), createdAt:new Date().toISOString(),
diskUsage:Math.floor(Math.random()*10000), diskUsage:Math.floor(Math.random() * 10000),
homepageUrl:faker.internet.url(), homepageUrl:faker.internet.url(),
watchers:{totalCount:faker.datatype.number(1000)}, watchers:{totalCount:faker.datatype.number(1000)},
stargazers:{totalCount:faker.datatype.number(10000)}, stargazers:{totalCount:faker.datatype.number(10000)},
@@ -33,4 +33,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > base/user") console.debug("metrics/compute/mocks > mocking graphql api result > base/user")
return ({ return ({
user:{ user:{
@@ -65,4 +65,4 @@
organizations:{totalCount:faker.datatype.number(10)}, organizations:{totalCount:faker.datatype.number(10)},
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > contributors/commit") console.debug("metrics/compute/mocks > mocking graphql api result > contributors/commit")
return ({ return ({
repository:{ repository:{
@@ -11,4 +11,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > followup/user") console.debug("metrics/compute/mocks > mocking graphql api result > followup/user")
return ({ return ({
user:{ user:{
@@ -10,4 +10,4 @@
pr_merged:{totalCount:faker.datatype.number(100)}, pr_merged:{totalCount:faker.datatype.number(100)},
}, },
}) })
} }

View File

@@ -1,14 +1,16 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > gists/default") console.debug("metrics/compute/mocks > mocking graphql api result > gists/default")
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query)
? ({
user:{ user:{
gists:{ gists:{
edges:[], edges:[],
nodes:[], nodes:[],
}, },
}, },
}) : ({ })
: ({
user:{ user:{
gists:{ gists:{
edges:[ edges:[
@@ -36,4 +38,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,9 +1,9 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > introduction/organization") console.debug("metrics/compute/mocks > mocking graphql api result > introduction/organization")
return ({ return ({
organization:{ organization:{
description:faker.lorem.sentences(), description:faker.lorem.sentences(),
}, },
}) })
} }

View File

@@ -1,9 +1,9 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > introduction/repository") console.debug("metrics/compute/mocks > mocking graphql api result > introduction/repository")
return ({ return ({
repository:{ repository:{
description:faker.lorem.sentences(), description:faker.lorem.sentences(),
}, },
}) })
} }

View File

@@ -1,9 +1,9 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > introduction/user") console.debug("metrics/compute/mocks > mocking graphql api result > introduction/user")
return ({ return ({
user:{ user:{
bio:faker.lorem.sentences(), bio:faker.lorem.sentences(),
}, },
}) })
} }

View File

@@ -1,22 +1,22 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > isocalendar/calendar") console.debug("metrics/compute/mocks > mocking graphql api result > isocalendar/calendar")
//Generate calendar //Generate calendar
const date = new Date(query.match(/from: "(?<date>\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z)"/)?.groups?.date) const date = new Date(query.match(/from: "(?<date>\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z)"/)?.groups?.date)
const to = new Date(query.match(/to: "(?<date>\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z)"/)?.groups?.date) const to = new Date(query.match(/to: "(?<date>\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}.\d{3}Z)"/)?.groups?.date)
const weeks = [] const weeks = []
let contributionDays = [] let contributionDays = []
for (; date <= to; date.setDate(date.getDate()+1)) { for (; date <= to; date.setDate(date.getDate() + 1)) {
//Create new week on sunday //Create new week on sunday
if (date.getDay() === 0) { if (date.getDay() === 0) {
weeks.push({contributionDays}) weeks.push({contributionDays})
contributionDays = [] contributionDays = []
} }
//Random contributions //Random contributions
const contributionCount = Math.min(10, Math.max(0, faker.datatype.number(14)-4)) const contributionCount = Math.min(10, Math.max(0, faker.datatype.number(14) - 4))
contributionDays.push({ contributionDays.push({
contributionCount, contributionCount,
color:["#ebedf0", "#9be9a8", "#40c463", "#30a14e", "#216e39"][Math.ceil(contributionCount/10/0.25)], color:["#ebedf0", "#9be9a8", "#40c463", "#30a14e", "#216e39"][Math.ceil(contributionCount / 10 / 0.25)],
date:date.toISOString().substring(0, 10), date:date.toISOString().substring(0, 10),
}) })
} }
@@ -29,4 +29,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > licenses/default") console.debug("metrics/compute/mocks > mocking graphql api result > licenses/default")
return ({ return ({
licenses:[ licenses:[
@@ -275,4 +275,4 @@
}, },
], ],
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > licenses/repository") console.debug("metrics/compute/mocks > mocking graphql api result > licenses/repository")
return ({ return ({
user:{ user:{
@@ -10,4 +10,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,13 +1,15 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > notable/contributions") console.debug("metrics/compute/mocks > mocking graphql api result > notable/contributions")
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query)
? ({
user:{ user:{
repositoriesContributedTo:{ repositoriesContributedTo:{
edges:[], edges:[],
}, },
}, },
}) : ({ })
: ({
user:{ user:{
repositoriesContributedTo:{ repositoriesContributedTo:{
edges:[ edges:[
@@ -29,4 +31,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,17 +1,19 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > people/default") console.debug("metrics/compute/mocks > mocking graphql api result > people/default")
const type = query.match(/(?<type>followers|following)[(]/)?.groups?.type ?? "(unknown type)" const type = query.match(/(?<type>followers|following)[(]/)?.groups?.type ?? "(unknown type)"
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query)
? ({
user:{ user:{
[type]:{ [type]:{
edges:[], edges:[],
}, },
}, },
}) : ({ })
: ({
user:{ user:{
[type]:{ [type]:{
edges:new Array(Math.ceil(20+80*Math.random())).fill(null).map((login = faker.internet.userName()) => ({ edges:new Array(Math.ceil(20 + 80 * Math.random())).fill(null).map((login = faker.internet.userName()) => ({
cursor:"MOCKED_CURSOR", cursor:"MOCKED_CURSOR",
node:{ node:{
login, login,
@@ -21,4 +23,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,8 +1,9 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > people/repository") console.debug("metrics/compute/mocks > mocking graphql api result > people/repository")
const type = query.match(/(?<type>stargazers|watchers)[(]/)?.groups?.type ?? "(unknown type)" const type = query.match(/(?<type>stargazers|watchers)[(]/)?.groups?.type ?? "(unknown type)"
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query)
? ({
user:{ user:{
repository:{ repository:{
[type]:{ [type]:{
@@ -10,11 +11,12 @@
}, },
}, },
}, },
}) : ({ })
: ({
user:{ user:{
repository:{ repository:{
[type]:{ [type]:{
edges:new Array(Math.ceil(20+80*Math.random())).fill(null).map((login = faker.internet.userName()) => ({ edges:new Array(Math.ceil(20 + 80 * Math.random())).fill(null).map((login = faker.internet.userName()) => ({
cursor:"MOCKED_CURSOR", cursor:"MOCKED_CURSOR",
node:{ node:{
login, login,
@@ -25,4 +27,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,19 +1,21 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > people/sponsors") console.debug("metrics/compute/mocks > mocking graphql api result > people/sponsors")
const type = query.match(/(?<type>sponsorshipsAsSponsor|sponsorshipsAsMaintainer)[(]/)?.groups?.type ?? "(unknown type)" const type = query.match(/(?<type>sponsorshipsAsSponsor|sponsorshipsAsMaintainer)[(]/)?.groups?.type ?? "(unknown type)"
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query)
? ({
user:{ user:{
login, login,
[type]:{ [type]:{
edges:[], edges:[],
}, },
}, },
}) : ({ })
: ({
user:{ user:{
login, login,
[type]:{ [type]:{
edges:new Array(Math.ceil(20+80*Math.random())).fill(null).map((login = faker.internet.userName()) => ({ edges:new Array(Math.ceil(20 + 80 * Math.random())).fill(null).map((login = faker.internet.userName()) => ({
cursor:"MOCKED_CURSOR", cursor:"MOCKED_CURSOR",
node:{ node:{
sponsorEntity:{ sponsorEntity:{
@@ -29,4 +31,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > projects/repository") console.debug("metrics/compute/mocks > mocking graphql api result > projects/repository")
return ({ return ({
user:{ user:{
@@ -18,4 +18,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > projects/user") console.debug("metrics/compute/mocks > mocking graphql api result > projects/user")
return ({ return ({
user:{ user:{
@@ -21,4 +21,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,15 +1,17 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > reactions/default") console.debug("metrics/compute/mocks > mocking graphql api result > reactions/default")
const type = query.match(/(?<type>issues|issueComments)[(]/)?.groups?.type ?? "(unknown type)" const type = query.match(/(?<type>issues|issueComments)[(]/)?.groups?.type ?? "(unknown type)"
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query)
? ({
user:{ user:{
[type]:{ [type]:{
edges:[], edges:[],
nodes:[], nodes:[],
}, },
}, },
}) : ({ })
: ({
user:{ user:{
[type]:{ [type]:{
edges:new Array(100).fill(null).map(_ => ({ edges:new Array(100).fill(null).map(_ => ({
@@ -27,4 +29,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,13 +1,15 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > stargazers/default") console.debug("metrics/compute/mocks > mocking graphql api result > stargazers/default")
return /after: "MOCKED_CURSOR"/m.test(query) ? ({ return /after: "MOCKED_CURSOR"/m.test(query)
? ({
repository:{ repository:{
stargazers:{ stargazers:{
edges:[], edges:[],
}, },
}, },
}) : ({ })
: ({
repository:{ repository:{
stargazers:{ stargazers:{
edges:new Array(faker.datatype.number({min:50, max:100})).fill(null).map(() => ({ edges:new Array(faker.datatype.number({min:50, max:100})).fill(null).map(() => ({
@@ -17,4 +19,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker, query, login = faker.internet.userName()}) { export default function({faker, query, login = faker.internet.userName()}) {
console.debug("metrics/compute/mocks > mocking graphql api result > stars/default") console.debug("metrics/compute/mocks > mocking graphql api result > stars/default")
return ({ return ({
user:{ user:{
@@ -34,4 +34,4 @@
}, },
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, [{username:login, page, per_page}]) { export default function({faker}, target, that, [{username:login, page, per_page}]) {
console.debug("metrics/compute/mocks > mocking rest api result > rest.activity.listEventsForAuthenticatedUser") console.debug("metrics/compute/mocks > mocking rest api result > rest.activity.listEventsForAuthenticatedUser")
return ({ return ({
status:200, status:200,
@@ -338,4 +338,4 @@
}, },
], ],
}) })
} }

View File

@@ -1,8 +1,8 @@
//Imports //Imports
import listEventsForAuthenticatedUser from "./listEventsForAuthenticatedUser.mjs" import listEventsForAuthenticatedUser from "./listEventsForAuthenticatedUser.mjs"
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, [{username:login, page, per_page}]) { export default function({faker}, target, that, [{username:login, page, per_page}]) {
console.debug("metrics/compute/mocks > mocking rest api result > rest.activity.listRepoEvents") console.debug("metrics/compute/mocks > mocking rest api result > rest.activity.listRepoEvents")
return listEventsForAuthenticatedUser(...arguments) return listEventsForAuthenticatedUser(...arguments)
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that) { export default function({faker}, target, that) {
console.debug("metrics/compute/mocks > mocking rest api result > rest.emojis.get") console.debug("metrics/compute/mocks > mocking rest api result > rest.emojis.get")
return ({ return ({
status:200, status:200,
@@ -1811,4 +1811,4 @@
zzz:"https://github.githubassets.com/images/icons/emoji/unicode/1f4a4.png?v8", zzz:"https://github.githubassets.com/images/icons/emoji/unicode/1f4a4.png?v8",
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, args) { export default function({faker}, target, that, args) {
return ({ return ({
status:200, status:200,
url:"https://api.github.com/rate_limit", url:"https://api.github.com/rate_limit",
@@ -20,4 +20,4 @@
rate:{limit:5000, used:0, remaining:"MOCKED", reset:0}, rate:{limit:5000, used:0, remaining:"MOCKED", reset:0},
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, [{owner, repo}]) { export default function({faker}, target, that, [{owner, repo}]) {
console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.getContributorsStats") console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.getContributorsStats")
return ({ return ({
status:200, status:200,
@@ -24,4 +24,4 @@
}, },
], ],
}) })
} }

View File

@@ -1,8 +1,8 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, [{owner, repo}]) { export default function({faker}, target, that, [{owner, repo}]) {
console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.getViews") console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.getViews")
const count = faker.datatype.number(10000)*2 const count = faker.datatype.number(10000) * 2
const uniques = faker.datatype.number(count)*2 const uniques = faker.datatype.number(count) * 2
return ({ return ({
status:200, status:200,
url:`https://api.github.com/repos/${owner}/${repo}/traffic/views`, url:`https://api.github.com/repos/${owner}/${repo}/traffic/views`,
@@ -15,9 +15,9 @@
count, count,
uniques, uniques,
views:[ views:[
{timestamp:`${faker.date.recent()}`, count:count/2, uniques:uniques/2}, {timestamp:`${faker.date.recent()}`, count:count / 2, uniques:uniques / 2},
{timestamp:`${faker.date.recent()}`, count:count/2, uniques:uniques/2}, {timestamp:`${faker.date.recent()}`, count:count / 2, uniques:uniques / 2},
], ],
}, },
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, [{page, per_page, owner, repo}]) { export default function({faker}, target, that, [{page, per_page, owner, repo}]) {
console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.listCommits") console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.listCommits")
return ({ return ({
status:200, status:200,
@@ -9,7 +9,8 @@
status:"200 OK", status:"200 OK",
"x-oauth-scopes":"repo", "x-oauth-scopes":"repo",
}, },
data:page < 2 ? new Array(per_page).fill(null).map(() => ({ data:page < 2
? new Array(per_page).fill(null).map(() => ({
sha:"MOCKED_SHA", sha:"MOCKED_SHA",
get author() { get author() {
return this.commit.author return this.commit.author
@@ -29,6 +30,7 @@
date:`${faker.date.recent(14)}`, date:`${faker.date.recent(14)}`,
}, },
}, },
})) : [], }))
: [],
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, [{owner, repo}]) { export default function({faker}, target, that, [{owner, repo}]) {
console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.listContributors") console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.listContributors")
return ({ return ({
status:200, status:200,
@@ -9,10 +9,10 @@
status:"200 OK", status:"200 OK",
"x-oauth-scopes":"repo", "x-oauth-scopes":"repo",
}, },
data:new Array(40+faker.datatype.number(60)).fill(null).map(() => ({ data:new Array(40 + faker.datatype.number(60)).fill(null).map(() => ({
login:faker.internet.userName(), login:faker.internet.userName(),
avatar_url:null, avatar_url:null,
contributions:faker.datatype.number(1000), contributions:faker.datatype.number(1000),
})), })),
}) })
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, args) { export default function({faker}, target, that, args) {
//Arguments //Arguments
const [url] = args const [url] = args
//Head request //Head request
@@ -48,7 +48,7 @@
{ {
sha:"MOCKED_SHA", sha:"MOCKED_SHA",
filename:faker.system.fileName(), filename:faker.system.fileName(),
patch:"@@ -0,0 +1,5 @@\n+//Imports\n+ import app from \"./src/app.mjs\"\n+\n+//Start app\n+ await app()\n\\ No newline at end of file", patch:'@@ -0,0 +1,5 @@\n+//Imports\n+ import app from "./src/app.mjs"\n+\n+//Start app\n+ await app()\n\\ No newline at end of file',
}, },
], ],
}, },
@@ -56,4 +56,4 @@
} }
return target(...args) return target(...args)
} }

View File

@@ -1,5 +1,5 @@
/**Mocked data */ /**Mocked data */
export default function({faker}, target, that, [{username}]) { export default function({faker}, target, that, [{username}]) {
console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.getByUsername") console.debug("metrics/compute/mocks > mocking rest api result > rest.repos.getByUsername")
return ({ return ({
status:200, status:200,
@@ -15,4 +15,4 @@
contributions:faker.datatype.number(1000), contributions:faker.datatype.number(1000),
}, },
}) })
} }

View File

@@ -1,17 +1,16 @@
//Imports //Imports
import axios from "axios" import fs from "fs/promises"
import faker from "faker" import axios from "axios"
import paths from "path" import faker from "faker"
import urls from "url" import paths from "path"
import rss from "rss-parser" import rss from "rss-parser"
import fs from "fs/promises" import urls from "url"
//Mocked state //Mocked state
let mocked = false let mocked = false
//Mocking //Mocking
export default async function({graphql, rest}) { export default async function({graphql, rest}) {
//Check if already mocked //Check if already mocked
if (mocked) if (mocked)
return {graphql, rest} return {graphql, rest}
@@ -20,7 +19,7 @@
//Load mocks //Load mocks
const __mocks = paths.join(paths.dirname(urls.fileURLToPath(import.meta.url))) const __mocks = paths.join(paths.dirname(urls.fileURLToPath(import.meta.url)))
const mock = async({directory, mocks}) => { const mock = async ({directory, mocks}) => {
for (const entry of await fs.readdir(directory)) { for (const entry of await fs.readdir(directory)) {
if ((await fs.lstat(paths.join(directory, entry))).isDirectory()) { if ((await fs.lstat(paths.join(directory, entry))).isDirectory()) {
if (!mocks[entry]) if (!mocks[entry])
@@ -29,6 +28,7 @@
} }
else else
mocks[entry.replace(/[.]mjs$/, "")] = (await import(urls.pathToFileURL(paths.join(directory, entry)).href)).default mocks[entry.replace(/[.]mjs$/, "")] = (await import(urls.pathToFileURL(paths.join(directory, entry)).href)).default
} }
return mocks return mocks
} }
@@ -73,6 +73,7 @@
} }
else else
mocker({path:`${path}.${key}`, mocks:mocks[key], mocked:mocked[key]}) mocker({path:`${path}.${key}`, mocks:mocks[key], mocked:mocked[key]})
} }
} }
mocker({mocks:mocks.github.rest, mocked:rest}) mocker({mocks:mocks.github.rest, mocked:rest})
@@ -146,5 +147,4 @@
//Return mocked elements //Return mocked elements
return {graphql, rest} return {graphql, rest}
} }

View File

@@ -1,21 +1,20 @@
//Imports //Imports
import octokit from "@octokit/graphql" import octokit from "@octokit/graphql"
import OctokitRest from "@octokit/rest" import OctokitRest from "@octokit/rest"
import express from "express" import compression from "compression"
import ratelimit from "express-rate-limit" import express from "express"
import compression from "compression" import ratelimit from "express-rate-limit"
import cache from "memory-cache" import cache from "memory-cache"
import util from "util" import util from "util"
import setup from "../metrics/setup.mjs" import metrics from "../metrics/index.mjs"
import mocks from "../mocks/index.mjs" import setup from "../metrics/setup.mjs"
import metrics from "../metrics/index.mjs" import mocks from "../mocks/index.mjs"
/**App */ /**App */
export default async function({mock, nosettings} = {}) { export default async function({mock, nosettings} = {}) {
//Load configuration settings //Load configuration settings
const {conf, Plugins, Templates} = await setup({nosettings}) const {conf, Plugins, Templates} = await setup({nosettings})
const {token, maxusers = 0, restricted = [], debug = false, cached = 30*60*1000, port = 3000, ratelimiter = null, plugins = null} = conf.settings const {token, maxusers = 0, restricted = [], debug = false, cached = 30 * 60 * 1000, port = 3000, ratelimiter = null, plugins = null} = conf.settings
mock = mock || conf.settings.mocked mock = mock || conf.settings.mocked
//Process mocking and default plugin state //Process mocking and default plugin state
@@ -29,16 +28,16 @@
settings.plugins[plugin].enabled = settings.plugins[plugin].enabled ?? (console.debug(`metrics/app > auto-enabling ${plugin}`), true) settings.plugins[plugin].enabled = settings.plugins[plugin].enabled ?? (console.debug(`metrics/app > auto-enabling ${plugin}`), true)
//Mock plugins tokens if they're undefined //Mock plugins tokens if they're undefined
if (mock) { if (mock) {
const tokens = Object.entries(conf.metadata.plugins[plugin].inputs).filter(([key, value]) => (!/^plugin_/.test(key))&&(value.type === "token")).map(([key]) => key) const tokens = Object.entries(conf.metadata.plugins[plugin].inputs).filter(([key, value]) => (!/^plugin_/.test(key)) && (value.type === "token")).map(([key]) => key)
for (const token of tokens) { for (const token of tokens) {
if ((!settings.plugins[plugin][token])||(mock === "force")) { if ((!settings.plugins[plugin][token]) || (mock === "force")) {
console.debug(`metrics/app > using mocked token for ${plugin}.${token}`) console.debug(`metrics/app > using mocked token for ${plugin}.${token}`)
settings.plugins[plugin][token] = "MOCKED_TOKEN" settings.plugins[plugin][token] = "MOCKED_TOKEN"
} }
} }
} }
} }
if (((mock)&&(!conf.settings.token))||(mock === "force")) { if (((mock) && (!conf.settings.token)) || (mock === "force")) {
console.debug("metrics/app > using mocked token") console.debug("metrics/app > using mocked token")
conf.settings.token = "MOCKED_TOKEN" conf.settings.token = "MOCKED_TOKEN"
} }
@@ -71,32 +70,34 @@
//Cache headers middleware //Cache headers middleware
middlewares.push((req, res, next) => { middlewares.push((req, res, next) => {
const maxage = Math.round(Number(req.query.cache)) const maxage = Math.round(Number(req.query.cache))
if ((cached)||(maxage > 0)) if ((cached) || (maxage > 0))
res.header("Cache-Control", `public, max-age=${Math.round((maxage > 0 ? maxage : cached)/1000)}`) res.header("Cache-Control", `public, max-age=${Math.round((maxage > 0 ? maxage : cached) / 1000)}`)
else else
res.header("Cache-Control", "no-store, no-cache") res.header("Cache-Control", "no-store, no-cache")
next() next()
}) })
//Base routes //Base routes
const limiter = ratelimit({max:debug ? Number.MAX_SAFE_INTEGER : 60, windowMs:60*1000, headers:false}) const limiter = ratelimit({max:debug ? Number.MAX_SAFE_INTEGER : 60, windowMs:60 * 1000, headers:false})
const metadata = Object.fromEntries(Object.entries(conf.metadata.plugins) const metadata = Object.fromEntries(
Object.entries(conf.metadata.plugins)
.map(([key, value]) => [key, Object.fromEntries(Object.entries(value).filter(([key]) => ["name", "icon", "categorie", "web", "supports"].includes(key)))]) .map(([key, value]) => [key, Object.fromEntries(Object.entries(value).filter(([key]) => ["name", "icon", "categorie", "web", "supports"].includes(key)))])
.map(([key, value]) => [key, key === "core" ? {...value, web:Object.fromEntries(Object.entries(value.web).filter(([key]) => /^config[.]/.test(key)).map(([key, value]) => [key.replace(/^config[.]/, ""), value]))} : value])) .map(([key, value]) => [key, key === "core" ? {...value, web:Object.fromEntries(Object.entries(value.web).filter(([key]) => /^config[.]/.test(key)).map(([key, value]) => [key.replace(/^config[.]/, ""), value]))} : value]),
)
const enabled = Object.entries(metadata).filter(([_name, {categorie}]) => categorie !== "core").map(([name]) => ({name, enabled:plugins[name]?.enabled ?? false})) const enabled = Object.entries(metadata).filter(([_name, {categorie}]) => categorie !== "core").map(([name]) => ({name, enabled:plugins[name]?.enabled ?? false}))
const templates = Object.entries(Templates).map(([name]) => ({name, enabled:(conf.settings.templates.enabled.length ? conf.settings.templates.enabled.includes(name) : true) ?? false})) const templates = Object.entries(Templates).map(([name]) => ({name, enabled:(conf.settings.templates.enabled.length ? conf.settings.templates.enabled.includes(name) : true) ?? false}))
const actions = {flush:new Map()} const actions = {flush:new Map()}
let requests = {limit:0, used:0, remaining:0, reset:NaN} let requests = {limit:0, used:0, remaining:0, reset:NaN}
if (!conf.settings.notoken) { if (!conf.settings.notoken) {
requests = (await rest.rateLimit.get()).data.rate requests = (await rest.rateLimit.get()).data.rate
setInterval(async() => { setInterval(async () => {
try { try {
requests = (await rest.rateLimit.get()).data.rate requests = (await rest.rateLimit.get()).data.rate
} }
catch { catch {
console.debug("metrics/app > failed to update remaining requests") console.debug("metrics/app > failed to update remaining requests")
} }
}, 5*60*1000) }, 5 * 60 * 1000)
} }
//Web //Web
app.get("/", limiter, (req, res) => res.sendFile(`${conf.paths.statics}/index.html`)) app.get("/", limiter, (req, res) => res.sendFile(`${conf.paths.statics}/index.html`))
@@ -156,7 +157,7 @@
app.get("/about/", limiter, (req, res) => res.sendFile(`${conf.paths.statics}/about/index.html`)) app.get("/about/", limiter, (req, res) => res.sendFile(`${conf.paths.statics}/about/index.html`))
app.get("/about/index.html", limiter, (req, res) => res.sendFile(`${conf.paths.statics}/about/index.html`)) app.get("/about/index.html", limiter, (req, res) => res.sendFile(`${conf.paths.statics}/about/index.html`))
app.get("/about/:login", limiter, (req, res) => res.sendFile(`${conf.paths.statics}/about/index.html`)) app.get("/about/:login", limiter, (req, res) => res.sendFile(`${conf.paths.statics}/about/index.html`))
app.get("/about/query/:login/", ...middlewares, async(req, res) => { app.get("/about/query/:login/", ...middlewares, async (req, res) => {
//Check username //Check username
const login = req.params.login?.replace(/[\n\r]/g, "") const login = req.params.login?.replace(/[\n\r]/g, "")
if (!/^[-\w]+$/i.test(login)) { if (!/^[-\w]+$/i.test(login)) {
@@ -166,24 +167,34 @@
//Compute metrics //Compute metrics
try { try {
//Read cached data if possible //Read cached data if possible
if ((!debug)&&(cached)&&(cache.get(`about.${login}`))) { if ((!debug) && (cached) && (cache.get(`about.${login}`))) {
console.debug(`metrics/app/${login}/insights > using cached results`) console.debug(`metrics/app/${login}/insights > using cached results`)
return res.send(cache.get(`about.${login}`)) return res.send(cache.get(`about.${login}`))
} }
//Compute metrics //Compute metrics
console.debug(`metrics/app/${login}/insights > compute insights`) console.debug(`metrics/app/${login}/insights > compute insights`)
const json = await metrics({ const json = await metrics(
login, q:{ {
login,
q:{
template:"classic", template:"classic",
achievements:true, "achievements.threshold":"X", achievements:true,
isocalendar:true, "isocalendar.duration":"full-year", "achievements.threshold":"X",
languages:true, "languages.limit":0, isocalendar:true,
activity:true, "activity.limit":100, "activity.days":0, "isocalendar.duration":"full-year",
languages:true,
"languages.limit":0,
activity:true,
"activity.limit":100,
"activity.days":0,
notable:true, notable:true,
}, },
}, {graphql, rest, plugins:{achievements:{enabled:true}, isocalendar:{enabled:true}, languages:{enabled:true}, activity:{enabled:true, markdown:"extended"}, notable:{enabled:true}}, conf, convert:"json"}, {Plugins, Templates}) },
{graphql, rest, plugins:{achievements:{enabled:true}, isocalendar:{enabled:true}, languages:{enabled:true}, activity:{enabled:true, markdown:"extended"}, notable:{enabled:true}}, conf, convert:"json"},
{Plugins, Templates},
)
//Cache //Cache
if ((!debug)&&(cached)) { if ((!debug) && (cached)) {
const maxage = Math.round(Number(req.query.cache)) const maxage = Math.round(Number(req.query.cache))
cache.put(`about.${login}`, json, maxage > 0 ? maxage : cached) cache.put(`about.${login}`, json, maxage > 0 ? maxage : cached)
} }
@@ -192,12 +203,12 @@
//Internal error //Internal error
catch (error) { catch (error) {
//Not found user //Not found user
if ((error instanceof Error)&&(/^user not found$/.test(error.message))) { if ((error instanceof Error) && (/^user not found$/.test(error.message))) {
console.debug(`metrics/app/${login} > 404 (user/organization not found)`) console.debug(`metrics/app/${login} > 404 (user/organization not found)`)
return res.status(404).send("Not found: unknown user or organization") return res.status(404).send("Not found: unknown user or organization")
} }
//GitHub failed request //GitHub failed request
if ((error instanceof Error)&&(/this may be the result of a timeout, or it could be a GitHub bug/i.test(error.errors?.[0]?.message))) { if ((error instanceof Error) && (/this may be the result of a timeout, or it could be a GitHub bug/i.test(error.errors?.[0]?.message))) {
console.debug(`metrics/app/${login} > 502 (bad gateway from GitHub)`) console.debug(`metrics/app/${login} > 502 (bad gateway from GitHub)`)
const request = encodeURIComponent(error.errors[0].message.match(/`(?<request>[\w:]+)`/)?.groups?.request ?? "").replace(/%3A/g, ":") const request = encodeURIComponent(error.errors[0].message.match(/`(?<request>[\w:]+)`/)?.groups?.request ?? "").replace(/%3A/g, ":")
return res.status(500).send(`Internal Server Error: failed to execute request ${request} (this may be the result of a timeout, or it could be a GitHub bug)`) return res.status(500).send(`Internal Server Error: failed to execute request ${request} (this may be the result of a timeout, or it could be a GitHub bug)`)
@@ -210,7 +221,7 @@
//Metrics //Metrics
const pending = new Map() const pending = new Map()
app.get("/:login/:repository?", ...middlewares, async(req, res) => { app.get("/:login/:repository?", ...middlewares, async (req, res) => {
//Request params //Request params
const login = req.params.login?.replace(/[\n\r]/g, "") const login = req.params.login?.replace(/[\n\r]/g, "")
const repository = req.params.repository?.replace(/[\n\r]/g, "") const repository = req.params.repository?.replace(/[\n\r]/g, "")
@@ -221,26 +232,28 @@
return res.status(400).send("Bad request: username seems invalid") return res.status(400).send("Bad request: username seems invalid")
} }
//Allowed list check //Allowed list check
if ((restricted.length)&&(!restricted.includes(login))) { if ((restricted.length) && (!restricted.includes(login))) {
console.debug(`metrics/app/${login} > 403 (not in allowed users)`) console.debug(`metrics/app/${login} > 403 (not in allowed users)`)
return res.status(403).send("Forbidden: username not in allowed list") return res.status(403).send("Forbidden: username not in allowed list")
} }
//Prevent multiples requests //Prevent multiples requests
if ((!debug)&&(!mock)&&(pending.has(login))) { if ((!debug) && (!mock) && (pending.has(login))) {
console.debug(`metrics/app/${login} > awaiting pending request`) console.debug(`metrics/app/${login} > awaiting pending request`)
await pending.get(login) await pending.get(login)
} }
else else
pending.set(login, new Promise(_solve => solve = _solve)) pending.set(login, new Promise(_solve => solve = _solve))
//Read cached data if possible //Read cached data if possible
if ((!debug)&&(cached)&&(cache.get(login))) { if ((!debug) && (cached) && (cache.get(login))) {
console.debug(`metrics/app/${login} > using cached image`) console.debug(`metrics/app/${login} > using cached image`)
const {rendered, mime} = cache.get(login) const {rendered, mime} = cache.get(login)
res.header("Content-Type", mime) res.header("Content-Type", mime)
return res.send(rendered) return res.send(rendered)
} }
//Maximum simultaneous users //Maximum simultaneous users
if ((maxusers)&&(cache.size()+1 > maxusers)) { if ((maxusers) && (cache.size() + 1 > maxusers)) {
console.debug(`metrics/app/${login} > 503 (maximum users reached)`) console.debug(`metrics/app/${login} > 503 (maximum users reached)`)
return res.status(503).send("Service Unavailable: maximum number of users reached, only cached metrics are available") return res.status(503).send("Service Unavailable: maximum number of users reached, only cached metrics are available")
} }
@@ -258,13 +271,16 @@
const q = req.query const q = req.query
console.debug(`metrics/app/${login} > ${util.inspect(q, {depth:Infinity, maxStringLength:256})}`) console.debug(`metrics/app/${login} > ${util.inspect(q, {depth:Infinity, maxStringLength:256})}`)
const {rendered, mime} = await metrics({login, q}, { const {rendered, mime} = await metrics({login, q}, {
graphql, rest, plugins, conf, graphql,
rest,
plugins,
conf,
die:q["plugins.errors.fatal"] ?? false, die:q["plugins.errors.fatal"] ?? false,
verify:q.verify ?? false, verify:q.verify ?? false,
convert:["svg", "jpeg", "png", "json", "markdown", "markdown-pdf"].includes(q["config.output"]) ? q["config.output"] : null, convert:["svg", "jpeg", "png", "json", "markdown", "markdown-pdf"].includes(q["config.output"]) ? q["config.output"] : null,
}, {Plugins, Templates}) }, {Plugins, Templates})
//Cache //Cache
if ((!debug)&&(cached)) { if ((!debug) && (cached)) {
const maxage = Math.round(Number(req.query.cache)) const maxage = Math.round(Number(req.query.cache))
cache.put(login, {rendered, mime}, maxage > 0 ? maxage : cached) cache.put(login, {rendered, mime}, maxage > 0 ? maxage : cached)
} }
@@ -275,22 +291,22 @@
//Internal error //Internal error
catch (error) { catch (error) {
//Not found user //Not found user
if ((error instanceof Error)&&(/^user not found$/.test(error.message))) { if ((error instanceof Error) && (/^user not found$/.test(error.message))) {
console.debug(`metrics/app/${login} > 404 (user/organization not found)`) console.debug(`metrics/app/${login} > 404 (user/organization not found)`)
return res.status(404).send("Not found: unknown user or organization") return res.status(404).send("Not found: unknown user or organization")
} }
//Invalid template //Invalid template
if ((error instanceof Error)&&(/^unsupported template$/.test(error.message))) { if ((error instanceof Error) && (/^unsupported template$/.test(error.message))) {
console.debug(`metrics/app/${login} > 400 (bad request)`) console.debug(`metrics/app/${login} > 400 (bad request)`)
return res.status(400).send("Bad request: unsupported template") return res.status(400).send("Bad request: unsupported template")
} }
//Unsupported output format or account type //Unsupported output format or account type
if ((error instanceof Error)&&(/^not supported for: [\s\S]*$/.test(error.message))) { if ((error instanceof Error) && (/^not supported for: [\s\S]*$/.test(error.message))) {
console.debug(`metrics/app/${login} > 406 (Not Acceptable)`) console.debug(`metrics/app/${login} > 406 (Not Acceptable)`)
return res.status(406).send("Not Acceptable: unsupported output format or account type for specified parameters") return res.status(406).send("Not Acceptable: unsupported output format or account type for specified parameters")
} }
//GitHub failed request //GitHub failed request
if ((error instanceof Error)&&(/this may be the result of a timeout, or it could be a GitHub bug/i.test(error.errors?.[0]?.message))) { if ((error instanceof Error) && (/this may be the result of a timeout, or it could be a GitHub bug/i.test(error.errors?.[0]?.message))) {
console.debug(`metrics/app/${login} > 502 (bad gateway from GitHub)`) console.debug(`metrics/app/${login} > 502 (bad gateway from GitHub)`)
const request = encodeURIComponent(error.errors[0].message.match(/`(?<request>[\w:]+)`/)?.groups?.request ?? "").replace(/%3A/g, ":") const request = encodeURIComponent(error.errors[0].message.match(/`(?<request>[\w:]+)`/)?.groups?.request ?? "").replace(/%3A/g, ":")
return res.status(500).send(`Internal Server Error: failed to execute request ${request} (this may be the result of a timeout, or it could be a GitHub bug)`) return res.status(500).send(`Internal Server Error: failed to execute request ${request} (this may be the result of a timeout, or it could be a GitHub bug)`)
@@ -299,8 +315,9 @@
console.error(error) console.error(error)
return res.status(500).send("Internal Server Error: failed to process metrics correctly") return res.status(500).send("Internal Server Error: failed to process metrics correctly")
} }
//After rendering
finally { finally {
//After rendering
solve?.() solve?.()
} }
}) })
@@ -318,4 +335,4 @@
`SVG optimization │ ${conf.settings.optimize ?? false}`, `SVG optimization │ ${conf.settings.optimize ?? false}`,
"Server ready !", "Server ready !",
].join("\n"))) ].join("\n")))
} }

View File

@@ -2,53 +2,55 @@
//App //App
return new Vue({ return new Vue({
//Initialization //Initialization
el:"main", el: "main",
async mounted() { async mounted() {
//Palette //Palette
try { try {
this.palette = (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light") this.palette = (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light")
} catch (error) {} }
catch (error) {}
//User //User
const user = location.pathname.split("/").pop() const user = location.pathname.split("/").pop()
if ((user)&&(user !== "about")) { if ((user) && (user !== "about")) {
this.user = user this.user = user
await this.search() await this.search()
} }
else else {
this.searchable = true this.searchable = true
}
//Embed //Embed
this.embed = !!(new URLSearchParams(location.search).get("embed")) this.embed = !!(new URLSearchParams(location.search).get("embed"))
//Init //Init
await Promise.all([ await Promise.all([
//GitHub limit tracker //GitHub limit tracker
(async () => { (async () => {
const {data:requests} = await axios.get("/.requests") const { data: requests } = await axios.get("/.requests")
this.requests = requests this.requests = requests
})(), })(),
//Version //Version
(async () => { (async () => {
const {data:version} = await axios.get("/.version") const { data: version } = await axios.get("/.version")
this.version = `v${version}` this.version = `v${version}`
})(), })(),
//Hosted //Hosted
(async () => { (async () => {
const {data:hosted} = await axios.get("/.hosted") const { data: hosted } = await axios.get("/.hosted")
this.hosted = hosted this.hosted = hosted
})(), })(),
]) ])
}, },
//Watchers //Watchers
watch:{ watch: {
palette:{ palette: {
immediate:true, immediate: true,
handler(current, previous) { handler(current, previous) {
document.querySelector("body").classList.remove(previous) document.querySelector("body").classList.remove(previous)
document.querySelector("body").classList.add(current) document.querySelector("body").classList.add(current)
} },
} },
}, },
//Methods //Methods
methods:{ methods: {
format(type, value, options) { format(type, value, options) {
switch (type) { switch (type) {
case "number": case "number":
@@ -59,16 +61,16 @@
const baseUrl = String.raw`https?:\/\/(?:www\.)?github.com\/([\w.-]+\/[\w.-]+)\/` const baseUrl = String.raw`https?:\/\/(?:www\.)?github.com\/([\w.-]+\/[\w.-]+)\/`
return value return value
.replace( .replace(
RegExp(baseUrl + String.raw`(?:issues|pull|discussions)\/(\d+)(?:\?\S+)?(#\S+)?`, 'g'), RegExp(baseUrl + String.raw`(?:issues|pull|discussions)\/(\d+)(?:\?\S+)?(#\S+)?`, "g"),
(_, repo, id, comment) => (options?.repo === repo ? '' : repo) + `#${id}` + (comment ? ` (comment)` : '') (_, repo, id, comment) => (options?.repo === repo ? "" : repo) + `#${id}` + (comment ? ` (comment)` : ""),
) // -> 'lowlighter/metrics#123' ) // -> 'lowlighter/metrics#123'
.replace( .replace(
RegExp(baseUrl + String.raw`commit\/([\da-f]+)`, 'g'), RegExp(baseUrl + String.raw`commit\/([\da-f]+)`, "g"),
(_, repo, sha) => (options?.repo === repo ? '' : repo + '@') + sha (_, repo, sha) => (options?.repo === repo ? "" : repo + "@") + sha,
) // -> 'lowlighter/metrics@123abc' ) // -> 'lowlighter/metrics@123abc'
.replace( .replace(
RegExp(baseUrl + String.raw`compare\/(\S+...\S+)`, 'g'), RegExp(baseUrl + String.raw`compare\/(\S+...\S+)`, "g"),
(_, repo, tags) => (options?.repo === repo ? '' : repo + '@') + tags (_, repo, tags) => (options?.repo === repo ? "" : repo + "@") + tags,
) // -> 'lowlighter/metrics@1.0...1.1' ) // -> 'lowlighter/metrics@1.0...1.1'
} }
return value return value
@@ -81,20 +83,20 @@
this.metrics = (await axios.get(`/about/query/${this.user}`)).data this.metrics = (await axios.get(`/about/query/${this.user}`)).data
} }
catch (error) { catch (error) {
this.error = {code:error.response.status, message:error.response.data} this.error = { code: error.response.status, message: error.response.data }
} }
finally { finally {
this.pending = false this.pending = false
} }
} },
}, },
//Computed properties //Computed properties
computed:{ computed: {
ranked() { ranked() {
return this.metrics?.rendered.plugins.achievements.list?.filter(({leaderboard}) => leaderboard).sort((a, b) => a.leaderboard.type.localeCompare(b.leaderboard.type)) ?? [] return this.metrics?.rendered.plugins.achievements.list?.filter(({ leaderboard }) => leaderboard).sort((a, b) => a.leaderboard.type.localeCompare(b.leaderboard.type)) ?? []
}, },
achievements() { achievements() {
return this.metrics?.rendered.plugins.achievements.list?.filter(({leaderboard}) => !leaderboard).filter(({title}) => !/(?:automater|octonaut|infographile)/i.test(title)) ?? [] return this.metrics?.rendered.plugins.achievements.list?.filter(({ leaderboard }) => !leaderboard).filter(({ title }) => !/(?:automater|octonaut|infographile)/i.test(title)) ?? []
}, },
isocalendar() { isocalendar() {
return (this.metrics?.rendered.plugins.isocalendar.svg ?? "") return (this.metrics?.rendered.plugins.isocalendar.svg ?? "")
@@ -116,28 +118,28 @@
account() { account() {
if (!this.metrics) if (!this.metrics)
return null return null
const {login, name} = this.metrics.rendered.user const { login, name } = this.metrics.rendered.user
return {login, name, avatar:this.metrics.rendered.computed.avatar, type:this.metrics?.rendered.account} return { login, name, avatar: this.metrics.rendered.computed.avatar, type: this.metrics?.rendered.account }
}, },
url() { url() {
return `${window.location.protocol}//${window.location.host}/about/${this.user}` return `${window.location.protocol}//${window.location.host}/about/${this.user}`
}, },
preview() { preview() {
return /-preview$/.test(this.version) return /-preview$/.test(this.version)
} },
}, },
//Data initialization //Data initialization
data:{ data: {
version:"", version: "",
hosted:null, hosted: null,
user:"", user: "",
embed:false, embed: false,
searchable:false, searchable: false,
requests:{limit:0, used:0, remaining:0, reset:0}, requests: { limit: 0, used: 0, remaining: 0, reset: 0 },
palette:"light", palette: "light",
metrics:null, metrics: null,
pending:false, pending: false,
error:null, error: null,
} },
}) })
})() })()

View File

@@ -1,56 +1,57 @@
;(async function() { ;(async function() {
//Init //Init
const {data:metadata} = await axios.get("/.plugins.metadata") const { data: metadata } = await axios.get("/.plugins.metadata")
delete metadata.core.web.output delete metadata.core.web.output
delete metadata.core.web.twemojis delete metadata.core.web.twemojis
//App //App
return new Vue({ return new Vue({
//Initialization //Initialization
el:"main", el: "main",
async mounted() { async mounted() {
//Interpolate config from browser //Interpolate config from browser
try { try {
this.config.timezone = Intl.DateTimeFormat().resolvedOptions().timeZone this.config.timezone = Intl.DateTimeFormat().resolvedOptions().timeZone
this.palette = (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light") this.palette = (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light")
} catch (error) {} }
catch (error) {}
//Init //Init
await Promise.all([ await Promise.all([
//GitHub limit tracker //GitHub limit tracker
(async () => { (async () => {
const {data:requests} = await axios.get("/.requests") const { data: requests } = await axios.get("/.requests")
this.requests = requests this.requests = requests
})(), })(),
//Templates //Templates
(async () => { (async () => {
const {data:templates} = await axios.get("/.templates") const { data: templates } = await axios.get("/.templates")
templates.sort((a, b) => (a.name.startsWith("@") ^ b.name.startsWith("@")) ? (a.name.startsWith("@") ? 1 : -1) : a.name.localeCompare(b.name)) templates.sort((a, b) => (a.name.startsWith("@") ^ b.name.startsWith("@")) ? (a.name.startsWith("@") ? 1 : -1) : a.name.localeCompare(b.name))
this.templates.list = templates this.templates.list = templates
this.templates.selected = templates[0]?.name||"classic" this.templates.selected = templates[0]?.name || "classic"
})(), })(),
//Plugins //Plugins
(async () => { (async () => {
const {data:plugins} = await axios.get("/.plugins") const { data: plugins } = await axios.get("/.plugins")
this.plugins.list = plugins this.plugins.list = plugins
})(), })(),
//Base //Base
(async () => { (async () => {
const {data:base} = await axios.get("/.plugins.base") const { data: base } = await axios.get("/.plugins.base")
this.plugins.base = base this.plugins.base = base
this.plugins.enabled.base = Object.fromEntries(base.map(key => [key, true])) this.plugins.enabled.base = Object.fromEntries(base.map(key => [key, true]))
})(), })(),
//Version //Version
(async () => { (async () => {
const {data:version} = await axios.get("/.version") const { data: version } = await axios.get("/.version")
this.version = `v${version}` this.version = `v${version}`
})(), })(),
//Hosted //Hosted
(async () => { (async () => {
const {data:hosted} = await axios.get("/.hosted") const { data: hosted } = await axios.get("/.hosted")
this.hosted = hosted this.hosted = hosted
})(), })(),
]) ])
//Generate placeholder //Generate placeholder
this.mock({timeout:200}) this.mock({ timeout: 200 })
setInterval(() => { setInterval(() => {
const marker = document.querySelector("#metrics-end") const marker = document.querySelector("#metrics-end")
if (marker) { if (marker) {
@@ -59,75 +60,77 @@
} }
}, 100) }, 100)
}, },
components:{Prism:PrismComponent}, components: { Prism: PrismComponent },
//Watchers //Watchers
watch:{ watch: {
palette:{ palette: {
immediate:true, immediate: true,
handler(current, previous) { handler(current, previous) {
document.querySelector("body").classList.remove(previous) document.querySelector("body").classList.remove(previous)
document.querySelector("body").classList.add(current) document.querySelector("body").classList.add(current)
} },
} },
}, },
//Data initialization //Data initialization
data:{ data: {
version:"", version: "",
user:"", user: "",
mode:"metrics", mode: "metrics",
tab:"overview", tab: "overview",
palette:"light", palette: "light",
requests:{limit:0, used:0, remaining:0, reset:0}, requests: { limit: 0, used: 0, remaining: 0, reset: 0 },
cached:new Map(), cached: new Map(),
config:Object.fromEntries(Object.entries(metadata.core.web).map(([key, {defaulted}]) => [key, defaulted])), config: Object.fromEntries(Object.entries(metadata.core.web).map(([key, { defaulted }]) => [key, defaulted])),
metadata:Object.fromEntries(Object.entries(metadata).map(([key, {web}]) => [key, web])), metadata: Object.fromEntries(Object.entries(metadata).map(([key, { web }]) => [key, web])),
hosted:null, hosted: null,
plugins:{ plugins: {
base:{}, base: {},
list:[], list: [],
enabled:{}, enabled: {},
descriptions:{ descriptions: {
base:"🗃️ Base content", base: "🗃️ Base content",
"base.header":"Header", "base.header": "Header",
"base.activity":"Account activity", "base.activity": "Account activity",
"base.community":"Community stats", "base.community": "Community stats",
"base.repositories":"Repositories metrics", "base.repositories": "Repositories metrics",
"base.metadata":"Metadata", "base.metadata": "Metadata",
...Object.fromEntries(Object.entries(metadata).map(([key, {name}]) => [key, name])) ...Object.fromEntries(Object.entries(metadata).map(([key, { name }]) => [key, name])),
}, },
options:{ options: {
descriptions:{...(Object.assign({}, ...Object.entries(metadata).flatMap(([key, {web}]) => web)))}, descriptions: { ...(Object.assign({}, ...Object.entries(metadata).flatMap(([key, { web }]) => web))) },
...(Object.fromEntries(Object.entries( ...(Object.fromEntries(
Object.assign({}, ...Object.entries(metadata).flatMap(([key, {web}]) => web))) Object.entries(
.map(([key, {defaulted}]) => [key, defaulted]) Object.assign({}, ...Object.entries(metadata).flatMap(([key, { web }]) => web)),
)) )
.map(([key, { defaulted }]) => [key, defaulted]),
)),
}, },
}, },
templates:{ templates: {
list:[], list: [],
selected:"classic", selected: "classic",
placeholder:{ placeholder: {
timeout:null, timeout: null,
image:"" image: "",
}, },
descriptions:{ descriptions: {
classic:"Classic template", classic: "Classic template",
terminal:"Terminal template", terminal: "Terminal template",
markdown:"(hidden)", markdown: "(hidden)",
repository:"(hidden)", repository: "(hidden)",
}, },
}, },
generated:{ generated: {
pending:false, pending: false,
content:"", content: "",
error:false, error: false,
}, },
}, },
//Computed data //Computed data
computed:{ computed: {
//Unusable plugins //Unusable plugins
unusable() { unusable() {
return this.plugins.list.filter(({name}) => this.plugins.enabled[name]).filter(({enabled}) => !enabled).map(({name}) => name) return this.plugins.list.filter(({ name }) => this.plugins.enabled[name]).filter(({ enabled }) => !enabled).map(({ name }) => name)
}, },
//User's avatar //User's avatar
avatar() { avatar() {
@@ -150,9 +153,9 @@
.filter(([key, value]) => this.plugins.enabled[key.split(".")[0]]) .filter(([key, value]) => this.plugins.enabled[key.split(".")[0]])
.map(([key, value]) => `${key}=${encodeURIComponent(value)}`) .map(([key, value]) => `${key}=${encodeURIComponent(value)}`)
//Base options //Base options
const base = Object.entries(this.plugins.options).filter(([key, value]) => (key in metadata.base.web)&&(value !== metadata.base.web[key]?.defaulted)).map(([key, value]) => `${key}=${encodeURIComponent(value)}`) const base = Object.entries(this.plugins.options).filter(([key, value]) => (key in metadata.base.web) && (value !== metadata.base.web[key]?.defaulted)).map(([key, value]) => `${key}=${encodeURIComponent(value)}`)
//Config //Config
const config = Object.entries(this.config).filter(([key, value]) => (value)&&(value !== metadata.core.web[key]?.defaulted)).map(([key, value]) => `config.${key}=${encodeURIComponent(value)}`) const config = Object.entries(this.config).filter(([key, value]) => (value) && (value !== metadata.core.web[key]?.defaulted)).map(([key, value]) => `config.${key}=${encodeURIComponent(value)}`)
//Template //Template
const template = (this.templates.selected !== this.templates.list[0]) ? [`template=${this.templates.selected}`] : [] const template = (this.templates.selected !== this.templates.list[0]) ? [`template=${this.templates.selected}`] : []
//Generated url //Generated url
@@ -184,21 +187,25 @@
` token: ${"$"}{{ secrets.METRICS_TOKEN }}`, ` token: ${"$"}{{ secrets.METRICS_TOKEN }}`,
``, ``,
` # Options`, ` # Options`,
` user: ${this.user }`, ` user: ${this.user}`,
` template: ${this.templates.selected}`, ` template: ${this.templates.selected}`,
` base: ${Object.entries(this.plugins.enabled.base).filter(([key, value]) => value).map(([key]) => key).join(", ")||'""'}`, ` base: ${Object.entries(this.plugins.enabled.base).filter(([key, value]) => value).map(([key]) => key).join(", ") || '""'}`,
...[ ...[
...Object.entries(this.plugins.options).filter(([key, value]) => (key in metadata.base.web)&&(value !== metadata.base.web[key]?.defaulted)).map(([key, value]) => ` ${key.replace(/[.]/, "_")}: ${typeof value === "boolean" ? {true:"yes", false:"no"}[value] : value}`), ...Object.entries(this.plugins.options).filter(([key, value]) => (key in metadata.base.web) && (value !== metadata.base.web[key]?.defaulted)).map(([key, value]) =>
...Object.entries(this.plugins.enabled).filter(([key, value]) => (key !== "base")&&(value)).map(([key]) => ` plugin_${key}: yes`), ` ${key.replace(/[.]/, "_")}: ${typeof value === "boolean" ? { true: "yes", false: "no" }[value] : value}`
...Object.entries(this.plugins.options).filter(([key, value]) => value).filter(([key, value]) => this.plugins.enabled[key.split(".")[0]]).map(([key, value]) => ` plugin_${key.replace(/[.]/, "_")}: ${typeof value === "boolean" ? {true:"yes", false:"no"}[value] : value}`), ),
...Object.entries(this.config).filter(([key, value]) => (value)&&(value !== metadata.core.web[key]?.defaulted)).map(([key, value]) => ` config_${key.replace(/[.]/, "_")}: ${typeof value === "boolean" ? {true:"yes", false:"no"}[value] : value}`), ...Object.entries(this.plugins.enabled).filter(([key, value]) => (key !== "base") && (value)).map(([key]) => ` plugin_${key}: yes`),
...Object.entries(this.plugins.options).filter(([key, value]) => value).filter(([key, value]) => this.plugins.enabled[key.split(".")[0]]).map(([key, value]) =>
` plugin_${key.replace(/[.]/, "_")}: ${typeof value === "boolean" ? { true: "yes", false: "no" }[value] : value}`
),
...Object.entries(this.config).filter(([key, value]) => (value) && (value !== metadata.core.web[key]?.defaulted)).map(([key, value]) => ` config_${key.replace(/[.]/, "_")}: ${typeof value === "boolean" ? { true: "yes", false: "no" }[value] : value}`),
].sort(), ].sort(),
].join("\n") ].join("\n")
}, },
//Configurable plugins //Configurable plugins
configure() { configure() {
//Check enabled plugins //Check enabled plugins
const enabled = Object.entries(this.plugins.enabled).filter(([key, value]) => (value)&&(key !== "base")).map(([key, value]) => key) const enabled = Object.entries(this.plugins.enabled).filter(([key, value]) => (value) && (key !== "base")).map(([key, value]) => key)
const filter = new RegExp(`^(?:${enabled.join("|")})[.]`) const filter = new RegExp(`^(?:${enabled.join("|")})[.]`)
//Search related options //Search related options
const entries = Object.entries(this.plugins.options.descriptions).filter(([key, value]) => filter.test(key)) const entries = Object.entries(this.plugins.options.descriptions).filter(([key, value]) => filter.test(key))
@@ -211,12 +218,12 @@
//Is in preview mode //Is in preview mode
preview() { preview() {
return /-preview$/.test(this.version) return /-preview$/.test(this.version)
} },
}, },
//Methods //Methods
methods:{ methods: {
//Load and render placeholder image //Load and render placeholder image
async mock({timeout = 600} = {}) { async mock({ timeout = 600 } = {}) {
clearTimeout(this.templates.placeholder.timeout) clearTimeout(this.templates.placeholder.timeout)
this.templates.placeholder.timeout = setTimeout(async () => { this.templates.placeholder.timeout = setTimeout(async () => {
this.templates.placeholder.image = await placeholder(this) this.templates.placeholder.image = await placeholder(this)
@@ -227,8 +234,8 @@
//Resize mock image //Resize mock image
mockresize() { mockresize() {
const svg = document.querySelector(".preview .image svg") const svg = document.querySelector(".preview .image svg")
if ((svg)&&(svg.getAttribute("height") == 99999)) { if ((svg) && (svg.getAttribute("height") == 99999)) {
const height = svg.querySelector("#metrics-end")?.getBoundingClientRect()?.y-svg.getBoundingClientRect()?.y const height = svg.querySelector("#metrics-end")?.getBoundingClientRect()?.y - svg.getBoundingClientRect()?.y
if (Number.isFinite(height)) if (Number.isFinite(height))
svg.setAttribute("height", height) svg.setAttribute("height", height)
} }
@@ -244,8 +251,9 @@
await axios.get(`/.uncache?&token=${(await axios.get(`/.uncache?user=${this.user}`)).data.token}`) await axios.get(`/.uncache?&token=${(await axios.get(`/.uncache?user=${this.user}`)).data.token}`)
this.generated.content = (await axios.get(this.url)).data this.generated.content = (await axios.get(this.url)).data
this.generated.error = null this.generated.error = null
} catch (error) { }
this.generated.error = {code:error.response.status, message:error.response.data} catch (error) {
this.generated.error = { code: error.response.status, message: error.response.data }
} }
finally { finally {
this.generated.pending = false this.generated.pending = false

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,12 @@
//Imports //Imports
import * as compute from "./list/index.mjs" import * as compute from "./list/index.mjs"
//Setup //Setup
export default async function({login, q, imports, data, computed, graphql, queries, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, computed, graphql, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.achievements)) if ((!enabled) || (!q.achievements))
return null return null
//Load inputs //Load inputs
@@ -21,11 +21,15 @@
const order = {S:5, A:4, B:3, C:2, $:1, X:0} const order = {S:5, A:4, B:3, C:2, $:1, X:0}
const colors = {S:["#FF0000", "#FF8500"], A:["#B59151", "#FFD576"], B:["#7D6CFF", "#B2A8FF"], C:["#2088FF", "#79B8FF"], $:["#FF48BD", "#FF92D8"], X:["#7A7A7A", "#B0B0B0"]} const colors = {S:["#FF0000", "#FF8500"], A:["#B59151", "#FFD576"], B:["#7D6CFF", "#B2A8FF"], C:["#2088FF", "#79B8FF"], $:["#FF48BD", "#FF92D8"], X:["#7A7A7A", "#B0B0B0"]}
const achievements = list const achievements = list
.filter(a => (order[a.rank] >= order[threshold])||((a.rank === "$")&&(secrets))) .filter(a => (order[a.rank] >= order[threshold]) || ((a.rank === "$") && (secrets)))
.filter(a => (!only.length)||((only.length)&&(only.includes(a.title.toLocaleLowerCase())))) .filter(a => (!only.length) || ((only.length) && (only.includes(a.title.toLocaleLowerCase()))))
.filter(a => !ignored.includes(a.title.toLocaleLowerCase())) .filter(a => !ignored.includes(a.title.toLocaleLowerCase()))
.sort((a, b) => (order[b.rank]+b.progress*0.99) - (order[a.rank]+a.progress*0.99)) .sort((a, b) => (order[b.rank] + b.progress * 0.99) - (order[a.rank] + a.progress * 0.99))
.map(({title, unlock, ...achievement}) => ({title:({S:`Master ${title.toLocaleLowerCase()}`, A:`Super ${title.toLocaleLowerCase()}`, B:`Great ${title.toLocaleLowerCase()}`}[achievement.rank] ?? title), unlock:!/invalid date/i.test(unlock) ? `${imports.date(unlock, {timeStyle:"short", timeZone:data.config.timezone?.name})} on ${imports.date(unlock, {dateStyle:"short", timeZone:data.config.timezone?.name})}` : null, ...achievement})) .map(({title, unlock, ...achievement}) => ({
title:({S:`Master ${title.toLocaleLowerCase()}`, A:`Super ${title.toLocaleLowerCase()}`, B:`Great ${title.toLocaleLowerCase()}`}[achievement.rank] ?? title),
unlock:!/invalid date/i.test(unlock) ? `${imports.date(unlock, {timeStyle:"short", timeZone:data.config.timezone?.name})} on ${imports.date(unlock, {dateStyle:"short", timeZone:data.config.timezone?.name})}` : null,
...achievement,
}))
.map(({icon, ...achievement}) => ({icon:icon.replace(/#primary/g, colors[achievement.rank][0]).replace(/#secondary/g, colors[achievement.rank][1]), ...achievement})) .map(({icon, ...achievement}) => ({icon:icon.replace(/#primary/g, colors[achievement.rank][0]).replace(/#secondary/g, colors[achievement.rank][1]), ...achievement}))
.slice(0, limit || Infinity) .slice(0, limit || Infinity)
return {list:achievements} return {list:achievements}
@@ -34,62 +38,64 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }
/**Rank */ /**Rank */
function rank(x, [c, b, a, m]) { function rank(x, [c, b, a, m]) {
if (x >= a) if (x >= a)
return {rank:"A", progress:(x-a)/(m-a)} return {rank:"A", progress:(x - a) / (m - a)}
else if (x >= b) else if (x >= b)
return {rank:"B", progress:(x-b)/(a-b)} return {rank:"B", progress:(x - b) / (a - b)}
else if (x >= c) else if (x >= c)
return {rank:"C", progress:(x-c)/(b-c)} return {rank:"C", progress:(x - c) / (b - c)}
return {rank:"X", progress:x/c} return {rank:"X", progress:x / c}
} }
/**Leaderboards */ /**Leaderboards */
function leaderboard({user, type, requirement}) { function leaderboard({user, type, requirement}) {
return requirement ? { return requirement
user:1+user, ? {
user:1 + user,
total:total[type], total:total[type],
type, type,
get top() { get top() {
return Number(`1${"0".repeat(Math.ceil(Math.log10(this.user)))}`) return Number(`1${"0".repeat(Math.ceil(Math.log10(this.user)))}`)
}, },
get percentile() { get percentile() {
return 100*(this.user/this.top) return 100 * (this.user / this.top)
}, },
} : null
} }
: null
}
/**Total extracter */ /**Total extracter */
async function total({imports}) { async function total({imports}) {
if (!total.promise) { if (!total.promise) {
total.promise = new Promise(async(solve, reject) => { total.promise = new Promise(async (solve, reject) => {
//Setup browser //Setup browser
console.debug("metrics/compute/plugins > achievements > filling total from github.com/search") console.debug("metrics/compute/plugins > achievements > filling total from github.com/search")
const browser = await imports.puppeteer.launch() const browser = await imports.puppeteer.launch()
console.debug(`metrics/compute/plugins > achievements > started ${await browser.version()}`) console.debug(`metrics/compute/plugins > achievements > started ${await browser.version()}`)
//Extracting total from github.com/search //Extracting total from github.com/search
for (let i = 0; (i < 100)&&((!total.users)||(!total.repositories)); i++) { for (let i = 0; (i < 100) && ((!total.users) || (!total.repositories)); i++) {
const page = await browser.newPage() const page = await browser.newPage()
await page.goto("https://github.com/search") await page.goto("https://github.com/search")
const result = await page.evaluate(() => [...document.querySelectorAll("h2")].filter(node => /Search more/.test(node.innerText)).shift()?.innerText.trim().match(/(?<count>\d+)M\s+(?<type>repositories|users|issues)$/)?.groups) ?? null const result = await page.evaluate(() => [...document.querySelectorAll("h2")].filter(node => /Search more/.test(node.innerText)).shift()?.innerText.trim().match(/(?<count>\d+)M\s+(?<type>repositories|users|issues)$/)?.groups) ?? null
console.log(`metrics/compute/plugins > achievements > setup found ${result?.type ?? "(?)"}`) console.log(`metrics/compute/plugins > achievements > setup found ${result?.type ?? "(?)"}`)
if ((result?.type)&&(!total[result.type])) { if ((result?.type) && (!total[result.type])) {
const {count, type} = result const {count, type} = result
total[type] = Number(count)*10e5 total[type] = Number(count) * 10e5
console.debug(`metrics/compute/plugins > achievements > set total.${type} to ${total[type]}`) console.debug(`metrics/compute/plugins > achievements > set total.${type} to ${total[type]}`)
} }
await page.close() await page.close()
await imports.wait(10*Math.random()) await imports.wait(10 * Math.random())
} }
//Check setup state //Check setup state
if ((!total.users)||(!total.repositories)) if ((!total.users) || (!total.repositories))
return reject("Failed to initiate total for achievement plugin") return reject("Failed to initiate total for achievement plugin")
console.debug("metrics/compute/plugins > achievements > total setup complete") console.debug("metrics/compute/plugins > achievements > total setup complete")
return solve() return solve()
}) })
} }
return total.promise return total.promise
} }

View File

@@ -1,3 +1,3 @@
//Exports //Exports
export {default as user} from "./users.mjs" export {default as organization} from "./organizations.mjs"
export {default as organization} from "./organizations.mjs" export {default as user} from "./users.mjs"

View File

@@ -1,6 +1,5 @@
/**Achievements list for users accounts */ /**Achievements list for users accounts */
export default async function({list, login, data, computed, imports, graphql, queries, rank, leaderboard}) { export default async function({list, login, data, computed, imports, graphql, queries, rank, leaderboard}) {
//Initialization //Initialization
const {organization} = await graphql(queries.achievements.organizations({login})) const {organization} = await graphql(queries.achievements.organizations({login}))
const scores = {followers:0, created:organization.repositories.totalCount, stars:organization.popular.nodes?.[0]?.stargazers?.totalCount ?? 0, forks:Math.max(0, ...data.user.repositories.nodes.map(({forkCount}) => forkCount))} const scores = {followers:0, created:organization.repositories.totalCount, stars:organization.popular.nodes?.[0]?.stargazers?.totalCount ?? 0, forks:Math.max(0, ...data.user.repositories.nodes.map(({forkCount}) => forkCount))}
@@ -14,8 +13,10 @@
list.push({ list.push({
title:"Developers", title:"Developers",
text:`Published ${value} public repositor${imports.s(value, "y")}`, text:`Published ${value} public repositor${imports.s(value, "y")}`,
icon:"<g stroke-linecap=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><g stroke=\"#primary\"><path d=\"M20 24l-3.397 3.398a.85.85 0 000 1.203L20.002 32M37.015 24l3.399 3.398a.85.85 0 010 1.203L37.014 32\" stroke-linejoin=\"round\"/><path d=\"M31.029 21.044L25.976 35.06\"/></g><path stroke=\"#secondary\" stroke-linejoin=\"round\" d=\"M23.018 10h8.984M26 47h5M8 16h16m9 0h15.725M8 41h13\"/><path d=\"M5.027 34.998c.673 2.157 1.726 4.396 2.81 6.02m43.38-19.095C50.7 19.921 49.866 17.796 48.79 16\" stroke=\"#secondary\"/><path stroke=\"#primary\" stroke-linejoin=\"round\" d=\"M26 41h17\"/><path d=\"M7.183 16C5.186 19.582 4 23.619 4 28M42.608 47.02c2.647-1.87 5.642-5.448 7.295-9.18C51.52 34.191 52.071 30.323 52 28\" stroke=\"#primary\"/><path stroke=\"#primary\" stroke-linejoin=\"round\" d=\"M7.226 16H28M13.343 47H21\"/><path d=\"M13.337 47.01a24.364 24.364 0 006.19 3.45 24.527 24.527 0 007.217 1.505c2.145.108 4.672-.05 7.295-.738\" stroke=\"#primary\"/><path stroke=\"#primary\" stroke-linejoin=\"round\" d=\"M36 47h6.647M12 10h6M37 10h6.858\"/><path d=\"M43.852 10c-4.003-3.667-9.984-6.054-16.047-6-2.367.021-4.658.347-6.81 1.045\" stroke=\"#primary\"/><path stroke=\"#secondary\" stroke-linejoin=\"round\" d=\"M5.041 35h4.962M47 22h4.191\"/></g>", icon:'<g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd"><g stroke="#primary"><path d="M20 24l-3.397 3.398a.85.85 0 000 1.203L20.002 32M37.015 24l3.399 3.398a.85.85 0 010 1.203L37.014 32" stroke-linejoin="round"/><path d="M31.029 21.044L25.976 35.06"/></g><path stroke="#secondary" stroke-linejoin="round" d="M23.018 10h8.984M26 47h5M8 16h16m9 0h15.725M8 41h13"/><path d="M5.027 34.998c.673 2.157 1.726 4.396 2.81 6.02m43.38-19.095C50.7 19.921 49.866 17.796 48.79 16" stroke="#secondary"/><path stroke="#primary" stroke-linejoin="round" d="M26 41h17"/><path d="M7.183 16C5.186 19.582 4 23.619 4 28M42.608 47.02c2.647-1.87 5.642-5.448 7.295-9.18C51.52 34.191 52.071 30.323 52 28" stroke="#primary"/><path stroke="#primary" stroke-linejoin="round" d="M7.226 16H28M13.343 47H21"/><path d="M13.337 47.01a24.364 24.364 0 006.19 3.45 24.527 24.527 0 007.217 1.505c2.145.108 4.672-.05 7.295-.738" stroke="#primary"/><path stroke="#primary" stroke-linejoin="round" d="M36 47h6.647M12 10h6M37 10h6.858"/><path d="M43.852 10c-4.003-3.667-9.984-6.054-16.047-6-2.367.021-4.658.347-6.81 1.045" stroke="#primary"/><path stroke="#secondary" stroke-linejoin="round" d="M5.041 35h4.962M47 22h4.191"/></g>',
...rank(value, [1, 50, 100, 200]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 50, 100, 200]),
value,
unlock:new Date(unlock?.createdAt),
leaderboard:leaderboard({user:ranks.created_rank.userCount, requirement:scores.created >= requirements.created, type:"users"}), leaderboard:leaderboard({user:ranks.created_rank.userCount, requirement:scores.created >= requirements.created, type:"users"}),
}) })
} }
@@ -27,8 +28,10 @@
list.push({ list.push({
title:"Forkers", title:"Forkers",
text:`Forked ${value} public repositor${imports.s(value, "y")}`, text:`Forked ${value} public repositor${imports.s(value, "y")}`,
icon:"<g stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M37.303 21.591a5.84 5.84 0 00-1.877-1.177 6.138 6.138 0 00-4.432 0 5.822 5.822 0 00-1.879 1.177L28 22.638l-1.115-1.047c-1.086-1.018-2.559-1.59-4.094-1.59-1.536 0-3.008.572-4.094 1.59-1.086 1.02-1.696 2.4-1.696 3.84 0 1.441.61 2.823 1.696 3.841l1.115 1.046L28 38l8.189-7.682 1.115-1.046a5.422 5.422 0 001.256-1.761 5.126 5.126 0 000-4.157 5.426 5.426 0 00-1.256-1.763z\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.967 42.705A18.922 18.922 0 0028 47a18.92 18.92 0 0011.076-3.56m-.032-30.902A18.914 18.914 0 0028 9c-4.09 0-7.876 1.292-10.976 3.49\" stroke=\"#secondary\" stroke-linecap=\"round\"/><g transform=\"translate(7 10)\" stroke=\"#primary\"><path d=\"M6 0v7c0 2.21-1.343 3-3 3s-3-.79-3-3V0\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke-linecap=\"round\" d=\"M3 0v19.675\"/><rect stroke-linejoin=\"round\" x=\"1\" y=\"20\" width=\"4\" height=\"16\" rx=\"2\"/></g><g transform=\"translate(43 10)\" stroke=\"#primary\"><path stroke-linecap=\"round\" d=\"M2 15.968v3.674\"/><path d=\"M4 15.642H0L.014 4.045A4.05 4.05 0 014.028 0L4 15.642z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect stroke-linejoin=\"round\" y=\"19.968\" width=\"4\" height=\"16\" rx=\"2\"/></g><path d=\"M41.364 8.062A23.888 23.888 0 0028 4a23.89 23.89 0 00-11.95 3.182M4.75 22.021A24.045 24.045 0 004 28c0 1.723.182 3.404.527 5.024m10.195 14.971A23.888 23.888 0 0028 52c4.893 0 9.444-1.464 13.239-3.979m9-10.98A23.932 23.932 0 0052 28c0-2.792-.477-5.472-1.353-7.964\" stroke=\"#secondary\" stroke-linecap=\"round\"/></g>", icon:'<g stroke-width="2" fill="none" fill-rule="evenodd"><path d="M37.303 21.591a5.84 5.84 0 00-1.877-1.177 6.138 6.138 0 00-4.432 0 5.822 5.822 0 00-1.879 1.177L28 22.638l-1.115-1.047c-1.086-1.018-2.559-1.59-4.094-1.59-1.536 0-3.008.572-4.094 1.59-1.086 1.02-1.696 2.4-1.696 3.84 0 1.441.61 2.823 1.696 3.841l1.115 1.046L28 38l8.189-7.682 1.115-1.046a5.422 5.422 0 001.256-1.761 5.126 5.126 0 000-4.157 5.426 5.426 0 00-1.256-1.763z" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.967 42.705A18.922 18.922 0 0028 47a18.92 18.92 0 0011.076-3.56m-.032-30.902A18.914 18.914 0 0028 9c-4.09 0-7.876 1.292-10.976 3.49" stroke="#secondary" stroke-linecap="round"/><g transform="translate(7 10)" stroke="#primary"><path d="M6 0v7c0 2.21-1.343 3-3 3s-3-.79-3-3V0" stroke-linecap="round" stroke-linejoin="round"/><path stroke-linecap="round" d="M3 0v19.675"/><rect stroke-linejoin="round" x="1" y="20" width="4" height="16" rx="2"/></g><g transform="translate(43 10)" stroke="#primary"><path stroke-linecap="round" d="M2 15.968v3.674"/><path d="M4 15.642H0L.014 4.045A4.05 4.05 0 014.028 0L4 15.642z" stroke-linecap="round" stroke-linejoin="round"/><rect stroke-linejoin="round" y="19.968" width="4" height="16" rx="2"/></g><path d="M41.364 8.062A23.888 23.888 0 0028 4a23.89 23.89 0 00-11.95 3.182M4.75 22.021A24.045 24.045 0 004 28c0 1.723.182 3.404.527 5.024m10.195 14.971A23.888 23.888 0 0028 52c4.893 0 9.444-1.464 13.239-3.979m9-10.98A23.932 23.932 0 0052 28c0-2.792-.477-5.472-1.353-7.964" stroke="#secondary" stroke-linecap="round"/></g>',
...rank(value, [1, 10, 30, 50]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 10, 30, 50]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -40,8 +43,10 @@
list.push({ list.push({
title:"Managers", title:"Managers",
text:`Created ${value} user project${imports.s(value)}`, text:`Created ${value} user project${imports.s(value)}`,
icon:"<g stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M29 16V8.867C29 7.705 29.627 7 30.692 7h18.616C50.373 7 51 7.705 51 8.867v38.266C51 48.295 50.373 49 49.308 49H30.692C29.627 49 29 48.295 29 47.133V39m-4-23V9c0-1.253-.737-2-2-2H7c-1.263 0-2 .747-2 2v34c0 1.253.737 2 2 2h16c1.263 0 2-.747 2-2v-4\" stroke=\"#secondary\" stroke-linecap=\"round\"/><path stroke=\"#secondary\" d=\"M51.557 12.005h-22M5 12.005h21\"/><path d=\"M14 33V22c0-1.246.649-2 1.73-2h28.54c1.081 0 1.73.754 1.73 2v11c0 1.246-.649 2-1.73 2H15.73c-1.081 0-1.73-.754-1.73-2z\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 29v-3c0-.508.492-1 1-1h3c.508 0 1 .492 1 1v3c0 .508-.492 1-1 1h-3c-.508-.082-1-.492-1-1z\" stroke=\"#primary\"/><path stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M28.996 27.998h12M9.065 20.04a7.062 7.062 0 00-.023 1.728m.775 2.517c.264.495.584.954.954 1.369\"/></g>", icon:'<g stroke-width="2" fill="none" fill-rule="evenodd"><path d="M29 16V8.867C29 7.705 29.627 7 30.692 7h18.616C50.373 7 51 7.705 51 8.867v38.266C51 48.295 50.373 49 49.308 49H30.692C29.627 49 29 48.295 29 47.133V39m-4-23V9c0-1.253-.737-2-2-2H7c-1.263 0-2 .747-2 2v34c0 1.253.737 2 2 2h16c1.263 0 2-.747 2-2v-4" stroke="#secondary" stroke-linecap="round"/><path stroke="#secondary" d="M51.557 12.005h-22M5 12.005h21"/><path d="M14 33V22c0-1.246.649-2 1.73-2h28.54c1.081 0 1.73.754 1.73 2v11c0 1.246-.649 2-1.73 2H15.73c-1.081 0-1.73-.754-1.73-2z" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 29v-3c0-.508.492-1 1-1h3c.508 0 1 .492 1 1v3c0 .508-.492 1-1 1h-3c-.508-.082-1-.492-1-1z" stroke="#primary"/><path stroke="#primary" stroke-linecap="round" stroke-linejoin="round" d="M28.996 27.998h12M9.065 20.04a7.062 7.062 0 00-.023 1.728m.775 2.517c.264.495.584.954.954 1.369"/></g>',
...rank(value, [1, 2, 4, 8]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 2, 4, 8]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -53,8 +58,10 @@
list.push({ list.push({
title:"Packagers", title:"Packagers",
text:`Created ${value} package${imports.s(value)}`, text:`Created ${value} package${imports.s(value)}`,
icon:"<g fill=\"none\"><path fill=\"#secondary\" d=\"M28.53 27.64l-11.2 6.49V21.15l11.23-6.48z\"/><path d=\"M40.4 34.84c-.17 0-.34-.04-.5-.13l-11.24-6.44a.99.99 0 01-.37-1.36.99.99 0 011.36-.37l11.24 6.44c.48.27.65.89.37 1.36-.17.32-.51.5-.86.5z\" fill=\"#primary\"/><path d=\"M29.16 28.4c-.56 0-1-.45-1-1.01l.08-12.47c0-.55.49-1 1.01-.99.55 0 1 .45.99 1.01l-.08 12.47c0 .55-.45.99-1 .99z\" fill=\"#primary\"/><path d=\"M18.25 34.65a.996.996 0 01-.5-1.86l10.91-6.25a.997.997 0 11.99 1.73l-10.91 6.25c-.15.09-.32.13-.49.13z\" fill=\"#primary\"/><path d=\"M29.19 41.37c-.17 0-.35-.04-.5-.13l-11.23-6.49c-.31-.18-.5-.51-.5-.87V20.91c0-.36.19-.69.5-.87l11.23-6.49c.31-.18.69-.18 1 0l11.23 6.49c.31.18.5.51.5.87v12.97c0 .36-.19.69-.5.87l-11.23 6.49c-.15.08-.32.13-.5.13zm-10.23-8.06l10.23 5.91 10.23-5.91V21.49l-10.23-5.91-10.23 5.91v11.82zM40.5 11.02c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm-23.19 4.36c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.42 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm23.37 43.8c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.42 3.18-3.18 3.18zm0-4.35c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm-23.06 4.11c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zM6.18 30.72C4.43 30.72 3 29.29 3 27.54c0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm45.64 4.36c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18z\" fill=\"#primary\"/><path d=\"M29.1 10.21c-.55 0-1-.45-1-1V3.52c0-.55.45-1 1-1s1 .45 1 1v5.69c0 .56-.45 1-1 1zM7.44 20.95c-.73 0-1.32-.59-1.32-1.32v-5.38l4.66-2.69c.63-.37 1.44-.15 1.8.48.36.63.15 1.44-.48 1.8l-3.34 1.93v3.86c0 .73-.59 1.32-1.32 1.32zm4 22.68c-.22 0-.45-.06-.66-.18l-4.66-2.69v-5.38c0-.73.59-1.32 1.32-1.32.73 0 1.32.59 1.32 1.32v3.86l3.34 1.93c.63.36.85 1.17.48 1.8-.24.42-.68.66-1.14.66zm17.64 10.39l-4.66-2.69c-.63-.36-.85-1.17-.48-1.8.36-.63 1.17-.85 1.8-.48l3.34 1.93 3.34-1.93a1.32 1.32 0 011.8.48c.36.63.15 1.44-.48 1.8l-4.66 2.69zm17.64-10.39a1.32 1.32 0 01-.66-2.46l3.34-1.93v-3.86c0-.73.59-1.32 1.32-1.32.73 0 1.32.59 1.32 1.32v5.38l-4.66 2.69c-.21.12-.44.18-.66.18zm4-22.68c-.73 0-1.32-.59-1.32-1.32v-3.86l-3.34-1.93c-.63-.36-.85-1.17-.48-1.8.36-.63 1.17-.85 1.8-.48l4.66 2.69v5.38c0 .73-.59 1.32-1.32 1.32z\" fill=\"#secondary\"/><path d=\"M33.08 6.15c-.22 0-.45-.06-.66-.18l-3.34-1.93-3.34 1.93c-.63.36-1.44.15-1.8-.48a1.32 1.32 0 01.48-1.8L29.08 1l4.66 2.69c.63.36.85 1.17.48 1.8a1.3 1.3 0 01-1.14.66zm-3.99 47.3c-.55 0-1-.45-1-1v-7.13c0-.55.45-1 1-1s1 .45 1 1v7.13c0 .55-.44 1-1 1zM13.86 19.71c-.17 0-.34-.04-.5-.13L7.2 16a1 1 0 011-1.73l6.17 3.58c.48.28.64.89.36 1.37-.19.31-.52.49-.87.49zm36.63 21.23c-.17 0-.34-.04-.5-.13l-6.17-3.57a.998.998 0 01-.36-1.37c.28-.48.89-.64 1.37-.36L51 39.08c.48.28.64.89.36 1.37-.19.31-.52.49-.87.49zM44.06 19.8c-.35 0-.68-.18-.87-.5-.28-.48-.11-1.09.36-1.37l6.17-3.57c.48-.28 1.09-.11 1.37.36.28.48.11 1.09-.36 1.37l-6.17 3.57c-.16.1-.33.14-.5.14zM7.43 41.03c-.35 0-.68-.18-.87-.5-.28-.48-.11-1.09.36-1.37l6.17-3.57c.48-.28 1.09-.11 1.37.36.28.48.11 1.09-.36 1.37l-6.17 3.57c-.15.09-.33.14-.5.14z\" fill=\"#secondary\"/></g>", icon:'<g fill="none"><path fill="#secondary" d="M28.53 27.64l-11.2 6.49V21.15l11.23-6.48z"/><path d="M40.4 34.84c-.17 0-.34-.04-.5-.13l-11.24-6.44a.99.99 0 01-.37-1.36.99.99 0 011.36-.37l11.24 6.44c.48.27.65.89.37 1.36-.17.32-.51.5-.86.5z" fill="#primary"/><path d="M29.16 28.4c-.56 0-1-.45-1-1.01l.08-12.47c0-.55.49-1 1.01-.99.55 0 1 .45.99 1.01l-.08 12.47c0 .55-.45.99-1 .99z" fill="#primary"/><path d="M18.25 34.65a.996.996 0 01-.5-1.86l10.91-6.25a.997.997 0 11.99 1.73l-10.91 6.25c-.15.09-.32.13-.49.13z" fill="#primary"/><path d="M29.19 41.37c-.17 0-.35-.04-.5-.13l-11.23-6.49c-.31-.18-.5-.51-.5-.87V20.91c0-.36.19-.69.5-.87l11.23-6.49c.31-.18.69-.18 1 0l11.23 6.49c.31.18.5.51.5.87v12.97c0 .36-.19.69-.5.87l-11.23 6.49c-.15.08-.32.13-.5.13zm-10.23-8.06l10.23 5.91 10.23-5.91V21.49l-10.23-5.91-10.23 5.91v11.82zM40.5 11.02c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm-23.19 4.36c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.42 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm23.37 43.8c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.42 3.18-3.18 3.18zm0-4.35c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm-23.06 4.11c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zM6.18 30.72C4.43 30.72 3 29.29 3 27.54c0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm45.64 4.36c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18z" fill="#primary"/><path d="M29.1 10.21c-.55 0-1-.45-1-1V3.52c0-.55.45-1 1-1s1 .45 1 1v5.69c0 .56-.45 1-1 1zM7.44 20.95c-.73 0-1.32-.59-1.32-1.32v-5.38l4.66-2.69c.63-.37 1.44-.15 1.8.48.36.63.15 1.44-.48 1.8l-3.34 1.93v3.86c0 .73-.59 1.32-1.32 1.32zm4 22.68c-.22 0-.45-.06-.66-.18l-4.66-2.69v-5.38c0-.73.59-1.32 1.32-1.32.73 0 1.32.59 1.32 1.32v3.86l3.34 1.93c.63.36.85 1.17.48 1.8-.24.42-.68.66-1.14.66zm17.64 10.39l-4.66-2.69c-.63-.36-.85-1.17-.48-1.8.36-.63 1.17-.85 1.8-.48l3.34 1.93 3.34-1.93a1.32 1.32 0 011.8.48c.36.63.15 1.44-.48 1.8l-4.66 2.69zm17.64-10.39a1.32 1.32 0 01-.66-2.46l3.34-1.93v-3.86c0-.73.59-1.32 1.32-1.32.73 0 1.32.59 1.32 1.32v5.38l-4.66 2.69c-.21.12-.44.18-.66.18zm4-22.68c-.73 0-1.32-.59-1.32-1.32v-3.86l-3.34-1.93c-.63-.36-.85-1.17-.48-1.8.36-.63 1.17-.85 1.8-.48l4.66 2.69v5.38c0 .73-.59 1.32-1.32 1.32z" fill="#secondary"/><path d="M33.08 6.15c-.22 0-.45-.06-.66-.18l-3.34-1.93-3.34 1.93c-.63.36-1.44.15-1.8-.48a1.32 1.32 0 01.48-1.8L29.08 1l4.66 2.69c.63.36.85 1.17.48 1.8a1.3 1.3 0 01-1.14.66zm-3.99 47.3c-.55 0-1-.45-1-1v-7.13c0-.55.45-1 1-1s1 .45 1 1v7.13c0 .55-.44 1-1 1zM13.86 19.71c-.17 0-.34-.04-.5-.13L7.2 16a1 1 0 011-1.73l6.17 3.58c.48.28.64.89.36 1.37-.19.31-.52.49-.87.49zm36.63 21.23c-.17 0-.34-.04-.5-.13l-6.17-3.57a.998.998 0 01-.36-1.37c.28-.48.89-.64 1.37-.36L51 39.08c.48.28.64.89.36 1.37-.19.31-.52.49-.87.49zM44.06 19.8c-.35 0-.68-.18-.87-.5-.28-.48-.11-1.09.36-1.37l6.17-3.57c.48-.28 1.09-.11 1.37.36.28.48.11 1.09-.36 1.37l-6.17 3.57c-.16.1-.33.14-.5.14zM7.43 41.03c-.35 0-.68-.18-.87-.5-.28-.48-.11-1.09.36-1.37l6.17-3.57c.48-.28 1.09-.11 1.37.36.28.48.11 1.09-.36 1.37l-6.17 3.57c-.15.09-.33.14-.5.14z" fill="#secondary"/></g>',
...rank(value, [1, 20, 50, 100]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 20, 50, 100]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -66,8 +73,10 @@
list.push({ list.push({
title:"Maintainers", title:"Maintainers",
text:`Maintaining a repository with ${value} star${imports.s(value)}`, text:`Maintaining a repository with ${value} star${imports.s(value)}`,
icon:"<g transform=\"translate(4 4)\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M39 15h.96l4.038 3-.02-3H45a2 2 0 002-2V3a2 2 0 00-2-2H31a2 2 0 00-2 2v4.035\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M36 5.014l-3 3 3 3M40 5.014l3 3-3 3\"/><path d=\"M6 37a1 1 0 110 2 1 1 0 010-2m7 0a1 1 0 110 2 1 1 0 010-2m-2.448 1a1 1 0 11-2 0 1 1 0 012 0z\" fill=\"#primary\"/><path d=\"M1.724 15.05A23.934 23.934 0 000 24c0 .686.029 1.366.085 2.037m19.92 21.632c1.3.218 2.634.331 3.995.331a23.92 23.92 0 009.036-1.76m13.207-13.21A23.932 23.932 0 0048 24c0-1.363-.114-2.7-.332-4M25.064.022a23.932 23.932 0 00-10.073 1.725\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M19 42.062V43a2 2 0 01-2 2H9.04l-4.038 3 .02-3H3a2 2 0 01-2-2V33a2 2 0 012-2h4.045\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 0a6 6 0 110 12A6 6 0 016 0z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" d=\"M6 3v6M3 6h6\"/><path d=\"M42 36a6 6 0 110 12 6 6 0 010-12z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M44.338 40.663l-3.336 3.331-1.692-1.686M31 31c-.716-2.865-3.578-5-7-5-3.423 0-6.287 2.14-7 5\"/><path d=\"M24 16a5 5 0 110 10 5 5 0 010-10z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\"/><circle stroke=\"#primary\" stroke-width=\"2\" cx=\"24\" cy=\"24\" r=\"14\"/></g>", icon:'<g transform="translate(4 4)" fill="none" fill-rule="evenodd"><path d="M39 15h.96l4.038 3-.02-3H45a2 2 0 002-2V3a2 2 0 00-2-2H31a2 2 0 00-2 2v4.035" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M36 5.014l-3 3 3 3M40 5.014l3 3-3 3"/><path d="M6 37a1 1 0 110 2 1 1 0 010-2m7 0a1 1 0 110 2 1 1 0 010-2m-2.448 1a1 1 0 11-2 0 1 1 0 012 0z" fill="#primary"/><path d="M1.724 15.05A23.934 23.934 0 000 24c0 .686.029 1.366.085 2.037m19.92 21.632c1.3.218 2.634.331 3.995.331a23.92 23.92 0 009.036-1.76m13.207-13.21A23.932 23.932 0 0048 24c0-1.363-.114-2.7-.332-4M25.064.022a23.932 23.932 0 00-10.073 1.725" stroke="#secondary" stroke-width="2" stroke-linecap="round"/><path d="M19 42.062V43a2 2 0 01-2 2H9.04l-4.038 3 .02-3H3a2 2 0 01-2-2V33a2 2 0 012-2h4.045" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M6 0a6 6 0 110 12A6 6 0 016 0z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" stroke-width="2" stroke-linecap="round" d="M6 3v6M3 6h6"/><path d="M42 36a6 6 0 110 12 6 6 0 010-12z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M44.338 40.663l-3.336 3.331-1.692-1.686M31 31c-.716-2.865-3.578-5-7-5-3.423 0-6.287 2.14-7 5"/><path d="M24 16a5 5 0 110 10 5 5 0 010-10z" stroke="#primary" stroke-width="2" stroke-linecap="round"/><circle stroke="#primary" stroke-width="2" cx="24" cy="24" r="14"/></g>',
...rank(value, [1, 5000, 10000, 30000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 5000, 10000, 30000]),
value,
unlock:new Date(unlock?.createdAt),
leaderboard:leaderboard({user:ranks.repo_rank.repositoryCount, requirement:scores.stars >= requirements.stars, type:"repositories"}), leaderboard:leaderboard({user:ranks.repo_rank.repositoryCount, requirement:scores.stars >= requirements.stars, type:"repositories"}),
}) })
} }
@@ -79,8 +88,10 @@
list.push({ list.push({
title:"Inspirationers", title:"Inspirationers",
text:`Maintaining a repository which has been forked ${value} time${imports.s(value)}`, text:`Maintaining a repository which has been forked ${value} time${imports.s(value)}`,
icon:"<g transform=\"translate(4 4)\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M20.065 47.122c.44-.525.58-1.448.58-1.889 0-2.204-1.483-3.967-3.633-4.187.447-1.537.58-2.64.397-3.31-.25-.92-.745-1.646-1.409-2.235m-5.97-7.157c.371-.254.911-.748 1.62-1.48a8.662 8.662 0 001.432-2.366M47 22h-7c-1.538 0-2.749-.357-4-1h-5c-1.789.001-3-1.3-3-2.955 0-1.656 1.211-3.04 3-3.045h2c.027-1.129.513-2.17 1-3m3.082 32.004C34.545 43.028 34.02 40.569 34 39v-1h-1c-2.603-.318-5-2.913-5-5.997S30.397 26 33 26h9c2.384 0 4.326 1.024 5.27 3\" stroke=\"#secondary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><g transform=\"translate(36)\" stroke=\"#primary\" stroke-width=\"2\"><path fill=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M5.395 5.352L6.009 4l.598 1.348L8 5.408l-1.067 1.12.425 1.47-1.356-.908-1.35.91.404-1.469L4 5.41z\"/><circle cx=\"6\" cy=\"6\" r=\"6\"/></g><g transform=\"translate(0 31)\" stroke=\"#primary\" stroke-width=\"2\"><circle cx=\"6\" cy=\"6\" r=\"6\"/><g stroke-linecap=\"round\"><path d=\"M6 4v4M4 6h4\"/></g></g><circle stroke=\"#primary\" stroke-width=\"2\" cx=\"10.5\" cy=\"10.5\" r=\"10.5\"/><g stroke-linecap=\"round\"><path d=\"M32.01 1.37A23.96 23.96 0 0024 0c-.999 0-1.983.061-2.95.18M.32 20.072a24.21 24.21 0 00.015 7.948M12.42 45.025A23.892 23.892 0 0024 48c13.255 0 24-10.745 24-24 0-2.811-.483-5.51-1.371-8.016\" stroke=\"#secondary\" stroke-width=\"2\"/><path stroke=\"#primary\" stroke-width=\"2\" d=\"M8.999 7.151v5.865\"/><path d=\"M9 3a2 2 0 110 4 2 2 0 010-4zm0 10.8a2 2 0 11-.001 4 2 2 0 01.001-4z\" stroke=\"#primary\" stroke-width=\"1.8\"/><path d=\"M9.622 11.838c.138-.007.989.119 1.595-.05.607-.169 1.584-.539 1.829-1.337\" stroke=\"#primary\" stroke-width=\"2\"/><path d=\"M14.8 7.202a2 2 0 110 4 2 2 0 010-4z\" stroke=\"#primary\" stroke-width=\"1.8\"/></g></g>", icon:'<g transform="translate(4 4)" fill="none" fill-rule="evenodd"><path d="M20.065 47.122c.44-.525.58-1.448.58-1.889 0-2.204-1.483-3.967-3.633-4.187.447-1.537.58-2.64.397-3.31-.25-.92-.745-1.646-1.409-2.235m-5.97-7.157c.371-.254.911-.748 1.62-1.48a8.662 8.662 0 001.432-2.366M47 22h-7c-1.538 0-2.749-.357-4-1h-5c-1.789.001-3-1.3-3-2.955 0-1.656 1.211-3.04 3-3.045h2c.027-1.129.513-2.17 1-3m3.082 32.004C34.545 43.028 34.02 40.569 34 39v-1h-1c-2.603-.318-5-2.913-5-5.997S30.397 26 33 26h9c2.384 0 4.326 1.024 5.27 3" stroke="#secondary" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(36)" stroke="#primary" stroke-width="2"><path fill="#primary" stroke-linecap="round" stroke-linejoin="round" d="M5.395 5.352L6.009 4l.598 1.348L8 5.408l-1.067 1.12.425 1.47-1.356-.908-1.35.91.404-1.469L4 5.41z"/><circle cx="6" cy="6" r="6"/></g><g transform="translate(0 31)" stroke="#primary" stroke-width="2"><circle cx="6" cy="6" r="6"/><g stroke-linecap="round"><path d="M6 4v4M4 6h4"/></g></g><circle stroke="#primary" stroke-width="2" cx="10.5" cy="10.5" r="10.5"/><g stroke-linecap="round"><path d="M32.01 1.37A23.96 23.96 0 0024 0c-.999 0-1.983.061-2.95.18M.32 20.072a24.21 24.21 0 00.015 7.948M12.42 45.025A23.892 23.892 0 0024 48c13.255 0 24-10.745 24-24 0-2.811-.483-5.51-1.371-8.016" stroke="#secondary" stroke-width="2"/><path stroke="#primary" stroke-width="2" d="M8.999 7.151v5.865"/><path d="M9 3a2 2 0 110 4 2 2 0 010-4zm0 10.8a2 2 0 11-.001 4 2 2 0 01.001-4z" stroke="#primary" stroke-width="1.8"/><path d="M9.622 11.838c.138-.007.989.119 1.595-.05.607-.169 1.584-.539 1.829-1.337" stroke="#primary" stroke-width="2"/><path d="M14.8 7.202a2 2 0 110 4 2 2 0 010-4z" stroke="#primary" stroke-width="1.8"/></g></g>',
...rank(value, [1, 500, 1000, 3000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 500, 1000, 3000]),
value,
unlock:new Date(unlock?.createdAt),
leaderboard:leaderboard({user:ranks.forks_rank.repositoryCount, requirement:scores.forks >= requirements.forks, type:"repositories"}), leaderboard:leaderboard({user:ranks.forks_rank.repositoryCount, requirement:scores.forks >= requirements.forks, type:"repositories"}),
}) })
} }
@@ -93,8 +104,10 @@
list.push({ list.push({
title:"Polyglots", title:"Polyglots",
text:`Using ${value} different programming language${imports.s(value)}`, text:`Using ${value} different programming language${imports.s(value)}`,
icon:"<g stroke-linecap=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M17.135 7.988l-3.303.669a2 2 0 00-1.586 2.223l4.708 35.392a1.498 1.498 0 01-1.162 1.66 1.523 1.523 0 01-1.775-1.01L4.951 19.497a2 2 0 011.215-2.507l2.946-1.072\" stroke=\"#secondary\" stroke-linejoin=\"round\"/><path d=\"M36.8 48H23a2 2 0 01-2-2V7a2 2 0 012-2h26a2 2 0 012 2v32.766\" stroke=\"#primary\"/><path d=\"M29 20.955l-3.399 3.399a.85.85 0 000 1.202l3.399 3.4M43.014 20.955l3.399 3.399a.85.85 0 010 1.202l-3.4 3.4\" stroke=\"#primary\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" d=\"M38.526 18l-5.053 14.016\"/><path d=\"M44 36a8 8 0 110 16 8 8 0 010-16z\" stroke=\"#primary\" stroke-linejoin=\"round\"/><path d=\"M43.068 40.749l3.846 2.396a1 1 0 01-.006 1.7l-3.846 2.36a1 1 0 01-1.523-.853v-4.755a1 1 0 011.529-.848z\" stroke=\"#primary\" stroke-linejoin=\"round\"/></g>", icon:'<g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M17.135 7.988l-3.303.669a2 2 0 00-1.586 2.223l4.708 35.392a1.498 1.498 0 01-1.162 1.66 1.523 1.523 0 01-1.775-1.01L4.951 19.497a2 2 0 011.215-2.507l2.946-1.072" stroke="#secondary" stroke-linejoin="round"/><path d="M36.8 48H23a2 2 0 01-2-2V7a2 2 0 012-2h26a2 2 0 012 2v32.766" stroke="#primary"/><path d="M29 20.955l-3.399 3.399a.85.85 0 000 1.202l3.399 3.4M43.014 20.955l3.399 3.399a.85.85 0 010 1.202l-3.4 3.4" stroke="#primary" stroke-linejoin="round"/><path stroke="#primary" d="M38.526 18l-5.053 14.016"/><path d="M44 36a8 8 0 110 16 8 8 0 010-16z" stroke="#primary" stroke-linejoin="round"/><path d="M43.068 40.749l3.846 2.396a1 1 0 01-.006 1.7l-3.846 2.36a1 1 0 01-1.523-.853v-4.755a1 1 0 011.529-.848z" stroke="#primary" stroke-linejoin="round"/></g>',
...rank(value, [1, 8, 16, 32]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 8, 16, 32]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -106,8 +119,10 @@
list.push({ list.push({
title:"Sponsors", title:"Sponsors",
text:`Sponsoring ${value} user${imports.s(value)} or organization${imports.s(value)}`, text:`Sponsoring ${value} user${imports.s(value)} or organization${imports.s(value)}`,
icon:"<g xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M24 32c.267-1.727 1.973-3 4-3 2.08 0 3.787 1.318 4 3m-4-9a3 3 0 110 6 3 3 0 010-6z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M28 18c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M46.138 15c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C41.347 15 41 16.117 41 17.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005zm-31-5c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C10.347 10 10 11.117 10 12.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005zm6 32c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C16.347 42 16 43.117 16 44.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005z\" fill=\"#secondary\"/><path d=\"M8.003 29a3 3 0 110 6 3 3 0 010-6zM32.018 5.005a3 3 0 110 6 3 3 0 010-6z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\"/><path stroke=\"#secondary\" stroke-width=\"2\" d=\"M29.972 18.026L31.361 11M18.063 29.987l-7.004 1.401\"/><path d=\"M22.604 11.886l.746 2.164m-9.313 9.296l-2.156-.712\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.304 9a1 1 0 100-2 1 1 0 000 2zM8.076 22.346a1 1 0 100-2 1 1 0 000 2z\" fill=\"#primary\"/><path d=\"M33.267 44.17l-.722-2.146m9.38-9.206l2.147.743\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M34.544 49.031a1 1 0 100-2 1 1 0 000 2zm13.314-13.032a1 1 0 100-2 1 1 0 000 2z\" fill=\"#primary\"/><path d=\"M48.019 51.004a3 3 0 100-6 3 3 0 000 6zM35.194 35.33l10.812 11.019\" stroke=\"#secondary\" stroke-width=\"2\"/></g>", icon:'<g xmlns="http://www.w3.org/2000/svg" fill="none" fill-rule="evenodd"><path d="M24 32c.267-1.727 1.973-3 4-3 2.08 0 3.787 1.318 4 3m-4-9a3 3 0 110 6 3 3 0 010-6z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M28 18c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M46.138 15c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C41.347 15 41 16.117 41 17.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005zm-31-5c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C10.347 10 10 11.117 10 12.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005zm6 32c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C16.347 42 16 43.117 16 44.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005z" fill="#secondary"/><path d="M8.003 29a3 3 0 110 6 3 3 0 010-6zM32.018 5.005a3 3 0 110 6 3 3 0 010-6z" stroke="#secondary" stroke-width="2" stroke-linecap="round"/><path stroke="#secondary" stroke-width="2" d="M29.972 18.026L31.361 11M18.063 29.987l-7.004 1.401"/><path d="M22.604 11.886l.746 2.164m-9.313 9.296l-2.156-.712" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.304 9a1 1 0 100-2 1 1 0 000 2zM8.076 22.346a1 1 0 100-2 1 1 0 000 2z" fill="#primary"/><path d="M33.267 44.17l-.722-2.146m9.38-9.206l2.147.743" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M34.544 49.031a1 1 0 100-2 1 1 0 000 2zm13.314-13.032a1 1 0 100-2 1 1 0 000 2z" fill="#primary"/><path d="M48.019 51.004a3 3 0 100-6 3 3 0 000 6zM35.194 35.33l10.812 11.019" stroke="#secondary" stroke-width="2"/></g>',
...rank(value, [1, 5, 10, 20]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 5, 10, 20]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -119,8 +134,10 @@
list.push({ list.push({
title:"Organization", title:"Organization",
text:`Has ${value} member${imports.s(value)}`, text:`Has ${value} member${imports.s(value)}`,
icon:"<g xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M6 42c.45-3.415 3.34-6 7-6 1.874 0 3.752.956 5 3m-6-13a5 5 0 110 10 5 5 0 010-10zm38 16c-.452-3.415-3.34-6-7-6-1.874 0-3.752.956-5 3m6-13a5 5 0 100 10 5 5 0 000-10z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M37 51c-.92-4.01-4.6-7-9-7-4.401 0-8.083 2.995-9 7\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M28.01 31.004a6.5 6.5 0 110 13 6.5 6.5 0 010-13z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M28 14.011a5 5 0 11-5 4.998 5 5 0 015-4.998z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M22 26c1.558-1.25 3.665-2 6-2 2.319 0 4.439.761 6 2\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M51 9V8c0-1.3-1.574-3-3-3h-8c-1.426 0-3 1.7-3 3v13l4-4h6c2.805-.031 4-1.826 4-4V9zM5 9V8c0-1.3 1.574-3 3-3h8c1.426 0 3 1.7 3 3v13l-4-4H9c-2.805-.031-4-1.826-4-4V9z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M43 11a1 1 0 11-2 0 1 1 0 012 0zm4 0a1 1 0 11-2 0 1 1 0 012 0zm-36 0a1 1 0 11-2 0 1 1 0 012 0zm4 0a1 1 0 11-2 0 1 1 0 012 0z\" fill=\"#secondary\"/></g>", icon:'<g xmlns="http://www.w3.org/2000/svg" fill="none" fill-rule="evenodd"><path d="M6 42c.45-3.415 3.34-6 7-6 1.874 0 3.752.956 5 3m-6-13a5 5 0 110 10 5 5 0 010-10zm38 16c-.452-3.415-3.34-6-7-6-1.874 0-3.752.956-5 3m6-13a5 5 0 100 10 5 5 0 000-10z" stroke="#primary" stroke-width="2" stroke-linecap="round"/><path d="M37 51c-.92-4.01-4.6-7-9-7-4.401 0-8.083 2.995-9 7" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M28.01 31.004a6.5 6.5 0 110 13 6.5 6.5 0 010-13z" stroke="#secondary" stroke-width="2" stroke-linecap="round"/><path d="M28 14.011a5 5 0 11-5 4.998 5 5 0 015-4.998z" stroke="#primary" stroke-width="2" stroke-linecap="round"/><path d="M22 26c1.558-1.25 3.665-2 6-2 2.319 0 4.439.761 6 2" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M51 9V8c0-1.3-1.574-3-3-3h-8c-1.426 0-3 1.7-3 3v13l4-4h6c2.805-.031 4-1.826 4-4V9zM5 9V8c0-1.3 1.574-3 3-3h8c1.426 0 3 1.7 3 3v13l-4-4H9c-2.805-.031-4-1.826-4-4V9z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M43 11a1 1 0 11-2 0 1 1 0 012 0zm4 0a1 1 0 11-2 0 1 1 0 012 0zm-36 0a1 1 0 11-2 0 1 1 0 012 0zm4 0a1 1 0 11-2 0 1 1 0 012 0z" fill="#secondary"/></g>',
...rank(value, [1, 100, 500, 1000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 100, 500, 1000]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -132,9 +149,10 @@
list.push({ list.push({
title:"Member", title:"Member",
text:`Registered ${Math.floor(value)} year${imports.s(Math.floor(value))} ago`, text:`Registered ${Math.floor(value)} year${imports.s(Math.floor(value))} ago`,
icon:"<g xmlns=\"http://www.w3.org/2000/svg\" transform=\"translate(5 4)\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M46 44.557v1a2 2 0 01-2 2H2a2 2 0 01-2-2v-1\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M.75 40.993l.701.561a2.323 2.323 0 002.903 0l1.675-1.34a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.103.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.429 1.182a2.427 2.427 0 003.103-.008l.832-.695A2 2 0 0046 39.191v-1.634a2 2 0 00-2-2H2a2 2 0 00-2 2v1.875a2 2 0 00.75 1.561z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M42 31.609v.948m-38 0v-.992m25.04-15.008H35a2 2 0 012 2v1m-28 0v-1a2 2 0 012-2h6.007\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22 8.557h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6a1 1 0 011-1z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M4.7 10.557c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zm35-8c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M23 5.557a2 2 0 002-2C25 2.452 24.433 0 22.273 0c-.463 0 .21 1.424-.502 1.979A2 2 0 0023 5.557z\" stroke=\"#primary\" stroke-width=\"2\"/><path d=\"M4.78 27.982l1.346 1.076a3 3 0 003.748 0l1.252-1.002a3 3 0 013.748 0l1.282 1.026a3 3 0 003.711.03l1.4-1.085a3 3 0 013.75.061l1.102.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.281 1.025a3 3 0 003.712.029l1.358-1.053a2 2 0 00.775-1.58v-.97a1.95 1.95 0 00-1.95-1.95H5.942a1.912 1.912 0 00-1.912 1.912v.951a2 2 0 00.75 1.562z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle stroke=\"#secondary\" cx=\"16.5\" cy=\"2.057\" r=\"1\"/><circle stroke=\"#secondary\" cx=\"14.5\" cy=\"12.057\" r=\"1\"/><circle stroke=\"#secondary\" cx=\"31.5\" cy=\"9.057\" r=\"1\"/></g>", icon:'<g xmlns="http://www.w3.org/2000/svg" transform="translate(5 4)" fill="none" fill-rule="evenodd"><path d="M46 44.557v1a2 2 0 01-2 2H2a2 2 0 01-2-2v-1" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M.75 40.993l.701.561a2.323 2.323 0 002.903 0l1.675-1.34a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.103.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.429 1.182a2.427 2.427 0 003.103-.008l.832-.695A2 2 0 0046 39.191v-1.634a2 2 0 00-2-2H2a2 2 0 00-2 2v1.875a2 2 0 00.75 1.561z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M42 31.609v.948m-38 0v-.992m25.04-15.008H35a2 2 0 012 2v1m-28 0v-1a2 2 0 012-2h6.007" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 8.557h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6a1 1 0 011-1z" stroke="#primary" stroke-width="2" stroke-linejoin="round"/><path d="M4.7 10.557c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zm35-8c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M23 5.557a2 2 0 002-2C25 2.452 24.433 0 22.273 0c-.463 0 .21 1.424-.502 1.979A2 2 0 0023 5.557z" stroke="#primary" stroke-width="2"/><path d="M4.78 27.982l1.346 1.076a3 3 0 003.748 0l1.252-1.002a3 3 0 013.748 0l1.282 1.026a3 3 0 003.711.03l1.4-1.085a3 3 0 013.75.061l1.102.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.281 1.025a3 3 0 003.712.029l1.358-1.053a2 2 0 00.775-1.58v-.97a1.95 1.95 0 00-1.95-1.95H5.942a1.912 1.912 0 00-1.912 1.912v.951a2 2 0 00.75 1.562z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><circle stroke="#secondary" cx="16.5" cy="2.057" r="1"/><circle stroke="#secondary" cx="14.5" cy="12.057" r="1"/><circle stroke="#secondary" cx="31.5" cy="9.057" r="1"/></g>',
...rank(value, [1, 3, 5, 10]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 3, 5, 10]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
}
}

View File

@@ -1,6 +1,5 @@
/**Achievements list for users accounts */ /**Achievements list for users accounts */
export default async function({list, login, data, computed, imports, graphql, queries, rank, leaderboard}) { export default async function({list, login, data, computed, imports, graphql, queries, rank, leaderboard}) {
//Initialization //Initialization
const {user} = await graphql(queries.achievements({login})) const {user} = await graphql(queries.achievements({login}))
const scores = {followers:user.followers.totalCount, created:user.repositories.totalCount, stars:user.popular.nodes?.[0]?.stargazers?.totalCount ?? 0, forks:Math.max(0, ...data.user.repositories.nodes.map(({forkCount}) => forkCount))} const scores = {followers:user.followers.totalCount, created:user.repositories.totalCount, stars:user.popular.nodes?.[0]?.stargazers?.totalCount ?? 0, forks:Math.max(0, ...data.user.repositories.nodes.map(({forkCount}) => forkCount))}
@@ -14,8 +13,10 @@
list.push({ list.push({
title:"Developer", title:"Developer",
text:`Published ${value} public repositor${imports.s(value, "y")}`, text:`Published ${value} public repositor${imports.s(value, "y")}`,
icon:"<g stroke-linecap=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><g stroke=\"#primary\"><path d=\"M20 24l-3.397 3.398a.85.85 0 000 1.203L20.002 32M37.015 24l3.399 3.398a.85.85 0 010 1.203L37.014 32\" stroke-linejoin=\"round\"/><path d=\"M31.029 21.044L25.976 35.06\"/></g><path stroke=\"#secondary\" stroke-linejoin=\"round\" d=\"M23.018 10h8.984M26 47h5M8 16h16m9 0h15.725M8 41h13\"/><path d=\"M5.027 34.998c.673 2.157 1.726 4.396 2.81 6.02m43.38-19.095C50.7 19.921 49.866 17.796 48.79 16\" stroke=\"#secondary\"/><path stroke=\"#primary\" stroke-linejoin=\"round\" d=\"M26 41h17\"/><path d=\"M7.183 16C5.186 19.582 4 23.619 4 28M42.608 47.02c2.647-1.87 5.642-5.448 7.295-9.18C51.52 34.191 52.071 30.323 52 28\" stroke=\"#primary\"/><path stroke=\"#primary\" stroke-linejoin=\"round\" d=\"M7.226 16H28M13.343 47H21\"/><path d=\"M13.337 47.01a24.364 24.364 0 006.19 3.45 24.527 24.527 0 007.217 1.505c2.145.108 4.672-.05 7.295-.738\" stroke=\"#primary\"/><path stroke=\"#primary\" stroke-linejoin=\"round\" d=\"M36 47h6.647M12 10h6M37 10h6.858\"/><path d=\"M43.852 10c-4.003-3.667-9.984-6.054-16.047-6-2.367.021-4.658.347-6.81 1.045\" stroke=\"#primary\"/><path stroke=\"#secondary\" stroke-linejoin=\"round\" d=\"M5.041 35h4.962M47 22h4.191\"/></g>", icon:'<g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd"><g stroke="#primary"><path d="M20 24l-3.397 3.398a.85.85 0 000 1.203L20.002 32M37.015 24l3.399 3.398a.85.85 0 010 1.203L37.014 32" stroke-linejoin="round"/><path d="M31.029 21.044L25.976 35.06"/></g><path stroke="#secondary" stroke-linejoin="round" d="M23.018 10h8.984M26 47h5M8 16h16m9 0h15.725M8 41h13"/><path d="M5.027 34.998c.673 2.157 1.726 4.396 2.81 6.02m43.38-19.095C50.7 19.921 49.866 17.796 48.79 16" stroke="#secondary"/><path stroke="#primary" stroke-linejoin="round" d="M26 41h17"/><path d="M7.183 16C5.186 19.582 4 23.619 4 28M42.608 47.02c2.647-1.87 5.642-5.448 7.295-9.18C51.52 34.191 52.071 30.323 52 28" stroke="#primary"/><path stroke="#primary" stroke-linejoin="round" d="M7.226 16H28M13.343 47H21"/><path d="M13.337 47.01a24.364 24.364 0 006.19 3.45 24.527 24.527 0 007.217 1.505c2.145.108 4.672-.05 7.295-.738" stroke="#primary"/><path stroke="#primary" stroke-linejoin="round" d="M36 47h6.647M12 10h6M37 10h6.858"/><path d="M43.852 10c-4.003-3.667-9.984-6.054-16.047-6-2.367.021-4.658.347-6.81 1.045" stroke="#primary"/><path stroke="#secondary" stroke-linejoin="round" d="M5.041 35h4.962M47 22h4.191"/></g>',
...rank(value, [1, 20, 50, 100]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 20, 50, 100]),
value,
unlock:new Date(unlock?.createdAt),
leaderboard:leaderboard({user:ranks.created_rank.userCount, requirement:scores.created >= requirements.created, type:"users"}), leaderboard:leaderboard({user:ranks.created_rank.userCount, requirement:scores.created >= requirements.created, type:"users"}),
}) })
} }
@@ -27,8 +28,10 @@
list.push({ list.push({
title:"Forker", title:"Forker",
text:`Forked ${value} public repositor${imports.s(value, "y")}`, text:`Forked ${value} public repositor${imports.s(value, "y")}`,
icon:"<g stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M37.303 21.591a5.84 5.84 0 00-1.877-1.177 6.138 6.138 0 00-4.432 0 5.822 5.822 0 00-1.879 1.177L28 22.638l-1.115-1.047c-1.086-1.018-2.559-1.59-4.094-1.59-1.536 0-3.008.572-4.094 1.59-1.086 1.02-1.696 2.4-1.696 3.84 0 1.441.61 2.823 1.696 3.841l1.115 1.046L28 38l8.189-7.682 1.115-1.046a5.422 5.422 0 001.256-1.761 5.126 5.126 0 000-4.157 5.426 5.426 0 00-1.256-1.763z\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M15.967 42.705A18.922 18.922 0 0028 47a18.92 18.92 0 0011.076-3.56m-.032-30.902A18.914 18.914 0 0028 9c-4.09 0-7.876 1.292-10.976 3.49\" stroke=\"#secondary\" stroke-linecap=\"round\"/><g transform=\"translate(7 10)\" stroke=\"#primary\"><path d=\"M6 0v7c0 2.21-1.343 3-3 3s-3-.79-3-3V0\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke-linecap=\"round\" d=\"M3 0v19.675\"/><rect stroke-linejoin=\"round\" x=\"1\" y=\"20\" width=\"4\" height=\"16\" rx=\"2\"/></g><g transform=\"translate(43 10)\" stroke=\"#primary\"><path stroke-linecap=\"round\" d=\"M2 15.968v3.674\"/><path d=\"M4 15.642H0L.014 4.045A4.05 4.05 0 014.028 0L4 15.642z\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><rect stroke-linejoin=\"round\" y=\"19.968\" width=\"4\" height=\"16\" rx=\"2\"/></g><path d=\"M41.364 8.062A23.888 23.888 0 0028 4a23.89 23.89 0 00-11.95 3.182M4.75 22.021A24.045 24.045 0 004 28c0 1.723.182 3.404.527 5.024m10.195 14.971A23.888 23.888 0 0028 52c4.893 0 9.444-1.464 13.239-3.979m9-10.98A23.932 23.932 0 0052 28c0-2.792-.477-5.472-1.353-7.964\" stroke=\"#secondary\" stroke-linecap=\"round\"/></g>", icon:'<g stroke-width="2" fill="none" fill-rule="evenodd"><path d="M37.303 21.591a5.84 5.84 0 00-1.877-1.177 6.138 6.138 0 00-4.432 0 5.822 5.822 0 00-1.879 1.177L28 22.638l-1.115-1.047c-1.086-1.018-2.559-1.59-4.094-1.59-1.536 0-3.008.572-4.094 1.59-1.086 1.02-1.696 2.4-1.696 3.84 0 1.441.61 2.823 1.696 3.841l1.115 1.046L28 38l8.189-7.682 1.115-1.046a5.422 5.422 0 001.256-1.761 5.126 5.126 0 000-4.157 5.426 5.426 0 00-1.256-1.763z" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><path d="M15.967 42.705A18.922 18.922 0 0028 47a18.92 18.92 0 0011.076-3.56m-.032-30.902A18.914 18.914 0 0028 9c-4.09 0-7.876 1.292-10.976 3.49" stroke="#secondary" stroke-linecap="round"/><g transform="translate(7 10)" stroke="#primary"><path d="M6 0v7c0 2.21-1.343 3-3 3s-3-.79-3-3V0" stroke-linecap="round" stroke-linejoin="round"/><path stroke-linecap="round" d="M3 0v19.675"/><rect stroke-linejoin="round" x="1" y="20" width="4" height="16" rx="2"/></g><g transform="translate(43 10)" stroke="#primary"><path stroke-linecap="round" d="M2 15.968v3.674"/><path d="M4 15.642H0L.014 4.045A4.05 4.05 0 014.028 0L4 15.642z" stroke-linecap="round" stroke-linejoin="round"/><rect stroke-linejoin="round" y="19.968" width="4" height="16" rx="2"/></g><path d="M41.364 8.062A23.888 23.888 0 0028 4a23.89 23.89 0 00-11.95 3.182M4.75 22.021A24.045 24.045 0 004 28c0 1.723.182 3.404.527 5.024m10.195 14.971A23.888 23.888 0 0028 52c4.893 0 9.444-1.464 13.239-3.979m9-10.98A23.932 23.932 0 0052 28c0-2.792-.477-5.472-1.353-7.964" stroke="#secondary" stroke-linecap="round"/></g>',
...rank(value, [1, 5, 10, 20]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 5, 10, 20]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -40,8 +43,10 @@
list.push({ list.push({
title:"Contributor", title:"Contributor",
text:`Opened ${value} pull request${imports.s(value)}`, text:`Opened ${value} pull request${imports.s(value)}`,
icon:"<g stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path stroke=\"#secondary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M26.022 5.014h6M26.012 53.005h6M27.003 47.003h12M44.01 20.005h5M19.01 11.003h12\"/><path stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M38.005 11.008h6M41 14.013v-6M14.007 47.003h6M17.002 50.004v-6\"/><path d=\"M29.015 5.01l-5.003 5.992 5.003-5.992zM33.015 47.01l-5.003 5.992 5.003-5.992z\" stroke=\"#secondary\"/><path stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8.01 19.002h6\"/><path stroke=\"#secondary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M47.011 29h6\"/><path stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M44.012 39.003h6\"/><g stroke=\"#secondary\"><path d=\"M5.36 29c4.353 0 6.4 4.472 6.4 8\"/><path stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M13.99 37.995h-5M10.989 29h-6\"/></g><path d=\"M24.503 22c1.109 0 2.007.895 2.007 2 0 1.104-.898 2-2.007 2a2.004 2.004 0 01-2.008-2c0-1.105.9-2 2.008-2zM24.5 32a2 2 0 110 4 2 2 0 010-4zm9.5 0a2 2 0 110 4 2 2 0 010-4z\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" d=\"M24.5 26.004v6.001\"/><path d=\"M31.076 23.988l1.027-.023a1.998 1.998 0 011.932 2.01L34 31\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M31.588 26.222l-2.194-2.046 2.046-2.194\"/><path d=\"M29.023 43c7.732 0 14-6.268 14-14s-6.268-14-14-14-14 6.268-14 14 6.268 14 14 14z\" stroke=\"#primary\"/></g>", icon:'<g stroke-width="2" fill="none" fill-rule="evenodd"><path stroke="#secondary" stroke-linecap="round" stroke-linejoin="round" d="M26.022 5.014h6M26.012 53.005h6M27.003 47.003h12M44.01 20.005h5M19.01 11.003h12"/><path stroke="#primary" stroke-linecap="round" stroke-linejoin="round" d="M38.005 11.008h6M41 14.013v-6M14.007 47.003h6M17.002 50.004v-6"/><path d="M29.015 5.01l-5.003 5.992 5.003-5.992zM33.015 47.01l-5.003 5.992 5.003-5.992z" stroke="#secondary"/><path stroke="#primary" stroke-linecap="round" stroke-linejoin="round" d="M8.01 19.002h6"/><path stroke="#secondary" stroke-linecap="round" stroke-linejoin="round" d="M47.011 29h6"/><path stroke="#primary" stroke-linecap="round" stroke-linejoin="round" d="M44.012 39.003h6"/><g stroke="#secondary"><path d="M5.36 29c4.353 0 6.4 4.472 6.4 8"/><path stroke-linecap="round" stroke-linejoin="round" d="M13.99 37.995h-5M10.989 29h-6"/></g><path d="M24.503 22c1.109 0 2.007.895 2.007 2 0 1.104-.898 2-2.007 2a2.004 2.004 0 01-2.008-2c0-1.105.9-2 2.008-2zM24.5 32a2 2 0 110 4 2 2 0 010-4zm9.5 0a2 2 0 110 4 2 2 0 010-4z" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" d="M24.5 26.004v6.001"/><path d="M31.076 23.988l1.027-.023a1.998 1.998 0 011.932 2.01L34 31" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" stroke-linecap="round" stroke-linejoin="round" d="M31.588 26.222l-2.194-2.046 2.046-2.194"/><path d="M29.023 43c7.732 0 14-6.268 14-14s-6.268-14-14-14-14 6.268-14 14 6.268 14 14 14z" stroke="#primary"/></g>',
...rank(value, [1, 200, 500, 1000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 200, 500, 1000]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -53,8 +58,10 @@
list.push({ list.push({
title:"Manager", title:"Manager",
text:`Created ${value} user project${imports.s(value)}`, text:`Created ${value} user project${imports.s(value)}`,
icon:"<g stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M29 16V8.867C29 7.705 29.627 7 30.692 7h18.616C50.373 7 51 7.705 51 8.867v38.266C51 48.295 50.373 49 49.308 49H30.692C29.627 49 29 48.295 29 47.133V39m-4-23V9c0-1.253-.737-2-2-2H7c-1.263 0-2 .747-2 2v34c0 1.253.737 2 2 2h16c1.263 0 2-.747 2-2v-4\" stroke=\"#secondary\" stroke-linecap=\"round\"/><path stroke=\"#secondary\" d=\"M51.557 12.005h-22M5 12.005h21\"/><path d=\"M14 33V22c0-1.246.649-2 1.73-2h28.54c1.081 0 1.73.754 1.73 2v11c0 1.246-.649 2-1.73 2H15.73c-1.081 0-1.73-.754-1.73-2z\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M19 29v-3c0-.508.492-1 1-1h3c.508 0 1 .492 1 1v3c0 .508-.492 1-1 1h-3c-.508-.082-1-.492-1-1z\" stroke=\"#primary\"/><path stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M28.996 27.998h12M9.065 20.04a7.062 7.062 0 00-.023 1.728m.775 2.517c.264.495.584.954.954 1.369\"/></g>", icon:'<g stroke-width="2" fill="none" fill-rule="evenodd"><path d="M29 16V8.867C29 7.705 29.627 7 30.692 7h18.616C50.373 7 51 7.705 51 8.867v38.266C51 48.295 50.373 49 49.308 49H30.692C29.627 49 29 48.295 29 47.133V39m-4-23V9c0-1.253-.737-2-2-2H7c-1.263 0-2 .747-2 2v34c0 1.253.737 2 2 2h16c1.263 0 2-.747 2-2v-4" stroke="#secondary" stroke-linecap="round"/><path stroke="#secondary" d="M51.557 12.005h-22M5 12.005h21"/><path d="M14 33V22c0-1.246.649-2 1.73-2h28.54c1.081 0 1.73.754 1.73 2v11c0 1.246-.649 2-1.73 2H15.73c-1.081 0-1.73-.754-1.73-2z" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><path d="M19 29v-3c0-.508.492-1 1-1h3c.508 0 1 .492 1 1v3c0 .508-.492 1-1 1h-3c-.508-.082-1-.492-1-1z" stroke="#primary"/><path stroke="#primary" stroke-linecap="round" stroke-linejoin="round" d="M28.996 27.998h12M9.065 20.04a7.062 7.062 0 00-.023 1.728m.775 2.517c.264.495.584.954.954 1.369"/></g>',
...rank(value, [1, 2, 3, 4]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 2, 3, 4]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -66,8 +73,10 @@
list.push({ list.push({
title:"Reviewer", title:"Reviewer",
text:`Reviewed ${value} pull request${imports.s(value)}`, text:`Reviewed ${value} pull request${imports.s(value)}`,
icon:"<g stroke-linecap=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><g stroke=\"#secondary\"><path d=\"M26.009 34.01c.444-.004.9.141 1.228.414.473.394.766.959.76 1.54-.01.735-.333 1.413-.97 2.037.66.718.985 1.4.976 2.048-.012.828-.574 1.58-1.687 2.258.624.788.822 1.549.596 2.28-.225.733-.789 1.219-1.69 1.459.703.833.976 1.585.82 2.256-.178.763-.313 1.716-2.492 1.711\" stroke-linejoin=\"round\"/><g stroke-linejoin=\"round\"><path d=\"M18.548 28.422c1.184-4.303-2.132-5.292-2.132-5.292-.873 2.296-1.438 3.825-4.231 8.108-1.285 1.97-1.926 3.957-1.877 5.796M18.391 34.011L24.993 34c2.412-.009.211-.005-6.602.012zM5.004 37.017l5.234-.014-5.234.014z\"/></g><g stroke-linejoin=\"round\"><path d=\"M18.548 28.422c1.184-4.303-2.132-5.292-2.132-5.292-.873 2.296-1.438 3.825-4.231 8.108-1.285 1.97-1.926 3.957-1.877 5.796M5.004 37.017l5.234-.014-5.234.014zM7 48.012h4.01c1.352 1.333 2.672 2 3.961 2.001 0 0 .485-.005 5.46-.005h3.536\"/></g><path d=\"M18.793 27.022c-.062.933-.373 2.082-.933 3.446-.561 1.364-.433 2.547.383 3.547\"/></g><path d=\"M45 16.156V23a2 2 0 01-2 2H31l-6 4v-4h-1.934M12 23V8a2 2 0 012-2h29a2 2 0 012 2v10\" stroke=\"#primary\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-linejoin=\"round\" d=\"M23 12.014l-3 3 3 3M34 12.014l3 3-3 3\"/><path stroke=\"#primary\" d=\"M30.029 10l-3.015 10.027\"/><path d=\"M32 39h3l6 4v-4h8a2 2 0 002-2V22a2 2 0 00-2-2h.138\" stroke=\"#secondary\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-linejoin=\"round\" d=\"M33 29h12M33 34h6M43 34h2\"/></g>", icon:'<g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd"><g stroke="#secondary"><path d="M26.009 34.01c.444-.004.9.141 1.228.414.473.394.766.959.76 1.54-.01.735-.333 1.413-.97 2.037.66.718.985 1.4.976 2.048-.012.828-.574 1.58-1.687 2.258.624.788.822 1.549.596 2.28-.225.733-.789 1.219-1.69 1.459.703.833.976 1.585.82 2.256-.178.763-.313 1.716-2.492 1.711" stroke-linejoin="round"/><g stroke-linejoin="round"><path d="M18.548 28.422c1.184-4.303-2.132-5.292-2.132-5.292-.873 2.296-1.438 3.825-4.231 8.108-1.285 1.97-1.926 3.957-1.877 5.796M18.391 34.011L24.993 34c2.412-.009.211-.005-6.602.012zM5.004 37.017l5.234-.014-5.234.014z"/></g><g stroke-linejoin="round"><path d="M18.548 28.422c1.184-4.303-2.132-5.292-2.132-5.292-.873 2.296-1.438 3.825-4.231 8.108-1.285 1.97-1.926 3.957-1.877 5.796M5.004 37.017l5.234-.014-5.234.014zM7 48.012h4.01c1.352 1.333 2.672 2 3.961 2.001 0 0 .485-.005 5.46-.005h3.536"/></g><path d="M18.793 27.022c-.062.933-.373 2.082-.933 3.446-.561 1.364-.433 2.547.383 3.547"/></g><path d="M45 16.156V23a2 2 0 01-2 2H31l-6 4v-4h-1.934M12 23V8a2 2 0 012-2h29a2 2 0 012 2v10" stroke="#primary" stroke-linejoin="round"/><path stroke="#primary" stroke-linejoin="round" d="M23 12.014l-3 3 3 3M34 12.014l3 3-3 3"/><path stroke="#primary" d="M30.029 10l-3.015 10.027"/><path d="M32 39h3l6 4v-4h8a2 2 0 002-2V22a2 2 0 00-2-2h.138" stroke="#secondary" stroke-linejoin="round"/><path stroke="#primary" stroke-linejoin="round" d="M33 29h12M33 34h6M43 34h2"/></g>',
...rank(value, [1, 200, 500, 1000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 200, 500, 1000]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -79,8 +88,10 @@
list.push({ list.push({
title:"Packager", title:"Packager",
text:`Created ${value} package${imports.s(value)}`, text:`Created ${value} package${imports.s(value)}`,
icon:"<g fill=\"none\"><path fill=\"#secondary\" d=\"M28.53 27.64l-11.2 6.49V21.15l11.23-6.48z\"/><path d=\"M40.4 34.84c-.17 0-.34-.04-.5-.13l-11.24-6.44a.99.99 0 01-.37-1.36.99.99 0 011.36-.37l11.24 6.44c.48.27.65.89.37 1.36-.17.32-.51.5-.86.5z\" fill=\"#primary\"/><path d=\"M29.16 28.4c-.56 0-1-.45-1-1.01l.08-12.47c0-.55.49-1 1.01-.99.55 0 1 .45.99 1.01l-.08 12.47c0 .55-.45.99-1 .99z\" fill=\"#primary\"/><path d=\"M18.25 34.65a.996.996 0 01-.5-1.86l10.91-6.25a.997.997 0 11.99 1.73l-10.91 6.25c-.15.09-.32.13-.49.13z\" fill=\"#primary\"/><path d=\"M29.19 41.37c-.17 0-.35-.04-.5-.13l-11.23-6.49c-.31-.18-.5-.51-.5-.87V20.91c0-.36.19-.69.5-.87l11.23-6.49c.31-.18.69-.18 1 0l11.23 6.49c.31.18.5.51.5.87v12.97c0 .36-.19.69-.5.87l-11.23 6.49c-.15.08-.32.13-.5.13zm-10.23-8.06l10.23 5.91 10.23-5.91V21.49l-10.23-5.91-10.23 5.91v11.82zM40.5 11.02c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm-23.19 4.36c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.42 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm23.37 43.8c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.42 3.18-3.18 3.18zm0-4.35c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm-23.06 4.11c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zM6.18 30.72C4.43 30.72 3 29.29 3 27.54c0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm45.64 4.36c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18z\" fill=\"#primary\"/><path d=\"M29.1 10.21c-.55 0-1-.45-1-1V3.52c0-.55.45-1 1-1s1 .45 1 1v5.69c0 .56-.45 1-1 1zM7.44 20.95c-.73 0-1.32-.59-1.32-1.32v-5.38l4.66-2.69c.63-.37 1.44-.15 1.8.48.36.63.15 1.44-.48 1.8l-3.34 1.93v3.86c0 .73-.59 1.32-1.32 1.32zm4 22.68c-.22 0-.45-.06-.66-.18l-4.66-2.69v-5.38c0-.73.59-1.32 1.32-1.32.73 0 1.32.59 1.32 1.32v3.86l3.34 1.93c.63.36.85 1.17.48 1.8-.24.42-.68.66-1.14.66zm17.64 10.39l-4.66-2.69c-.63-.36-.85-1.17-.48-1.8.36-.63 1.17-.85 1.8-.48l3.34 1.93 3.34-1.93a1.32 1.32 0 011.8.48c.36.63.15 1.44-.48 1.8l-4.66 2.69zm17.64-10.39a1.32 1.32 0 01-.66-2.46l3.34-1.93v-3.86c0-.73.59-1.32 1.32-1.32.73 0 1.32.59 1.32 1.32v5.38l-4.66 2.69c-.21.12-.44.18-.66.18zm4-22.68c-.73 0-1.32-.59-1.32-1.32v-3.86l-3.34-1.93c-.63-.36-.85-1.17-.48-1.8.36-.63 1.17-.85 1.8-.48l4.66 2.69v5.38c0 .73-.59 1.32-1.32 1.32z\" fill=\"#secondary\"/><path d=\"M33.08 6.15c-.22 0-.45-.06-.66-.18l-3.34-1.93-3.34 1.93c-.63.36-1.44.15-1.8-.48a1.32 1.32 0 01.48-1.8L29.08 1l4.66 2.69c.63.36.85 1.17.48 1.8a1.3 1.3 0 01-1.14.66zm-3.99 47.3c-.55 0-1-.45-1-1v-7.13c0-.55.45-1 1-1s1 .45 1 1v7.13c0 .55-.44 1-1 1zM13.86 19.71c-.17 0-.34-.04-.5-.13L7.2 16a1 1 0 011-1.73l6.17 3.58c.48.28.64.89.36 1.37-.19.31-.52.49-.87.49zm36.63 21.23c-.17 0-.34-.04-.5-.13l-6.17-3.57a.998.998 0 01-.36-1.37c.28-.48.89-.64 1.37-.36L51 39.08c.48.28.64.89.36 1.37-.19.31-.52.49-.87.49zM44.06 19.8c-.35 0-.68-.18-.87-.5-.28-.48-.11-1.09.36-1.37l6.17-3.57c.48-.28 1.09-.11 1.37.36.28.48.11 1.09-.36 1.37l-6.17 3.57c-.16.1-.33.14-.5.14zM7.43 41.03c-.35 0-.68-.18-.87-.5-.28-.48-.11-1.09.36-1.37l6.17-3.57c.48-.28 1.09-.11 1.37.36.28.48.11 1.09-.36 1.37l-6.17 3.57c-.15.09-.33.14-.5.14z\" fill=\"#secondary\"/></g>", icon:'<g fill="none"><path fill="#secondary" d="M28.53 27.64l-11.2 6.49V21.15l11.23-6.48z"/><path d="M40.4 34.84c-.17 0-.34-.04-.5-.13l-11.24-6.44a.99.99 0 01-.37-1.36.99.99 0 011.36-.37l11.24 6.44c.48.27.65.89.37 1.36-.17.32-.51.5-.86.5z" fill="#primary"/><path d="M29.16 28.4c-.56 0-1-.45-1-1.01l.08-12.47c0-.55.49-1 1.01-.99.55 0 1 .45.99 1.01l-.08 12.47c0 .55-.45.99-1 .99z" fill="#primary"/><path d="M18.25 34.65a.996.996 0 01-.5-1.86l10.91-6.25a.997.997 0 11.99 1.73l-10.91 6.25c-.15.09-.32.13-.49.13z" fill="#primary"/><path d="M29.19 41.37c-.17 0-.35-.04-.5-.13l-11.23-6.49c-.31-.18-.5-.51-.5-.87V20.91c0-.36.19-.69.5-.87l11.23-6.49c.31-.18.69-.18 1 0l11.23 6.49c.31.18.5.51.5.87v12.97c0 .36-.19.69-.5.87l-11.23 6.49c-.15.08-.32.13-.5.13zm-10.23-8.06l10.23 5.91 10.23-5.91V21.49l-10.23-5.91-10.23 5.91v11.82zM40.5 11.02c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm-23.19 4.36c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.42 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm23.37 43.8c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.42 3.18-3.18 3.18zm0-4.35c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm-23.06 4.11c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zM6.18 30.72C4.43 30.72 3 29.29 3 27.54c0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18zm45.64 4.36c-1.75 0-3.18-1.43-3.18-3.18 0-1.75 1.43-3.18 3.18-3.18 1.75 0 3.18 1.43 3.18 3.18 0 1.75-1.43 3.18-3.18 3.18zm0-4.36c-.65 0-1.18.53-1.18 1.18 0 .65.53 1.18 1.18 1.18.65 0 1.18-.53 1.18-1.18 0-.65-.53-1.18-1.18-1.18z" fill="#primary"/><path d="M29.1 10.21c-.55 0-1-.45-1-1V3.52c0-.55.45-1 1-1s1 .45 1 1v5.69c0 .56-.45 1-1 1zM7.44 20.95c-.73 0-1.32-.59-1.32-1.32v-5.38l4.66-2.69c.63-.37 1.44-.15 1.8.48.36.63.15 1.44-.48 1.8l-3.34 1.93v3.86c0 .73-.59 1.32-1.32 1.32zm4 22.68c-.22 0-.45-.06-.66-.18l-4.66-2.69v-5.38c0-.73.59-1.32 1.32-1.32.73 0 1.32.59 1.32 1.32v3.86l3.34 1.93c.63.36.85 1.17.48 1.8-.24.42-.68.66-1.14.66zm17.64 10.39l-4.66-2.69c-.63-.36-.85-1.17-.48-1.8.36-.63 1.17-.85 1.8-.48l3.34 1.93 3.34-1.93a1.32 1.32 0 011.8.48c.36.63.15 1.44-.48 1.8l-4.66 2.69zm17.64-10.39a1.32 1.32 0 01-.66-2.46l3.34-1.93v-3.86c0-.73.59-1.32 1.32-1.32.73 0 1.32.59 1.32 1.32v5.38l-4.66 2.69c-.21.12-.44.18-.66.18zm4-22.68c-.73 0-1.32-.59-1.32-1.32v-3.86l-3.34-1.93c-.63-.36-.85-1.17-.48-1.8.36-.63 1.17-.85 1.8-.48l4.66 2.69v5.38c0 .73-.59 1.32-1.32 1.32z" fill="#secondary"/><path d="M33.08 6.15c-.22 0-.45-.06-.66-.18l-3.34-1.93-3.34 1.93c-.63.36-1.44.15-1.8-.48a1.32 1.32 0 01.48-1.8L29.08 1l4.66 2.69c.63.36.85 1.17.48 1.8a1.3 1.3 0 01-1.14.66zm-3.99 47.3c-.55 0-1-.45-1-1v-7.13c0-.55.45-1 1-1s1 .45 1 1v7.13c0 .55-.44 1-1 1zM13.86 19.71c-.17 0-.34-.04-.5-.13L7.2 16a1 1 0 011-1.73l6.17 3.58c.48.28.64.89.36 1.37-.19.31-.52.49-.87.49zm36.63 21.23c-.17 0-.34-.04-.5-.13l-6.17-3.57a.998.998 0 01-.36-1.37c.28-.48.89-.64 1.37-.36L51 39.08c.48.28.64.89.36 1.37-.19.31-.52.49-.87.49zM44.06 19.8c-.35 0-.68-.18-.87-.5-.28-.48-.11-1.09.36-1.37l6.17-3.57c.48-.28 1.09-.11 1.37.36.28.48.11 1.09-.36 1.37l-6.17 3.57c-.16.1-.33.14-.5.14zM7.43 41.03c-.35 0-.68-.18-.87-.5-.28-.48-.11-1.09.36-1.37l6.17-3.57c.48-.28 1.09-.11 1.37.36.28.48.11 1.09-.36 1.37l-6.17 3.57c-.15.09-.33.14-.5.14z" fill="#secondary"/></g>',
...rank(value, [1, 5, 10, 20]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 5, 10, 20]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -92,8 +103,10 @@
list.push({ list.push({
title:"Scripter", title:"Scripter",
text:`Published ${value} gist${imports.s(value)}`, text:`Published ${value} gist${imports.s(value)}`,
icon:"<g stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M20 48.875v-12.75c0-1.33.773-2.131 2.385-2.125h26.23c1.612-.006 2.385.795 2.385 2.125v12.75C51 50.198 50.227 51 48.615 51h-26.23C20.773 51 20 50.198 20 48.875zM37 40.505h9M37 44.492h6\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#secondary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M14 30h-4M16 35h-3M47 10H5M42 15H24M19 15h-9M16 25h-3M42 20h-2M42 20h-2M42 25h-2M16 20h-3\"/><path stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M31.974 25H24\"/><path d=\"M22 20h12a2 2 0 012 2v6a2 2 0 01-2 2H22a2 2 0 01-2-2v-6a2 2 0 012-2z\" stroke=\"#primary\"/><path d=\"M5 33V7a2 2 0 012-2h38a2 2 0 012 2v23\" stroke=\"#secondary\" stroke-linecap=\"round\"/><path d=\"M5 30v8c0 1.105.892 2 1.993 2H16\" stroke=\"#secondary\" stroke-linecap=\"round\"/><g stroke=\"#primary\" stroke-linecap=\"round\"><path d=\"M26.432 37.933v7.07M26.432 37.933v9.07M24.432 40.433h7.07M24.432 40.433h8.07M24.432 44.433h7.07M24.432 44.433h8.07M30.432 37.933v9.07\"/></g></g>", icon:'<g stroke-width="2" fill="none" fill-rule="evenodd"><path d="M20 48.875v-12.75c0-1.33.773-2.131 2.385-2.125h26.23c1.612-.006 2.385.795 2.385 2.125v12.75C51 50.198 50.227 51 48.615 51h-26.23C20.773 51 20 50.198 20 48.875zM37 40.505h9M37 44.492h6" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#secondary" stroke-linecap="round" stroke-linejoin="round" d="M14 30h-4M16 35h-3M47 10H5M42 15H24M19 15h-9M16 25h-3M42 20h-2M42 20h-2M42 25h-2M16 20h-3"/><path stroke="#primary" stroke-linecap="round" stroke-linejoin="round" d="M31.974 25H24"/><path d="M22 20h12a2 2 0 012 2v6a2 2 0 01-2 2H22a2 2 0 01-2-2v-6a2 2 0 012-2z" stroke="#primary"/><path d="M5 33V7a2 2 0 012-2h38a2 2 0 012 2v23" stroke="#secondary" stroke-linecap="round"/><path d="M5 30v8c0 1.105.892 2 1.993 2H16" stroke="#secondary" stroke-linecap="round"/><g stroke="#primary" stroke-linecap="round"><path d="M26.432 37.933v7.07M26.432 37.933v9.07M24.432 40.433h7.07M24.432 40.433h8.07M24.432 44.433h7.07M24.432 44.433h8.07M30.432 37.933v9.07"/></g></g>',
...rank(value, [1, 20, 50, 100]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 20, 50, 100]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -105,8 +118,10 @@
list.push({ list.push({
title:"Worker", title:"Worker",
text:`Joined ${value} organization${imports.s(value)}`, text:`Joined ${value} organization${imports.s(value)}`,
icon:"<g stroke-linecap=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><g stroke=\"#secondary\" stroke-linejoin=\"round\"><path d=\"M30 51H16.543v-2.998h-4v2.976l-5.537.016a2 2 0 01-2.006-2v-8.032a2 2 0 01.75-1.562l9.261-7.406 5.984 5.143m29.992 3.864v10h-6v-3h-5v3h-6m-.987-33c.133-1.116.793-2.106 1.978-2.968.44-.32 5.776-3.664 16.01-10.032v36\"/><path d=\"M19 34.994v-8.982m16 0V49a2 2 0 01-2 2h-8.987l.011-6.957\"/></g><path stroke=\"#secondary\" d=\"M40 38h5M40 34h5\"/><path stroke=\"#primary\" d=\"M25 30h5M25 34h5M25 26h5\"/><path d=\"M35.012 22.003H9.855a4.843 4.843 0 010-9.686h1.479c1.473-4.268 4.277-6.674 8.41-7.219 6.493-.856 9.767 4.27 10.396 5.9.734-.83 2.137-2.208 4.194-1.964a4.394 4.394 0 011.685.533\" stroke=\"#primary\" stroke-linejoin=\"round\"/></g>", icon:'<g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd"><g stroke="#secondary" stroke-linejoin="round"><path d="M30 51H16.543v-2.998h-4v2.976l-5.537.016a2 2 0 01-2.006-2v-8.032a2 2 0 01.75-1.562l9.261-7.406 5.984 5.143m29.992 3.864v10h-6v-3h-5v3h-6m-.987-33c.133-1.116.793-2.106 1.978-2.968.44-.32 5.776-3.664 16.01-10.032v36"/><path d="M19 34.994v-8.982m16 0V49a2 2 0 01-2 2h-8.987l.011-6.957"/></g><path stroke="#secondary" d="M40 38h5M40 34h5"/><path stroke="#primary" d="M25 30h5M25 34h5M25 26h5"/><path d="M35.012 22.003H9.855a4.843 4.843 0 010-9.686h1.479c1.473-4.268 4.277-6.674 8.41-7.219 6.493-.856 9.767 4.27 10.396 5.9.734-.83 2.137-2.208 4.194-1.964a4.394 4.394 0 011.685.533" stroke="#primary" stroke-linejoin="round"/></g>',
...rank(value, [1, 2, 4, 8]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 2, 4, 8]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -118,8 +133,10 @@
list.push({ list.push({
title:"Stargazer", title:"Stargazer",
text:`Starred ${value} repositor${imports.s(value, "y")}`, text:`Starred ${value} repositor${imports.s(value, "y")}`,
icon:"<g stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path stroke=\"#primary\" d=\"M28.017 5v3M36.006 7.013l-1.987 2.024M20.021 7.011l1.988 2.011M28.806 30.23c-2.206-3.88-5.25-2.234-5.25-2.234 1.007 2.24 1.688 3.72 2.742 8.724.957 4.551 3.785 7.409 7.687 7.293l5.028 6.003M29.03 34.057L29 20.007m4.012 9.004V17.005m4.006 11.99l-.003-9.353\"/><path d=\"M18.993 50.038l4.045-5.993s1.03-.262 1.954-.984m-6.983.96c-4.474-.016-6.986-5.558-6.986-9.979 0-1.764-.439-4.997-1.997-8.004 0 0 3.268-1.24 5.747 3.6.904 1.768.458 5.267.642 5.388.185.121 1.336.554 2.637 2.01m4.955-18.92a976.92 976.92 0 010 5.91m-7.995-4.986l-.003 10.97M10.031 48.021l2.369-3.003\" stroke=\"#secondary\"/><path d=\"M45.996 47.026l-1.99-2.497-1.993-2.5s2.995-1.485 2.995-6.46V24.033\" stroke=\"#primary\"/><path d=\"M41 29v-6a2 2 0 114 0v2m-8-4v-4a2 2 0 114 0v7m-8-7v-2a2 2 0 114 0v2m-8 4v-2a2 2 0 114 0v2\" stroke=\"#primary\"/><path d=\"M23 20v-2a2 2 0 013.043-1.707M19 19v-4a2 2 0 114 0v3m-8 3v-2a2 2 0 114 0v10\" stroke=\"#secondary\"/><path d=\"M6.7 12c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.316-1.121-.572-1.372-1.71-1.678 1.135-.314 1.389-.567 1.7-1.69zm42 0c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zM28.021 47.627c.317 1.122.573 1.372 1.71 1.678-1.135.314-1.389.566-1.699 1.69-.318-1.121-.573-1.372-1.71-1.679 1.134-.313 1.389-.566 1.699-1.689z\" stroke=\"#primary\"/></g>", icon:'<g stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" fill-rule="evenodd"><path stroke="#primary" d="M28.017 5v3M36.006 7.013l-1.987 2.024M20.021 7.011l1.988 2.011M28.806 30.23c-2.206-3.88-5.25-2.234-5.25-2.234 1.007 2.24 1.688 3.72 2.742 8.724.957 4.551 3.785 7.409 7.687 7.293l5.028 6.003M29.03 34.057L29 20.007m4.012 9.004V17.005m4.006 11.99l-.003-9.353"/><path d="M18.993 50.038l4.045-5.993s1.03-.262 1.954-.984m-6.983.96c-4.474-.016-6.986-5.558-6.986-9.979 0-1.764-.439-4.997-1.997-8.004 0 0 3.268-1.24 5.747 3.6.904 1.768.458 5.267.642 5.388.185.121 1.336.554 2.637 2.01m4.955-18.92a976.92 976.92 0 010 5.91m-7.995-4.986l-.003 10.97M10.031 48.021l2.369-3.003" stroke="#secondary"/><path d="M45.996 47.026l-1.99-2.497-1.993-2.5s2.995-1.485 2.995-6.46V24.033" stroke="#primary"/><path d="M41 29v-6a2 2 0 114 0v2m-8-4v-4a2 2 0 114 0v7m-8-7v-2a2 2 0 114 0v2m-8 4v-2a2 2 0 114 0v2" stroke="#primary"/><path d="M23 20v-2a2 2 0 013.043-1.707M19 19v-4a2 2 0 114 0v3m-8 3v-2a2 2 0 114 0v10" stroke="#secondary"/><path d="M6.7 12c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.316-1.121-.572-1.372-1.71-1.678 1.135-.314 1.389-.567 1.7-1.69zm42 0c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zM28.021 47.627c.317 1.122.573 1.372 1.71 1.678-1.135.314-1.389.566-1.699 1.69-.318-1.121-.573-1.372-1.71-1.679 1.134-.313 1.389-.566 1.699-1.689z" stroke="#primary"/></g>',
...rank(value, [1, 200, 500, 1000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 200, 500, 1000]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -131,8 +148,10 @@
list.push({ list.push({
title:"Follower", title:"Follower",
text:`Following ${value} user${imports.s(value)}`, text:`Following ${value} user${imports.s(value)}`,
icon:"<g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M35 31a7 7 0 1114 0 7 7 0 01-14 0zm12-13a3 3 0 116 0 3 3 0 01-6 0zM33 49a3 3 0 116 0 3 3 0 01-6 0zM4 15a3 3 0 116 0 3 3 0 01-6 0zm37-8.5a2.5 2.5 0 115 0 2.5 2.5 0 01-5 0zM10 14l4.029-.576M19.008 26.016L21 19M29.019 34.001l5.967-1.948M36.997 46.003l2.977-8.02M46.05 24.031L48 21M28.787 18.012l7.248 8.009\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M43.62 29.004c-1.157 0-1.437.676-1.62 1.173-.19-.498-.494-1.167-1.629-1.167-.909 0-1.355.777-1.371 1.632-.022 1.145 1.309 2.365 3 3.358 1.669-.983 3-2.23 3-3.358 0-.89-.54-1.638-1.38-1.638z\" fill=\"#primary\"/><path stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M48.043 15.003L45 9\"/><path d=\"M21 12a3 3 0 116 0 3 3 0 01-6 0zM27 12h3M18 12h3M21 43c-.267-1.727-1.973-3-4-3-2.08 0-3.787 1.318-4 3m4-9a3 3 0 100 6 3 3 0 000-6z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M17 30a9 9 0 110 18 9 9 0 110-18z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g>", icon:'<g fill="none" fill-rule="evenodd"><path d="M35 31a7 7 0 1114 0 7 7 0 01-14 0zm12-13a3 3 0 116 0 3 3 0 01-6 0zM33 49a3 3 0 116 0 3 3 0 01-6 0zM4 15a3 3 0 116 0 3 3 0 01-6 0zm37-8.5a2.5 2.5 0 115 0 2.5 2.5 0 01-5 0zM10 14l4.029-.576M19.008 26.016L21 19M29.019 34.001l5.967-1.948M36.997 46.003l2.977-8.02M46.05 24.031L48 21M28.787 18.012l7.248 8.009" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M43.62 29.004c-1.157 0-1.437.676-1.62 1.173-.19-.498-.494-1.167-1.629-1.167-.909 0-1.355.777-1.371 1.632-.022 1.145 1.309 2.365 3 3.358 1.669-.983 3-2.23 3-3.358 0-.89-.54-1.638-1.38-1.638z" fill="#primary"/><path stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M48.043 15.003L45 9"/><path d="M21 12a3 3 0 116 0 3 3 0 01-6 0zM27 12h3M18 12h3M21 43c-.267-1.727-1.973-3-4-3-2.08 0-3.787 1.318-4 3m4-9a3 3 0 100 6 3 3 0 000-6z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M17 30a9 9 0 110 18 9 9 0 110-18z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></g>',
...rank(value, [1, 200, 500, 1000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 200, 500, 1000]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -144,8 +163,10 @@
list.push({ list.push({
title:"Influencer", title:"Influencer",
text:`Followed by ${value} user${imports.s(value)}`, text:`Followed by ${value} user${imports.s(value)}`,
icon:"<g transform=\"translate(4 4)\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M33.432 1.924A23.922 23.922 0 0024 0c-3.945 0-7.668.952-10.95 2.638m-9.86 9.398A23.89 23.89 0 000 24a23.9 23.9 0 002.274 10.21m3.45 5.347a23.992 23.992 0 0012.929 7.845m13.048-.664c4.43-1.5 8.28-4.258 11.123-7.848m3.16-5.245A23.918 23.918 0 0048 24c0-1.87-.214-3.691-.619-5.439M40.416 6.493a24.139 24.139 0 00-1.574-1.355\" stroke=\"#secondary\" stroke-linecap=\"round\"/><path stroke=\"#secondary\" d=\"M4.582 33.859l1.613-7.946\"/><circle stroke=\"#secondary\" cx=\"6.832\" cy=\"23\" r=\"3\"/><path stroke=\"#primary\" d=\"M17.444 39.854l4.75 3.275\"/><path stroke=\"#secondary\" stroke-linecap=\"round\" d=\"M7.647 14.952l-.433 4.527\"/><circle stroke=\"#primary\" cx=\"15\" cy=\"38\" r=\"3\"/><path stroke=\"#primary\" d=\"M22.216 9.516l.455 4.342\"/><path stroke=\"#secondary\" stroke-linecap=\"round\" d=\"M34.272 6.952l-2.828 5.25\"/><path stroke=\"#primary\" stroke-linecap=\"square\" d=\"M11.873 7.235l6.424-.736\"/><path stroke=\"#secondary\" stroke-linecap=\"round\" d=\"M28.811 5.445l3.718-.671\"/><path stroke=\"#primary\" d=\"M42.392 22.006l.456-5.763M34.349 24.426l4.374.447\"/><path d=\"M20 28c.267-1.727 1.973-3 4-3 2.08 0 3.787 1.318 4 3m-4-9a3 3 0 110 6 3 3 0 010-6z\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M24 14c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10z\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle stroke=\"#secondary\" cx=\"35.832\" cy=\"4\" r=\"3\"/><circle stroke=\"#secondary\" cx=\"44\" cy=\"36\" r=\"3\"/><circle stroke=\"#secondary\" cx=\"34.832\" cy=\"37\" r=\"3\"/><circle stroke=\"#primary\" cx=\"21.654\" cy=\"6.437\" r=\"3\"/><path d=\"M25.083 48.102a3 3 0 100-6 3 3 0 000 6z\" stroke=\"#primary\"/><path d=\"M8.832 5a3 3 0 110 6 3 3 0 010-6z\" stroke=\"#primary\" stroke-linecap=\"round\"/><circle stroke=\"#secondary\" cx=\"4\" cy=\"37\" r=\"3\"/><path d=\"M42.832 10a3 3 0 110 6 3 3 0 010-6z\" stroke=\"#primary\" stroke-linecap=\"round\"/><path stroke=\"#secondary\" stroke-linecap=\"round\" d=\"M32.313 38.851l-1.786 1.661\"/><circle stroke=\"#primary\" cx=\"42\" cy=\"25\" r=\"3\"/><path stroke=\"#primary\" stroke-linecap=\"square\" d=\"M18.228 32.388l-1.562 2.66\"/><path stroke=\"#secondary\" d=\"M37.831 36.739l2.951-.112\"/></g>", icon:'<g transform="translate(4 4)" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M33.432 1.924A23.922 23.922 0 0024 0c-3.945 0-7.668.952-10.95 2.638m-9.86 9.398A23.89 23.89 0 000 24a23.9 23.9 0 002.274 10.21m3.45 5.347a23.992 23.992 0 0012.929 7.845m13.048-.664c4.43-1.5 8.28-4.258 11.123-7.848m3.16-5.245A23.918 23.918 0 0048 24c0-1.87-.214-3.691-.619-5.439M40.416 6.493a24.139 24.139 0 00-1.574-1.355" stroke="#secondary" stroke-linecap="round"/><path stroke="#secondary" d="M4.582 33.859l1.613-7.946"/><circle stroke="#secondary" cx="6.832" cy="23" r="3"/><path stroke="#primary" d="M17.444 39.854l4.75 3.275"/><path stroke="#secondary" stroke-linecap="round" d="M7.647 14.952l-.433 4.527"/><circle stroke="#primary" cx="15" cy="38" r="3"/><path stroke="#primary" d="M22.216 9.516l.455 4.342"/><path stroke="#secondary" stroke-linecap="round" d="M34.272 6.952l-2.828 5.25"/><path stroke="#primary" stroke-linecap="square" d="M11.873 7.235l6.424-.736"/><path stroke="#secondary" stroke-linecap="round" d="M28.811 5.445l3.718-.671"/><path stroke="#primary" d="M42.392 22.006l.456-5.763M34.349 24.426l4.374.447"/><path d="M20 28c.267-1.727 1.973-3 4-3 2.08 0 3.787 1.318 4 3m-4-9a3 3 0 110 6 3 3 0 010-6z" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><path d="M24 14c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10z" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/><circle stroke="#secondary" cx="35.832" cy="4" r="3"/><circle stroke="#secondary" cx="44" cy="36" r="3"/><circle stroke="#secondary" cx="34.832" cy="37" r="3"/><circle stroke="#primary" cx="21.654" cy="6.437" r="3"/><path d="M25.083 48.102a3 3 0 100-6 3 3 0 000 6z" stroke="#primary"/><path d="M8.832 5a3 3 0 110 6 3 3 0 010-6z" stroke="#primary" stroke-linecap="round"/><circle stroke="#secondary" cx="4" cy="37" r="3"/><path d="M42.832 10a3 3 0 110 6 3 3 0 010-6z" stroke="#primary" stroke-linecap="round"/><path stroke="#secondary" stroke-linecap="round" d="M32.313 38.851l-1.786 1.661"/><circle stroke="#primary" cx="42" cy="25" r="3"/><path stroke="#primary" stroke-linecap="square" d="M18.228 32.388l-1.562 2.66"/><path stroke="#secondary" d="M37.831 36.739l2.951-.112"/></g>',
...rank(value, [1, 200, 500, 1000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 200, 500, 1000]),
value,
unlock:new Date(unlock?.createdAt),
leaderboard:leaderboard({user:ranks.user_rank.userCount, requirement:scores.followers >= requirements.followers, type:"users"}), leaderboard:leaderboard({user:ranks.user_rank.userCount, requirement:scores.followers >= requirements.followers, type:"users"}),
}) })
} }
@@ -158,8 +179,10 @@
list.push({ list.push({
title:"Maintainer", title:"Maintainer",
text:`Maintaining a repository with ${value} star${imports.s(value)}`, text:`Maintaining a repository with ${value} star${imports.s(value)}`,
icon:"<g transform=\"translate(4 4)\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M39 15h.96l4.038 3-.02-3H45a2 2 0 002-2V3a2 2 0 00-2-2H31a2 2 0 00-2 2v4.035\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M36 5.014l-3 3 3 3M40 5.014l3 3-3 3\"/><path d=\"M6 37a1 1 0 110 2 1 1 0 010-2m7 0a1 1 0 110 2 1 1 0 010-2m-2.448 1a1 1 0 11-2 0 1 1 0 012 0z\" fill=\"#primary\"/><path d=\"M1.724 15.05A23.934 23.934 0 000 24c0 .686.029 1.366.085 2.037m19.92 21.632c1.3.218 2.634.331 3.995.331a23.92 23.92 0 009.036-1.76m13.207-13.21A23.932 23.932 0 0048 24c0-1.363-.114-2.7-.332-4M25.064.022a23.932 23.932 0 00-10.073 1.725\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\"/><path d=\"M19 42.062V43a2 2 0 01-2 2H9.04l-4.038 3 .02-3H3a2 2 0 01-2-2V33a2 2 0 012-2h4.045\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M6 0a6 6 0 110 12A6 6 0 016 0z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" d=\"M6 3v6M3 6h6\"/><path d=\"M42 36a6 6 0 110 12 6 6 0 010-12z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M44.338 40.663l-3.336 3.331-1.692-1.686M31 31c-.716-2.865-3.578-5-7-5-3.423 0-6.287 2.14-7 5\"/><path d=\"M24 16a5 5 0 110 10 5 5 0 010-10z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\"/><circle stroke=\"#primary\" stroke-width=\"2\" cx=\"24\" cy=\"24\" r=\"14\"/></g>", icon:'<g transform="translate(4 4)" fill="none" fill-rule="evenodd"><path d="M39 15h.96l4.038 3-.02-3H45a2 2 0 002-2V3a2 2 0 00-2-2H31a2 2 0 00-2 2v4.035" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M36 5.014l-3 3 3 3M40 5.014l3 3-3 3"/><path d="M6 37a1 1 0 110 2 1 1 0 010-2m7 0a1 1 0 110 2 1 1 0 010-2m-2.448 1a1 1 0 11-2 0 1 1 0 012 0z" fill="#primary"/><path d="M1.724 15.05A23.934 23.934 0 000 24c0 .686.029 1.366.085 2.037m19.92 21.632c1.3.218 2.634.331 3.995.331a23.92 23.92 0 009.036-1.76m13.207-13.21A23.932 23.932 0 0048 24c0-1.363-.114-2.7-.332-4M25.064.022a23.932 23.932 0 00-10.073 1.725" stroke="#secondary" stroke-width="2" stroke-linecap="round"/><path d="M19 42.062V43a2 2 0 01-2 2H9.04l-4.038 3 .02-3H3a2 2 0 01-2-2V33a2 2 0 012-2h4.045" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M6 0a6 6 0 110 12A6 6 0 016 0z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" stroke-width="2" stroke-linecap="round" d="M6 3v6M3 6h6"/><path d="M42 36a6 6 0 110 12 6 6 0 010-12z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M44.338 40.663l-3.336 3.331-1.692-1.686M31 31c-.716-2.865-3.578-5-7-5-3.423 0-6.287 2.14-7 5"/><path d="M24 16a5 5 0 110 10 5 5 0 010-10z" stroke="#primary" stroke-width="2" stroke-linecap="round"/><circle stroke="#primary" stroke-width="2" cx="24" cy="24" r="14"/></g>',
...rank(value, [1, 1000, 5000, 10000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 1000, 5000, 10000]),
value,
unlock:new Date(unlock?.createdAt),
leaderboard:leaderboard({user:ranks.repo_rank.repositoryCount, requirement:scores.stars >= requirements.stars, type:"repositories"}), leaderboard:leaderboard({user:ranks.repo_rank.repositoryCount, requirement:scores.stars >= requirements.stars, type:"repositories"}),
}) })
} }
@@ -171,8 +194,10 @@
list.push({ list.push({
title:"Inspirationer", title:"Inspirationer",
text:`Maintaining a repository which has been forked ${value} time${imports.s(value)}`, text:`Maintaining a repository which has been forked ${value} time${imports.s(value)}`,
icon:"<g transform=\"translate(4 4)\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M20.065 47.122c.44-.525.58-1.448.58-1.889 0-2.204-1.483-3.967-3.633-4.187.447-1.537.58-2.64.397-3.31-.25-.92-.745-1.646-1.409-2.235m-5.97-7.157c.371-.254.911-.748 1.62-1.48a8.662 8.662 0 001.432-2.366M47 22h-7c-1.538 0-2.749-.357-4-1h-5c-1.789.001-3-1.3-3-2.955 0-1.656 1.211-3.04 3-3.045h2c.027-1.129.513-2.17 1-3m3.082 32.004C34.545 43.028 34.02 40.569 34 39v-1h-1c-2.603-.318-5-2.913-5-5.997S30.397 26 33 26h9c2.384 0 4.326 1.024 5.27 3\" stroke=\"#secondary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\"/><g transform=\"translate(36)\" stroke=\"#primary\" stroke-width=\"2\"><path fill=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M5.395 5.352L6.009 4l.598 1.348L8 5.408l-1.067 1.12.425 1.47-1.356-.908-1.35.91.404-1.469L4 5.41z\"/><circle cx=\"6\" cy=\"6\" r=\"6\"/></g><g transform=\"translate(0 31)\" stroke=\"#primary\" stroke-width=\"2\"><circle cx=\"6\" cy=\"6\" r=\"6\"/><g stroke-linecap=\"round\"><path d=\"M6 4v4M4 6h4\"/></g></g><circle stroke=\"#primary\" stroke-width=\"2\" cx=\"10.5\" cy=\"10.5\" r=\"10.5\"/><g stroke-linecap=\"round\"><path d=\"M32.01 1.37A23.96 23.96 0 0024 0c-.999 0-1.983.061-2.95.18M.32 20.072a24.21 24.21 0 00.015 7.948M12.42 45.025A23.892 23.892 0 0024 48c13.255 0 24-10.745 24-24 0-2.811-.483-5.51-1.371-8.016\" stroke=\"#secondary\" stroke-width=\"2\"/><path stroke=\"#primary\" stroke-width=\"2\" d=\"M8.999 7.151v5.865\"/><path d=\"M9 3a2 2 0 110 4 2 2 0 010-4zm0 10.8a2 2 0 11-.001 4 2 2 0 01.001-4z\" stroke=\"#primary\" stroke-width=\"1.8\"/><path d=\"M9.622 11.838c.138-.007.989.119 1.595-.05.607-.169 1.584-.539 1.829-1.337\" stroke=\"#primary\" stroke-width=\"2\"/><path d=\"M14.8 7.202a2 2 0 110 4 2 2 0 010-4z\" stroke=\"#primary\" stroke-width=\"1.8\"/></g></g>", icon:'<g transform="translate(4 4)" fill="none" fill-rule="evenodd"><path d="M20.065 47.122c.44-.525.58-1.448.58-1.889 0-2.204-1.483-3.967-3.633-4.187.447-1.537.58-2.64.397-3.31-.25-.92-.745-1.646-1.409-2.235m-5.97-7.157c.371-.254.911-.748 1.62-1.48a8.662 8.662 0 001.432-2.366M47 22h-7c-1.538 0-2.749-.357-4-1h-5c-1.789.001-3-1.3-3-2.955 0-1.656 1.211-3.04 3-3.045h2c.027-1.129.513-2.17 1-3m3.082 32.004C34.545 43.028 34.02 40.569 34 39v-1h-1c-2.603-.318-5-2.913-5-5.997S30.397 26 33 26h9c2.384 0 4.326 1.024 5.27 3" stroke="#secondary" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/><g transform="translate(36)" stroke="#primary" stroke-width="2"><path fill="#primary" stroke-linecap="round" stroke-linejoin="round" d="M5.395 5.352L6.009 4l.598 1.348L8 5.408l-1.067 1.12.425 1.47-1.356-.908-1.35.91.404-1.469L4 5.41z"/><circle cx="6" cy="6" r="6"/></g><g transform="translate(0 31)" stroke="#primary" stroke-width="2"><circle cx="6" cy="6" r="6"/><g stroke-linecap="round"><path d="M6 4v4M4 6h4"/></g></g><circle stroke="#primary" stroke-width="2" cx="10.5" cy="10.5" r="10.5"/><g stroke-linecap="round"><path d="M32.01 1.37A23.96 23.96 0 0024 0c-.999 0-1.983.061-2.95.18M.32 20.072a24.21 24.21 0 00.015 7.948M12.42 45.025A23.892 23.892 0 0024 48c13.255 0 24-10.745 24-24 0-2.811-.483-5.51-1.371-8.016" stroke="#secondary" stroke-width="2"/><path stroke="#primary" stroke-width="2" d="M8.999 7.151v5.865"/><path d="M9 3a2 2 0 110 4 2 2 0 010-4zm0 10.8a2 2 0 11-.001 4 2 2 0 01.001-4z" stroke="#primary" stroke-width="1.8"/><path d="M9.622 11.838c.138-.007.989.119 1.595-.05.607-.169 1.584-.539 1.829-1.337" stroke="#primary" stroke-width="2"/><path d="M14.8 7.202a2 2 0 110 4 2 2 0 010-4z" stroke="#primary" stroke-width="1.8"/></g></g>',
...rank(value, [1, 100, 500, 1000]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 100, 500, 1000]),
value,
unlock:new Date(unlock?.createdAt),
leaderboard:leaderboard({user:ranks.forks_rank.repositoryCount, requirement:scores.forks >= requirements.forks, type:"repositories"}), leaderboard:leaderboard({user:ranks.forks_rank.repositoryCount, requirement:scores.forks >= requirements.forks, type:"repositories"}),
}) })
} }
@@ -185,8 +210,10 @@
list.push({ list.push({
title:"Polyglot", title:"Polyglot",
text:`Using ${value} different programming language${imports.s(value)}`, text:`Using ${value} different programming language${imports.s(value)}`,
icon:"<g stroke-linecap=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M17.135 7.988l-3.303.669a2 2 0 00-1.586 2.223l4.708 35.392a1.498 1.498 0 01-1.162 1.66 1.523 1.523 0 01-1.775-1.01L4.951 19.497a2 2 0 011.215-2.507l2.946-1.072\" stroke=\"#secondary\" stroke-linejoin=\"round\"/><path d=\"M36.8 48H23a2 2 0 01-2-2V7a2 2 0 012-2h26a2 2 0 012 2v32.766\" stroke=\"#primary\"/><path d=\"M29 20.955l-3.399 3.399a.85.85 0 000 1.202l3.399 3.4M43.014 20.955l3.399 3.399a.85.85 0 010 1.202l-3.4 3.4\" stroke=\"#primary\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" d=\"M38.526 18l-5.053 14.016\"/><path d=\"M44 36a8 8 0 110 16 8 8 0 010-16z\" stroke=\"#primary\" stroke-linejoin=\"round\"/><path d=\"M43.068 40.749l3.846 2.396a1 1 0 01-.006 1.7l-3.846 2.36a1 1 0 01-1.523-.853v-4.755a1 1 0 011.529-.848z\" stroke=\"#primary\" stroke-linejoin=\"round\"/></g>", icon:'<g stroke-linecap="round" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M17.135 7.988l-3.303.669a2 2 0 00-1.586 2.223l4.708 35.392a1.498 1.498 0 01-1.162 1.66 1.523 1.523 0 01-1.775-1.01L4.951 19.497a2 2 0 011.215-2.507l2.946-1.072" stroke="#secondary" stroke-linejoin="round"/><path d="M36.8 48H23a2 2 0 01-2-2V7a2 2 0 012-2h26a2 2 0 012 2v32.766" stroke="#primary"/><path d="M29 20.955l-3.399 3.399a.85.85 0 000 1.202l3.399 3.4M43.014 20.955l3.399 3.399a.85.85 0 010 1.202l-3.4 3.4" stroke="#primary" stroke-linejoin="round"/><path stroke="#primary" d="M38.526 18l-5.053 14.016"/><path d="M44 36a8 8 0 110 16 8 8 0 010-16z" stroke="#primary" stroke-linejoin="round"/><path d="M43.068 40.749l3.846 2.396a1 1 0 01-.006 1.7l-3.846 2.36a1 1 0 01-1.523-.853v-4.755a1 1 0 011.529-.848z" stroke="#primary" stroke-linejoin="round"/></g>',
...rank(value, [1, 4, 8, 16]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 4, 8, 16]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -198,8 +225,10 @@
list.push({ list.push({
title:"Member", title:"Member",
text:`Registered ${Math.floor(value)} year${imports.s(Math.floor(value))} ago`, text:`Registered ${Math.floor(value)} year${imports.s(Math.floor(value))} ago`,
icon:"<g xmlns=\"http://www.w3.org/2000/svg\" transform=\"translate(5 4)\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M46 44.557v1a2 2 0 01-2 2H2a2 2 0 01-2-2v-1\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M.75 40.993l.701.561a2.323 2.323 0 002.903 0l1.675-1.34a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.103.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.429 1.182a2.427 2.427 0 003.103-.008l.832-.695A2 2 0 0046 39.191v-1.634a2 2 0 00-2-2H2a2 2 0 00-2 2v1.875a2 2 0 00.75 1.561z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M42 31.609v.948m-38 0v-.992m25.04-15.008H35a2 2 0 012 2v1m-28 0v-1a2 2 0 012-2h6.007\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M22 8.557h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6a1 1 0 011-1z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linejoin=\"round\"/><path d=\"M4.7 10.557c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zm35-8c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M23 5.557a2 2 0 002-2C25 2.452 24.433 0 22.273 0c-.463 0 .21 1.424-.502 1.979A2 2 0 0023 5.557z\" stroke=\"#primary\" stroke-width=\"2\"/><path d=\"M4.78 27.982l1.346 1.076a3 3 0 003.748 0l1.252-1.002a3 3 0 013.748 0l1.282 1.026a3 3 0 003.711.03l1.4-1.085a3 3 0 013.75.061l1.102.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.281 1.025a3 3 0 003.712.029l1.358-1.053a2 2 0 00.775-1.58v-.97a1.95 1.95 0 00-1.95-1.95H5.942a1.912 1.912 0 00-1.912 1.912v.951a2 2 0 00.75 1.562z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle stroke=\"#secondary\" cx=\"16.5\" cy=\"2.057\" r=\"1\"/><circle stroke=\"#secondary\" cx=\"14.5\" cy=\"12.057\" r=\"1\"/><circle stroke=\"#secondary\" cx=\"31.5\" cy=\"9.057\" r=\"1\"/></g>", icon:'<g xmlns="http://www.w3.org/2000/svg" transform="translate(5 4)" fill="none" fill-rule="evenodd"><path d="M46 44.557v1a2 2 0 01-2 2H2a2 2 0 01-2-2v-1" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M.75 40.993l.701.561a2.323 2.323 0 002.903 0l1.675-1.34a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.103.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.282 1.026a3 3 0 003.71.03l1.4-1.085a3 3 0 013.75.061l1.429 1.182a2.427 2.427 0 003.103-.008l.832-.695A2 2 0 0046 39.191v-1.634a2 2 0 00-2-2H2a2 2 0 00-2 2v1.875a2 2 0 00.75 1.561z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M42 31.609v.948m-38 0v-.992m25.04-15.008H35a2 2 0 012 2v1m-28 0v-1a2 2 0 012-2h6.007" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M22 8.557h2a1 1 0 011 1v6a1 1 0 01-1 1h-2a1 1 0 01-1-1v-6a1 1 0 011-1z" stroke="#primary" stroke-width="2" stroke-linejoin="round"/><path d="M4.7 10.557c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zm35-8c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M23 5.557a2 2 0 002-2C25 2.452 24.433 0 22.273 0c-.463 0 .21 1.424-.502 1.979A2 2 0 0023 5.557z" stroke="#primary" stroke-width="2"/><path d="M4.78 27.982l1.346 1.076a3 3 0 003.748 0l1.252-1.002a3 3 0 013.748 0l1.282 1.026a3 3 0 003.711.03l1.4-1.085a3 3 0 013.75.061l1.102.913a3 3 0 003.787.031l1.22-.976a3 3 0 013.748 0l1.281 1.025a3 3 0 003.712.029l1.358-1.053a2 2 0 00.775-1.58v-.97a1.95 1.95 0 00-1.95-1.95H5.942a1.912 1.912 0 00-1.912 1.912v.951a2 2 0 00.75 1.562z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><circle stroke="#secondary" cx="16.5" cy="2.057" r="1"/><circle stroke="#secondary" cx="14.5" cy="12.057" r="1"/><circle stroke="#secondary" cx="31.5" cy="9.057" r="1"/></g>',
...rank(value, [1, 3, 5, 10]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 3, 5, 10]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -211,8 +240,10 @@
list.push({ list.push({
title:"Sponsor", title:"Sponsor",
text:`Sponsoring ${value} user${imports.s(value)} or organization${imports.s(value)}`, text:`Sponsoring ${value} user${imports.s(value)} or organization${imports.s(value)}`,
icon:"<g xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M24 32c.267-1.727 1.973-3 4-3 2.08 0 3.787 1.318 4 3m-4-9a3 3 0 110 6 3 3 0 010-6z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M28 18c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M46.138 15c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C41.347 15 41 16.117 41 17.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005zm-31-5c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C10.347 10 10 11.117 10 12.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005zm6 32c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C16.347 42 16 43.117 16 44.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005z\" fill=\"#secondary\"/><path d=\"M8.003 29a3 3 0 110 6 3 3 0 010-6zM32.018 5.005a3 3 0 110 6 3 3 0 010-6z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\"/><path stroke=\"#secondary\" stroke-width=\"2\" d=\"M29.972 18.026L31.361 11M18.063 29.987l-7.004 1.401\"/><path d=\"M22.604 11.886l.746 2.164m-9.313 9.296l-2.156-.712\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M21.304 9a1 1 0 100-2 1 1 0 000 2zM8.076 22.346a1 1 0 100-2 1 1 0 000 2z\" fill=\"#primary\"/><path d=\"M33.267 44.17l-.722-2.146m9.38-9.206l2.147.743\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M34.544 49.031a1 1 0 100-2 1 1 0 000 2zm13.314-13.032a1 1 0 100-2 1 1 0 000 2z\" fill=\"#primary\"/><path d=\"M48.019 51.004a3 3 0 100-6 3 3 0 000 6zM35.194 35.33l10.812 11.019\" stroke=\"#secondary\" stroke-width=\"2\"/></g>", icon:'<g xmlns="http://www.w3.org/2000/svg" fill="none" fill-rule="evenodd"><path d="M24 32c.267-1.727 1.973-3 4-3 2.08 0 3.787 1.318 4 3m-4-9a3 3 0 110 6 3 3 0 010-6z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M28 18c5.523 0 10 4.477 10 10s-4.477 10-10 10-10-4.477-10-10 4.477-10 10-10z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M46.138 15c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C41.347 15 41 16.117 41 17.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005zm-31-5c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C10.347 10 10 11.117 10 12.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005zm6 32c-1.033 0-1.454.822-1.634 1.413-.019.06-.024.06-.042 0-.182-.591-.707-1.413-1.655-1.413C16.347 42 16 43.117 16 44.005c0 1.676 2.223 3.228 3.091 3.845.272.197.556.194.817 0 .798-.593 3.092-2.17 3.092-3.845 0-.888-.261-2.005-1.862-2.005z" fill="#secondary"/><path d="M8.003 29a3 3 0 110 6 3 3 0 010-6zM32.018 5.005a3 3 0 110 6 3 3 0 010-6z" stroke="#secondary" stroke-width="2" stroke-linecap="round"/><path stroke="#secondary" stroke-width="2" d="M29.972 18.026L31.361 11M18.063 29.987l-7.004 1.401"/><path d="M22.604 11.886l.746 2.164m-9.313 9.296l-2.156-.712" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M21.304 9a1 1 0 100-2 1 1 0 000 2zM8.076 22.346a1 1 0 100-2 1 1 0 000 2z" fill="#primary"/><path d="M33.267 44.17l-.722-2.146m9.38-9.206l2.147.743" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M34.544 49.031a1 1 0 100-2 1 1 0 000 2zm13.314-13.032a1 1 0 100-2 1 1 0 000 2z" fill="#primary"/><path d="M48.019 51.004a3 3 0 100-6 3 3 0 000 6zM35.194 35.33l10.812 11.019" stroke="#secondary" stroke-width="2"/></g>',
...rank(value, [1, 3, 5, 10]), value, unlock:new Date(unlock?.createdAt), ...rank(value, [1, 3, 5, 10]),
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -224,8 +255,11 @@
list.push({ list.push({
title:"Verified", title:"Verified",
text:"Registered a GPG key to sign commits", text:"Registered a GPG key to sign commits",
icon:"<g stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M46 17.036v13.016c0 4.014-.587 8.94-4.751 13.67-5.787 5.911-12.816 8.279-13.243 8.283-.426.003-7.91-2.639-13.222-8.283C10.718 39.4 10 34.056 10 30.052V17.036a2 2 0 012-2h32a2 2 0 012 2zM16 15c0-6.616 5.384-12 12-12s12 5.384 12 12\" stroke=\"#secondary\"/><path d=\"M21 15c0-3.744 3.141-7 7-7 3.86 0 7 3.256 7 7m4.703 29.63l-3.672-3.647m-17.99-17.869l-7.127-7.081\" stroke=\"#secondary\"/><path d=\"M28 23a8 8 0 110 16 8 8 0 010-16z\" stroke=\"#primary\"/><path stroke=\"#primary\" d=\"M30.966 29.005l-4 3.994-2.002-1.995\"/></g>", icon:'<g stroke-linecap="round" stroke-linejoin="round" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M46 17.036v13.016c0 4.014-.587 8.94-4.751 13.67-5.787 5.911-12.816 8.279-13.243 8.283-.426.003-7.91-2.639-13.222-8.283C10.718 39.4 10 34.056 10 30.052V17.036a2 2 0 012-2h32a2 2 0 012 2zM16 15c0-6.616 5.384-12 12-12s12 5.384 12 12" stroke="#secondary"/><path d="M21 15c0-3.744 3.141-7 7-7 3.86 0 7 3.256 7 7m4.703 29.63l-3.672-3.647m-17.99-17.869l-7.127-7.081" stroke="#secondary"/><path d="M28 23a8 8 0 110 16 8 8 0 010-16z" stroke="#primary"/><path stroke="#primary" d="M30.966 29.005l-4 3.994-2.002-1.995"/></g>',
rank:value ? "$" : "X", progress:value ? 1 : 0, value, unlock:new Date(unlock?.createdAt), rank:value ? "$" : "X",
progress:value ? 1 : 0,
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -237,8 +271,11 @@
list.push({ list.push({
title:"Explorer", title:"Explorer",
text:"Starred a topic on GitHub Explore", text:"Starred a topic on GitHub Explore",
icon:"<g transform=\"translate(3 4)\" fill=\"none\" fill-rule=\"evenodd\"><path d=\"M10 37.5l.049.073a2 2 0 002.506.705l24.391-11.324a2 2 0 00.854-2.874l-2.668-4.27a2 2 0 00-2.865-.562L10.463 34.947A1.869 1.869 0 0010 37.5zM33.028 28.592l-4.033-6.58\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path stroke=\"#primary\" stroke-width=\"2\" stroke-linejoin=\"round\" d=\"M15.52 37.004l-2.499-3.979\"/><path stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M25.008 48.011l.013-15.002M17.984 47.038l6.996-14.035M32.005 47.029l-6.987-14.016\"/><path d=\"M2.032 17.015A23.999 23.999 0 001 24c0 9.3 5.29 17.365 13.025 21.35m22-.027C43.734 41.33 49 33.28 49 24a24 24 0 00-1.025-6.96M34.022 1.754A23.932 23.932 0 0025 0c-2.429 0-4.774.36-6.983 1.032\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M40.64 8.472c-1.102-2.224-.935-4.764 1.382-6.465-.922-.087-2.209.326-3.004.784a6.024 6.024 0 00-2.674 7.229c.94 2.618 3.982 4.864 7.66 3.64 1.292-.429 2.615-1.508 2.996-2.665-1.8.625-5.258-.3-6.36-2.523zM21.013 6.015c-.22-.802-3.018-1.295-4.998-.919M4.998 8.006C2.25 9.22.808 11.146 1.011 12.009\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle stroke=\"#secondary\" stroke-width=\"2\" cx=\"11\" cy=\"9\" r=\"6\"/><path d=\"M.994 12.022c.351 1.38 5.069 1.25 10.713-.355 5.644-1.603 9.654-4.273 9.303-5.653\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M26.978 10.105c.318 1.123.573 1.373 1.71 1.679-1.135.314-1.388.566-1.698 1.69-.318-1.122-.573-1.373-1.711-1.679 1.135-.314 1.39-.566 1.7-1.69\" fill=\"#secondary\"/><path d=\"M26.978 10.105c.318 1.123.573 1.373 1.71 1.679-1.135.314-1.388.566-1.698 1.69-.318-1.122-.573-1.373-1.711-1.679 1.135-.314 1.39-.566 1.7-1.69z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M9.929 22.737c.317 1.121.573 1.372 1.71 1.678-1.135.314-1.389.566-1.699 1.69-.318-1.121-.573-1.372-1.71-1.679 1.134-.313 1.389-.566 1.699-1.69\" fill=\"#secondary\"/><path d=\"M9.929 22.737c.317 1.121.573 1.372 1.71 1.678-1.135.314-1.389.566-1.699 1.69-.318-1.121-.573-1.372-1.71-1.679 1.134-.313 1.389-.566 1.699-1.69z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M38.912 33.684c.318 1.122.573 1.373 1.711 1.679-1.136.313-1.39.565-1.7 1.69-.317-1.123-.573-1.372-1.71-1.68 1.136-.313 1.389-.565 1.7-1.689\" fill=\"#secondary\"/><path d=\"M38.912 33.684c.318 1.122.573 1.373 1.711 1.679-1.136.313-1.39.565-1.7 1.69-.317-1.123-.573-1.372-1.71-1.68 1.136-.313 1.389-.565 1.7-1.689z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g>", icon:'<g transform="translate(3 4)" fill="none" fill-rule="evenodd"><path d="M10 37.5l.049.073a2 2 0 002.506.705l24.391-11.324a2 2 0 00.854-2.874l-2.668-4.27a2 2 0 00-2.865-.562L10.463 34.947A1.869 1.869 0 0010 37.5zM33.028 28.592l-4.033-6.58" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path stroke="#primary" stroke-width="2" stroke-linejoin="round" d="M15.52 37.004l-2.499-3.979"/><path stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" d="M25.008 48.011l.013-15.002M17.984 47.038l6.996-14.035M32.005 47.029l-6.987-14.016"/><path d="M2.032 17.015A23.999 23.999 0 001 24c0 9.3 5.29 17.365 13.025 21.35m22-.027C43.734 41.33 49 33.28 49 24a24 24 0 00-1.025-6.96M34.022 1.754A23.932 23.932 0 0025 0c-2.429 0-4.774.36-6.983 1.032" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M40.64 8.472c-1.102-2.224-.935-4.764 1.382-6.465-.922-.087-2.209.326-3.004.784a6.024 6.024 0 00-2.674 7.229c.94 2.618 3.982 4.864 7.66 3.64 1.292-.429 2.615-1.508 2.996-2.665-1.8.625-5.258-.3-6.36-2.523zM21.013 6.015c-.22-.802-3.018-1.295-4.998-.919M4.998 8.006C2.25 9.22.808 11.146 1.011 12.009" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><circle stroke="#secondary" stroke-width="2" cx="11" cy="9" r="6"/><path d="M.994 12.022c.351 1.38 5.069 1.25 10.713-.355 5.644-1.603 9.654-4.273 9.303-5.653" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M26.978 10.105c.318 1.123.573 1.373 1.71 1.679-1.135.314-1.388.566-1.698 1.69-.318-1.122-.573-1.373-1.711-1.679 1.135-.314 1.39-.566 1.7-1.69" fill="#secondary"/><path d="M26.978 10.105c.318 1.123.573 1.373 1.71 1.679-1.135.314-1.388.566-1.698 1.69-.318-1.122-.573-1.373-1.711-1.679 1.135-.314 1.39-.566 1.7-1.69z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.929 22.737c.317 1.121.573 1.372 1.71 1.678-1.135.314-1.389.566-1.699 1.69-.318-1.121-.573-1.372-1.71-1.679 1.134-.313 1.389-.566 1.699-1.69" fill="#secondary"/><path d="M9.929 22.737c.317 1.121.573 1.372 1.71 1.678-1.135.314-1.389.566-1.699 1.69-.318-1.121-.573-1.372-1.71-1.679 1.134-.313 1.389-.566 1.699-1.69z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M38.912 33.684c.318 1.122.573 1.373 1.711 1.679-1.136.313-1.39.565-1.7 1.69-.317-1.123-.573-1.372-1.71-1.68 1.136-.313 1.389-.565 1.7-1.689" fill="#secondary"/><path d="M38.912 33.684c.318 1.122.573 1.373 1.711 1.679-1.136.313-1.39.565-1.7 1.69-.317-1.123-.573-1.372-1.71-1.68 1.136-.313 1.389-.565 1.7-1.689z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></g>',
rank:value ? "$" : "X", progress:value ? 1 : 0, value, unlock:new Date(unlock?.createdAt), rank:value ? "$" : "X",
progress:value ? 1 : 0,
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -250,8 +287,11 @@
list.push({ list.push({
title:"Automater", title:"Automater",
text:"Use GitHub Actions to automate profile updates", text:"Use GitHub Actions to automate profile updates",
icon:"<g transform=\"translate(4 5)\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><g stroke-linecap=\"round\" stroke-linejoin=\"round\"><path stroke=\"#primary\" d=\"M26.478 22l.696 2.087 3.478.696v2.782l-3.478 1.392-.696 1.39 1.392 3.48-1.392 1.39L23 33.827l-1.391.695L20.217 38h-2.782l-1.392-3.478-1.39-.696-3.48 1.391-1.39-1.39 1.39-3.48-.695-1.39L7 27.565v-2.782l3.478-1.392.696-1.391-1.391-3.478 1.39-1.392 3.48 1.392 1.39-.696 1.392-3.478h2.782l1.392 3.478 1.391.696 3.478-1.392 1.392 1.392z\"/><path stroke=\"#secondary\" d=\"M24.779 12.899l-1.475-2.212 1.475-1.475 2.95 1.475 1.474-.738.737-2.934h2.212l.737 2.934 1.475.738 2.95-1.475 1.474 1.475-1.475 2.949.738 1.475 2.949.737v2.212l-2.95.737-.737 1.475 1.475 2.949-1.475 1.475-2.949-1.475\"/></g><path stroke=\"#primary\" stroke-linecap=\"round\" d=\"M5.932 5.546l7.082 6.931\"/><path stroke=\"#secondary\" stroke-linecap=\"round\" d=\"M32.959 31.99l8.728 8.532\"/><circle stroke=\"#secondary\" cx=\"44\" cy=\"43\" r=\"3\"/><circle stroke=\"#primary\" cx=\"13\" cy=\"2\" r=\"2\"/><circle stroke=\"#secondary\" cx=\"35\" cy=\"44\" r=\"2\"/><circle stroke=\"#secondary\" cx=\"3\" cy=\"12\" r=\"2\"/><circle stroke=\"#primary\" cx=\"45\" cy=\"34\" r=\"2\"/><path d=\"M3.832 0a3 3 0 110 6 3 3 0 010-6zM8.04 10.613l2.1-.613M10.334 9.758l1.914-5.669\" stroke=\"#primary\" stroke-linecap=\"round\"/><path stroke=\"#secondary\" stroke-linecap=\"round\" d=\"M40.026 35.91l-2.025.591M35.695 41.965l1.843-5.326\"/><path d=\"M16 2h23.038a6 6 0 016 6v24.033\" stroke=\"#primary\" stroke-linecap=\"round\"/><path d=\"M32.038 44.033H9a6 6 0 01-6-6V14\" stroke=\"#secondary\" stroke-linecap=\"round\"/><path d=\"M17.533 22.154l5.113 3.22a1 1 0 01-.006 1.697l-5.113 3.17a1 1 0 01-1.527-.85V23a1 1 0 011.533-.846zm11.58-7.134v-.504a1 1 0 011.53-.85l3.845 2.397a1 1 0 01-.006 1.701l-3.846 2.358\" stroke=\"#primary\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g>", icon:'<g transform="translate(4 5)" stroke-width="2" fill="none" fill-rule="evenodd"><g stroke-linecap="round" stroke-linejoin="round"><path stroke="#primary" d="M26.478 22l.696 2.087 3.478.696v2.782l-3.478 1.392-.696 1.39 1.392 3.48-1.392 1.39L23 33.827l-1.391.695L20.217 38h-2.782l-1.392-3.478-1.39-.696-3.48 1.391-1.39-1.39 1.39-3.48-.695-1.39L7 27.565v-2.782l3.478-1.392.696-1.391-1.391-3.478 1.39-1.392 3.48 1.392 1.39-.696 1.392-3.478h2.782l1.392 3.478 1.391.696 3.478-1.392 1.392 1.392z"/><path stroke="#secondary" d="M24.779 12.899l-1.475-2.212 1.475-1.475 2.95 1.475 1.474-.738.737-2.934h2.212l.737 2.934 1.475.738 2.95-1.475 1.474 1.475-1.475 2.949.738 1.475 2.949.737v2.212l-2.95.737-.737 1.475 1.475 2.949-1.475 1.475-2.949-1.475"/></g><path stroke="#primary" stroke-linecap="round" d="M5.932 5.546l7.082 6.931"/><path stroke="#secondary" stroke-linecap="round" d="M32.959 31.99l8.728 8.532"/><circle stroke="#secondary" cx="44" cy="43" r="3"/><circle stroke="#primary" cx="13" cy="2" r="2"/><circle stroke="#secondary" cx="35" cy="44" r="2"/><circle stroke="#secondary" cx="3" cy="12" r="2"/><circle stroke="#primary" cx="45" cy="34" r="2"/><path d="M3.832 0a3 3 0 110 6 3 3 0 010-6zM8.04 10.613l2.1-.613M10.334 9.758l1.914-5.669" stroke="#primary" stroke-linecap="round"/><path stroke="#secondary" stroke-linecap="round" d="M40.026 35.91l-2.025.591M35.695 41.965l1.843-5.326"/><path d="M16 2h23.038a6 6 0 016 6v24.033" stroke="#primary" stroke-linecap="round"/><path d="M32.038 44.033H9a6 6 0 01-6-6V14" stroke="#secondary" stroke-linecap="round"/><path d="M17.533 22.154l5.113 3.22a1 1 0 01-.006 1.697l-5.113 3.17a1 1 0 01-1.527-.85V23a1 1 0 011.533-.846zm11.58-7.134v-.504a1 1 0 011.53-.85l3.845 2.397a1 1 0 01-.006 1.701l-3.846 2.358" stroke="#primary" stroke-linecap="round" stroke-linejoin="round"/></g>',
rank:value ? "$" : "X", progress:value ? 1 : 0, value, unlock:new Date(unlock?.createdAt), rank:value ? "$" : "X",
progress:value ? 1 : 0,
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -263,8 +303,11 @@
list.push({ list.push({
title:"Infographile", title:"Infographile",
text:"Fervent supporter of metrics", text:"Fervent supporter of metrics",
icon:"<g stroke-linejoin=\"round\" stroke-width=\"2\" fill=\"none\" fill-rule=\"evenodd\"><g stroke=\"#secondary\" stroke-linecap=\"round\"><path d=\"M22 31h20M22 36h10\"/></g><path d=\"M44.05 36.013a8 8 0 110 16 8 8 0 010-16z\" stroke=\"#primary\" stroke-linecap=\"round\"/><path d=\"M32 43H7c-1.228 0-2-.84-2-2V7c0-1.16.772-2 2-2h7.075M47 24.04V32\" stroke=\"#secondary\" stroke-linecap=\"round\"/><path stroke=\"#primary\" stroke-linecap=\"round\" d=\"M47.015 42.017l-4 3.994-2.001-1.995\"/><path stroke=\"#secondary\" d=\"M11 31h5v5h-5z\"/><path d=\"M11 14a2 2 0 012-2m28 12a2 2 0 01-2 2h-1m-5 0h-4m-6 0h-4m-5 0h-1a2 2 0 01-2-2m0-4v-2\" stroke=\"#secondary\" stroke-linecap=\"round\"/><path d=\"M18 18V7c0-1.246.649-2 1.73-2h28.54C49.351 5 50 5.754 50 7v11c0 1.246-.649 2-1.73 2H19.73c-1.081 0-1.73-.754-1.73-2z\" stroke=\"#primary\" stroke-linecap=\"round\"/><path stroke=\"#primary\" stroke-linecap=\"round\" d=\"M22 13h4l2-3 3 5 2-2h3.052l2.982-4 3.002 4H46\"/></g>", icon:'<g stroke-linejoin="round" stroke-width="2" fill="none" fill-rule="evenodd"><g stroke="#secondary" stroke-linecap="round"><path d="M22 31h20M22 36h10"/></g><path d="M44.05 36.013a8 8 0 110 16 8 8 0 010-16z" stroke="#primary" stroke-linecap="round"/><path d="M32 43H7c-1.228 0-2-.84-2-2V7c0-1.16.772-2 2-2h7.075M47 24.04V32" stroke="#secondary" stroke-linecap="round"/><path stroke="#primary" stroke-linecap="round" d="M47.015 42.017l-4 3.994-2.001-1.995"/><path stroke="#secondary" d="M11 31h5v5h-5z"/><path d="M11 14a2 2 0 012-2m28 12a2 2 0 01-2 2h-1m-5 0h-4m-6 0h-4m-5 0h-1a2 2 0 01-2-2m0-4v-2" stroke="#secondary" stroke-linecap="round"/><path d="M18 18V7c0-1.246.649-2 1.73-2h28.54C49.351 5 50 5.754 50 7v11c0 1.246-.649 2-1.73 2H19.73c-1.081 0-1.73-.754-1.73-2z" stroke="#primary" stroke-linecap="round"/><path stroke="#primary" stroke-linecap="round" d="M22 13h4l2-3 3 5 2-2h3.052l2.982-4 3.002 4H46"/></g>',
rank:(value)&&(login === _login) ? "$" : "X", progress:(value)&&(login === _login) ? 1 : 0, value, unlock:new Date(unlock?.createdAt), rank:(value) && (login === _login) ? "$" : "X",
progress:(value) && (login === _login) ? 1 : 0,
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
@@ -276,9 +319,11 @@
list.push({ list.push({
title:"Octonaut", title:"Octonaut",
text:"Following octocat", text:"Following octocat",
icon:"<g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M14.7 8c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zm26 0c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zM28.021 5c.318 1.122.574 1.372 1.711 1.678-1.136.314-1.389.566-1.7 1.69-.317-1.121-.572-1.372-1.71-1.679 1.135-.313 1.39-.566 1.7-1.689z\" stroke=\"#primary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><g transform=\"translate(4 9)\" fill-rule=\"nonzero\"><path d=\"M14.05 9.195C10.327 7.065 7.46 6 5.453 6 4.92 6 4 6.164 3.5 6.653s-.572.741-.711 1.14c-.734 2.1-1.562 6.317.078 9.286-8.767 25.38 15.513 24.92 21.207 24.92 5.695 0 29.746.456 21.037-24.908 1.112-2.2 1.404-5.119.121-9.284-.863-2.802-4.646-2.341-11.35 1.384a27.38 27.38 0 00-9.802-1.81c-3.358 0-6.701.605-10.03 1.814z\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.323 40.074c-2.442-1.02-2.93-3.308-2.93-4.834 0-1.527.488-2.45.976-3.92.489-1.47.391-2.281-.976-5.711-1.368-3.43.976-7.535 4.884-7.535 3.908 0 7.088 3.005 11.723 2.956m0 0c4.635.05 7.815-2.956 11.723-2.956 3.908 0 6.252 4.105 4.884 7.535-1.367 3.43-1.465 4.241-.976 5.71.488 1.47.976 2.394.976 3.92 0 1.527-.488 3.816-2.93 4.835\" stroke=\"#secondary\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><circle fill=\"#primary\" cx=\"12\" cy=\"30\" r=\"1\"/><circle fill=\"#primary\" cx=\"13\" cy=\"28\" r=\"1\"/><circle fill=\"#primary\" cx=\"15\" cy=\"28\" r=\"1\"/><circle fill=\"#primary\" cx=\"23\" cy=\"35\" r=\"1\"/><circle fill=\"#primary\" cx=\"25\" cy=\"35\" r=\"1\"/><circle fill=\"#primary\" cx=\"17\" cy=\"28\" r=\"1\"/><circle fill=\"#primary\" cx=\"31\" cy=\"28\" r=\"1\"/><circle fill=\"#primary\" cx=\"33\" cy=\"28\" r=\"1\"/><circle fill=\"#primary\" cx=\"35\" cy=\"28\" r=\"1\"/><circle fill=\"#primary\" cx=\"12\" cy=\"32\" r=\"1\"/><circle fill=\"#primary\" cx=\"19\" cy=\"30\" r=\"1\"/><circle fill=\"#primary\" cx=\"19\" cy=\"32\" r=\"1\"/><circle fill=\"#primary\" cx=\"29\" cy=\"30\" r=\"1\"/><circle fill=\"#primary\" cx=\"29\" cy=\"32\" r=\"1\"/><circle fill=\"#primary\" cx=\"36\" cy=\"30\" r=\"1\"/><circle fill=\"#primary\" cx=\"36\" cy=\"32\" r=\"1\"/></g></g>", icon:'<g fill="none" fill-rule="evenodd"><path d="M14.7 8c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zm26 0c.316 1.122.572 1.372 1.71 1.678-1.136.314-1.39.566-1.7 1.69-.317-1.121-.573-1.372-1.71-1.679 1.135-.313 1.389-.566 1.7-1.689zM28.021 5c.318 1.122.574 1.372 1.711 1.678-1.136.314-1.389.566-1.7 1.69-.317-1.121-.572-1.372-1.71-1.679 1.135-.313 1.39-.566 1.7-1.689z" stroke="#primary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><g transform="translate(4 9)" fill-rule="nonzero"><path d="M14.05 9.195C10.327 7.065 7.46 6 5.453 6 4.92 6 4 6.164 3.5 6.653s-.572.741-.711 1.14c-.734 2.1-1.562 6.317.078 9.286-8.767 25.38 15.513 24.92 21.207 24.92 5.695 0 29.746.456 21.037-24.908 1.112-2.2 1.404-5.119.121-9.284-.863-2.802-4.646-2.341-11.35 1.384a27.38 27.38 0 00-9.802-1.81c-3.358 0-6.701.605-10.03 1.814z" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M10.323 40.074c-2.442-1.02-2.93-3.308-2.93-4.834 0-1.527.488-2.45.976-3.92.489-1.47.391-2.281-.976-5.711-1.368-3.43.976-7.535 4.884-7.535 3.908 0 7.088 3.005 11.723 2.956m0 0c4.635.05 7.815-2.956 11.723-2.956 3.908 0 6.252 4.105 4.884 7.535-1.367 3.43-1.465 4.241-.976 5.71.488 1.47.976 2.394.976 3.92 0 1.527-.488 3.816-2.93 4.835" stroke="#secondary" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><circle fill="#primary" cx="12" cy="30" r="1"/><circle fill="#primary" cx="13" cy="28" r="1"/><circle fill="#primary" cx="15" cy="28" r="1"/><circle fill="#primary" cx="23" cy="35" r="1"/><circle fill="#primary" cx="25" cy="35" r="1"/><circle fill="#primary" cx="17" cy="28" r="1"/><circle fill="#primary" cx="31" cy="28" r="1"/><circle fill="#primary" cx="33" cy="28" r="1"/><circle fill="#primary" cx="35" cy="28" r="1"/><circle fill="#primary" cx="12" cy="32" r="1"/><circle fill="#primary" cx="19" cy="30" r="1"/><circle fill="#primary" cx="19" cy="32" r="1"/><circle fill="#primary" cx="29" cy="30" r="1"/><circle fill="#primary" cx="29" cy="32" r="1"/><circle fill="#primary" cx="36" cy="30" r="1"/><circle fill="#primary" cx="36" cy="32" r="1"/></g></g>',
rank:(value)&&(login === _login) ? "$" : "X", progress:(value)&&(login === _login) ? 1 : 0, value, unlock:new Date(unlock?.createdAt), rank:(value) && (login === _login) ? "$" : "X",
progress:(value) && (login === _login) ? 1 : 0,
value,
unlock:new Date(unlock?.createdAt),
}) })
} }
}
}

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, rest, q, account, imports}, {enabled = false, markdown = "inline"} = {}) { export default async function({login, data, rest, q, account, imports}, {enabled = false, markdown = "inline"} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.activity)) if ((!enabled) || (!q.activity))
return null return null
//Context //Context
@@ -27,113 +27,115 @@
console.debug(`metrics/compute/${login}/plugins > activity > ${events.length} events loaded`) console.debug(`metrics/compute/${login}/plugins > activity > ${events.length} events loaded`)
//Extract activity events //Extract activity events
const activity = (await Promise.all(events const activity = (await Promise.all(
events
.filter(({actor}) => account === "organization" ? true : actor.login === login) .filter(({actor}) => account === "organization" ? true : actor.login === login)
.filter(({created_at}) => Number.isFinite(days) ? new Date(created_at) > new Date(Date.now()-days*24*60*60*1000) : true) .filter(({created_at}) => Number.isFinite(days) ? new Date(created_at) > new Date(Date.now() - days * 24 * 60 * 60 * 1000) : true)
.filter(event => visibility === "public" ? event.public : true) .filter(event => visibility === "public" ? event.public : true)
.map(async({type, payload, actor:{login:actor}, repo:{name:repo}, created_at}) => { .map(async ({type, payload, actor:{login:actor}, repo:{name:repo}, created_at}) => {
//See https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/github-event-types //See https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/github-event-types
const timestamp = new Date(created_at) const timestamp = new Date(created_at)
if ((skipped.includes(repo.split("/").pop()))||(skipped.includes(repo))) if ((skipped.includes(repo.split("/").pop())) || (skipped.includes(repo)))
return null return null
switch (type) { switch (type) {
//Commented on a commit //Commented on a commit
case "CommitCommentEvent":{ case "CommitCommentEvent": {
if (!["created"].includes(payload.action)) if (!["created"].includes(payload.action))
return null return null
const {comment:{user:{login:user}, commit_id:sha, body:content}} = payload const {comment:{user:{login:user}, commit_id:sha, body:content}} = payload
return {type:"comment", on:"commit", actor, timestamp, repo, content:await imports.markdown(content, {mode:markdown, codelines}), user, mobile:null, number:sha.substring(0, 7), title:""} return {type:"comment", on:"commit", actor, timestamp, repo, content:await imports.markdown(content, {mode:markdown, codelines}), user, mobile:null, number:sha.substring(0, 7), title:""}
} }
//Created a git branch or tag //Created a git branch or tag
case "CreateEvent":{ case "CreateEvent": {
const {ref:name, ref_type:type} = payload const {ref:name, ref_type:type} = payload
return {type:"ref/create", actor, timestamp, repo, ref:{name, type}} return {type:"ref/create", actor, timestamp, repo, ref:{name, type}}
} }
//Deleted a git branch or tag //Deleted a git branch or tag
case "DeleteEvent":{ case "DeleteEvent": {
const {ref:name, ref_type:type} = payload const {ref:name, ref_type:type} = payload
return {type:"ref/delete", actor, timestamp, repo, ref:{name, type}} return {type:"ref/delete", actor, timestamp, repo, ref:{name, type}}
} }
//Forked repository //Forked repository
case "ForkEvent":{ case "ForkEvent": {
return {type:"fork", actor, timestamp, repo} return {type:"fork", actor, timestamp, repo}
} }
//Wiki editions //Wiki editions
case "GollumEvent":{ case "GollumEvent": {
const {pages} = payload const {pages} = payload
return {type:"wiki", actor, timestamp, repo, pages:pages.map(({title}) => title)} return {type:"wiki", actor, timestamp, repo, pages:pages.map(({title}) => title)}
} }
//Commented on an issue //Commented on an issue
case "IssueCommentEvent":{ case "IssueCommentEvent": {
if (!["created"].includes(payload.action)) if (!["created"].includes(payload.action))
return null return null
const {issue:{user:{login:user}, title, number}, comment:{body:content, performed_via_github_app:mobile}} = payload const {issue:{user:{login:user}, title, number}, comment:{body:content, performed_via_github_app:mobile}} = payload
return {type:"comment", on:"issue", actor, timestamp, repo, content:await imports.markdown(content, {mode:markdown, codelines}), user, mobile, number, title} return {type:"comment", on:"issue", actor, timestamp, repo, content:await imports.markdown(content, {mode:markdown, codelines}), user, mobile, number, title}
} }
//Issue event //Issue event
case "IssuesEvent":{ case "IssuesEvent": {
if (!["opened", "closed", "reopened"].includes(payload.action)) if (!["opened", "closed", "reopened"].includes(payload.action))
return null return null
const {action, issue:{user:{login:user}, title, number, body:content}} = payload const {action, issue:{user:{login:user}, title, number, body:content}} = payload
return {type:"issue", actor, timestamp, repo, action, user, number, title, content:await imports.markdown(content, {mode:markdown, codelines})} return {type:"issue", actor, timestamp, repo, action, user, number, title, content:await imports.markdown(content, {mode:markdown, codelines})}
} }
//Activity from repository collaborators //Activity from repository collaborators
case "MemberEvent":{ case "MemberEvent": {
if (!["added"].includes(payload.action)) if (!["added"].includes(payload.action))
return null return null
const {member:{login:user}} = payload const {member:{login:user}} = payload
return {type:"member", actor, timestamp, repo, user} return {type:"member", actor, timestamp, repo, user}
} }
//Made repository public //Made repository public
case "PublicEvent":{ case "PublicEvent": {
return {type:"public", actor, timestamp, repo} return {type:"public", actor, timestamp, repo}
} }
//Pull requests events //Pull requests events
case "PullRequestEvent":{ case "PullRequestEvent": {
if (!["opened", "closed"].includes(payload.action)) if (!["opened", "closed"].includes(payload.action))
return null return null
const {action, pull_request:{user:{login:user}, title, number, body:content, additions:added, deletions:deleted, changed_files:changed, merged}} = payload const {action, pull_request:{user:{login:user}, title, number, body:content, additions:added, deletions:deleted, changed_files:changed, merged}} = payload
return {type:"pr", actor, timestamp, repo, action:(action === "closed")&&(merged) ? "merged" : action, user, title, number, content:await imports.markdown(content, {mode:markdown, codelines}), lines:{added, deleted}, files:{changed}} return {type:"pr", actor, timestamp, repo, action:(action === "closed") && (merged) ? "merged" : action, user, title, number, content:await imports.markdown(content, {mode:markdown, codelines}), lines:{added, deleted}, files:{changed}}
} }
//Reviewed a pull request //Reviewed a pull request
case "PullRequestReviewEvent":{ case "PullRequestReviewEvent": {
const {review:{state:review}, pull_request:{user:{login:user}, number, title}} = payload const {review:{state:review}, pull_request:{user:{login:user}, number, title}} = payload
return {type:"review", actor, timestamp, repo, review, user, number, title} return {type:"review", actor, timestamp, repo, review, user, number, title}
} }
//Commented on a pull request //Commented on a pull request
case "PullRequestReviewCommentEvent":{ case "PullRequestReviewCommentEvent": {
if (!["created"].includes(payload.action)) if (!["created"].includes(payload.action))
return null return null
const {pull_request:{user:{login:user}, title, number}, comment:{body:content, performed_via_github_app:mobile}} = payload const {pull_request:{user:{login:user}, title, number}, comment:{body:content, performed_via_github_app:mobile}} = payload
return {type:"comment", on:"pr", actor, timestamp, repo, content:await imports.markdown(content, {mode:markdown, codelines}), user, mobile, number, title} return {type:"comment", on:"pr", actor, timestamp, repo, content:await imports.markdown(content, {mode:markdown, codelines}), user, mobile, number, title}
} }
//Pushed commits //Pushed commits
case "PushEvent":{ case "PushEvent": {
let {size, commits, ref} = payload let {size, commits, ref} = payload
if (commits[commits.length-1].message.startsWith("Merge branch ")) if (commits[commits.length - 1].message.startsWith("Merge branch "))
commits = [commits[commits.length-1]] commits = [commits[commits.length - 1]]
return {type:"push", actor, timestamp, repo, size, branch:ref.match(/refs.heads.(?<branch>.*)/)?.groups?.branch ?? null, commits:commits.reverse().map(({sha, message}) => ({sha:sha.substring(0, 7), message}))} return {type:"push", actor, timestamp, repo, size, branch:ref.match(/refs.heads.(?<branch>.*)/)?.groups?.branch ?? null, commits:commits.reverse().map(({sha, message}) => ({sha:sha.substring(0, 7), message}))}
} }
//Released //Released
case "ReleaseEvent":{ case "ReleaseEvent": {
if (!["published"].includes(payload.action)) if (!["published"].includes(payload.action))
return null return null
const {action, release:{name, prerelease, draft, body:content}} = payload const {action, release:{name, prerelease, draft, body:content}} = payload
return {type:"release", actor, timestamp, repo, action, name, prerelease, draft, content:await imports.markdown(content, {mode:markdown, codelines})} return {type:"release", actor, timestamp, repo, action, name, prerelease, draft, content:await imports.markdown(content, {mode:markdown, codelines})}
} }
//Starred a repository //Starred a repository
case "WatchEvent":{ case "WatchEvent": {
if (!["started"].includes(payload.action)) if (!["started"].includes(payload.action))
return null return null
const {action} = payload const {action} = payload
return {type:"star", actor, timestamp, repo, action} return {type:"star", actor, timestamp, repo, action}
} }
//Unknown event //Unknown event
default:{ default: {
return null return null
} }
} }
}))) }),
))
.filter(event => event) .filter(event => event)
.filter(event => filter.includes("all") || filter.includes(event.type)) .filter(event => filter.includes("all") || filter.includes(event.type))
.slice(0, limit) .slice(0, limit)
@@ -145,4 +147,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, queries, imports, q, account}, {enabled = false} = {}) { export default async function({login, data, queries, imports, q, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.anilist)) if ((!enabled) || (!q.anilist))
return null return null
//Load inputs //Load inputs
@@ -28,7 +28,7 @@
} }
//Medias lists //Medias lists
if ((sections.includes("watching"))||(sections.includes("reading"))) { if ((sections.includes("watching")) || (sections.includes("reading"))) {
for (const type of medias) { for (const type of medias) {
for (let retried = false; !retried; retried = true) { for (let retried = false; !retried; retried = true) {
try { try {
@@ -131,28 +131,32 @@
} }
throw {error:{message, instance:error}} throw {error:{message, instance:error}}
} }
} }
/**Media formatter */ /**Media formatter */
async function format({media, imports}) { async function format({media, imports}) {
const {progress, score:userScore, media:{title, description, status, startDate:{year:release}, genres, averageScore, episodes, chapters, type, coverImage:{medium:artwork}}} = media const {progress, score:userScore, media:{title, description, status, startDate:{year:release}, genres, averageScore, episodes, chapters, type, coverImage:{medium:artwork}}} = media
return { return {
name:title.romaji, name:title.romaji,
type, status, release, genres, progress, type,
status,
release,
genres,
progress,
description:description.replace(/<br\s*\\?>/g, " "), description:description.replace(/<br\s*\\?>/g, " "),
scores:{user:userScore, community:averageScore}, scores:{user:userScore, community:averageScore},
released:type === "ANIME" ? episodes : chapters, released:type === "ANIME" ? episodes : chapters,
artwork:await imports.imgb64(artwork), artwork:await imports.imgb64(artwork),
} }
} }
/**Rate-limiter handler */ /**Rate-limiter handler */
async function retry({login, imports, error}) { async function retry({login, imports, error}) {
if ((error.isAxiosError)&&(error.response.status === 429)) { if ((error.isAxiosError) && (error.response.status === 429)) {
const delay = Number(error.response.headers["retry-after"])+5 const delay = Number(error.response.headers["retry-after"]) + 5
console.debug(`metrics/compute/${login}/plugins > anilist > reached requests limit, retrying in ${delay}s`) console.debug(`metrics/compute/${login}/plugins > anilist > reached requests limit, retrying in ${delay}s`)
await imports.wait(delay) await imports.wait(delay)
return true return true
} }
throw error throw error
} }

View File

@@ -4,7 +4,7 @@
*/ */
//Setup //Setup
export default async function({login, graphql, data, q, queries, imports}, conf) { export default async function({login, graphql, data, q, queries, imports}, conf) {
//Load inputs //Load inputs
console.debug(`metrics/compute/${login}/base > started`) console.debug(`metrics/compute/${login}/base > started`)
let {repositories, "repositories.forks":_forks, "repositories.affiliations":_affiliations, "repositories.skipped":_skipped} = imports.metadata.plugins.base.inputs({data, q, account:"bypass"}, {repositories:conf.settings.repositories ?? 100}) let {repositories, "repositories.forks":_forks, "repositories.affiliations":_affiliations, "repositories.skipped":_skipped} = imports.metadata.plugins.base.inputs({data, q, account:"bypass"}, {repositories:conf.settings.repositories ?? 100})
@@ -29,7 +29,7 @@
try { try {
//Query data from GitHub API //Query data from GitHub API
console.debug(`metrics/compute/${login}/base > account ${account}`) console.debug(`metrics/compute/${login}/base > account ${account}`)
const queried = await graphql(queries.base[account]({login, "calendar.from":new Date(Date.now()-14*24*60*60*1000).toISOString(), "calendar.to":(new Date()).toISOString(), forks, affiliations})) const queried = await graphql(queries.base[account]({login, "calendar.from":new Date(Date.now() - 14 * 24 * 60 * 60 * 1000).toISOString(), "calendar.to":(new Date()).toISOString(), forks, affiliations}))
Object.assign(data, {user:queried[account]}) Object.assign(data, {user:queried[account]})
postprocess?.[account]({login, data}) postprocess?.[account]({login, data})
//Query repositories from GitHub API //Query repositories from GitHub API
@@ -40,10 +40,10 @@
do { do {
console.debug(`metrics/compute/${login}/base > retrieving repositories after ${cursor}`) console.debug(`metrics/compute/${login}/base > retrieving repositories after ${cursor}`)
const {[account]:{repositories:{edges, nodes}}} = await graphql(queries.base.repositories({login, account, after:cursor ? `after: "${cursor}"` : "", repositories:Math.min(repositories, {user:100, organization:25}[account]), forks, affiliations})) const {[account]:{repositories:{edges, nodes}}} = await graphql(queries.base.repositories({login, account, after:cursor ? `after: "${cursor}"` : "", repositories:Math.min(repositories, {user:100, organization:25}[account]), forks, affiliations}))
cursor = edges?.[edges?.length-1]?.cursor cursor = edges?.[edges?.length - 1]?.cursor
data.user.repositories.nodes.push(...nodes) data.user.repositories.nodes.push(...nodes)
pushed = nodes.length pushed = nodes.length
} while ((pushed)&&(cursor)&&(data.user.repositories.nodes.length < repositories)) } while ((pushed) && (cursor) && (data.user.repositories.nodes.length < repositories))
//Limit repositories //Limit repositories
console.debug(`metrics/compute/${login}/base > keeping only ${repositories} repositories`) console.debug(`metrics/compute/${login}/base > keeping only ${repositories} repositories`)
data.user.repositories.nodes.splice(repositories) data.user.repositories.nodes.splice(repositories)
@@ -66,10 +66,10 @@
//Not found //Not found
console.debug(`metrics/compute/${login}/base > no more account type`) console.debug(`metrics/compute/${login}/base > no more account type`)
throw new Error("user not found") throw new Error("user not found")
} }
//Query post-processing //Query post-processing
const postprocess = { const postprocess = {
//User //User
user({login, data}) { user({login, data}) {
console.debug(`metrics/compute/${login}/base > applying postprocessing`) console.debug(`metrics/compute/${login}/base > applying postprocessing`)
@@ -120,10 +120,10 @@
packages:{totalCount:0}, packages:{totalCount:0},
}) })
}, },
} }
//Legacy functions //Legacy functions
const legacy = { const legacy = {
converter(value) { converter(value) {
if (/^(?:[Tt]rue|[Oo]n|[Yy]es|1)$/.test(value)) if (/^(?:[Tt]rue|[Oo]n|[Yy]es|1)$/.test(value))
return true return true
@@ -132,4 +132,4 @@
if (Number.isFinite(Number(value))) if (Number.isFinite(Number(value)))
return !!(Number(value)) return !!(Number(value))
}, },
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, rest, graphql, queries, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, rest, graphql, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.contributors)) if ((!enabled) || (!q.contributors))
return null return null
//Load inputs //Load inputs
@@ -50,7 +50,7 @@
//Compute contributors and contributions //Compute contributors and contributions
let contributors = {} let contributors = {}
for (const {author:{login, avatar_url:avatar}, commit:{message = ""}} of commits) { for (const {author:{login, avatar_url:avatar}, commit:{message = ""}} of commits) {
if ((!login)||(ignored.includes(login))) { if ((!login) || (ignored.includes(login))) {
console.debug(`metrics/compute/${login}/plugins > contributors > ignored contributor "${login}"`) console.debug(`metrics/compute/${login}/plugins > contributors > ignored contributor "${login}"`)
continue continue
} }
@@ -74,4 +74,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -4,7 +4,7 @@
*/ */
//Setup //Setup
export default async function({login, q}, {conf, data, rest, graphql, plugins, queries, account, convert, template}, {pending, imports}) { export default async function({login, q}, {conf, data, rest, graphql, plugins, queries, account, convert, template}, {pending, imports}) {
//Load inputs //Load inputs
const {"config.animations":animations, "config.timezone":_timezone, "debug.flags":dflags} = imports.metadata.plugins.core.inputs({data, account, q}) const {"config.animations":animations, "config.timezone":_timezone, "debug.flags":dflags} = imports.metadata.plugins.core.inputs({data, account, q})
imports.metadata.templates[template].check({q, account, format:convert}) imports.metadata.templates[template].check({q, account, format:convert})
@@ -20,8 +20,8 @@
const timezone = {name:_timezone, offset:0} const timezone = {name:_timezone, offset:0}
data.config.timezone = timezone data.config.timezone = timezone
try { try {
timezone.offset = Number(new Date().toLocaleString("fr", {timeZoneName:"short", timeZone:timezone.name}).match(/UTC[+](?<offset>\d+)/)?.groups?.offset*60*60*1000) || 0 timezone.offset = Number(new Date().toLocaleString("fr", {timeZoneName:"short", timeZone:timezone.name}).match(/UTC[+](?<offset>\d+)/)?.groups?.offset * 60 * 60 * 1000) || 0
console.debug(`metrics/compute/${login} > timezone set to ${timezone.name} (${timezone.offset > 0 ? "+" : ""}${Math.round(timezone.offset/(60*60*1000))} hours)`) console.debug(`metrics/compute/${login} > timezone set to ${timezone.name} (${timezone.offset > 0 ? "+" : ""}${Math.round(timezone.offset / (60 * 60 * 1000))} hours)`)
} }
catch { catch {
timezone.error = `Failed to use timezone "${timezone.name}"` timezone.error = `Failed to use timezone "${timezone.name}"`
@@ -35,9 +35,9 @@
//Plugins //Plugins
for (const name of Object.keys(imports.plugins)) { for (const name of Object.keys(imports.plugins)) {
if ((!plugins[name]?.enabled)||(!q[name])) if ((!plugins[name]?.enabled) || (!q[name]))
continue continue
pending.push((async() => { pending.push((async () => {
try { try {
console.debug(`metrics/compute/${login}/plugins > ${name} > started`) console.debug(`metrics/compute/${login}/plugins > ${name} > started`)
data.plugins[name] = await imports.plugins[name]({login, q, imports, data, computed, rest, graphql, queries, account}, plugins[name]) data.plugins[name] = await imports.plugins[name]({login, q, imports, data, computed, rest, graphql, queries, account}, plugins[name])
@@ -70,7 +70,7 @@
} }
//Total disk usage //Total disk usage
computed.diskUsage = `${imports.bytes(data.user.repositories.totalDiskUsage*1000)}` computed.diskUsage = `${imports.bytes(data.user.repositories.totalDiskUsage * 1000)}`
//Compute licenses stats //Compute licenses stats
computed.licenses.favorite = Object.entries(computed.licenses.used).sort(([_an, a], [_bn, b]) => b - a).slice(0, 1).map(([name, _value]) => name) ?? "" computed.licenses.favorite = Object.entries(computed.licenses.used).sort(([_an, a], [_bn, b]) => b - a).slice(0, 1).map(([name, _value]) => name) ?? ""
@@ -79,11 +79,11 @@
computed.commits += data.user.contributionsCollection.totalCommitContributions + data.user.contributionsCollection.restrictedContributionsCount computed.commits += data.user.contributionsCollection.totalCommitContributions + data.user.contributionsCollection.restrictedContributionsCount
//Compute registration date //Compute registration date
const diff = (Date.now()-(new Date(data.user.createdAt)).getTime())/(365*24*60*60*1000) const diff = (Date.now() - (new Date(data.user.createdAt)).getTime()) / (365 * 24 * 60 * 60 * 1000)
const years = Math.floor(diff) const years = Math.floor(diff)
const months = Math.floor((diff-years)*12) const months = Math.floor((diff - years) * 12)
computed.registered = {years, months, diff} computed.registered = {years, months, diff}
computed.registration = years ? `${years} year${imports.s(years)} ago` : months ? `${months} month${imports.s(months)} ago` : `${Math.ceil(diff*365)} day${imports.s(Math.ceil(diff*365))} ago` computed.registration = years ? `${years} year${imports.s(years)} ago` : months ? `${months} month${imports.s(months)} ago` : `${Math.ceil(diff * 365)} day${imports.s(Math.ceil(diff * 365))} ago`
computed.cakeday = years > 1 ? [new Date(), new Date(data.user.createdAt)].map(date => date.toISOString().match(/(?<mmdd>\d{2}-\d{2})(?=T)/)?.groups?.mmdd).every((v, _, a) => v === a[0]) : false computed.cakeday = years > 1 ? [new Date(), new Date(data.user.createdAt)].map(date => date.toISOString().match(/(?<mmdd>\d{2}-\d{2})(?=T)/)?.groups?.mmdd).every((v, _, a) => v === a[0]) : false
//Compute calendar //Compute calendar
@@ -120,7 +120,7 @@
computed.calendar.map(day => day.color = halloween(day.color)) computed.calendar.map(day => day.color = halloween(day.color))
//Update isocalendar colors //Update isocalendar colors
const waiting = [...pending] const waiting = [...pending]
pending.push((async() => { pending.push((async () => {
await Promise.all(waiting) await Promise.all(waiting)
if (data.plugins.isocalendar?.svg) if (data.plugins.isocalendar?.svg)
data.plugins.isocalendar.svg = halloween(data.plugins.isocalendar.svg) data.plugins.isocalendar.svg = halloween(data.plugins.isocalendar.svg)
@@ -134,4 +134,4 @@
//Results //Results
return null return null
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, computed, imports, q, graphql, queries, account}, {enabled = false} = {}) { export default async function({login, data, computed, imports, q, graphql, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.followup)) if ((!enabled) || (!q.followup))
return null return null
//Load inputs //Load inputs
@@ -68,4 +68,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, graphql, q, imports, queries, account}, {enabled = false} = {}) { export default async function({login, data, graphql, q, imports, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.gists)) if ((!enabled) || (!q.gists))
return null return null
//Load inputs //Load inputs
@@ -18,11 +18,11 @@
do { do {
console.debug(`metrics/compute/${login}/plugins > gists > retrieving gists after ${cursor}`) console.debug(`metrics/compute/${login}/plugins > gists > retrieving gists after ${cursor}`)
const {user:{gists:{edges, nodes, totalCount}}} = await graphql(queries.gists({login, after:cursor ? `after: "${cursor}"` : ""})) const {user:{gists:{edges, nodes, totalCount}}} = await graphql(queries.gists({login, after:cursor ? `after: "${cursor}"` : ""}))
cursor = edges?.[edges?.length-1]?.cursor cursor = edges?.[edges?.length - 1]?.cursor
gists.push(...nodes) gists.push(...nodes)
gists.totalCount = totalCount gists.totalCount = totalCount
pushed = nodes.length pushed = nodes.length
} while ((pushed)&&(cursor)) } while ((pushed) && (cursor))
console.debug(`metrics/compute/${login}/plugins > gists > loaded ${gists.length} gists`) console.debug(`metrics/compute/${login}/plugins > gists > loaded ${gists.length} gists`)
} }
@@ -49,4 +49,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, rest, imports, q, account}, {enabled = false, ...defaults} = {}) { export default async function({login, data, rest, imports, q, account}, {enabled = false, ...defaults} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.habits)) if ((!enabled) || (!q.habits))
return null return null
//Load inputs //Load inputs
@@ -11,7 +11,7 @@
//Initialization //Initialization
const habits = {facts, charts, commits:{hour:NaN, hours:{}, day:NaN, days:{}}, indents:{style:"", spaces:0, tabs:0}, linguist:{available:false, ordered:[], languages:{}}} const habits = {facts, charts, commits:{hour:NaN, hours:{}, day:NaN, days:{}}, indents:{style:"", spaces:0, tabs:0}, linguist:{available:false, ordered:[], languages:{}}}
const pages = Math.ceil(from/100) const pages = Math.ceil(from / 100)
const offset = data.config.timezone?.offset ?? 0 const offset = data.config.timezone?.offset ?? 0
//Get user recent activity //Get user recent activity
@@ -32,14 +32,18 @@
const commits = events const commits = events
.filter(({type}) => type === "PushEvent") .filter(({type}) => type === "PushEvent")
.filter(({actor}) => account === "organization" ? true : actor.login === login) .filter(({actor}) => account === "organization" ? true : actor.login === login)
.filter(({created_at}) => new Date(created_at) > new Date(Date.now()-days*24*60*60*1000)) .filter(({created_at}) => new Date(created_at) > new Date(Date.now() - days * 24 * 60 * 60 * 1000))
console.debug(`metrics/compute/${login}/plugins > habits > filtered out ${commits.length} push events over last ${days} days`) console.debug(`metrics/compute/${login}/plugins > habits > filtered out ${commits.length} push events over last ${days} days`)
//Retrieve edited files and filter edited lines (those starting with +/-) from patches //Retrieve edited files and filter edited lines (those starting with +/-) from patches
console.debug(`metrics/compute/${login}/plugins > habits > loading patches`) console.debug(`metrics/compute/${login}/plugins > habits > loading patches`)
const patches = [...await Promise.allSettled(commits const patches = [
...await Promise.allSettled(
commits
.flatMap(({payload}) => payload.commits).map(commit => commit.url) .flatMap(({payload}) => payload.commits).map(commit => commit.url)
.map(async commit => (await rest.request(commit)).data.files))] .map(async commit => (await rest.request(commit)).data.files),
),
]
.filter(({status}) => status === "fulfilled") .filter(({status}) => status === "fulfilled")
.map(({value}) => value) .map(({value}) => value)
.flatMap(files => files.map(file => ({name:imports.paths.basename(file.filename), patch:file.patch ?? ""}))) .flatMap(files => files.map(file => ({name:imports.paths.basename(file.filename), patch:file.patch ?? ""})))
@@ -83,7 +87,7 @@
if (charts) { if (charts) {
//Check if linguist exists //Check if linguist exists
console.debug(`metrics/compute/${login}/plugins > habits > searching recently used languages using linguist`) console.debug(`metrics/compute/${login}/plugins > habits > searching recently used languages using linguist`)
if ((patches.length)&&(await imports.which("github-linguist"))) { if ((patches.length) && (await imports.which("github-linguist"))) {
//Setup for linguist //Setup for linguist
habits.linguist.available = true habits.linguist.available = true
const path = imports.paths.join(imports.os.tmpdir(), `${commits[0]?.actor?.id ?? 0}`) const path = imports.paths.join(imports.os.tmpdir(), `${commits[0]?.actor?.id ?? 0}`)
@@ -100,7 +104,7 @@
;(await imports.run("github-linguist --breakdown", {cwd:path})) ;(await imports.run("github-linguist --breakdown", {cwd:path}))
//Parse linguist result //Parse linguist result
.split("\n").map(line => line.match(/(?<value>[\d.]+)%\s+(?<language>[\s\S]+)$/)?.groups).filter(line => line) .split("\n").map(line => line.match(/(?<value>[\d.]+)%\s+(?<language>[\s\S]+)$/)?.groups).filter(line => line)
.map(({value, language}) => habits.linguist.languages[language] = (habits.linguist.languages[language] ?? 0) + value/100) .map(({value, language}) => habits.linguist.languages[language] = (habits.linguist.languages[language] ?? 0) + value / 100)
habits.linguist.ordered = Object.entries(habits.linguist.languages).sort(([_an, a], [_bn, b]) => b - a) habits.linguist.ordered = Object.entries(habits.linguist.languages).sort(([_an, a], [_bn, b]) => b - a)
//Cleaning //Cleaning
console.debug(`metrics/compute/${login}/plugins > habits > cleaning temp dir ${path}`) console.debug(`metrics/compute/${login}/plugins > habits > cleaning temp dir ${path}`)
@@ -108,6 +112,7 @@
} }
else else
console.debug(`metrics/compute/${login}/plugins > habits > linguist not available`) console.debug(`metrics/compute/${login}/plugins > habits > linguist not available`)
} }
//Results //Results
@@ -119,4 +124,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, graphql, queries, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, graphql, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.introduction)) if ((!enabled) || (!q.introduction))
return null return null
//Load inputs //Load inputs
@@ -28,4 +28,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, graphql, q, imports, queries, account}, {enabled = false} = {}) { export default async function({login, data, graphql, q, imports, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.isocalendar)) if ((!enabled) || (!q.isocalendar))
return null return null
//Load inputs //Load inputs
@@ -13,13 +13,13 @@
const now = new Date() const now = new Date()
const start = new Date(now) const start = new Date(now)
if (duration === "full-year") if (duration === "full-year")
start.setFullYear(now.getFullYear()-1) start.setFullYear(now.getFullYear() - 1)
else else
start.setHours(-24*180) start.setHours(-24 * 180)
//Compute padding to ensure last row is complete //Compute padding to ensure last row is complete
const padding = new Date(start) const padding = new Date(start)
padding.setHours(-14*24) padding.setHours(-14 * 24)
//Retrieve contribution calendar from graphql api //Retrieve contribution calendar from graphql api
console.debug(`metrics/compute/${login}/plugins > isocalendar > querying api`) console.debug(`metrics/compute/${login}/plugins > isocalendar > querying api`)
@@ -44,11 +44,11 @@
for (const day of week.contributionDays) { for (const day of week.contributionDays) {
values.push(day.contributionCount) values.push(day.contributionCount)
max = Math.max(max, day.contributionCount) max = Math.max(max, day.contributionCount)
streak.current = day.contributionCount ? streak.current+1 : 0 streak.current = day.contributionCount ? streak.current + 1 : 0
streak.max = Math.max(streak.max, streak.current) streak.max = Math.max(streak.max, streak.current)
} }
} }
average = (values.reduce((a, b) => a + b, 0)/values.length).toFixed(2).replace(/[.]0+$/, "") average = (values.reduce((a, b) => a + b, 0) / values.length).toFixed(2).replace(/[.]0+$/, "")
//Compute SVG //Compute SVG
console.debug(`metrics/compute/${login}/plugins > isocalendar > computing svg render`) console.debug(`metrics/compute/${login}/plugins > isocalendar > computing svg render`)
@@ -56,26 +56,29 @@
let i = 0, j = 0 let i = 0, j = 0
let svg = ` let svg = `
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" style="margin-top: -52px;" viewBox="0,0 480,${duration === "full-year" ? 270 : 170}"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg" style="margin-top: -52px;" viewBox="0,0 480,${duration === "full-year" ? 270 : 170}">
${[1, 2].map(k => ` ${
[1, 2].map(k => `
<filter id="brightness${k}"> <filter id="brightness${k}">
<feComponentTransfer> <feComponentTransfer>
${[..."RGB"].map(channel => `<feFunc${channel} type="linear" slope="${1-k*0.4}" />`).join("")} ${[..."RGB"].map(channel => `<feFunc${channel} type="linear" slope="${1 - k * 0.4}" />`).join("")}
</feComponentTransfer> </feComponentTransfer>
</filter>`) </filter>`
.join("")} )
.join("")
}
<g transform="scale(4) translate(12, 0)">` <g transform="scale(4) translate(12, 0)">`
//Iterate through weeks //Iterate through weeks
for (const week of calendar.weeks) { for (const week of calendar.weeks) {
svg += `<g transform="translate(${i*1.7}, ${i})">` svg += `<g transform="translate(${i * 1.7}, ${i})">`
j = 0 j = 0
//Iterate through days //Iterate through days
for (const day of week.contributionDays) { for (const day of week.contributionDays) {
const ratio = day.contributionCount/max const ratio = day.contributionCount / max
svg += ` svg += `
<g transform="translate(${j*-1.7}, ${j+(1-ratio)*size})"> <g transform="translate(${j * -1.7}, ${j + (1 - ratio) * size})">
<path fill="${day.color}" d="M1.7,2 0,1 1.7,0 3.4,1 z" /> <path fill="${day.color}" d="M1.7,2 0,1 1.7,0 3.4,1 z" />
<path fill="${day.color}" filter="url(#brightness1)" d="M0,1 1.7,2 1.7,${2+ratio*size} 0,${1+ratio*size} z" /> <path fill="${day.color}" filter="url(#brightness1)" d="M0,1 1.7,2 1.7,${2 + ratio * size} 0,${1 + ratio * size} z" />
<path fill="${day.color}" filter="url(#brightness2)" d="M1.7,2 3.4,1 3.4,${1+ratio*size} 1.7,${2+ratio*size} z" /> <path fill="${day.color}" filter="url(#brightness2)" d="M1.7,2 3.4,1 3.4,${1 + ratio * size} 1.7,${2 + ratio * size} z" />
</g>` </g>`
j++ j++
} }
@@ -93,4 +96,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,21 +1,21 @@
//Setup //Setup
export default async function({login, data, imports, q, account}, {enabled = false} = {}) { export default async function({login, data, imports, q, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.languages)) if ((!enabled) || (!q.languages))
return null return null
//Load inputs //Load inputs
let {ignored, skipped, colors, details, threshold, limit} = imports.metadata.plugins.languages.inputs({data, account, q}) let {ignored, skipped, colors, details, threshold, limit} = imports.metadata.plugins.languages.inputs({data, account, q})
threshold = (Number(threshold.replace(/%$/, ""))||0)/100 threshold = (Number(threshold.replace(/%$/, "")) || 0) / 100
skipped.push(...data.shared["repositories.skipped"]) skipped.push(...data.shared["repositories.skipped"])
if (!limit) if (!limit)
limit = Infinity limit = Infinity
//Custom colors //Custom colors
const colorsets = JSON.parse(`${await imports.fs.readFile(`${imports.__module(import.meta.url)}/colorsets.json`)}`) const colorsets = JSON.parse(`${await imports.fs.readFile(`${imports.__module(import.meta.url)}/colorsets.json`)}`)
if ((`${colors}` in colorsets)&&(limit <= 8)) if ((`${colors}` in colorsets) && (limit <= 8))
colors = colorsets[`${colors}`] colors = colorsets[`${colors}`]
colors = Object.fromEntries(decodeURIComponent(colors).split(",").map(x => x.trim().toLocaleLowerCase()).filter(x => x).map(x => x.split(":").map(x => x.trim()))) colors = Object.fromEntries(decodeURIComponent(colors).split(",").map(x => x.trim().toLocaleLowerCase()).filter(x => x).map(x => x.split(":").map(x => x.trim())))
console.debug(`metrics/compute/${login}/plugins > languages > custom colors ${JSON.stringify(colors)}`) console.debug(`metrics/compute/${login}/plugins > languages > custom colors ${JSON.stringify(colors)}`)
@@ -25,7 +25,7 @@
const languages = {details, colors:{}, total:0, stats:{}} const languages = {details, colors:{}, total:0, stats:{}}
for (const repository of data.user.repositories.nodes) { for (const repository of data.user.repositories.nodes) {
//Skip repository if asked //Skip repository if asked
if ((skipped.includes(repository.name.toLocaleLowerCase()))||(skipped.includes(`${repository.owner.login}/${repository.name}`.toLocaleLowerCase()))) { if ((skipped.includes(repository.name.toLocaleLowerCase())) || (skipped.includes(`${repository.owner.login}/${repository.name}`.toLocaleLowerCase()))) {
console.debug(`metrics/compute/${login}/plugins > languages > skipped repository ${repository.owner.login}/${repository.name}`) console.debug(`metrics/compute/${login}/plugins > languages > skipped repository ${repository.owner.login}/${repository.name}`)
continue continue
} }
@@ -45,12 +45,12 @@
//Compute languages stats //Compute languages stats
console.debug(`metrics/compute/${login}/plugins > languages > computing stats`) console.debug(`metrics/compute/${login}/plugins > languages > computing stats`)
languages.favorites = Object.entries(languages.stats).sort(([_an, a], [_bn, b]) => b - a).slice(0, limit).map(([name, value]) => ({name, value, size:value, color:languages.colors[name], x:0})).filter(({value}) => value/languages.total > threshold) languages.favorites = Object.entries(languages.stats).sort(([_an, a], [_bn, b]) => b - a).slice(0, limit).map(([name, value]) => ({name, value, size:value, color:languages.colors[name], x:0})).filter(({value}) => value / languages.total > threshold)
const visible = {total:Object.values(languages.favorites).map(({size}) => size).reduce((a, b) => a + b, 0)} const visible = {total:Object.values(languages.favorites).map(({size}) => size).reduce((a, b) => a + b, 0)}
for (let i = 0; i < languages.favorites.length; i++) { for (let i = 0; i < languages.favorites.length; i++) {
languages.favorites[i].value /= visible.total languages.favorites[i].value /= visible.total
languages.favorites[i].x = (languages.favorites[i-1]?.x ?? 0) + (languages.favorites[i-1]?.value ?? 0) languages.favorites[i].x = (languages.favorites[i - 1]?.x ?? 0) + (languages.favorites[i - 1]?.value ?? 0)
if ((colors[i])&&(!colors[languages.favorites[i].name.toLocaleLowerCase()])) if ((colors[i]) && (!colors[languages.favorites[i].name.toLocaleLowerCase()]))
languages.favorites[i].color = colors[i] languages.favorites[i].color = colors[i]
} }
@@ -61,4 +61,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, graphql, queries, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, graphql, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.licenses)) if ((!enabled) || (!q.licenses))
return null return null
//Load inputs //Load inputs
@@ -43,12 +43,17 @@
//Create configuration file if needed //Create configuration file if needed
if (!(await imports.fs.stat(imports.paths.join(path, ".licensed.yml")).then(() => 1).catch(() => 0))) { if (!(await imports.fs.stat(imports.paths.join(path, ".licensed.yml")).then(() => 1).catch(() => 0))) {
console.debug(`metrics/compute/${login}/plugins > licenses > building .licensed.yml configuration file`) console.debug(`metrics/compute/${login}/plugins > licenses > building .licensed.yml configuration file`)
await imports.fs.writeFile(imports.paths.join(path, ".licensed.yml"), [ await imports.fs.writeFile(
imports.paths.join(path, ".licensed.yml"),
[
"cache_path: .licensed", "cache_path: .licensed",
].join("\n")) ].join("\n"),
)
} }
else else
console.debug(`metrics/compute/${login}/plugins > licenses > a .licensed.yml configuration file already exists`) console.debug(`metrics/compute/${login}/plugins > licenses > a .licensed.yml configuration file already exists`)
//Spawn licensed process //Spawn licensed process
console.debug(`metrics/compute/${login}/plugins > licenses > running licensed`) console.debug(`metrics/compute/${login}/plugins > licenses > running licensed`)
JSON.parse(await imports.run("licensed list --format=json --licenses", {cwd:path})).apps JSON.parse(await imports.run("licensed list --format=json --licenses", {cwd:path})).apps
@@ -57,7 +62,9 @@
result.dependencies.push(dependency) result.dependencies.push(dependency)
result.known += (license in licenses) result.known += (license in licenses)
result.unknown += !(license in licenses) result.unknown += !(license in licenses)
}))) })
)
)
//Cleaning //Cleaning
console.debug(`metrics/compute/${login}/plugins > licensed > cleaning temp dir ${path}`) console.debug(`metrics/compute/${login}/plugins > licensed > cleaning temp dir ${path}`)
await imports.fs.rmdir(path, {recursive:true}) await imports.fs.rmdir(path, {recursive:true})
@@ -65,6 +72,7 @@
else else
console.debug(`metrics/compute/${login}/plugins > licenses > licensed not available`) console.debug(`metrics/compute/${login}/plugins > licenses > licensed not available`)
//List licenses properties //List licenses properties
console.debug(`metrics/compute/${login}/plugins > licenses > compute licenses properties`) console.debug(`metrics/compute/${login}/plugins > licenses > compute licenses properties`)
const base = {permissions:new Set(), limitations:new Set(), conditions:new Set()} const base = {permissions:new Set(), limitations:new Set(), conditions:new Set()}
@@ -89,9 +97,12 @@
console.debug(`metrics/compute/${login}/plugins > licenses > computing ratio`) console.debug(`metrics/compute/${login}/plugins > licenses > computing ratio`)
const total = Object.values(used).reduce((a, b) => a + b, 0) const total = Object.values(used).reduce((a, b) => a + b, 0)
//Format used licenses and compute positions //Format used licenses and compute positions
const list = Object.entries(used).map(([key, count]) => ({name:licenses[key]?.spdxId ?? `${key.charAt(0).toLocaleUpperCase()}${key.substring(1)}`, key, count, value:count/total, x:0, color:licenses[key]?.color ?? "#6e7681", order:licenses[key]?.order ?? -1})).sort((a, b) => a.order === b.order ? b.count - a.count : b.order - a.order) const list = Object.entries(used).map(([key, count]) => ({name:licenses[key]?.spdxId ?? `${key.charAt(0).toLocaleUpperCase()}${key.substring(1)}`, key, count, value:count / total, x:0, color:licenses[key]?.color ?? "#6e7681", order:licenses[key]?.order ?? -1})).sort((
a,
b,
) => a.order === b.order ? b.count - a.count : b.order - a.order)
for (let i = 0; i < list.length; i++) for (let i = 0; i < list.length; i++)
list[i].x = (list[i-1]?.x ?? 0) + (list[i-1]?.value ?? 0) list[i].x = (list[i - 1]?.x ?? 0) + (list[i - 1]?.value ?? 0)
//Save ratios //Save ratios
result.list = list result.list = list
@@ -102,48 +113,48 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }
/**Licenses colorizer (based on categorie) */ /**Licenses colorizer (based on categorie) */
function colors(licenses) { function colors(licenses) {
for (const [license, value] of Object.entries(licenses)) { for (const [license, value] of Object.entries(licenses)) {
const [permissions, conditions] = [value.permissions, value.conditions].map(properties => properties.map(({key}) => key)) const [permissions, conditions] = [value.permissions, value.conditions].map(properties => properties.map(({key}) => key))
switch (true) { switch (true) {
//Other licenses //Other licenses
case (license === "other"):{ case (license === "other"): {
value.color = "#8b949e" value.color = "#8b949e"
value.order = 0 value.order = 0
break break
} }
//Strongly protective licenses and network protective //Strongly protective licenses and network protective
case ((conditions.includes("disclose-source"))&&(conditions.includes("same-license"))&&(conditions.includes("network-use-disclose"))):{ case ((conditions.includes("disclose-source")) && (conditions.includes("same-license")) && (conditions.includes("network-use-disclose"))): {
value.color = "#388bfd" value.color = "#388bfd"
value.order = 1 value.order = 1
break break
} }
//Strongly protective licenses //Strongly protective licenses
case ((conditions.includes("disclose-source"))&&(conditions.includes("same-license"))):{ case ((conditions.includes("disclose-source")) && (conditions.includes("same-license"))): {
value.color = "#79c0ff" value.color = "#79c0ff"
value.order = 2 value.order = 2
break break
} }
//Weakly protective licenses //Weakly protective licenses
case ((conditions.includes("disclose-source"))&&(conditions.includes("same-license--library"))):{ case ((conditions.includes("disclose-source")) && (conditions.includes("same-license--library"))): {
value.color = "#7ee787" value.color = "#7ee787"
value.order = 3 value.order = 3
break break
} }
//Permissive license //Permissive license
case ((permissions.includes("private-use"))&&(permissions.includes("commercial-use"))&&(permissions.includes("modifications"))&&(permissions.includes("distribution"))):{ case ((permissions.includes("private-use")) && (permissions.includes("commercial-use")) && (permissions.includes("modifications")) && (permissions.includes("distribution"))): {
value.color = "#56d364" value.color = "#56d364"
value.order = 4 value.order = 4
break break
} }
//Unknown //Unknown
default:{ default: {
value.color = "#6e7681" value.color = "#6e7681"
value.order = -1 value.order = -1
} }
} }
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, imports, rest, q, account}, {enabled = false} = {}) { export default async function({login, data, imports, rest, q, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.lines)) if ((!enabled) || (!q.lines))
return null return null
//Load inputs //Load inputs
@@ -23,7 +23,7 @@
//Get contributors stats from repositories //Get contributors stats from repositories
console.debug(`metrics/compute/${login}/plugins > lines > querying api`) console.debug(`metrics/compute/${login}/plugins > lines > querying api`)
const lines = {added:0, deleted:0} const lines = {added:0, deleted:0}
const response = await Promise.all(repositories.map(({repo, owner}) => (skipped.includes(repo.toLocaleLowerCase()))||(skipped.includes(`${owner}/${repo}`)) ? {} : rest.repos.getContributorsStats({owner, repo}))) const response = await Promise.all(repositories.map(({repo, owner}) => (skipped.includes(repo.toLocaleLowerCase())) || (skipped.includes(`${owner}/${repo}`)) ? {} : rest.repos.getContributorsStats({owner, repo})))
//Compute changed lines //Compute changed lines
console.debug(`metrics/compute/${login}/plugins > lines > computing total diff`) console.debug(`metrics/compute/${login}/plugins > lines > computing total diff`)
response.map(({data:repository}) => { response.map(({data:repository}) => {
@@ -43,5 +43,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,5 +1,5 @@
//Supported providers //Supported providers
const providers = { const providers = {
apple:{ apple:{
name:"Apple Music", name:"Apple Music",
embed:/^https:..embed.music.apple.com.\w+.playlist/, embed:/^https:..embed.music.apple.com.\w+.playlist/,
@@ -12,19 +12,19 @@
name:"Last.fm", name:"Last.fm",
embed:/^\b$/, embed:/^\b$/,
}, },
} }
//Supported modes //Supported modes
const modes = { const modes = {
playlist:"Suggested tracks", playlist:"Suggested tracks",
recent:"Recently played", recent:"Recently played",
} }
//Setup //Setup
export default async function({login, imports, data, q, account}, {enabled = false, token = ""} = {}) { export default async function({login, imports, data, q, account}, {enabled = false, token = ""} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.music)) if ((!enabled) || (!q.music))
return null return null
//Initialization //Initialization
@@ -41,9 +41,9 @@
//Load inputs //Load inputs
let {provider, mode, playlist, limit, user, "played.at":played_at} = imports.metadata.plugins.music.inputs({data, account, q}) let {provider, mode, playlist, limit, user, "played.at":played_at} = imports.metadata.plugins.music.inputs({data, account, q})
//Auto-guess parameters //Auto-guess parameters
if ((playlist)&&(!mode)) if ((playlist) && (!mode))
mode = "playlist" mode = "playlist"
if ((playlist)&&(!provider)) { if ((playlist) && (!provider)) {
for (const [name, {embed}] of Object.entries(providers)) { for (const [name, {embed}] of Object.entries(providers)) {
if (embed.test(playlist)) if (embed.test(playlist))
provider = name provider = name
@@ -71,7 +71,7 @@
console.debug(`metrics/compute/${login}/plugins > music > processing mode ${mode} with provider ${provider}`) console.debug(`metrics/compute/${login}/plugins > music > processing mode ${mode} with provider ${provider}`)
switch (mode) { switch (mode) {
//Playlist mode //Playlist mode
case "playlist":{ case "playlist": {
//Start puppeteer and navigate to playlist //Start puppeteer and navigate to playlist
console.debug(`metrics/compute/${login}/plugins > music > starting browser`) console.debug(`metrics/compute/${login}/plugins > music > starting browser`)
const browser = await imports.puppeteer.launch() const browser = await imports.puppeteer.launch()
@@ -83,26 +83,32 @@
//Handle provider //Handle provider
switch (provider) { switch (provider) {
//Apple music //Apple music
case "apple":{ case "apple": {
//Parse tracklist //Parse tracklist
await frame.waitForSelector(".tracklist.playlist") await frame.waitForSelector(".tracklist.playlist")
tracks = [...await frame.evaluate(() => [...document.querySelectorAll(".tracklist li")].map(li => ({ tracks = [
...await frame.evaluate(() => [...document.querySelectorAll(".tracklist li")].map(li => ({
name:li.querySelector(".tracklist__track__name").innerText, name:li.querySelector(".tracklist__track__name").innerText,
artist:li.querySelector(".tracklist__track__sub").innerText, artist:li.querySelector(".tracklist__track__sub").innerText,
artwork:li.querySelector(".tracklist__track__artwork img").src, artwork:li.querySelector(".tracklist__track__artwork img").src,
})))] }))
),
]
break break
} }
//Spotify //Spotify
case "spotify":{ case "spotify": {
//Parse tracklist //Parse tracklist
await frame.waitForSelector("table") await frame.waitForSelector("table")
tracks = [...await frame.evaluate(() => [...document.querySelectorAll("table tr")].map(tr => ({ tracks = [
...await frame.evaluate(() => [...document.querySelectorAll("table tr")].map(tr => ({
name:tr.querySelector("td:nth-child(2) div div:nth-child(1)").innerText, name:tr.querySelector("td:nth-child(2) div div:nth-child(1)").innerText,
artist:tr.querySelector("td:nth-child(2) div div:nth-child(2)").innerText, artist:tr.querySelector("td:nth-child(2) div div:nth-child(2)").innerText,
//Spotify doesn't provide artworks so we fallback on playlist artwork instead //Spotify doesn't provide artworks so we fallback on playlist artwork instead
artwork:window.getComputedStyle(document.querySelector("button[title=Play]").parentNode, null).backgroundImage.match(/^url\("(?<url>https:...+)"\)$/)?.groups?.url ?? null, artwork:window.getComputedStyle(document.querySelector("button[title=Play]").parentNode, null).backgroundImage.match(/^url\("(?<url>https:...+)"\)$/)?.groups?.url ?? null,
})))] }))
),
]
break break
} }
//Unsupported //Unsupported
@@ -123,34 +129,38 @@
break break
} }
//Recently played //Recently played
case "recent":{ case "recent": {
//Handle provider //Handle provider
switch (provider) { switch (provider) {
//Spotify //Spotify
case "spotify":{ case "spotify": {
//Prepare credentials //Prepare credentials
const [client_id, client_secret, refresh_token] = token.split(",").map(part => part.trim()) const [client_id, client_secret, refresh_token] = token.split(",").map(part => part.trim())
if ((!client_id)||(!client_secret)||(!refresh_token)) if ((!client_id) || (!client_secret) || (!refresh_token))
throw {error:{message:"Spotify token must contain client id/secret and refresh token"}} throw {error:{message:"Spotify token must contain client id/secret and refresh token"}}
//API call and parse tracklist //API call and parse tracklist
try { try {
//Request access token //Request access token
console.debug(`metrics/compute/${login}/plugins > music > requesting access token with spotify refresh token`) console.debug(`metrics/compute/${login}/plugins > music > requesting access token with spotify refresh token`)
const {data:{access_token:access}} = await imports.axios.post("https://accounts.spotify.com/api/token", `${new imports.url.URLSearchParams({grant_type:"refresh_token", refresh_token, client_id, client_secret})}`, {headers:{ const {data:{access_token:access}} = await imports.axios.post("https://accounts.spotify.com/api/token", `${new imports.url.URLSearchParams({grant_type:"refresh_token", refresh_token, client_id, client_secret})}`, {
headers:{
"Content-Type":"application/x-www-form-urlencoded", "Content-Type":"application/x-www-form-urlencoded",
}}) },
})
console.debug(`metrics/compute/${login}/plugins > music > got access token`) console.debug(`metrics/compute/${login}/plugins > music > got access token`)
//Retrieve tracks //Retrieve tracks
console.debug(`metrics/compute/${login}/plugins > music > querying spotify api`) console.debug(`metrics/compute/${login}/plugins > music > querying spotify api`)
tracks = [] tracks = []
for (let hours = .5; hours <= 24; hours++) { for (let hours = .5; hours <= 24; hours++) {
//Load track half-hour by half-hour //Load track half-hour by half-hour
const timestamp = Date.now()-hours*60*60*1000 const timestamp = Date.now() - hours * 60 * 60 * 1000
const loaded = (await imports.axios.get(`https://api.spotify.com/v1/me/player/recently-played?after=${timestamp}`, {headers:{ const loaded = (await imports.axios.get(`https://api.spotify.com/v1/me/player/recently-played?after=${timestamp}`, {
headers:{
"Content-Type":"application/json", "Content-Type":"application/json",
Accept:"application/json", Accept:"application/json",
Authorization:`Bearer ${access}`, Authorization:`Bearer ${access}`,
}})).data.items.map(({track, played_at}) => ({ },
})).data.items.map(({track, played_at}) => ({
name:track.name, name:track.name,
artist:track.artists[0].name, artist:track.artists[0].name,
artwork:track.album.images[0].url, artwork:track.album.images[0].url,
@@ -180,14 +190,16 @@
break break
} }
//Last.fm //Last.fm
case "lastfm":{ case "lastfm": {
//API call and parse tracklist //API call and parse tracklist
try { try {
console.debug(`metrics/compute/${login}/plugins > music > querying lastfm api`) console.debug(`metrics/compute/${login}/plugins > music > querying lastfm api`)
tracks = (await imports.axios.get(`https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=${user}&api_key=${token}&limit=${limit}&format=json`, {headers:{ tracks = (await imports.axios.get(`https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=${user}&api_key=${token}&limit=${limit}&format=json`, {
headers:{
"User-Agent":"lowlighter/metrics", "User-Agent":"lowlighter/metrics",
Accept:"application/json", Accept:"application/json",
}})).data.recenttracks.track.map(track => ({ },
})).data.recenttracks.track.map(track => ({
name:track.name, name:track.name,
artist:track.artist["#text"], artist:track.artist["#text"],
artwork:track.image.reverse()[0]["#text"], artwork:track.image.reverse()[0]["#text"],
@@ -243,4 +255,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,22 +1,27 @@
//Setup //Setup
export default async function({q, imports, data, account}, {enabled = false} = {}) { export default async function({q, imports, data, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.nightscout)) if ((!enabled) || (!q.nightscout))
return null return null
//Load inputs //Load inputs
let {url, datapoints, lowalert, highalert, urgentlowalert, urgenthighalert} = imports.metadata.plugins.nightscout.inputs({data, account, q}) let {url, datapoints, lowalert, highalert, urgentlowalert, urgenthighalert} = imports.metadata.plugins.nightscout.inputs({data, account, q})
if (!url || url === "https://example.herokuapp.com") throw {error:{message:"Nightscout site URL isn't set!"}} if (!url || url === "https://example.herokuapp.com")
if (url.substring(url.length - 1) !== "/") url += "/" throw {error:{message:"Nightscout site URL isn't set!"}}
if (url.substring(0, 7) === "http://") url = `https://${url.substring(7)}` if (url.substring(url.length - 1) !== "/")
if (url.substring(0, 8) !== "https://") url = `https://${url}` url += "/"
if (datapoints <= 0) datapoints = 1 if (url.substring(0, 7) === "http://")
url = `https://${url.substring(7)}`
if (url.substring(0, 8) !== "https://")
url = `https://${url}`
if (datapoints <= 0)
datapoints = 1
//Get nightscout data from axios //Get nightscout data from axios
const resp = await imports.axios.get(`${url}api/v1/entries.json?count=${datapoints}`) const resp = await imports.axios.get(`${url}api/v1/entries.json?count=${datapoints}`)
for (let i = 0; i < resp.data.length; i++){ for (let i = 0; i < resp.data.length; i++) {
const {sgv} = resp.data[i] const {sgv} = resp.data[i]
//Add human readable timestamps and arrows //Add human readable timestamps and arrows
const date = new Date(resp.data[i].dateString) const date = new Date(resp.data[i].dateString)
@@ -28,11 +33,11 @@
*/ */
let color = "#40c463" let color = "#40c463"
let alertName = "Normal" let alertName = "Normal"
if (sgv >= urgenthighalert || sgv <= urgentlowalert){ if (sgv >= urgenthighalert || sgv <= urgentlowalert) {
color = "#216e39" color = "#216e39"
alertName = sgv >= urgenthighalert ? "Urgent High" : "Urgent Low" alertName = sgv >= urgenthighalert ? "Urgent High" : "Urgent Low"
} }
else if (sgv >= highalert || sgv <= lowalert){ else if (sgv >= highalert || sgv <= lowalert) {
color = "#30a14e" color = "#30a14e"
alertName = sgv >= highalert ? "High" : "Low" alertName = sgv >= highalert ? "High" : "Low"
} }
@@ -47,7 +52,7 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }
function addZero(i) { function addZero(i) {
if (i < 10) if (i < 10)

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, graphql, data, account, queries}, {enabled = false} = {}) { export default async function({login, q, imports, graphql, data, account, queries}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.notable)) if ((!enabled) || (!q.notable))
return null return null
//Load inputs //Load inputs
@@ -19,17 +19,17 @@
do { do {
console.debug(`metrics/compute/${login}/plugins > notable > retrieving contributed repositories after ${cursor}`) 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})) const {user:{repositoriesContributedTo:{edges}}} = await graphql(queries.notable.contributions({login, after:cursor ? `after: "${cursor}"` : "", repositories:100}))
cursor = edges?.[edges?.length-1]?.cursor cursor = edges?.[edges?.length - 1]?.cursor
edges edges
.filter(({node}) => node.isInOrganization) .filter(({node}) => node.isInOrganization)
.filter(({node}) => imports.ghfilter(filter, {name:node.nameWithOwner, stars:node.stargazers.totalCount, watchers:node.watchers.totalCount, forks:node.forks.totalCount})) .filter(({node}) => imports.ghfilter(filter, {name:node.nameWithOwner, stars:node.stargazers.totalCount, watchers:node.watchers.totalCount, forks:node.forks.totalCount}))
.map(({node}) => organizations.set(repositories ? node.nameWithOwner : node.owner.login, node.owner.avatarUrl)) .map(({node}) => organizations.set(repositories ? node.nameWithOwner : node.owner.login, node.owner.avatarUrl))
pushed = edges.length pushed = edges.length
} while ((pushed)&&(cursor)) } while ((pushed) && (cursor))
} }
//Set contributions //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)) 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`) console.debug(`metrics/compute/${login}/plugins > notable > found contributions to ${organizations.length} organizations`)
//Results //Results
@@ -39,4 +39,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, imports, data, q, account}, {enabled = false, token = null} = {}) { export default async function({login, imports, data, q, account}, {enabled = false, token = null} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.pagespeed)||((!data.user.websiteUrl)&&(!q["pagespeed.url"]))) if ((!enabled) || (!q.pagespeed) || ((!data.user.websiteUrl) && (!q["pagespeed.url"])))
return null return null
//Load inputs //Load inputs
@@ -24,7 +24,7 @@
scores.set(category, {score, title}) scores.set(category, {score, title})
console.debug(`metrics/compute/${login}/plugins > pagespeed > performed audit ${category} (status code ${request.status})`) console.debug(`metrics/compute/${login}/plugins > pagespeed > performed audit ${category} (status code ${request.status})`)
//Store screenshot //Store screenshot
if ((screenshot)&&(category === "performance")) { if ((screenshot) && (category === "performance")) {
result.screenshot = request.data.lighthouseResult.audits["final-screenshot"].details.data result.screenshot = request.data.lighthouseResult.audits["final-screenshot"].details.data
console.debug(`metrics/compute/${login}/plugins > pagespeed > performed audit ${category} (status code ${request.status})`) console.debug(`metrics/compute/${login}/plugins > pagespeed > performed audit ${category} (status code ${request.status})`)
} }
@@ -53,4 +53,4 @@
} }
throw {error:{message, instance:error}} throw {error:{message, instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, graphql, rest, q, queries, imports, account}, {enabled = false} = {}) { export default async function({login, data, graphql, rest, q, queries, imports, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.people)) if ((!enabled) || (!q.people))
return null return null
//Context //Context
@@ -24,7 +24,7 @@
let {limit, types, size, identicons, thanks, shuffle, "sponsors.custom":_sponsors} = imports.metadata.plugins.people.inputs({data, account, q}, {types:context.default}) let {limit, types, size, identicons, thanks, shuffle, "sponsors.custom":_sponsors} = imports.metadata.plugins.people.inputs({data, account, q}, {types:context.default})
//Filter types //Filter types
types = [...new Set([...types].map(type => (context.alias[type] ?? type)).filter(type => context.types.includes(type)) ?? [])] types = [...new Set([...types].map(type => (context.alias[type] ?? type)).filter(type => context.types.includes(type)) ?? [])]
if ((types.includes("sponsorshipsAsMaintainer"))&&(_sponsors?.length)) { if ((types.includes("sponsorshipsAsMaintainer")) && (_sponsors?.length)) {
types.unshift("sponsorshipsCustom") types.unshift("sponsorshipsCustom")
data.user.sponsorshipsAsMaintainer.totalCount += _sponsors.length data.user.sponsorshipsAsMaintainer.totalCount += _sponsors.length
} }
@@ -41,7 +41,7 @@
const {data:nodes} = await rest.repos.listContributors({owner, repo}) const {data:nodes} = await rest.repos.listContributors({owner, repo})
result[type].push(...nodes.map(({login, avatar_url}) => ({login, avatarUrl:avatar_url}))) result[type].push(...nodes.map(({login, avatar_url}) => ({login, avatarUrl:avatar_url})))
} }
else if ((type === "thanks")||(type === "sponsorshipsCustom")) { else if ((type === "thanks") || (type === "sponsorshipsCustom")) {
const users = {thanks, sponsorshipsCustom:_sponsors}[type] ?? [] const users = {thanks, sponsorshipsCustom:_sponsors}[type] ?? []
const nodes = await Promise.all(users.map(async username => (await rest.users.getByUsername({username})).data)) const nodes = await Promise.all(users.map(async username => (await rest.users.getByUsername({username})).data))
result[{sponsorshipsCustom:"sponsorshipsAsMaintainer"}[type] ?? type].push(...nodes.map(({login, avatar_url}) => ({login, avatarUrl:avatar_url}))) result[{sponsorshipsCustom:"sponsorshipsAsMaintainer"}[type] ?? type].push(...nodes.map(({login, avatar_url}) => ({login, avatarUrl:avatar_url})))
@@ -53,14 +53,16 @@
do { do {
console.debug(`metrics/compute/${login}/plugins > people > retrieving ${type} after ${cursor}`) console.debug(`metrics/compute/${login}/plugins > people > retrieving ${type} after ${cursor}`)
const {[type]:{edges}} = ( const {[type]:{edges}} = (
type in context.sponsorships ? (await graphql(queries.people.sponsors({login:context.owner ?? login, type, size, after:cursor ? `after: "${cursor}"` : "", target:context.sponsorships[type], account})))[account] : type in context.sponsorships
context.mode === "repository" ? (await graphql(queries.people.repository({login:context.owner, repository:context.repo, type, size, after:cursor ? `after: "${cursor}"` : "", account})))[account].repository : ? (await graphql(queries.people.sponsors({login:context.owner ?? login, type, size, after:cursor ? `after: "${cursor}"` : "", target:context.sponsorships[type], account})))[account]
(await graphql(queries.people({login, type, size, after:cursor ? `after: "${cursor}"` : "", account})))[account] : context.mode === "repository"
? (await graphql(queries.people.repository({login:context.owner, repository:context.repo, type, size, after:cursor ? `after: "${cursor}"` : "", account})))[account].repository
: (await graphql(queries.people({login, type, size, after:cursor ? `after: "${cursor}"` : "", account})))[account]
) )
cursor = edges?.[edges?.length-1]?.cursor cursor = edges?.[edges?.length - 1]?.cursor
result[type].push(...edges.map(({node}) => node[context.sponsorships[type]] ?? node)) result[type].push(...edges.map(({node}) => node[context.sponsorships[type]] ?? node))
pushed = edges.length pushed = edges.length
} while ((pushed)&&(cursor)&&((limit === 0)||(result[type].length <= (shuffle ? 10*limit : limit)))) } while ((pushed) && (cursor) && ((limit === 0) || (result[type].length <= (shuffle ? 10 * limit : limit))))
} }
//Shuffle //Shuffle
if (shuffle) { if (shuffle) {
@@ -93,4 +95,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, imports, q, queries, account}, {enabled = false} = {}) { export default async function({login, data, imports, q, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.posts)) if ((!enabled) || (!q.posts))
return null return null
//Load inputs //Load inputs
@@ -15,15 +15,17 @@
let link = null let link = null
switch (source) { switch (source) {
//Dev.to //Dev.to
case "dev.to":{ case "dev.to": {
console.debug(`metrics/compute/${login}/plugins > posts > querying api`) console.debug(`metrics/compute/${login}/plugins > posts > querying api`)
posts = (await imports.axios.get(`https://dev.to/api/articles?username=${user}&state=fresh`)).data.map(({title, description, published_at:date, cover_image:image, url:link}) => ({title, description, date, image, link})) posts = (await imports.axios.get(`https://dev.to/api/articles?username=${user}&state=fresh`)).data.map(({title, description, published_at:date, cover_image:image, url:link}) => ({title, description, date, image, link}))
link = `https://dev.to/${user}` link = `https://dev.to/${user}`
break break
} }
//Hashnode //Hashnode
case "hashnode":{ case "hashnode": {
posts = (await imports.axios.post("https://api.hashnode.com", {query:queries.posts.hashnode({user})}, {headers:{"Content-type":"application/json"}})).data.data.user.publication.posts.map(({title, brief:description, dateAdded:date, coverImage:image, slug}) => ({title, description, date, image, link:`https://hashnode.com/post/${slug}`})) posts = (await imports.axios.post("https://api.hashnode.com", {query:queries.posts.hashnode({user})}, {headers:{"Content-type":"application/json"}})).data.data.user.publication.posts.map((
{title, brief:description, dateAdded:date, coverImage:image, slug},
) => ({title, description, date, image, link:`https://hashnode.com/post/${slug}`}))
link = `https://hashnode.com/@${user}` link = `https://hashnode.com/@${user}`
break break
} }
@@ -42,7 +44,7 @@
//Cover images //Cover images
if (covers) { if (covers) {
console.debug(`metrics/compute/${login}/plugins > posts > formatting cover images`) console.debug(`metrics/compute/${login}/plugins > posts > formatting cover images`)
posts = await Promise.all(posts.map(async({image, ...post}) => ({image:await imports.imgb64(image, {width:144, height:-1}), ...post}))) posts = await Promise.all(posts.map(async ({image, ...post}) => ({image:await imports.imgb64(image, {width:144, height:-1}), ...post})))
} }
//Results //Results
return {source, link, descriptions, covers, list:posts} return {source, link, descriptions, covers, list:posts}
@@ -57,4 +59,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, imports, graphql, q, queries, account}, {enabled = false} = {}) { export default async function({login, data, imports, graphql, q, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.projects)) if ((!enabled) || (!q.projects))
return null return null
//Load inputs //Load inputs
@@ -45,7 +45,7 @@
const list = [] const list = []
for (const project of projects.nodes) { for (const project of projects.nodes) {
//Format date //Format date
const time = (Date.now()-new Date(project.updatedAt).getTime())/(24*60*60*1000) const time = (Date.now() - new Date(project.updatedAt).getTime()) / (24 * 60 * 60 * 1000)
let updated = new Date(project.updatedAt).toDateString().substring(4) let updated = new Date(project.updatedAt).toDateString().substring(4)
if (time < 1) if (time < 1)
updated = "less than 1 day ago" updated = "less than 1 day ago"
@@ -54,7 +54,7 @@
//Format progress //Format progress
const {enabled, todoCount:todo, inProgressCount:doing, doneCount:done} = project.progress const {enabled, todoCount:todo, inProgressCount:doing, doneCount:done} = project.progress
//Append //Append
list.push({name:project.name, updated, description:project.body, progress:{enabled, todo, doing, done, total:todo+doing+done}}) list.push({name:project.name, updated, description:project.body, progress:{enabled, todo, doing, done, total:todo + doing + done}})
} }
//Limit //Limit
@@ -71,4 +71,4 @@
message = "Insufficient token rights" message = "Insufficient token rights"
throw {error:{message, instance:error}} throw {error:{message, instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, graphql, queries, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, graphql, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.reactions)) if ((!enabled) || (!q.reactions))
return null return null
//Load inputs //Load inputs
@@ -17,18 +17,18 @@
//Load issue comments //Load issue comments
console.debug(`metrics/compute/${login}/plugins > reactions > retrieving ${type} after ${cursor}`) console.debug(`metrics/compute/${login}/plugins > reactions > retrieving ${type} after ${cursor}`)
const {user:{[type]:{edges}}} = await graphql(queries.reactions({login, type, after:cursor ? `after: "${cursor}"` : ""})) const {user:{[type]:{edges}}} = await graphql(queries.reactions({login, type, after:cursor ? `after: "${cursor}"` : ""}))
cursor = edges?.[edges?.length-1]?.cursor cursor = edges?.[edges?.length - 1]?.cursor
//Save issue comments //Save issue comments
const filtered = edges const filtered = edges
.flatMap(({node:{createdAt:created, reactions:{nodes:reactions}}}) => ({created:new Date(created), reactions:reactions.filter(({user = {}}) => !ignored.includes(user.login)).map(({content}) => content)})) .flatMap(({node:{createdAt:created, reactions:{nodes:reactions}}}) => ({created:new Date(created), reactions:reactions.filter(({user = {}}) => !ignored.includes(user.login)).map(({content}) => content)}))
.filter(comment => Number.isFinite(days) ? comment.created < new Date(Date.now()-days*24*60*60*1000) : true) .filter(comment => Number.isFinite(days) ? comment.created < new Date(Date.now() - days * 24 * 60 * 60 * 1000) : true)
pushed = filtered.length pushed = filtered.length
comments.push(...filtered) comments.push(...filtered)
console.debug(`metrics/compute/${login}/plugins > reactions > currently at ${comments.length} comments`) console.debug(`metrics/compute/${login}/plugins > reactions > currently at ${comments.length} comments`)
//Early break //Early break
if ((comments.length >= limit)||(filtered.length < edges.length)) if ((comments.length >= limit) || (filtered.length < edges.length))
break break
} while ((cursor)&&(pushed)&&(comments.length < limit)) } while ((cursor) && (pushed) && (comments.length < limit))
} }
//Applying limit //Applying limit
@@ -44,7 +44,7 @@
list[reaction] = (list[reaction] ?? 0) + 1 list[reaction] = (list[reaction] ?? 0) + 1
const max = Math.max(...Object.values(list)) const max = Math.max(...Object.values(list))
for (const [key, value] of Object.entries(list)) for (const [key, value] of Object.entries(list))
list[key] = {value, percentage:value/reactions.length, score:value/(display === "relative" ? max : reactions.length)} list[key] = {value, percentage:value / reactions.length, score:value / (display === "relative" ? max : reactions.length)}
//Results //Results
return {list, comments:comments.length, details, days, twemoji:q["config.twemoji"]} return {list, comments:comments.length, details, days, twemoji:q["config.twemoji"]}
@@ -53,4 +53,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,10 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.rss)) if ((!enabled) || (!q.rss))
return null return null
//Load inputs //Load inputs
@@ -31,4 +30,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.screenshot)) if ((!enabled) || (!q.screenshot))
return null return null
//Load inputs //Load inputs
@@ -40,4 +40,4 @@
throw error throw error
throw {title:"Screenshot error", error:{message:"An error occured", instance:error}} throw {title:"Screenshot error", error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.skyline)) if ((!enabled) || (!q.skyline))
return null return null
//Load inputs //Load inputs
@@ -24,15 +24,15 @@
//Load page //Load page
console.debug(`metrics/compute/${login}/plugins > skyline > loading skyline.github.com/${login}/${year}`) console.debug(`metrics/compute/${login}/plugins > skyline > loading skyline.github.com/${login}/${year}`)
await page.goto(`https://skyline.github.com/${login}/${year}`, {timeout:90*1000}) await page.goto(`https://skyline.github.com/${login}/${year}`, {timeout:90 * 1000})
console.debug(`metrics/compute/${login}/plugins > skyline > waiting for initial render`) console.debug(`metrics/compute/${login}/plugins > skyline > waiting for initial render`)
const frame = page.mainFrame() const frame = page.mainFrame()
await page.waitForFunction('[...document.querySelectorAll("span")].map(span => span.innerText).includes("Download STL file")', {timeout:90*1000}) await page.waitForFunction('[...document.querySelectorAll("span")].map(span => span.innerText).includes("Download STL file")', {timeout:90 * 1000})
await frame.evaluate(() => [...document.querySelectorAll("button, footer, a")].map(element => element.remove())) await frame.evaluate(() => [...document.querySelectorAll("button, footer, a")].map(element => element.remove()))
//Generate gif //Generate gif
console.debug(`metrics/compute/${login}/plugins > skyline > generating frames`) console.debug(`metrics/compute/${login}/plugins > skyline > generating frames`)
const animation = compatibility ? await imports.record({page, width, height, frames, scale:quality}) : await imports.gif({page, width, height, frames, quality:Math.max(1, quality*20)}) const animation = compatibility ? await imports.record({page, width, height, frames, scale:quality}) : await imports.gif({page, width, height, frames, quality:Math.max(1, quality * 20)})
//Close puppeteer //Close puppeteer
await browser.close() await browser.close()
@@ -44,6 +44,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.stackoverflow)) if ((!enabled) || (!q.stackoverflow))
return null return null
//Load inputs //Load inputs
@@ -24,7 +24,7 @@
const {data:{items:[{reputation, badge_counts:{bronze, silver, gold}, answer_count:answers, question_count:questions, view_count:views}]}} = await imports.axios.get(`${api.user}?site=stackoverflow&filter=${filters.user}`) const {data:{items:[{reputation, badge_counts:{bronze, silver, gold}, answer_count:answers, question_count:questions, view_count:views}]}} = await imports.axios.get(`${api.user}?site=stackoverflow&filter=${filters.user}`)
const {data:{total:comments}} = await imports.axios.get(`${api.user}/comments?site=stackoverflow&filter=total`) const {data:{total:comments}} = await imports.axios.get(`${api.user}/comments?site=stackoverflow&filter=total`)
//Save result //Save result
result.user = {reputation, badges:bronze+silver+gold, questions, answers, comments, views} result.user = {reputation, badges:bronze + silver + gold, questions, answers, comments, views}
} }
//Answers //Answers
@@ -68,10 +68,10 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }
//Formatters //Formatters
const format = { const format = {
/**Cached */ /**Cached */
cached:new Map(), cached:new Map(),
/**Format stackoverflow code snippets */ /**Format stackoverflow code snippets */
@@ -80,7 +80,19 @@
}, },
/**Format answers */ /**Format answers */
async answer({body_markdown:body, score, up_vote_count:upvotes, down_vote_count:downvotes, is_accepted:accepted, comment_count:comments = 0, creation_date, owner:{display_name:author}, link, answer_id:id, question_id}, {imports, data, codelines}) { async answer({body_markdown:body, score, up_vote_count:upvotes, down_vote_count:downvotes, is_accepted:accepted, comment_count:comments = 0, creation_date, owner:{display_name:author}, link, answer_id:id, question_id}, {imports, data, codelines}) {
const formatted = {type:"answer", body:await imports.markdown(format.code(imports.htmlunescape(body)), {codelines}), score, upvotes, downvotes, accepted, comments, author, created:imports.date(creation_date*1000, {dateStyle:"short", timeZone:data.config.timezone?.name}), link, id, question_id, const formatted = {
type:"answer",
body:await imports.markdown(format.code(imports.htmlunescape(body)), {codelines}),
score,
upvotes,
downvotes,
accepted,
comments,
author,
created:imports.date(creation_date * 1000, {dateStyle:"short", timeZone:data.config.timezone?.name}),
link,
id,
question_id,
get question() { get question() {
return format.cached.get(`q${this.question_id}`) ?? null return format.cached.get(`q${this.question_id}`) ?? null
}, },
@@ -89,8 +101,45 @@
return formatted return formatted
}, },
/**Format questions */ /**Format questions */
async question({title, body_markdown:body, score, up_vote_count:upvotes, down_vote_count:downvotes, favorite_count:favorites, tags, is_answered:answered, answer_count:answers, comment_count:comments, view_count:views, creation_date, owner:{display_name:author}, link, question_id:id, accepted_answer_id = null}, {imports, data, codelines}) { async question(
const formatted = {type:"question", title:await imports.markdown(title), body:await imports.markdown(format.code(imports.htmlunescape(body)), {codelines}), score, upvotes, downvotes, favorites, tags, answered, answers, comments, views, author, created:imports.date(creation_date*1000, {dateStyle:"short", timeZone:data.config.timezone?.name}), link, id, accepted_answer_id, {
title,
body_markdown:body,
score,
up_vote_count:upvotes,
down_vote_count:downvotes,
favorite_count:favorites,
tags,
is_answered:answered,
answer_count:answers,
comment_count:comments,
view_count:views,
creation_date,
owner:{display_name:author},
link,
question_id:id,
accepted_answer_id = null,
},
{imports, data, codelines},
) {
const formatted = {
type:"question",
title:await imports.markdown(title),
body:await imports.markdown(format.code(imports.htmlunescape(body)), {codelines}),
score,
upvotes,
downvotes,
favorites,
tags,
answered,
answers,
comments,
views,
author,
created:imports.date(creation_date * 1000, {dateStyle:"short", timeZone:data.config.timezone?.name}),
link,
id,
accepted_answer_id,
get answer() { get answer() {
return format.cached.get(`a${this.accepted_answer_id}`) ?? null return format.cached.get(`a${this.accepted_answer_id}`) ?? null
}, },
@@ -98,4 +147,4 @@
this.cached.set(`q${id}`, formatted) this.cached.set(`q${id}`, formatted)
return formatted return formatted
}, },
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, graphql, data, imports, q, queries, account}, {enabled = false} = {}) { export default async function({login, graphql, data, imports, q, queries, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.stargazers)) if ((!enabled) || (!q.stargazers))
return null return null
//Load inputs //Load inputs
@@ -21,10 +21,10 @@
do { do {
console.debug(`metrics/compute/${login}/plugins > stargazers > retrieving stargazers of ${repository} after ${cursor}`) console.debug(`metrics/compute/${login}/plugins > stargazers > retrieving stargazers of ${repository} after ${cursor}`)
const {repository:{stargazers:{edges}}} = await graphql(queries.stargazers({login:owner, repository, after:cursor ? `after: "${cursor}"` : ""})) const {repository:{stargazers:{edges}}} = await graphql(queries.stargazers({login:owner, repository, after:cursor ? `after: "${cursor}"` : ""}))
cursor = edges?.[edges?.length-1]?.cursor cursor = edges?.[edges?.length - 1]?.cursor
dates.push(...edges.map(({starredAt}) => new Date(starredAt))) dates.push(...edges.map(({starredAt}) => new Date(starredAt)))
pushed = edges.length pushed = edges.length
} while ((pushed)&&(cursor)) } while ((pushed) && (cursor))
//Limit repositories //Limit repositories
console.debug(`metrics/compute/${login}/plugins > stargazers > loaded ${dates.length} stargazers for ${repository}`) console.debug(`metrics/compute/${login}/plugins > stargazers > loaded ${dates.length} stargazers for ${repository}`)
} }
@@ -32,7 +32,7 @@
//Compute stargazers increments //Compute stargazers increments
const days = 14 const days = 14
const increments = {dates:Object.fromEntries([...new Array(days).fill(null).map((_, i) => [new Date(Date.now()-i*24*60*60*1000).toISOString().slice(0, 10), 0]).reverse()]), max:NaN, min:NaN} const increments = {dates:Object.fromEntries([...new Array(days).fill(null).map((_, i) => [new Date(Date.now() - i * 24 * 60 * 60 * 1000).toISOString().slice(0, 10), 0]).reverse()]), max:NaN, min:NaN}
dates dates
.map(date => date.toISOString().slice(0, 10)) .map(date => date.toISOString().slice(0, 10))
.filter(date => date in increments.dates) .filter(date => date in increments.dates)
@@ -45,8 +45,8 @@
const total = {dates:{...increments.dates}, max:NaN, min:NaN} const total = {dates:{...increments.dates}, max:NaN, min:NaN}
{ {
const dates = Object.keys(total.dates) const dates = Object.keys(total.dates)
for (let i = dates.length-1; i >= 0; i--) { for (let i = dates.length - 1; i >= 0; i--) {
const date = dates[i], tomorrow = dates[i+1] const date = dates[i], tomorrow = dates[i + 1]
stargazers -= (increments.dates[tomorrow] ?? 0) stargazers -= (increments.dates[tomorrow] ?? 0)
total.dates[date] = stargazers total.dates[date] = stargazers
} }
@@ -64,4 +64,4 @@
catch (error) { catch (error) {
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, graphql, q, queries, imports, account}, {enabled = false} = {}) { export default async function({login, data, graphql, q, queries, imports, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.stars)) if ((!enabled) || (!q.stars))
return null return null
//Load inputs //Load inputs
@@ -16,10 +16,10 @@
//Format starred repositories //Format starred repositories
for (const edge of repositories) { for (const edge of repositories) {
//Format date //Format date
const time = (Date.now()-new Date(edge.starredAt).getTime())/(24*60*60*1000) const time = (Date.now() - new Date(edge.starredAt).getTime()) / (24 * 60 * 60 * 1000)
let updated = new Date(edge.starredAt).toDateString().substring(4) let updated = new Date(edge.starredAt).toDateString().substring(4)
if (time < 1) if (time < 1)
updated = `${Math.ceil(time*24)} hour${Math.ceil(time*24) >= 2 ? "s" : ""} ago` updated = `${Math.ceil(time * 24)} hour${Math.ceil(time * 24) >= 2 ? "s" : ""} ago`
else if (time < 30) else if (time < 30)
updated = `${Math.floor(time)} day${time >= 2 ? "s" : ""} ago` updated = `${Math.floor(time)} day${time >= 2 ? "s" : ""} ago`
edge.starred = updated edge.starred = updated
@@ -34,4 +34,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, account}, {enabled = false, token} = {}) { export default async function({login, q, imports, data, account}, {enabled = false, token} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.stock)) if ((!enabled) || (!q.stock))
return null return null
//Load inputs //Load inputs
@@ -35,16 +35,16 @@
width:480, width:480,
height:160, height:160,
showPoint:false, showPoint:false,
axisX:{showGrid:false, labelInterpolationFnc:(value, index) => index%Math.floor(close.length/4) === 0 ? value : null}, axisX:{showGrid:false, labelInterpolationFnc:(value, index) => index % Math.floor(close.length / 4) === 0 ? value : null},
axisY:{scaleMinSpace:20}, axisY:{scaleMinSpace:20},
showArea:true, showArea:true,
}, { }, {
labels:timestamp.map(timestamp => new Intl.DateTimeFormat("en-GB", {month:"2-digit", day:"2-digit", hour:"2-digit", minute:"2-digit"}).format(new Date(timestamp*1000))), labels:timestamp.map(timestamp => new Intl.DateTimeFormat("en-GB", {month:"2-digit", day:"2-digit", hour:"2-digit", minute:"2-digit"}).format(new Date(timestamp * 1000))),
series:[close], series:[close],
}) })
//Results //Results
return {chart, currency, price, previous, delta:price-previous, symbol, company, interval, duration} return {chart, currency, price, previous, delta:price - previous, symbol, company, interval, duration}
} }
//Handle errors //Handle errors
catch (error) { catch (error) {
@@ -57,4 +57,4 @@
} }
throw {error:{message, instance:error}} throw {error:{message, instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, q, imports, data, account}, {enabled = false} = {}) { export default async function({login, q, imports, data, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.support)) if ((!enabled) || (!q.support))
return null return null
//Load inputs //Load inputs
@@ -33,10 +33,14 @@
await page.goto(`https://github.community/u/${login}/summary`) await page.goto(`https://github.community/u/${login}/summary`)
const frame = page.mainFrame() const frame = page.mainFrame()
await frame.waitForSelector(".stats-section") await frame.waitForSelector(".stats-section")
Object.assign(result.stats, Object.fromEntries((await frame.evaluate(() => [...document.querySelectorAll(".stats-section li")].map(el => [ Object.assign(
result.stats,
Object.fromEntries(
(await frame.evaluate(() => [...document.querySelectorAll(".stats-section li")].map(el => [
el.querySelector(".label").innerText.trim().toLocaleLowerCase(), el.querySelector(".label").innerText.trim().toLocaleLowerCase(),
el.querySelector(".value").innerText.trim().toLocaleLowerCase(), el.querySelector(".value").innerText.trim().toLocaleLowerCase(),
]))).map(([key, value]) => { ])
)).map(([key, value]) => {
switch (true) { switch (true) {
case /solutions?/.test(key): case /solutions?/.test(key):
return ["solutions", Number(value)] return ["solutions", Number(value)]
@@ -49,7 +53,9 @@
default: default:
return null return null
} }
}).filter(kv => kv))) }).filter(kv => kv),
),
)
} }
//Badges //Badges
@@ -78,4 +84,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, data, imports, q, account}, {enabled = false} = {}) { export default async function({login, data, imports, q, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.topics)) if ((!enabled) || (!q.topics))
return null return null
//Load inputs //Load inputs
@@ -30,7 +30,8 @@
name:li.querySelector(".f3").innerText, name:li.querySelector(".f3").innerText,
description:li.querySelector(".f5").innerText, description:li.querySelector(".f5").innerText,
icon:li.querySelector("img")?.src ?? null, icon:li.querySelector("img")?.src ?? null,
}))) }))
)
console.debug(`metrics/compute/${login}/plugins > topics > extracted ${starred.length} starred topics`) console.debug(`metrics/compute/${login}/plugins > topics > extracted ${starred.length} starred topics`)
//Check if next page exists //Check if next page exists
if (!starred.length) { if (!starred.length) {
@@ -51,7 +52,7 @@
} }
//Limit topics (starred mode) //Limit topics (starred mode)
if ((mode === "starred")&&(limit > 0)) { if ((mode === "starred") && (limit > 0)) {
console.debug(`metrics/compute/${login}/plugins > topics > keeping only ${limit} topics`) console.debug(`metrics/compute/${login}/plugins > topics > keeping only ${limit} topics`)
const removed = topics.splice(limit) const removed = topics.splice(limit)
if (removed.length) if (removed.length)
@@ -78,7 +79,7 @@
} }
//Limit topics (mastered mode) //Limit topics (mastered mode)
if ((mode === "mastered")&&(limit > 0)) { if ((mode === "mastered") && (limit > 0)) {
console.debug(`metrics/compute/${login}/plugins > topics > keeping only ${limit} topics`) console.debug(`metrics/compute/${login}/plugins > topics > keeping only ${limit} topics`)
topics.splice(limit) topics.splice(limit)
} }
@@ -92,4 +93,4 @@
throw error throw error
throw {error:{message:"An error occured", instance:error}} throw {error:{message:"An error occured", instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, imports, data, rest, q, account}, {enabled = false} = {}) { export default async function({login, imports, data, rest, q, account}, {enabled = false} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.traffic)) if ((!enabled) || (!q.traffic))
return null return null
//Load inputs //Load inputs
@@ -31,4 +31,4 @@
message = "Insufficient token rights" message = "Insufficient token rights"
throw {error:{message, instance:error}} throw {error:{message, instance:error}}
} }
} }

View File

@@ -1,9 +1,9 @@
//Setup //Setup
export default async function({login, imports, data, q, account}, {enabled = false, token = ""} = {}) { export default async function({login, imports, data, q, account}, {enabled = false, token = ""} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
if ((!enabled)||(!q.tweets)) if ((!enabled) || (!q.tweets))
return null return null
//Load inputs //Load inputs
@@ -21,8 +21,11 @@
//Load tweets //Load tweets
console.debug(`metrics/compute/${login}/plugins > tweets > querying api`) console.debug(`metrics/compute/${login}/plugins > tweets > querying api`)
const {data:{data:tweets = [], includes:{media = []} = {}}} = await imports.axios.get(`https://api.twitter.com/2/tweets/search/recent?query=from:${username}&tweet.fields=created_at,entities&media.fields=preview_image_url,url,type&expansions=entities.mentions.username,attachments.media_keys`, {headers:{Authorization:`Bearer ${token}`}}) const {data:{data:tweets = [], includes:{media = []} = {}}} = await imports.axios.get(
const medias = new Map(media.map(({media_key, type, url, preview_image_url}) => [media_key, (type === "photo")||(type === "animated_gif") ? url : type === "video" ? preview_image_url : null])) `https://api.twitter.com/2/tweets/search/recent?query=from:${username}&tweet.fields=created_at,entities&media.fields=preview_image_url,url,type&expansions=entities.mentions.username,attachments.media_keys`,
{headers:{Authorization:`Bearer ${token}`}},
)
const medias = new Map(media.map(({media_key, type, url, preview_image_url}) => [media_key, (type === "photo") || (type === "animated_gif") ? url : type === "video" ? preview_image_url : null]))
//Limit tweets //Limit tweets
if (limit > 0) { if (limit > 0) {
@@ -40,7 +43,7 @@
//Retrieve linked content //Retrieve linked content
let linked = null let linked = null
if (tweet.urls.size) { if (tweet.urls.size) {
linked = [...tweet.urls.keys()][tweet.urls.size-1] linked = [...tweet.urls.keys()][tweet.urls.size - 1]
tweet.text = tweet.text.replace(new RegExp(`(?:${linked})$`), "") tweet.text = tweet.text.replace(new RegExp(`(?:${linked})$`), "")
} }
//Medias //Medias
@@ -57,10 +60,13 @@
} }
else else
tweet.text = `${tweet.text}\n${linked}` tweet.text = `${tweet.text}\n${linked}`
} }
} }
else else
tweet.attachments = null tweet.attachments = null
//Format text //Format text
console.debug(`metrics/compute/${login}/plugins > tweets > formatting tweet ${tweet.id}`) console.debug(`metrics/compute/${login}/plugins > tweets > formatting tweet ${tweet.id}`)
tweet.createdAt = `${imports.date(tweet.created_at, {timeStyle:"short", timeZone:data.config.timezone?.name})} on ${imports.date(tweet.created_at, {dateStyle:"short", timeZone:data.config.timezone?.name})}` tweet.createdAt = `${imports.date(tweet.created_at, {timeStyle:"short", timeZone:data.config.timezone?.name})} on ${imports.date(tweet.created_at, {dateStyle:"short", timeZone:data.config.timezone?.name})}`
@@ -70,11 +76,16 @@
//Mentions //Mentions
.replace(new RegExp(`@(${tweet.mentions.join("|")})`, "gi"), '<span class="mention">@$1</span>') .replace(new RegExp(`@(${tweet.mentions.join("|")})`, "gi"), '<span class="mention">@$1</span>')
//Hashtags (this regex comes from the twitter source code) //Hashtags (this regex comes from the twitter source code)
.replace(/(?<!&)[#|]([a-z0-9_\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff\u0100-\u024f\u0253-\u0254\u0256-\u0257\u0300-\u036f\u1e00-\u1eff\u0400-\u04ff\u0500-\u0527\u2de0-\u2dff\ua640-\ua69f\u0591-\u05bf\u05c1-\u05c2\u05c4-\u05c5\u05d0-\u05ea\u05f0-\u05f4\ufb12-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufb4f\u0610-\u061a\u0620-\u065f\u066e-\u06d3\u06d5-\u06dc\u06de-\u06e8\u06ea-\u06ef\u06fa-\u06fc\u0750-\u077f\u08a2-\u08ac\u08e4-\u08fe\ufb50-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\u200c-\u200c\u0e01-\u0e3a\u0e40-\u0e4e\u1100-\u11ff\u3130-\u3185\ua960-\ua97f\uac00-\ud7af\ud7b0-\ud7ff\uffa1-\uffdc\u30a1-\u30fa\u30fc-\u30fe\uff66-\uff9f\uff10-\uff19\uff21-\uff3a\uff41-\uff5a\u3041-\u3096\u3099-\u309e\u3400-\u4dbf\u4e00-\u9fff\u20000-\u2a6df\u2a700-\u2b73f\u2b740-\u2b81f\u2f800-\u2fa1f]*[a-z_\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff\u0100-\u024f\u0253-\u0254\u0256-\u0257\u0300-\u036f\u1e00-\u1eff\u0400-\u04ff\u0500-\u0527\u2de0-\u2dff\ua640-\ua69f\u0591-\u05bf\u05c1-\u05c2\u05c4-\u05c5\u05d0-\u05ea\u05f0-\u05f4\ufb12-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufb4f\u0610-\u061a\u0620-\u065f\u066e-\u06d3\u06d5-\u06dc\u06de-\u06e8\u06ea-\u06ef\u06fa-\u06fc\u0750-\u077f\u08a2-\u08ac\u08e4-\u08fe\ufb50-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\u200c-\u200c\u0e01-\u0e3a\u0e40-\u0e4e\u1100-\u11ff\u3130-\u3185\ua960-\ua97f\uac00-\ud7af\ud7b0-\ud7ff\uffa1-\uffdc\u30a1-\u30fa\u30fc-\u30fe\uff66-\uff9f\uff10-\uff19\uff21-\uff3a\uff41-\uff5a\u3041-\u3096\u3099-\u309e\u3400-\u4dbf\u4e00-\u9fff\u20000-\u2a6df\u2a700-\u2b73f\u2b740-\u2b81f\u2f800-\u2fa1f][a-z0-9_\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff\u0100-\u024f\u0253-\u0254\u0256-\u0257\u0300-\u036f\u1e00-\u1eff\u0400-\u04ff\u0500-\u0527\u2de0-\u2dff\ua640-\ua69f\u0591-\u05bf\u05c1-\u05c2\u05c4-\u05c5\u05d0-\u05ea\u05f0-\u05f4\ufb12-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufb4f\u0610-\u061a\u0620-\u065f\u066e-\u06d3\u06d5-\u06dc\u06de-\u06e8\u06ea-\u06ef\u06fa-\u06fc\u0750-\u077f\u08a2-\u08ac\u08e4-\u08fe\ufb50-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\u200c-\u200c\u0e01-\u0e3a\u0e40-\u0e4e\u1100-\u11ff\u3130-\u3185\ua960-\ua97f\uac00-\ud7af\ud7b0-\ud7ff\uffa1-\uffdc\u30a1-\u30fa\u30fc-\u30fe\uff66-\uff9f\uff10-\uff19\uff21-\uff3a\uff41-\uff5a\u3041-\u3096\u3099-\u309e\u3400-\u4dbf\u4e00-\u9fff\u20000-\u2a6df\u2a700-\u2b73f\u2b740-\u2b81f\u2f800-\u2fa1f]*)/gi, ' <span class="hashtag">#$1</span> ') .replace(
/(?<!&)[#|]([a-z0-9_\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff\u0100-\u024f\u0253-\u0254\u0256-\u0257\u0300-\u036f\u1e00-\u1eff\u0400-\u04ff\u0500-\u0527\u2de0-\u2dff\ua640-\ua69f\u0591-\u05bf\u05c1-\u05c2\u05c4-\u05c5\u05d0-\u05ea\u05f0-\u05f4\ufb12-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufb4f\u0610-\u061a\u0620-\u065f\u066e-\u06d3\u06d5-\u06dc\u06de-\u06e8\u06ea-\u06ef\u06fa-\u06fc\u0750-\u077f\u08a2-\u08ac\u08e4-\u08fe\ufb50-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\u200c-\u200c\u0e01-\u0e3a\u0e40-\u0e4e\u1100-\u11ff\u3130-\u3185\ua960-\ua97f\uac00-\ud7af\ud7b0-\ud7ff\uffa1-\uffdc\u30a1-\u30fa\u30fc-\u30fe\uff66-\uff9f\uff10-\uff19\uff21-\uff3a\uff41-\uff5a\u3041-\u3096\u3099-\u309e\u3400-\u4dbf\u4e00-\u9fff\u20000-\u2a6df\u2a700-\u2b73f\u2b740-\u2b81f\u2f800-\u2fa1f]*[a-z_\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff\u0100-\u024f\u0253-\u0254\u0256-\u0257\u0300-\u036f\u1e00-\u1eff\u0400-\u04ff\u0500-\u0527\u2de0-\u2dff\ua640-\ua69f\u0591-\u05bf\u05c1-\u05c2\u05c4-\u05c5\u05d0-\u05ea\u05f0-\u05f4\ufb12-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufb4f\u0610-\u061a\u0620-\u065f\u066e-\u06d3\u06d5-\u06dc\u06de-\u06e8\u06ea-\u06ef\u06fa-\u06fc\u0750-\u077f\u08a2-\u08ac\u08e4-\u08fe\ufb50-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\u200c-\u200c\u0e01-\u0e3a\u0e40-\u0e4e\u1100-\u11ff\u3130-\u3185\ua960-\ua97f\uac00-\ud7af\ud7b0-\ud7ff\uffa1-\uffdc\u30a1-\u30fa\u30fc-\u30fe\uff66-\uff9f\uff10-\uff19\uff21-\uff3a\uff41-\uff5a\u3041-\u3096\u3099-\u309e\u3400-\u4dbf\u4e00-\u9fff\u20000-\u2a6df\u2a700-\u2b73f\u2b740-\u2b81f\u2f800-\u2fa1f][a-z0-9_\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff\u0100-\u024f\u0253-\u0254\u0256-\u0257\u0300-\u036f\u1e00-\u1eff\u0400-\u04ff\u0500-\u0527\u2de0-\u2dff\ua640-\ua69f\u0591-\u05bf\u05c1-\u05c2\u05c4-\u05c5\u05d0-\u05ea\u05f0-\u05f4\ufb12-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb40-\ufb41\ufb43-\ufb44\ufb46-\ufb4f\u0610-\u061a\u0620-\u065f\u066e-\u06d3\u06d5-\u06dc\u06de-\u06e8\u06ea-\u06ef\u06fa-\u06fc\u0750-\u077f\u08a2-\u08ac\u08e4-\u08fe\ufb50-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\u200c-\u200c\u0e01-\u0e3a\u0e40-\u0e4e\u1100-\u11ff\u3130-\u3185\ua960-\ua97f\uac00-\ud7af\ud7b0-\ud7ff\uffa1-\uffdc\u30a1-\u30fa\u30fc-\u30fe\uff66-\uff9f\uff10-\uff19\uff21-\uff3a\uff41-\uff5a\u3041-\u3096\u3099-\u309e\u3400-\u4dbf\u4e00-\u9fff\u20000-\u2a6df\u2a700-\u2b73f\u2b740-\u2b81f\u2f800-\u2fa1f]*)/gi,
' <span class="hashtag">#$1</span> ',
)
//Line breaks //Line breaks
.replace(/\n/g, "<br/>") .replace(/\n/g, "<br/>")
//Links //Links
.replace(new RegExp(`${tweet.urls.size ? "" : "noop^"}(${[...tweet.urls.keys()].map(url => `(?:${url})`).join("|")})`, "gi"), (_, url) => `<a href="${url}" class="link">${tweet.urls.get(url)}</a>`), {"&":true}) .replace(new RegExp(`${tweet.urls.size ? "" : "noop^"}(${[...tweet.urls.keys()].map(url => `(?:${url})`).join("|")})`, "gi"), (_, url) => `<a href="${url}" class="link">${tweet.urls.get(url)}</a>`),
{"&":true},
)
})) }))
//Result //Result
@@ -91,4 +102,4 @@
} }
throw {error:{message, instance:error}} throw {error:{message, instance:error}}
} }
} }

View File

@@ -1,5 +1,5 @@
//Setup //Setup
export default async function ({ login, q, imports, data, account }, { enabled = false, token } = {}) { export default async function({login, q, imports, data, account}, {enabled = false, token} = {}) {
//Plugin execution //Plugin execution
try { try {
//Check if plugin is enabled and requirements are met //Check if plugin is enabled and requirements are met
@@ -7,30 +7,30 @@ export default async function ({ login, q, imports, data, account }, { enabled =
return null return null
//Load inputs //Load inputs
let { sections, days, limit, url, user } = imports.metadata.plugins.wakatime.inputs({ data, account, q }) let {sections, days, limit, url, user} = imports.metadata.plugins.wakatime.inputs({data, account, q})
if (!limit) limit = void limit if (!limit)
const range = limit = void limit
{ const range = {
"7": "last_7_days", "7":"last_7_days",
"30": "last_30_days", "30":"last_30_days",
"180": "last_6_months", "180":"last_6_months",
"365": "last_year", "365":"last_year",
}[days] ?? "last_7_days" }[days] ?? "last_7_days"
//Querying api and format result (https://wakatime.com/developers#stats) //Querying api and format result (https://wakatime.com/developers#stats)
console.debug(`metrics/compute/${login}/plugins > wakatime > querying api`) console.debug(`metrics/compute/${login}/plugins > wakatime > querying api`)
const {data: { data: stats }} = await imports.axios.get(`${url}/api/v1/users/${user}/stats/${range}?api_key=${token}`) const {data:{data:stats}} = await imports.axios.get(`${url}/api/v1/users/${user}/stats/${range}?api_key=${token}`)
const result = { const result = {
sections, sections,
days, days,
time: { time:{
total: stats.total_seconds / (60 * 60), total:stats.total_seconds / (60 * 60),
daily: stats.daily_average / (60 * 60), daily:stats.daily_average / (60 * 60),
}, },
projects:stats.projects.map(({name, percent, total_seconds:total}) => ({name, percent:percent/100, total})).sort((a, b) => b.percent - a.percent).slice(0, limit), projects:stats.projects.map(({name, percent, total_seconds:total}) => ({name, percent:percent / 100, total})).sort((a, b) => b.percent - a.percent).slice(0, limit),
languages:stats.languages.map(({name, percent, total_seconds:total}) => ({name, percent:percent/100, total})).sort((a, b) => b.percent - a.percent).slice(0, limit), languages:stats.languages.map(({name, percent, total_seconds:total}) => ({name, percent:percent / 100, total})).sort((a, b) => b.percent - a.percent).slice(0, limit),
os:stats.operating_systems.map(({name, percent, total_seconds:total}) => ({name, percent:percent/100, total})).sort((a, b) => b.percent - a.percent).slice(0, limit), os:stats.operating_systems.map(({name, percent, total_seconds:total}) => ({name, percent:percent / 100, total})).sort((a, b) => b.percent - a.percent).slice(0, limit),
editors:stats.editors.map(({name, percent, total_seconds:total}) => ({name, percent:percent/100, total})).sort((a, b) => b.percent - a.percent).slice(0, limit), editors:stats.editors.map(({name, percent, total_seconds:total}) => ({name, percent:percent / 100, total})).sort((a, b) => b.percent - a.percent).slice(0, limit),
} }
//Result //Result
@@ -44,6 +44,6 @@ export default async function ({ login, q, imports, data, account }, { enabled =
message = `API returned ${status}` message = `API returned ${status}`
error = error.response?.data ?? null error = error.response?.data ?? null
} }
throw {error:{message, instance:error }} throw {error:{message, instance:error}}
} }
} }

View File

@@ -1,5 +1,5 @@
/**Template processor */ /**Template processor */
export default async function(_, __, {imports}) { export default async function(_, __, {imports}) {
//Core //Core
await imports.plugins.core(...arguments) await imports.plugins.core(...arguments)
} }

View File

@@ -1,10 +1,10 @@
/**Template processor */ /**Template processor */
export default async function({login, q}, {data, rest, graphql, queries, account}, {pending, imports}) { export default async function({login, q}, {data, rest, graphql, queries, account}, {pending, imports}) {
//Check arguments //Check arguments
const {repo} = q const {repo} = q
if (!repo) { if (!repo) {
console.debug(`metrics/compute/${login}/${repo} > error, repo was undefined`) console.debug(`metrics/compute/${login}/${repo} > error, repo was undefined`)
data.errors.push({error:{message:"You must pass a \"repo\" argument to use this template"}}) data.errors.push({error:{message:'You must pass a "repo" argument to use this template'}})
return imports.plugins.core(...arguments) return imports.plugins.core(...arguments)
} }
console.debug(`metrics/compute/${login}/${repo} > switching to mode ${account}`) console.debug(`metrics/compute/${login}/${repo} > switching to mode ${account}`)
@@ -50,7 +50,7 @@
//Compute relative date for each contribution //Compute relative date for each contribution
const now = new Date() const now = new Date()
now.setHours(0, 0, 0, 0) now.setHours(0, 0, 0, 0)
const contributions = commits.map(({commit}) => Math.abs(Math.ceil((now - new Date(commit.committer.date))/(24*60*60*1000)))) const contributions = commits.map(({commit}) => Math.abs(Math.ceil((now - new Date(commit.committer.date)) / (24 * 60 * 60 * 1000))))
//Count contributions per relative day //Count contributions per relative day
const calendar = new Array(days).fill(0) const calendar = new Array(days).fill(0)
for (const day of contributions) for (const day of contributions)
@@ -58,7 +58,7 @@
calendar.splice(days) calendar.splice(days)
const max = Math.max(...calendar) const max = Math.max(...calendar)
//Override contributions calendar //Override contributions calendar
data.user.calendar.contributionCalendar.weeks = calendar.map(commit => ({contributionDays:{color:commit ? `var(--color-calendar-graph-day-L${Math.ceil(commit/max/0.25)}-bg)` : "var(--color-calendar-graph-day-bg)"}})) data.user.calendar.contributionCalendar.weeks = calendar.map(commit => ({contributionDays:{color:commit ? `var(--color-calendar-graph-day-L${Math.ceil(commit / max / 0.25)}-bg)` : "var(--color-calendar-graph-day-bg)"}}))
//Override plugins parameters //Override plugins parameters
q["projects.limit"] = 0 q["projects.limit"] = 0
@@ -73,4 +73,4 @@
//Reformat projects names //Reformat projects names
if (data.plugins.projects) if (data.plugins.projects)
data.plugins.projects.list?.map(project => project.name = project.name.replace(`(${login}/${repo})`, "").trim()) data.plugins.projects.list?.map(project => project.name = project.name.replace(`(${login}/${repo})`, "").trim())
} }

View File

@@ -1,7 +1,7 @@
/**Template processor */ /**Template processor */
export default async function({q}, _, {imports}) { export default async function({q}, _, {imports}) {
//Core //Core
await imports.plugins.core(...arguments) await imports.plugins.core(...arguments)
//Disable optimization to keep white-spaces //Disable optimization to keep white-spaces
q.raw = true q.raw = true
} }