
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
directus-extension-api-docs
Advanced tools
directus extension for swagger interface and openapi including custom endpoints definitions // custom endpoint validations middleware based on openapi
Compatible with latest Directus versions and packaged extensions.
Directus Extension to include:
Working in a Directus nodejs project
Ref: https://github.com/directus/directus
npm install directus-extension-api-docs
http://localhost:8055/api-docs
http://localhost:8055/api-docs/oas
To include you custom endpoints in your documentation.
Create a oasconfig.yaml
file under /extensions
folder.
Options:
docsPath
optional path where the interface will be (default 'api-docs')info
optional openapi server info (default extract from package.json)tags
optional openapi custom tags (will be merged with all standard and all customs tags)publishedTags
optional if specified, will be published definitions only for specified tagspaths
optional openapi custom paths (will be merged with all standard and all customs paths)components
optional openapi custom components (will be merged with all standard and all customs tags)Example below:
docsPath: 'api-docs'
info:
title: my-directus-bo
version: 1.5.0
description: my server description
tags:
- name: MyCustomTag
description: MyCustomTag description
publishedTags:
- MyCustomTag
components:
schemas:
UserId:
type: object
required:
- user_id
x-collection: directus_users
properties:
user_id:
description: Unique identifier for the user.
example: 63716273-0f29-4648-8a2a-2af2948f6f78
type: string
For each endpoint extension, you can define api's including a file oas.yaml
in root path of your extension endpoint folder.
Properties:
tags
optional openapi custom tagspaths
optional openapi custom pathscomponents
optional openapi custom componentsExemple below (./extensions/my-endpoint-extensions/oas.yaml
) :
tags:
- name: MyCustomTag2
description: MyCustomTag description2
paths:
"/my-custom-path/my-endpoint":
post:
security:
- Auth: [ ]
summary: Validate email
description: Validate email
tags:
- MyCustomTag2
- MyCustomTag
requestBody:
content:
application/json:
schema:
"$ref": "#/components/schemas/UserId"
responses:
'200':
description: Successful request
content:
application/json:
schema:
"$ref": "#/components/schemas/Users"
'401':
description: Unauthorized
content: {}
'422':
description: Unprocessable Entity
content: {}
'500':
description: Server Error
content: {}
components:
schemas:
Users:
type: object # ref to standard components declaring it empty
securitySchemes:
Auth:
in: header
name: Authorization
type: apiKey
Configuration and definitions can also be managed in this structure:
- ./extensions/
- endpoints/
- oasconfig.yaml
- my-endpoint-extensions/
- oas.yaml
- my-endpoint-extensions2/
- oas.yaml
You can enable a request validations middleware based on your custom definitions.
Call validate
function inside your custom endpoint source (./extensions/my-endpoint-extensions/src/index.js
).
Pass your router
, services
, schema
and a list (optional) of endpoints you want to validate.
Example below:
const { validate } = require('directus-extension-api-docs')
export default {
id: 'my-custom-path',
handler: async (router, { services, getSchema }) => {
const schema = await getSchema();
await validate(router, services, schema); // Enable validator
router.post('/my-endpoint', async (req, res, next) => {
...
})
},
}
FAQs
directus extension for swagger interface and openapi including custom endpoints definitions // custom endpoint validations middleware based on openapi
The npm package directus-extension-api-docs receives a total of 223 weekly downloads. As such, directus-extension-api-docs popularity was classified as not popular.
We found that directus-extension-api-docs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.