2018-11-28 12:19:11 +01:00
|
|
|
/* eslint-disable no-console */
|
|
|
|
|
2018-11-07 16:13:20 +01:00
|
|
|
const path = require('path')
|
|
|
|
const { createFilePath } = require('gatsby-source-filesystem')
|
2018-11-28 12:19:11 +01:00
|
|
|
const Swagger = require('swagger-client')
|
2018-11-29 10:47:42 +01:00
|
|
|
const { redirects } = require('./config')
|
2018-11-07 12:24:53 +01:00
|
|
|
|
2018-11-07 16:13:20 +01:00
|
|
|
exports.onCreateNode = ({ node, getNode, actions }) => {
|
2020-07-01 11:24:21 +02:00
|
|
|
const { createNodeField } = actions
|
2018-11-07 16:13:20 +01:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
if (node.internal.type === 'MarkdownRemark') {
|
|
|
|
const fileNode = getNode(node.parent)
|
|
|
|
const parsedFilePath = path.parse(fileNode.relativePath)
|
2018-11-14 15:17:19 +01:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
let slug = createFilePath({ node, getNode, basePath: 'content' })
|
|
|
|
let section = parsedFilePath.dir
|
2018-11-14 15:17:19 +01:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
if (node.frontmatter.slug) {
|
|
|
|
;({ slug } = node.frontmatter)
|
|
|
|
}
|
2018-11-14 15:17:19 +01:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
if (node.frontmatter.section) {
|
|
|
|
;({ section } = node.frontmatter)
|
|
|
|
}
|
2018-11-07 16:13:20 +01:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
createNodeField({
|
|
|
|
node,
|
|
|
|
name: 'slug',
|
|
|
|
value: slug
|
|
|
|
})
|
2018-11-07 16:13:20 +01:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
createNodeField({
|
|
|
|
node,
|
|
|
|
name: 'section',
|
|
|
|
value: section
|
|
|
|
})
|
|
|
|
}
|
2018-11-07 16:13:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
exports.createPages = ({ graphql, actions }) => {
|
2020-07-01 11:24:21 +02:00
|
|
|
const { createPage, createRedirect } = actions
|
|
|
|
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
resolve(
|
|
|
|
graphql(
|
|
|
|
`
|
|
|
|
query {
|
|
|
|
allMarkdownRemark(
|
|
|
|
filter: { fileAbsolutePath: { regex: "/content/" } }
|
|
|
|
) {
|
|
|
|
edges {
|
|
|
|
node {
|
|
|
|
fields {
|
|
|
|
slug
|
|
|
|
section
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-14 13:00:32 +01:00
|
|
|
|
2020-11-12 16:37:49 +01:00
|
|
|
oceanJs: github {
|
|
|
|
repository(name: "ocean.js", owner: "oceanprotocol") {
|
|
|
|
name
|
|
|
|
releases(
|
|
|
|
first: 30
|
|
|
|
orderBy: { field: CREATED_AT, direction: DESC }
|
|
|
|
) {
|
|
|
|
edges {
|
|
|
|
node {
|
|
|
|
isPrerelease
|
|
|
|
isDraft
|
2020-11-12 18:31:18 +01:00
|
|
|
releaseAssets(first: 1, name: "lib.json") {
|
2020-11-12 16:37:49 +01:00
|
|
|
edges {
|
|
|
|
node {
|
|
|
|
name
|
|
|
|
downloadUrl
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-01 11:24:21 +02:00
|
|
|
}
|
|
|
|
`
|
|
|
|
).then(async (result) => {
|
|
|
|
if (result.errors) {
|
|
|
|
console.log(result.errors)
|
|
|
|
reject(result.errors)
|
|
|
|
}
|
2018-11-07 16:13:20 +01:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
const docTemplate = path.resolve('./src/templates/Doc.jsx')
|
|
|
|
const posts = result.data.allMarkdownRemark.edges
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create Doc pages
|
|
|
|
//
|
|
|
|
posts.forEach((post) => {
|
|
|
|
createPage({
|
|
|
|
path: `${post.node.fields.slug}`,
|
|
|
|
component: docTemplate,
|
|
|
|
context: {
|
|
|
|
slug: post.node.fields.slug,
|
|
|
|
section: post.node.fields.section
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// API: brizo, aquarius
|
|
|
|
await createSwaggerPages(createPage)
|
|
|
|
|
2020-11-12 16:37:49 +01:00
|
|
|
// API: ocean.js
|
2020-11-12 18:31:18 +01:00
|
|
|
const lastRelease = result.data.oceanJs.repository.releases.edges.filter(
|
2020-11-12 16:37:49 +01:00
|
|
|
({ node }) => !node.isPrerelease && !node.isDraft
|
|
|
|
)[0].node.releaseAssets.edges[0].node
|
2020-11-12 18:31:18 +01:00
|
|
|
|
2020-11-12 16:37:49 +01:00
|
|
|
await createTypeDocPage(
|
|
|
|
createPage,
|
|
|
|
result.data.oceanJs.repository.name,
|
|
|
|
lastRelease.downloadUrl
|
|
|
|
)
|
2020-11-12 18:31:18 +01:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
//
|
|
|
|
// create redirects
|
|
|
|
//
|
|
|
|
redirects.forEach(({ from, to }) => {
|
|
|
|
createRedirect({
|
|
|
|
fromPath: from,
|
|
|
|
redirectInBrowser: true,
|
|
|
|
toPath: to
|
|
|
|
})
|
|
|
|
|
|
|
|
console.log('Create redirect: ' + from + ' --> ' + to)
|
|
|
|
})
|
|
|
|
|
|
|
|
resolve()
|
|
|
|
})
|
|
|
|
)
|
|
|
|
})
|
2018-11-07 16:13:20 +01:00
|
|
|
}
|
2019-06-24 20:48:45 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Create pages from TypeDoc json files
|
|
|
|
//
|
|
|
|
const createTypeDocPage = async (createPage, name, downloadUrl) => {
|
2020-07-01 11:24:21 +02:00
|
|
|
try {
|
2021-01-28 12:34:01 +01:00
|
|
|
const typedoc = require('./ocean.js.json')
|
|
|
|
// const typedoc = await fetch(downloadUrl)
|
2020-07-01 11:24:21 +02:00
|
|
|
const typedocTemplate = path.resolve('./src/templates/Typedoc/index.jsx')
|
|
|
|
const slug = `/references/${name}/`
|
2019-06-24 20:48:45 +02:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
createPage({
|
|
|
|
path: slug,
|
|
|
|
component: typedocTemplate,
|
|
|
|
context: {
|
|
|
|
slug,
|
2021-01-28 12:34:01 +01:00
|
|
|
typedoc
|
|
|
|
// typedoc: await typedoc.json()
|
2020-07-01 11:24:21 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
|
|
console.log(error.message)
|
|
|
|
}
|
2019-06-24 20:48:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Create pages from swagger json files
|
|
|
|
//
|
|
|
|
// https://github.com/swagger-api/swagger-js
|
2020-11-14 00:43:06 +01:00
|
|
|
const fetchSwaggerSpec = async (component) => {
|
2020-07-01 11:24:21 +02:00
|
|
|
try {
|
|
|
|
const client = await Swagger(
|
2020-11-14 00:43:06 +01:00
|
|
|
`https://${component}.mainnet.oceanprotocol.com/spec`
|
2020-07-01 11:24:21 +02:00
|
|
|
)
|
|
|
|
return client.spec // The resolved spec
|
|
|
|
|
|
|
|
// client.originalSpec // In case you need it
|
|
|
|
// client.errors // Any resolver errors
|
|
|
|
|
|
|
|
// Tags interface
|
|
|
|
// client.apis.pet.addPet({id: 1, name: "bobby"}).then(...)
|
|
|
|
|
|
|
|
// TryItOut Executor, with the `spec` already provided
|
|
|
|
// client.execute({operationId: 'addPet', parameters: {id: 1, name: "bobby") }).then(...)
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error.message)
|
|
|
|
}
|
2019-06-24 20:48:45 +02:00
|
|
|
}
|
|
|
|
|
2020-03-24 09:04:30 +01:00
|
|
|
const createSwaggerPages = async (createPage) => {
|
2020-11-14 00:43:06 +01:00
|
|
|
const swaggerComponents = ['aquarius', 'provider']
|
2020-07-01 11:24:21 +02:00
|
|
|
const apiSwaggerTemplate = path.resolve('./src/templates/Swagger/index.jsx')
|
|
|
|
|
2020-11-14 00:43:06 +01:00
|
|
|
const getSlug = (name) => `/references/${name}/`
|
2020-07-01 11:24:21 +02:00
|
|
|
|
2020-11-14 00:43:06 +01:00
|
|
|
for (const component of swaggerComponents) {
|
|
|
|
const slug = getSlug(component)
|
2020-07-01 11:24:21 +02:00
|
|
|
|
2020-11-14 00:43:06 +01:00
|
|
|
createPage({
|
|
|
|
path: slug,
|
|
|
|
component: apiSwaggerTemplate,
|
|
|
|
context: {
|
|
|
|
slug,
|
|
|
|
name: component,
|
|
|
|
api: await fetchSwaggerSpec(component)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-07-01 11:24:21 +02:00
|
|
|
|
|
|
|
// Swagger Pet Store example
|
|
|
|
const petStoreSlug = '/references/petstore/'
|
2019-06-24 20:48:45 +02:00
|
|
|
|
2020-07-01 11:24:21 +02:00
|
|
|
try {
|
|
|
|
const client = await Swagger(`http://petstore.swagger.io/v2/swagger.json`)
|
2019-06-24 20:48:45 +02:00
|
|
|
|
|
|
|
createPage({
|
2020-07-01 11:24:21 +02:00
|
|
|
path: petStoreSlug,
|
|
|
|
component: apiSwaggerTemplate,
|
|
|
|
context: {
|
|
|
|
slug: petStoreSlug,
|
|
|
|
api: client.spec
|
|
|
|
}
|
2019-06-24 20:48:45 +02:00
|
|
|
})
|
2020-07-01 11:24:21 +02:00
|
|
|
} catch (error) {
|
|
|
|
console.error(error.message)
|
|
|
|
}
|
2019-06-24 20:48:45 +02:00
|
|
|
}
|