跳到主要内容

How to Deploy an OpenAPI Documentation on Netlify

· 阅读需 4 分钟

Scenario

  1. There is an API definition file open-api-swagger.json in a private repository production/api and I have no write access to it.
  2. I want to deploy a preview website of the open-api-swagger.json:
    • test some Redoc configuration in my repository Oreoxmt/preview-api
    • build the open-api-swagger.json specification file into a HTML file index.html using redoc-cli build
    • deploy it on Netlify or other services

Step 1. Import my repository to Netlify

信息

For more details, refer to Import from an existing repository.

  1. Log in to Netlify.

  2. In the Team overview page, click Add new site and select Import an existing project.

  3. Connect to Git provider using the GitHub option and select the Oreoxmt/preview-api repository.

  4. Select Deploy site.

Step 2. Get the private repository content using GitHub API

To get the repository content of the open-api-swagger.json in the production/api repository, you can use the GitHub API. For more details, refer to Get repository content.

警告

To get the repository content, you need to create a personal access token first.

The cURL code sample in GitHub Docs is as follows:

curl \
-H "Accept: application/vnd.github+json" \
-H "Authorization: token <TOKEN>" \
https://api.github.com/repos/OWNER/REPO/contents/PATH

Replace <TOKEN> with your personal access token and replace <OWNER>, <REPO>, and PATH with the repository owner, repository name and the path of repository content you want to get. The following is an example:

curl --request GET \
--url https://api.github.com/repos/production/api/contents/open-api-swagger.json \
--header 'Accept: application/vnd.github+json' \
--header 'Authorization: token <MY-TOKEN>'

The output is as follows:

{
"type": "file",
"encoding": "base64",
"size": 5362,
"name": "open-api-swagger.json",
"path": "open-api-swagger.json",
"content": "encoded content ...",
"sha": "3d21ec53a331a6f037a91c368710b99387d012c1",
"url": "https://api.github.com/repos/production/api/contents/open-api-swagger.json",
"git_url": "https://api.github.com/repos/production/api/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1",
"html_url": "https://github.com/production/api/blob/master/open-api-swagger.json",
"download_url": "https://raw.githubusercontent.com/production/api/master/open-api-swagger.json",
"_links": {
"git": "https://api.github.com/repos/production/api/git/blobs/3d21ec53a331a6f037a91c368710b99387d012c1",
"self": "https://api.github.com/repos/production/api/contents/open-api-swagger.json",
"html": "https://github.com/production/api/blob/master/open-api-swagger.json"
}
}

The preceding "content" is a base64 encoded string of the open-api-swagger.json file. To decode the file, you can refer to the answer in Stack Overflow using the following command:

curl --request GET \
--url https://api.github.com/repos/production/api/contents/open-api-swagger.json \
--header 'Accept: application/vnd.github+json' \
// highlight-start
--header 'Authorization: token <MY-TOKEN>' \
| jq -r ".content" | base64 --decode
// highlight-end

The output is as follows:

{
"swagger": "3.0",
"info": {
...
},
...
}

It is not reasonable to use the base64 command to decode. So, I read the About the Repository contents API again. To retrieve the contents of the JSON file, you can use the .raw media type. The following is an example:

curl --request GET \
--url https://api.github.com/repos/production/api/contents/open-api-swagger.json \
// highlight-start
--header 'Accept: application/vnd.github.raw' \
// highlight-end
--header 'Authorization: token <MY-TOKEN>'

The output is the original content as follows:

{
"swagger": "3.0",
"info": {
...
},
...
}

Step 3. Configure the build settings

After the step 2, you can get the JSON content of the open-api-swagger.json file. To execute the command using Netlify, you can refer to Build configuration overview.

  • Set a GITHUB_TOKEN environment variable.

    For security reason, it is recommended to set a GITHUB_TOKEN environment variable and use the variable to get the repository content.

    It is easy to declare variables. In the Netlify UI, under Site settings > Build & deploy > Environment > Environment variables, you can click Edit variables and create a new variable named GITHUB_TOKEN. To use the variable in build commands, the following is an example:

    curl --request GET \
    --url https://api.github.com/repos/production/api/contents/open-api-swagger.json \
    --header 'Accept: application/vnd.github.raw' \
    // highlight-start
    --header "Authorization: token $GITHUB_TOKEN"
    // highlight-end
    信息

    Difference between single and double quotes in Bash:

    Single quotes won't interpolate anything, but double quotes will. For example: variables, backticks, certain \ escapes, etc.

    $ echo "$(echo "upg")"
    upg
    $ echo '$(echo "upg")'
    $(echo "upg")

    —— Stack Overflow

  • Build the JSON file into a HTML file index.html.

    To build the specification file into a HTML file, you can use the following redoc-cli build command:

    redoc-cli build openapi-spec.swagger.json -o build/index.html
  • Configure the build settings.

    For more information about common configuration directives, refer to Framework integrations.

    • Set the build command to the following:
    curl --request GET --url https://api.github.com/repos/production/api/contents/open-api-swagger.json --header 'Accept: application/vnd.github.raw' --header "Authorization: token $GITHUB_TOKEN" -O && redoc-cli build openapi-spec.swagger.json -o build/index.html
    提示

    The curl -O option extracts the name in the given URL and saves the file content to the extracted name (which is open-api-swagger.json in the preceding command).

    • Set the publish directory to build

Then, you can trigger a deploy and preview the website on the Deploys page.