andrewmunsell / themeparks

Unofficial API for accessing ride wait times and schedules for Disneyland, Disney World, Universal Studios, and many more parks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

themeparks (previously wdwJS)

An unofficial API library for accessing ride wait times and park opening times for many theme parks around the world, including Disney, Universal and SeaWorld parks.

Build Status npm version Dependency Status npm history

Documentation | Change Log | Supported Parks

Install

npm install themeparks --save

Migrate from wdwJS 3.0

If you were using wdwJS previously, please follow this guide to migrate from wdwJS 3.0 to themeparks 4.0

Example Use

// include the Themeparks library
var Themeparks = require("themeparks");

// list all the parks supported by the library
for (var park in Themeparks.Parks) {
    console.log("* " + new Themeparks.Parks[park]().Name + " (DisneyAPI." + park + ")");
}

// access a specific park
var disneyMagicKingdom = new Themeparks.Parks.WaltDisneyWorldMagicKingdom();

// access wait times by Promise
disneyMagicKingdom.GetWaitTimes().then(function(rides) {
    // print each wait time
    for(var i=0, ride; ride=rides[i++];) {
        console.log(ride.name + ": " + ride.waitTime + " minutes wait");
    }
}, console.error);

// get park opening times
disneyMagicKingdom.GetOpeningTimes().then(function(times) {
    // print opening times
    for(var i=0, time; time=times[i++];) {
        if (time.type == "Operating") {
            console.log("[" + time.date + "] Open from " + time.openingTime + " until " + time.closingTime);
        }
    }
}, console.error);

Caching

It is possible to speed up the library by passing on a caching module.

This is highly recommended. Using caching allows various data to persist between executions of the library, which will speed up initialisation after any application restarts.

First, install the caching system you wish to use with node-cache-manager. For example, the below uses file-system caching (Redis/Mongo or the alike recommended). For this example, you can install the filesystem cacher with npm install cache-manager-fs-binary --save.

To do so, populate the Themeparks.Settings.Cache variables before using the library.

// include the Themeparks library
var Themeparks = require("themeparks");

// initialise caching (see https://github.com/BryanDonovan/node-cache-manager)
var cacheManager = require('cache-manager');
Themeparks.Settings.Cache = cacheManager.caching({
    store: require('cache-manager-fs-binary'),
    options: {
        reviveBuffers: false,
        binaryAsStream: true,
        ttl: 60 * 60,
        maxsize: 1000 * 1000 * 1000,
        path: 'diskcache',
        preventfill: false
    }
});

See https://github.com/BryanDonovan/node-cache-manager for other caching systems available.

Using Promises or callbacks

Both GetWaitTimes and GetOpeningTimes work either through callback or Promises.

This is the same as the above example, but using a callback instead of a Promise.

// access wait times via callback
disneyMagicKingdom.GetWaitTimes(function(err, rides) {
    if (err) return console.error(err);

    // print each wait time
    for(var i=0, ride; ride=rides[i++];) {
        console.log(ride.name + ": " + ride.waitTime + " minutes wait");
    }
});

Change Log

View themeparks Change Log

