Skip to content

eladnava/pikud-haoref-api

Repository files navigation

pikud-haoref-api

npm version

A Node.js wrapper library for Pikud Haoref's unofficial alerts API. It allows you to easily query for the currently active alerts in Israel.

Note: This API is only accessible from within Israel. Either run the script on an Israeli machine, or use a proxy.

Usage

First, install the package using npm:

npm install pikud-haoref-api --save

Then, use the following code to poll for the currently-active alert:

var pikudHaoref = require('pikud-haoref-api');

// Set polling interval in millis
var interval = 5000;

// Define polling function
var poll = function () {
    // Optional Israeli proxy if running outside Israeli borders
    var options = {
        proxy: 'http://user:pass@hostname:port/'
    };

    // Get currently active alert
    // Example response:
    // { 
    //    type: 'missiles', 
    //    cities: ['תל אביב - מזרח', 'חיפה - כרמל ועיר תחתית', 'עין גדי'],
    //    instructions: 'היכנסו למבנה, נעלו את הדלתות וסגרו את החלונות'
    // }
    pikudHaoref.getActiveAlert(function (err, alert) {
        // Schedule polling in X millis
        setTimeout(poll, interval);
        
        // Log errors
        if (err) {
            return console.log('Retrieving active alert failed: ', err);
        }

        // Alert header
        console.log('Currently active alert:');

        // Log the alert (if any)
        console.log(alert);

        // Line break for readability
        console.log();
    }, options);
}

// Start polling for active alert
poll();

Sample Alert Objects

When there is a missle alert:

{ 
    type: 'missiles', 
    cities: ['תל אביב - מזרח', 'חיפה - כרמל ועיר תחתית', 'עין גדי'],
    instructions: 'היכנסו למבנה, נעלו את הדלתות וסגרו את החלונות'
}

When there is no active alert:

{ 
    type: 'none', 
    cities: [] 
}

Alert Types

Breaking change in version 4.0.0:

  • newsFlash - earlyWarning has been renamed to newsFlash as Pikud Haoref has recently started issuing "safe to leave shelter" alerts using the same category number as early warnings. Check alert.instructions to determine the type of action required from civilians.

Added in version 3.0.7:

  • earlyWarning - no longer in use

Added in version 3.0.0:

  • none
  • missiles
  • radiologicalEvent
  • earthQuake
  • tsunami
  • hostileAircraftIntrusion
  • hazardousMaterials
  • terroristInfiltration
  • missilesDrill
  • earthQuakeDrill
  • radiologicalEventDrill
  • tsunamiDrill
  • hostileAircraftIntrusionDrill
  • hazardousMaterialsDrill
  • terroristInfiltrationDrill
  • unknown

Requirements

  • Node.js v4.2.x+ for ES6's for-of loop support

Special Thanks

  • Thanks to Noam Hashmonai for the Spanish translation
  • Thanks to the developers of the Tzofar app for the map polygon data

License

Apache 2.0

About

A Node.js wrapper library for Pikud Haoref's unofficial rocket alert API.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 7