
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
@koopjs/koop-provider-hub-search
Advanced tools
A Koop provider plugin to use the ArcGIS Hub Search API as a data source
This is a Koop provider that extracts datasets from the ArcGIS Hub Search API.
This provider plugin currently only supports streaming ALL datasets matching a given search query. It performs searches using the searchContent function from @esri/hub.js and requests all pages from the API in order.
To perform a search from an output plugin, attach an IContentSearchRequest to the response.
req.res.locals.searchRequest = {
options: {
site: 'my-site.hub.arcgis.com'
},
filter: {
term: 'some search terms'
}
};
A search request must be scoped to include at least one of the following:
filter: { id: '<id here>' })filter: { group: ['<group id here>'] })filter: { orgid: '<or id here>' })options: { site: '<site here>' })If none of the above are provided, an error will be returned. Importantly, if only a site is provided, it is still possible for an error to be returned if the site does not have an organization or group specified as part of its catalog.
Then pass the request object to this.model.pullStream.
const docStream = await this.model.pullStream(req);
What you have now is a Node.js Readable stream. You can pipe the datasets from the readable through a transform stream in order to format them into some other type of output before sending them back to the browser by piping them to the Express.js response. The following simple example also uses the through2 library to conveniently define a transform stream.
async handleRequest (req, res) {
req.res.locals.searchRequest = { /* some search params */ };
const docStream = await this.model.pullStream(req);
docStream
.pipe(through2.obj(function (dataset, enc, callback) {
const transformed = someTranformFunc(dataset);
// the Express.js "res" Writable only accepts strings or Buffers
this.push(JSON.stringify(transformed));
callback();
}))
.pipe(res);
}
# clone and install dependencies
git clone https://github.com/koopjs/koop-output-dcat-ap-201
cd koop-output-dcat-ap-201
npm i
# starts the example Koop app found in ./example-app.
npm run dev
Run the npm t commmand to spin up the automated tests.
FAQs
A Koop provider plugin to use the ArcGIS Hub Search API as a data source
The npm package @koopjs/koop-provider-hub-search receives a total of 21 weekly downloads. As such, @koopjs/koop-provider-hub-search popularity was classified as not popular.
We found that @koopjs/koop-provider-hub-search demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.