Parks available

  • Magic Kingdom - Walt Disney World Florida (ThemeParks.Parks.WaltDisneyWorldMagicKingdom)
  • Epcot - Walt Disney World Florida (ThemeParks.Parks.WaltDisneyWorldEpcot)
  • Hollywood Studios - Walt Disney World Florida (ThemeParks.Parks.WaltDisneyWorldHollywoodStudios)
  • Animal Kingdom - Walt Disney World Florida (ThemeParks.Parks.WaltDisneyWorldAnimalKingdom)
  • Magic Kingdom - Disneyland Resort (ThemeParks.Parks.DisneylandResortMagicKingdom)
  • California Adventure - Disneyland Resort (ThemeParks.Parks.DisneylandResortCaliforniaAdventure)
  • Magic Kingdom - Disneyland Paris (ThemeParks.Parks.DisneylandParisMagicKingdom)
  • Walt Disney Studios - Disneyland Paris (ThemeParks.Parks.DisneylandParisWaltDisneyStudios)
  • Magic Kingdom - Shanghai Disney Resort (ThemeParks.Parks.ShanghaiDisneyResortMagicKingdom)
  • Tokyo Disney Resort - Magic Kingdom (ThemeParks.Parks.TokyoDisneyResortMagicKingdom)
  • Tokyo Disney Resort - Disney Sea (ThemeParks.Parks.TokyoDisneyResortDisneySea)
  • Universal Studios Florida (ThemeParks.Parks.UniversalStudiosFlorida)
  • Universal's Islands Of Adventure (ThemeParks.Parks.UniversalIslandsOfAdventure)
  • Universal Studios Hollywood (ThemeParks.Parks.UniversalStudiosHollywood)
  • Seaworld Orlando (ThemeParks.Parks.SeaworldOrlando)
  • Seaworld San Antonio (ThemeParks.Parks.SeaworldSanAntonio)
  • Seaworld San Diego (ThemeParks.Parks.SeaworldSanDiego)
  • Busch Gardens - Tampa Bay (ThemeParks.Parks.BuschGardensTampaBay)
  • Busch Gardens - Williamsburg (ThemeParks.Parks.BuschGardensWilliamsburg)
  • Sesame Place (ThemeParks.Parks.SesamePlace)
  • Europa Park (ThemeParks.Parks.EuropaPark)
  • Six Flags Over Texas (ThemeParks.Parks.SixFlagsOverTexas)
  • Six Flags Over Georgia (ThemeParks.Parks.SixFlagsOverGeorgia)
  • Six Flags St. Louis (ThemeParks.Parks.SixFlagsStLouis)
  • Six Flags Great Adventure (ThemeParks.Parks.SixFlagsGreatAdventure)
  • Six Flags Magic Mountain (ThemeParks.Parks.SixFlagsMagicMountain)
  • Six Flags Great America (ThemeParks.Parks.SixFlagsGreatAmerica)
  • Six Flags Fiesta Texas (ThemeParks.Parks.SixFlagsFiestaTexas)
  • Six Flags Hurricane Harbor, Arlington (ThemeParks.Parks.SixFlagsHurricaneHarborArlington)
  • Six Flags Hurricane Harbor, Los Angeles (ThemeParks.Parks.SixFlagsHurricaneHarborLosAngeles)
  • Six Flags America (ThemeParks.Parks.SixFlagsAmerica)
  • Six Flags Discovery Kingdom (ThemeParks.Parks.SixFlagsDiscoveryKingdom)
  • Six Flags New England (ThemeParks.Parks.SixFlagsNewEngland)
  • Six Flags Hurricane Harbor, Jackson (ThemeParks.Parks.SixFlagsHurricaneHarborJackson)
  • The Great Escape (ThemeParks.Parks.TheGreatEscape)
  • Six Flags White Water, Atlanta (ThemeParks.Parks.SixFlagsWhiteWaterAtlanta)
  • Six Flags México (ThemeParks.Parks.SixFlagsMxico)
  • La Ronde, Montreal (ThemeParks.Parks.LaRondeMontreal)
  • Alton Towers (ThemeParks.Parks.AltonTowers)
  • Parc-Asterix (ThemeParks.Parks.AsterixPark)
  • Hershey Park (ThemeParks.Parks.HersheyPark)

Supported Park Features

Park Wait Times Park Opening Times Ride Opening Times
Magic Kingdom - Walt Disney World Florida
Epcot - Walt Disney World Florida
Hollywood Studios - Walt Disney World Florida
Animal Kingdom - Walt Disney World Florida
Magic Kingdom - Disneyland Resort
California Adventure - Disneyland Resort
Magic Kingdom - Disneyland Paris
Walt Disney Studios - Disneyland Paris
Magic Kingdom - Shanghai Disney Resort
Tokyo Disney Resort - Magic Kingdom
Tokyo Disney Resort - Disney Sea
Universal Studios Florida
Universal's Islands Of Adventure
Universal Studios Hollywood
Seaworld Orlando
Seaworld San Antonio
Seaworld San Diego
Busch Gardens - Tampa Bay
Busch Gardens - Williamsburg
Sesame Place
Europa Park
Six Flags Over Texas
Six Flags Over Georgia
Six Flags St. Louis
Six Flags Great Adventure
Six Flags Magic Mountain
Six Flags Great America
Six Flags Fiesta Texas
Six Flags Hurricane Harbor, Arlington
Six Flags Hurricane Harbor, Los Angeles
Six Flags America
Six Flags Discovery Kingdom
Six Flags New England
Six Flags Hurricane Harbor, Jackson
The Great Escape
Six Flags White Water, Atlanta
Six Flags México
La Ronde, Montreal
Alton Towers
Parc-Asterix
Hershey Park

Result Objects

Ride Wait Times

