Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@janiscommerce/api-get
Advanced tools
A package to handle JANIS Get APIs
npm install @janiscommerce/api-get
'use strict';
const { ApiGet } = require('@janiscommerce/api-get');
const FORBIDDEN_NAME = 'Voldemort';
module.exports = class MyApiGet extends ApiGet {
get fieldsToSelect() {
return ['name', 'status'];
}
get fieldsToExclude() {
return ['error'];
}
get fixedFields() {
return ['code'];
}
async format(record) {
return {
...record,
oneMoreField: true
};
}
_parseFilters({ id, ...otherFilters }) {
return {
...otherFilters,
id: Number(id)
};
}
/**
* Validates the record getted from DB before format.
* @param {Object} The record in DB
**/
async postGetValidate({ name }) {
if(name === FORBIDDEN_NAME) {
this.setCode(403);
throw new Error('Forbidden name');
}
}
/**
* It is to perform extra validations
* @returns {void}
*/
async postValidate() {
if(!this.session.hasAccessToAllLocations)
throw new Error("No access");
}
};
All methods are optional
If you have for example, a get API for a sub-entity of one specific record, the parent will be automatically be added as a filter.
For example, the following endpoint: /api/parent-entity/1/sub-entity/2
, will be a get of the sub-entity, and parentEntity: '1'
will be set as a filter.
The following getters and methods can be used to customize and validate your List API. All of them are optional.
Returns model name. It is intent to be used to change the model's name and it will not get the model name from endpoint
Since 1.2.0
This is used to determinate which fields should be selected from the DB.
Important: The id
field is always returned.
If set as false
. The parameter fields
will be ignored.
If a field is not found in the document it will be ignored.
Since 4.2.0
This is used to determinate witch fields must be excluded from the response.
If set as false
. The parameter excludeFields
will be ignored.
Important: The id
field is always returned.
If a field is not found in the document it will be ignored.
Since 4.2.0
This is used to determinate witch fields should always be returned.
If a field is not found in the document it will be ignored.
Since 4.2.0
An Api defined with ApiGet can be reduced using new parameters fields
and excludeFields
.
This parameters will be passed to the model for reducing the response on the database-side.
For the following examples we will be using an invented product with the information
{
"id": 1,
"code": "t-shirt",
"name": "Shirt white and blue",
"price": 200.5,
"status": "active"
}
When using fields
we are telling the database the specific fields we wanna receive in the response.
Important. When using fields
, excludeFields
will be ignored.
curl --location -g --request GET 'https://my-catalog.com/api/product/1?fields[0]=code&fields[1]=name'
// expected output: { id: 1, code: 't-shirt', name: 'Shirt white and blue' }
When using excludeFields
we are telling the database the specific fields we don't wanna receive in the response.
Important. When using fields
, excludeFields
will be ignored.
curl --location -g --request GET 'https://my-catalog.com/api/product/1?excludeFields[0]=price'
// expected output: { id: 1, code: 't-shirt', name: 'Shirt white and blue', status: 'active' }
You can use this to format your record before this is returned.
For example, mapping DB friendly values to user friendly values, add default values, translation keys, etc.
You can use this to perform extra validations before getting the record. If it returns a Promise, it will be awaited.
The ID
in the pathParameters
can be validated if the database needs it in order to avoid problems. If this feature is active, the statusCode for this kind of error will be 400
. This validation has a default behavior (Model version 6.3.0 or higher is needed), and can also be customized for specific needs.
idStruct
method implemented./api/parent-entity/1/sub-entity/2
the ID validation will be applied only to 2
).❗In case you want to set a different behavior or validation, you can do it by overriding the validateId
method.
eg: Adding validation for parent ids
validateId() {
Object.values(this.parents).forEach(parentId => {
struct('string&!empty')(parentId)
});
struct('objectId')(this.recordId)
}
In case database driver has an idStruct
defined and you want to disable validation, you can do it by overriding the validateId
method.
eg:
validateId() {
// Do nothing
}
FAQs
A package to handle Janis Get APIs
The npm package @janiscommerce/api-get receives a total of 305 weekly downloads. As such, @janiscommerce/api-get popularity was classified as not popular.
We found that @janiscommerce/api-get demonstrated a not healthy version release cadence and project activity because the last version was released 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.