Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@dnode/request-maxdome

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dnode/request-maxdome

[![dependencies | 1 | 61](https://img.shields.io/badge/dependencies-1%20|%2061-blue.svg)](DEPENDENCIES.md)

latest
Source
npmnpm
Version
4.4.1
Version published
Maintainers
1
Created
Source

dependencies | 1 | 61

Usage

Attention: @dnode/request-maxdome will use several information from the package.json and add them to the headers. This makes it easier to identify the source of the request in the logs of maxdome if there are issues. The information which will be used:

  • user-agent: ${app.name} v${app.version} via ${lib.name} v${lib.version}

Initialize with useful environment variables

apikey and appid are only needed if there are requests with another platform as webportal. hostname and protocol has the production api (https://heimdall.maxdome.de) as default.

const maxdome = require('@dnode/request-maxdome').getRequestBuilder({
  maxdomeOptions: {
    apikey: process.env.MAXDOME_APIKEY,
    appid: process.env.MAXDOME_APPID,
  }
});

Get information for a specific asset by ID

const maxdome = require('@dnode/request-maxdome').getRequestBuilder();
const AssetOptions = require('@dnode/request-maxdome').AssetOptions;

const assetId = 'assetId';
const assets = await maxdome.send(new AssetOptions(assetId));

Search assets by title and get the first 3 results

const maxdome = require('@dnode/request-maxdome').getRequestBuilder();
const AssetsQueryOptions = require('@dnode/request-maxdome').AssetsQueryOptions;

const title = 'title';
const assetsQueryOptions = new AssetsQueryOptions()
  .addFilter('contentTypeSeriesOrMovies')
  .addFilter('search', title)
  .addQuery('pageSize', 3);
    
const assets = await maxdome.request('assets').send(assetsQueryOptions);

Get the 50 newest store movies

const maxdome = require('@dnode/request-maxdome').getRequestBuilder();
const AssetsQueryOptions = require('@dnode/request-maxdome').AssetsQueryOptions;

const assetsQueryOptions = new AssetsQueryOptions()
  .addFilter('availableWithoutPackage')
  .addFilter('movies')
  .addFilter('new')
  .addFilter('notUnlisted')
  .addQuery('pageSize', 50)
  .addSort('activeLicenseStart', 'desc');
    
const assets = await maxdome.request('assets').send(assetsQueryOptions);

FAQs

Package last updated on 07 Jun 2018

Did you know?

Socket

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.

Install

Related posts