[
    {
        id: (string or number: uniquely identifying a ride),
        name: (string: ride name),
        waitTime: (number: current wait time in minutes),
        active: (bool: is the ride currently active?),
        fastPass: (bool: is fastpass available for this ride?),
        status: (string: will either be "Operating", "Closed", or "Down"),
        lastUpdate: (JavaScript Date object: last time this ride had new data),
        schedule: { **schedule will only be present if park.SupportsRideSchedules is true**
          openingTime: (timeFormat timestamp: opening time of ride),
          closingTime: (timeFormat timestamp: closing time of ride),
          type: (string: "Operating" or "Closed"),
          special: [ (array of "special" ride times, usually Disney Extra Magic Hours or similar at other parks - field may be null)
            openingTime: (timeFormat timestamp: opening time for ride),
            closingTime: (timeFormat timestamp: closing time for ride),
            type: (string: type of schedule eg. "Extra Magic Hours", but can be "Event" or "Special Ticketed Event" or other)
          ]
        },
    },
    ...
]

Schedules

[
    {
        date: (dateFormat timestamp: day this schedule applies),
        openingTime: (timeFormat timestamp: opening time for requested park - can be null if park is closed),
        closingTime: (timeFormat timestamp: closing time for requested park - can be null if park is closed),
        type: (string: "Operating" or "Closed"),
        special: [ (array of "special" times for this day, usually Disney Extra Magic Hours or similar at other parks - field may be null)
          openingTime: (timeFormat timestamp: opening time for requested park),
          closingTime: (timeFormat timestamp: closing time for requested park),
          type: (string: type of schedule eg. "Extra Magic Hours", but can be "Event" or "Special Ticketed Event" or other)
        ],
    },
    ...
]

Park Object values

There are some values available on each park object that may be useful.

Variable Description
Name Name of the park
Timezone The park's local timezone
Location This park's location (as a "GeoLocation" object, see GeoLocation Docs for available methods/properties)
SupportsWaitTimes Does this park's API support ride wait times?
SupportsOpeningTimes Does this park's API support opening hours?
SupportsRideSchedules Does this park return schedules for rides?
FastPass Does this park have FastPass (or a FastPass-style service)?
TimeNow([momentjs date format]) Current time at this park (optional momentjs date format to return time in)
DateNow([momentjs date format]) Current date at this park (optional momentjs date format to return date in)
UserAgent The HTTP UserAgent this park is using to make API requests (usually randomly generated per-park at runtime)
var ThemeParks = require("themeparks");

// print each park's name, current location, and timezone
for (var park in ThemeParks.Parks) {
  var parkObj = new ThemeParks.Parks[park]();
  console.log("* " + parkObj.Name + " [" + parkObj.Location.toString() + "]: (" + parkObj.Timezone + ")");
}

