Character Vault
Any Concept / Any System
Compendium
Your System Come To Life
Roll20 for Android
Streamlined for your Tablet
Roll20 for iPad
Streamlined for your Tablet

Personal tools

Difference between revisions of "Mod:Sandbox Model"

From Roll20 Wiki

Jump to: navigation, search
Line 1: Line 1:
 
<div style="background:#f0e2a1; border: 3px solid #dbc870; padding: 10px;">
 
<div style="background:#f0e2a1; border: 3px solid #dbc870; padding: 10px;">
 
<big>'''''Attention:'''''
 
<big>'''''Attention:'''''
''Roll20 is no longer maintaining this document on the community wiki. For the most up-to-date information please visit this page on our [http://Roll20.net/help Help Center] for assistance: [https://roll20.zendesk.com/hc/en-us/articles/360037772853-API-Sandbox-Model Here]. For more information you can email us at Team@roll20.net''</big>
+
''Roll20 is no longer maintaining this document on the community wiki. For the most up-to-date information please visit this page on our help center for assistance: [https://roll20.zendesk.com/hc/en-us/articles/360037772853-API-Sandbox-Model Here].''</big>
 
</div>
 
</div>
  

Revision as of 16:59, 15 May 2020

Attention: Roll20 is no longer maintaining this document on the community wiki. For the most up-to-date information please visit this page on our help center for assistance: Here.


The Roll20 API functions by running a special server-side virtual machine for each campaign. This provides a sandbox where your custom scripts can run without any danger of them affecting other user's campaigns. In addition, this provides a layer of security which prevents a malicious GM from writing scripts which could do bad things like access a player's computer or stall their computer with an infinite loop.

How it Works

If you're curious in the technical details of how the API functions, here's a brief diagram:

User-written scripts ===> API Server ===> Campaign Sandbox <===> Real-Time Sync Server

The Roll20 API Server listens for activity on your campaign. When it detects that people are using your campaign, it spins up a sandbox for your campaign and loads any API scripts that you have written into the sandbox. The sandbox can receive and send data directly to the real-time sync server, which allows it to respond to events and make changes to the game.

Restrictions from Normal Javascript

While Roll20 scripts are Javascript, there are some restrictions you should be aware of if you're used to programing Javascript for websites. Roll20 scripts are executed in a separate sandbox from the Roll20 site. This provides an additional layer of separation and security for our system and your players. This sandbox means that:

  • You cannot make HTTP Requests (AJAX).
  • You cannot load external scripts or libraries (e.g. jQuery).
  • The environment is Javascript, but it is not an environment in a browser, so there is no DOM, page elements, CSS, document, window, etc.