* install new packages * migrate request to got * update dynamic json test This is a behavioural difference between request and got request will send the request, then we'll get a `400 Bad Request` back and re-throw at as invalid got will pick up that the URL is invalid and throw `RequestError: URI malformed` before attempting to send it which we'll re-throw as inaccessible * fix OPM service * fix wordpress querystring Got doesn't natively support assmebling a querystring from nested objects because it uses node's URLSearchParams internally. Use qs and pass qs a string. Wordpress is the only service that needs this, so we could build the string manually in this case if we don't want to take qs as a prod dependency. It is mostly hard-coded values anyway. * fix wercker got overwrites any ?foo=bar in the URL string if searchParams is also passed whereas request appends see https://github.com/sindresorhus/got#url * fix keybase * add tests for got wrapper * bootstrap global agent in server start
89 lines
2.2 KiB
JavaScript
89 lines
2.2 KiB
JavaScript
'use strict'
|
|
|
|
const Joi = require('joi')
|
|
const qs = require('qs')
|
|
const { nonNegativeInteger } = require('../validators')
|
|
const { BaseJsonService, NotFound } = require('..')
|
|
|
|
const stringOrFalse = Joi.alternatives(Joi.string(), Joi.bool())
|
|
|
|
const themeSchema = Joi.object()
|
|
.keys({
|
|
version: Joi.string().required(),
|
|
rating: nonNegativeInteger,
|
|
num_ratings: nonNegativeInteger,
|
|
downloaded: nonNegativeInteger,
|
|
active_installs: nonNegativeInteger,
|
|
last_updated: Joi.string().required(),
|
|
requires_php: stringOrFalse.required(),
|
|
requires: stringOrFalse.required(),
|
|
})
|
|
.required()
|
|
|
|
const pluginSchema = Joi.object()
|
|
.keys({
|
|
version: Joi.string().required(),
|
|
rating: nonNegativeInteger,
|
|
num_ratings: nonNegativeInteger,
|
|
downloaded: nonNegativeInteger,
|
|
active_installs: nonNegativeInteger,
|
|
requires: stringOrFalse.required(),
|
|
tested: Joi.string().required(),
|
|
last_updated: Joi.string().required(),
|
|
requires_php: stringOrFalse.required(),
|
|
})
|
|
.required()
|
|
|
|
const notFoundSchema = Joi.object()
|
|
.keys({
|
|
error: Joi.string().required(),
|
|
})
|
|
.required()
|
|
|
|
const pluginSchemas = Joi.alternatives(pluginSchema, notFoundSchema)
|
|
const themeSchemas = Joi.alternatives(themeSchema, notFoundSchema)
|
|
|
|
module.exports = class BaseWordpress extends BaseJsonService {
|
|
async fetch({ extensionType, slug }) {
|
|
const url = `https://api.wordpress.org/${extensionType}s/info/1.2/`
|
|
let schemas
|
|
if (extensionType === 'plugin') {
|
|
schemas = pluginSchemas
|
|
} else if (extensionType === 'theme') {
|
|
schemas = themeSchemas
|
|
}
|
|
|
|
const queryString = qs.stringify(
|
|
{
|
|
action: `${extensionType}_information`,
|
|
request: {
|
|
slug,
|
|
fields: {
|
|
active_installs: 1,
|
|
sections: 0,
|
|
homepage: 0,
|
|
tags: 0,
|
|
screenshot_url: 0,
|
|
downloaded: 1,
|
|
last_updated: 1,
|
|
requires_php: 1,
|
|
},
|
|
},
|
|
},
|
|
{ encode: false }
|
|
)
|
|
|
|
const json = await this._requestJson({
|
|
url,
|
|
schema: schemas,
|
|
options: {
|
|
qs: queryString,
|
|
},
|
|
})
|
|
if ('error' in json) {
|
|
throw new NotFound()
|
|
}
|
|
return json
|
|
}
|
|
}
|