Prints:

  • Magic Kingdom - Walt Disney World Florida [(28°23′6.72″N, 81°33′50.04″W)]: (America/New_York)
  • Epcot - Walt Disney World Florida [(28°22′28.92″N, 81°32′57.84″W)]: (America/New_York)
  • Hollywood Studios - Walt Disney World Florida [(28°21′27.00″N, 81°33′29.52″W)]: (America/New_York)
  • Animal Kingdom - Walt Disney World Florida [(28°21′19.08″N, 81°35′24.36″W)]: (America/New_York)
  • Magic Kingdom - Disneyland Resort [(33°48′36.39″N, 117°55′8.30″W)]: (America/Los_Angeles)
  • California Adventure - Disneyland Resort [(33°48′31.39″N, 117°55′8.36″W)]: (America/Los_Angeles)
  • Magic Kingdom - Disneyland Paris [(48°52′13.16″N, 2°46′46.82″E)]: (Europe/Paris)
  • Walt Disney Studios - Disneyland Paris [(48°52′5.78″N, 2°46′50.59″E)]: (Europe/Paris)
  • Magic Kingdom - Shanghai Disney Resort [(31°8′35.88″N, 121°39′28.80″E)]: (Asia/Shanghai)
  • Tokyo Disney Resort - Magic Kingdom [(35°38′5.45″N, 139°52′45.46″E)]: (Asia/Tokyo)
  • Tokyo Disney Resort - Disney Sea [(35°37′37.40″N, 139°53′20.75″E)]: (Asia/Tokyo)
  • Universal Studios Florida [(28°28′29.94″N, 81°27′59.39″W)]: (America/New_York)
  • Universal's Islands Of Adventure [(28°28′20.07″N, 81°28′4.28″W)]: (America/New_York)
  • Universal Studios Hollywood [(34°8′14.14″N, 118°21′19.86″W)]: (America/Los_Angeles)
  • Seaworld Orlando [(35°37′37.40″N, 139°53′20.75″E)]: (America/New_York)
  • Seaworld San Antonio [(29°27′30.56″N, 98°41′59.45″W)]: (America/Chicago)
  • Seaworld San Diego [(32°45′51.49″N, 117°13′35.19″W)]: (America/Los_Angeles)
  • Busch Gardens - Tampa Bay [(28°2′0.94″N, 82°25′14.52″W)]: (America/New_York)
  • Busch Gardens - Williamsburg [(37°14′14.01″N, 76°38′42.46″W)]: (America/New_York)
  • Sesame Place [(40°11′8.40″N, 74°52′17.26″W)]: (America/New_York)
  • Europa Park [(48°16′8.15″N, 7°43′17.61″E)]: (Europe/London)
  • Six Flags Over Texas [(32°45′17.95″N, 97°4′13.33″W)]: (America/Chicago)
  • Six Flags Over Georgia [(33°46′14.08″N, 84°33′5.36″W)]: (America/New_York)
  • Six Flags St. Louis [(38°30′47.61″N, 90°40′30.69″W)]: (America/Chicago)
  • Six Flags Great Adventure [(40°8′55.18″N, 74°26′27.69″W)]: (America/New_York)
  • Six Flags Magic Mountain [(34°25′24.46″N, 118°35′42.90″W)]: (America/Los_Angeles)
  • Six Flags Great America [(42°22′12.88″N, 87°56′9.30″W)]: (America/Chicago)
  • Six Flags Fiesta Texas [(29°35′59.28″N, 98°36′32.50″W)]: (America/Chicago)
  • Six Flags Hurricane Harbor, Arlington [(32°45′39.83″N, 97°4′58.44″W)]: (America/Chicago)
  • Six Flags Hurricane Harbor, Los Angeles [(34°25′25.86″N, 118°35′42.05″W)]: (America/Los_Angeles)
  • Six Flags America [(38°54′4.46″N, 76°46′16.59″W)]: (America/New_York)
  • Six Flags Discovery Kingdom [(38°8′19.43″N, 122°13′59.70″W)]: (America/Los_Angeles)
  • Six Flags New England [(42°2′16.54″N, 72°36′55.92″W)]: (America/New_York)
  • Six Flags Hurricane Harbor, Jackson [(40°8′49.57″N, 74°26′13.56″W)]: (America/New_York)
  • The Great Escape [(43°21′1.80″N, 73°41′32.10″W)]: (America/New_York)
  • Six Flags White Water, Atlanta [(33°57′32.86″N, 84°31′10.37″W)]: (America/New_York)
  • Six Flags México [(19°17′43.40″N, 99°12′41.19″W)]: (America/Mexico_City)
  • La Ronde, Montreal [(45°31′19.18″N, 73°32′4.48″W)]: (America/Toronto)
  • Alton Towers [(52°59′27.83″N, 1°53′32.25″W)]: (Europe/London)
  • Parc-Asterix [(49°8′9.75″N, 2°34′21.96″E)]: (Europe/Paris)
  • Hershey Park [(40°17′15.65″N, 76°39′30.88″W)]: (America/New_York)

Development

Building

This project is using ES6 features, which can't be used by legacy version of NodeJS. We're also using "import", which is not available in NodeJS.

So, the project needs to be built into regular JavaScript to work with the older NodeJS versions. This is done by running npm run build

This will compile everything in source/ into dist/.

Building will also create sourcemaps, so any stacktraces will point to the original code in the source/ directory.

Running Tests

themeparks supports mocha unit tests. Install mocha with npm install -g mocha

Run the following to test the library's unit tests (this will build the library and then run functional offline unit tests):

npm test

You can also run unit tests against the source js files using npm run testdev.

There is a separate test for checking the library still connects to park APIs correctly. This is the "online test".

npm run testonline

You can also test an individual park using the PARKID environment variable, for example:

PARKID=UniversalStudiosFlorida npm run testonline

Debug Mode

Themeparks supports the standard NODE_DEBUG environment variable. Pass the name of the library into NODE_DEBUG to turn on debug mode:

NODE_DEBUG=themeparks npm run testonline

Environment variables can be combined:

NODE_DEBUG=themeparks PARKID=UniversalStudiosFlorida npm run testonline

Contributing

Each park inherits it's core logic from lib/park.js.

For each set of parks, a base object should be made with all the core logic for that API/park group.

Then, for each park, a basic shell object should be implemented that just configures the park's base object (and overrides anything in unusual setups).

Throughout the API, please make use of the this.Log() function so debugging parks when things break is easier.

Please raise issues and make pull requests with new features :)

See full contribution guide at Themeparks Contribution Guide.

A rough guide for adding new parks is also available at Adding New Parks to the ThemeParks API.

People using themeparks

If you're using themeparks for a project, please let me know! I'd love to see what people are doing!

Pebble Apps

About

Unofficial API for accessing ride wait times and schedules for Disneyland, Disney World, Universal Studios, and many more parks


Languages

Language:JavaScript 100.0%