npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

odata-batch

v1.2.0

Published

a simple lib for send and recieve calls odata batch

Downloads

458

Readme

odata-batch

This module formats both the request and response of batch operations. It supports OData v2 but it may also support OData V3.

Install

npm install odata-batch --save

Example

You only need to generate an array with the requests you want to send, the requests will be returned in the same order as in the array.

const { ODataBatch } = require('odata-batch')

const calls = [
    {
        "method": "PUT",
        "url": "https://****",
        "data": {
            "__metadata": {
                "uri": "Candidate('200')"
            },
            "name": "Sebastian"
        }
    },
    {
        "method": "PUT",
        "url": "https://****",
        "data": {
            "__metadata": {
                "uri": "Candidate('201')"
            },
            "name": "Bruno"
        }
    },
    {
        "method": "POST",
        "url": "https://****",
        "data": {
            "__metadata": {
                "uri": "Candidate"
            },
            "name": "Test"
        }
    },
];

// Can add your own headers. Authorization header will be override auth param. Accept and Content-type headers will be ignored.
const headers = {
    'Accept-Charset': 'utf-8',
    'Accept-Encoding': 'gzip, deflate',
    'Accept-Language': 'en-US',
    'Cache-Control': 'no-cache'
};

const config = {
    url: `https://*****/$batch`,
    headers,
    auth: '******', // base64 string for basic auth
    calls,
};

var batchOperation = new ODataBatch(config);

batchOperation.send()
    .then(async function (a) {
        console.log(a);
    })
    .catch(function (e) {
        console.error(e);
    });

Extends

By default, axios is used as the HTTP connection library, but you can create your own adapter for your preferred HTTP library.

You need a class with a method send that will recieve necesary data for create the request and a class for format the batch response. Need as second param an object with data and headers. In method send of your class, you will recieve the next params:

  • url: url of your system
  • batchRequest: raw response from odata
  • config: an object with headers that we will use for batch request, add more configs if you need.
  • accept: is the response type in each individual batch subquery, is necessary for format correctly individual responses.
  • BatchParser: class that will parse the response.

Additionally, to respect the typescript typing, we use a createBatchResponse function to create the class, export it from the module.

ODataBatchAxiosRepository.ts

import axios, { AxiosRequestConfig } from 'axios';
import {
    ODataBatchRepository,
    createBatchResponse,
    BatchResponseConstructor
    } from "odata-batch";

export class ODataBatchAxiosRepository implements     ODataBatchRepository {
    async send(
        url: string,
        batchRequest: string,
        config: AxiosRequestConfig | undefined,
        accept: string,
        BatchParser: BatchResponseConstructor
    ): Promise<any> {

        const request = await axios.post(url,     batchRequest, config);

        console.log('from custom adapter');

        return createBatchResponse(BatchParser,     request, accept).response;
    }
}

Based in: