In Memoriam: Tai'lahr

OpenUru.org, along with the rest of the Mystonline community, is mourning the loss of Tai'lahr on October 16th, 2019.

Rest in Peace, friend.

Difference between revisions of "Cavern Status Widget"

From OpenUru
Jump to navigation Jump to search
m (→‎PHP: Fix formatting)
(→‎Mini Widget: Correct lang setting to BBCode)
 
(40 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
This is a simple widget that you can use in webpages to display the current status of the MOULagain servers.
 
This is a simple widget that you can use in webpages to display the current status of the MOULagain servers.
  
{{draft}}
+
==General==
 +
 
 +
During the development of the styling for the OpenUru.org website, it was felt that offering an indication of whether the MOULa cavern was open or not could be a useful feature. This already (partly) existed in the Cyan MOULa client launcher, in the form of the "welcome" message displayed during startup. By "piggybacking" on the source of that message, and after negotiating with Cyan on a standard for flags within the messages, it became possible to provide green, yellow or red status lights:
 +
<p><div style="float: left">http://assets.openuru.org/wiki/img/led-green.gif</div>&nbsp; - Open. Logins are unrestricted.</p>
 +
<p><div style="float: left">http://assets.openuru.org/wiki/img/led-yellow.gif</div>&nbsp; - Restrictions. The cavern is open but some restrictions are in place, e.g. there is downtime scheduled to occur shortly.</p>
 +
<p><div style="float: left">http://assets.openuru.org/wiki/img/led-red.gif</div>&nbsp; - Closed. No user logins are permitted.</p>
 +
 
 +
A link back to the "Play" page at mystonline.com was included in the displayed status to help support Cyan Worlds, as well as the entirety of the status message, which may at times include promotional messages for other Cyan products.
 +
 
 +
In response to enquiries following the announcement of this feature, a widget was split out from the site styling to allow others to include this in their own webpages. The widget can be made to display in various forms and styles using the control options described in the [[#Usage|Usage section]]. Some examples are given in the following images:
 +
 
 +
 
 +
<center>http://assets.openuru.org/wiki/cavstat/cavstat1.png<br>
 +
'''Full Cavern Status with border line added'''</center>
 +
 
 +
 
 +
<center>http://assets.openuru.org/wiki/cavstat/cavstat2.png<br>
 +
'''Minimised Cavern Status'''</center>
 +
 
 +
 
 +
<center>http://assets.openuru.org/wiki/cavstat/cavstat3.png<br>
 +
'''Cavern Status with alternative colors'''</center>
  
==General==
+
=== CAVCON Indication ===
 +
The widget has been updated following the discovery in early October 2011 that the donation "CAVCON" status being reported on the mystonline.com forums had been in error for some considerable time[http://mystonline.com/forums/viewtopic.php?p=377307#377307]. Cyan Worlds have started to include a CAVCON indication within the welcome message text. In an effort to highlight this status the widget now includes a colored icon corresponding to the declared CAVCON level, as shown below. No icon is shown if there is no CAVCON indication included in the welcome message.
 +
 
 +
'''The CAVCON scale:'''
 +
<p><div style="float: left">http://assets.openuru.org/wiki/icons/dollar_red2.png</div>&nbsp; - CAVCON 1: Donations are less than MO:ULagain expenses, and the reserve fund is empty.</p>
 +
<p><div style="float: left">http://assets.openuru.org/wiki/icons/dollar_orange2.png</div>&nbsp; - CAVCON 2: Donations are less than MO:ULagain expenses, and the reserve fund is being used to help pay for MO:ULagain expenses.</p>
 +
<p><div style="float: left">http://assets.openuru.org/wiki/icons/dollar_yellow2.png</div>&nbsp; - CAVCON 3: Donations are roughly equal to MO:ULagain expenses.</p>
 +
<p><div style="float: left">http://assets.openuru.org/wiki/icons/dollar_blue2.png</div>&nbsp; - CAVCON 4: Donations are exceeding MO:ULagain expenses, and a small reserve fund is being built.</p>
 +
<p><div style="float: left">http://assets.openuru.org/wiki/icons/dollar_green2.png</div>&nbsp; - CAVCON 5: Donations are exceeding MO:ULagain expenses, there are a couple of months of MO:ULagain expenses in reserve, and extra money can be put toward server upgrades, bug fixes, new content, incorporating fan created content, etc.</p>
  
 
==Usage==
 
==Usage==
 
The simplest way to use the Cavern Status Widget is by inserting an iframe in your webpage at the point you'd like the widget to appear:
 
The simplest way to use the Cavern Status Widget is by inserting an iframe in your webpage at the point you'd like the widget to appear:
  
<tt>
+
<syntaxhighlight lang="html4strict">
:<iframe <nowiki>src="http://www.openuru.org/tools/cavstat.php"</nowiki> width="550px" height="120px" frameborder="0">
+
  <iframe src="http://www.openuru.org/tools/cavstat.php" width="550px" height="120px" frameborder="0">
:: <p>Your browser does not support iframes.</p>
+
    <p>Your browser does not support iframes.</p>
:</iframe>
+
  </iframe>
</tt>
+
</syntaxhighlight>
 +
 +
The width and height settings in the iframe determine the size of the space allowed in your page for the status message. If the message box can't be fitted inside that space, then scroll bars may appear. Setting <code>frameborder = "0"</code> hides the rather ugly boundary that would otherwise be shown.
 +
 
 +
To avoid using an iframe or have more control over presentation, see [[#Advanced_topics|Advanced topics]].
 +
 
 +
=== Usage Notes ===
 +
Recent updates to the code behind the widget introduced local caching of the status message that is fetched from Cyan's support server. This has a number of effects:
 +
# Page display is faster since there no longer is a need to wait on an additional GET each time the status message is displayed.
 +
# Page load will not "hang" for an extended time if the Cyan support server is offline.
 +
# Loading on the Cyan support server is limited and flattened out.
 +
# The displayed state of the Cavern may "lag" the true state by up to one minute (the cache refresh interval).
 +
 
 
   
 
   
The width and height settings in the iframe determine the size of the space allowed in your page for the status message. If the message box can't be fitted inside that space, then scroll bars may appear. Setting <tt>frameborder = "0"</tt> hides the rather ugly boundary that would otherwise be shown.
+
Please remember that the Cavern Status display is not dynamic: It will ''only'' update if you refresh or reload the page you are viewing. There is no universally easy way to have the server "push" a real-time update to your browser.
  
 
==Controlling the appearance==
 
==Controlling the appearance==
Line 37: Line 78:
 
** mini : Single line display, with only the cavern status included.
 
** mini : Single line display, with only the cavern status included.
 
** raw : Most inline styling is removed and all other parameters are ignored. Used when applying local styling in more advanced uses (see below).
 
** raw : Most inline styling is removed and all other parameters are ignored. Used when applying local styling in more advanced uses (see below).
 +
** text : All styling is removed, with only the cavern status in plain text.
 +
** jsonp : Provides the output in JSON-P (Javascript Object Notation with Padding) format, intended for javascript/jQuery users. See the additional notes below on using this option.
  
 
Example:
 
Example:
<tt>
+
<syntaxhighlight lang="html4strict">
:<iframe <nowiki>src="http://www.openuru.org/tools/cavstat.php?bgcolor=ffdddd&hdsize=0.9em&border=000099"</nowiki> width="550px" height="120px" frameborder="0">
+
  <iframe src="http://www.openuru.org/tools/cavstat.php?bgcolor=ffdddd&hdsize=0.9em&border=000099" width="550px" height="120px" frameborder="0">
:: <p>Your browser does not support iframes.</p>
+
    <p>Your browser does not support iframes.</p>
:</iframe>
+
  </iframe>
</tt>
+
</syntaxhighlight>
 +
 
 +
== Mini Widget ==
 +
 
 +
The "Mini Widget" is a small, graphic element intended for basic status indication or for inclusion in things like forum signatures.
 +
 
 +
There are three versions of this and the examples given will work for inserting the widget into many popular forums:
 +
* cavstat.gif - http://assets.openuru.org/wiki/cavstat/open.gif : http://assets.openuru.org/wiki/cavstat/closed.gif
 +
<syntaxhighlight lang="bbcode">
 +
  [img]http://www.openuru.org/tools/cavstat.gif[/img]
 +
</syntaxhighlight>
 +
* cavstat_b.gif - http://assets.openuru.org/wiki/cavstat/awake.gif : http://assets.openuru.org/wiki/cavstat/asleep.gif
 +
<syntaxhighlight lang="bbcode">
 +
  [img]http://www.openuru.org/tools/cavstat_b.gif[/img]
 +
</syntaxhighlight>
 +
* cavstat_c.gif - http://assets.openuru.org/wiki/cavstat/green.gif : http://assets.openuru.org/wiki/cavstat/yellow.gif : http://assets.openuru.org/wiki/cavstat/red.gif
 +
<syntaxhighlight lang="bbcode">
 +
  [img]http://www.openuru.org/tools/cavstat_c.gif[/img]
 +
</syntaxhighlight>
 +
Note that only the cavstat_c variant will show all three possible states: The others will treat "Restrictions" and "Closed" as the same state (which is effectively true for the typical user).
  
 
==Advanced topics==
 
==Advanced topics==
Line 50: Line 112:
  
 
This will produce a code fragment that looks similar to:
 
This will produce a code fragment that looks similar to:
<code>
+
<syntaxhighlight lang="html4strict">
:<nowiki><div id="cspanel"></nowiki>
+
  <div id="cspanel">
::<nowiki><span class="cshead">Cavern Status:</span></nowiki>
+
    <span class="cshead">Cavern Status:</span>
::<nowiki><img src="http://www.openuru.org/sitestyle/img/led-green.gif"> Open for exploration!</nowiki>
+
    <img src="http://www.openuru.org/sitestyle/img/led-green.gif"> Open for exploration!  
::<nowiki><div id="cavstat_link"></nowiki>
+
    <div id="cavstat_link">
:::<nowiki>- <a href="http://mystonline.com/play/"> Sign up to play at MystOnline.com!</a></nowiki>
+
      - <a href="http://mystonline.com/play/"> Sign up to play at MystOnline.com!</a>
::<nowiki></div></nowiki>
+
    </div>
::<nowiki><div id="cavstat_row2"></nowiki>
+
    <div id="cavstat_row2">
:::<nowiki><span class="cshead">Developer Message:</span> Welcome to Myst Online: Uru Live!</nowiki>
+
      <span class="cshead">Developer Message:</span> Welcome to Myst Online: Uru Live!
::<nowiki></div></nowiki>
+
    </div>
::<nowiki><div style="font-size: 8px; text-align: right;"><a href="http://www.openuru.org/">www.openuru.org</a></div></nowiki>
+
    <div style="font-size: 8px; text-align: right;"><a href="http://www.openuru.org/">www.openuru.org</a></div>
:<nowiki></div></nowiki>
+
  </div>
</code>
+
</syntaxhighlight>
 +
 
  
 
Include the following functions in your PHP:
 
Include the following functions in your PHP:
<code>
+
<syntaxhighlight lang="php">
 
   // Check availability of site
 
   // Check availability of site
 
   function isURLOnline($sSiteToCheck)
 
   function isURLOnline($sSiteToCheck)
Line 131: Line 194:
 
     }
 
     }
 
   }
 
   }
</code>
+
</syntaxhighlight>
  
 
Fetch the code fragment using a line similar to this:
 
Fetch the code fragment using a line similar to this:
  
<code>
+
<syntaxhighlight lang="php">
$cavernStatus=getURL("<nowiki>http://www.openuru.org/tools/cavstat.php?type=raw</nowiki>");
+
  $cavernStatus=getURL("<nowiki>http://www.openuru.org/tools/cavstat.php?type=raw</nowiki>");
</code>
+
</syntaxhighlight>
  
 
This will give you the entire fragment in a string, $cavernStatus, that you can then echo to your own page or manipulate as you wish.
 
This will give you the entire fragment in a string, $cavernStatus, that you can then echo to your own page or manipulate as you wish.
  
=== JQuery ===
+
=== JSON-P ===
{{tba}}
+
Setting the type argument in a request to "jsonp" will return output formatted for Javascript Object Notation with Padding, essentially an object of data passed to a callback function. This method is essential if you are trying to fetch the CAVCON data with javascript (due to the same-origin-policy applied by most browsers). To know more about JSONP, its usage and the reason of its existance read [http://en.wikipedia.org/wiki/JSONP Wikipedia's Article].
 +
When using this option, it is also necessary to specify the function name of the callback procedure that will parse the returned array in the client, so a second argument, jsoncallback, must be supplied as in the following example:
 +
:http://www.openuru.org/tools/cavstat.php?type=jsonp&jsoncallback=anyFunctionName
 +
Note that the name of the callback function is not important as far as the server is concerned, but it '''must''' be supplied otherwise an error message will be returned.
 +
 
 +
In response, the server will return data similar to the following:
 +
<syntaxhighlight lang="jquery">
 +
anyFunctionName({"LED": "http://www.openuru.org/sitestyle/img/led-green.gif",
 +
"State": "Open for exploration!", "Link": "Sign up to play at MystOnline.com!",
 +
"LinkURL": "http://mystonline.com/play/", "Message": "Welcome to Myst Online: Uru Live!
 +
Bug Chucker now available on Android Marketplace!", "Origin": "www.openuru.org",
 +
"OriginURL": "http://www.openuru.org/", "CAVCON": "http://www.openuru.org/sitestyle/img/dollar_yellow2.png"})
 +
</syntaxhighlight>
 +
 
 +
For clarity, the array returned in the padded object consists of the following members:
 +
* "LED": A URL to the applicable colored status "lamp"; red green or yellow,
 +
* "State": Text string indicating the state of the cavern,
 +
* "Link": Text message intended to be used as anchor text for LinkURL,
 +
* "LinkURL": URL to the current MOULa sign-up/play page at mystonline.com,
 +
* "Message": The Cyan developer message, as shown on the MOULa startup dialogs,
 +
* "Origin": Text message intended to be used as anchor text for OriginURL.
 +
* "OriginURL": URL of the site that the status message has been delivered from.
 +
* "CAVCON": A URL for an icon representing the current CAVCON status. May be empty if a valid CAVCON status cannot be determined from the developer message.
 +
There is no requirement that the end user implements all of these, or that they represent them in any particular manner giving the page designer complete freedom to manage the usage, format and layout as best suits their intended page layout.
 +
 
 +
=== jQuery ===
 +
The following code can be used to dynamically update the cavern widget on a webpage. This is an independent code, it does not need the PHP code above, just include the jQuery library in your webpage.
 +
 
 +
Include the following code in the scripts of your webpage. The code assumes you are not using the "No Conflict" option of jQuery. If you are using it, change all the calls to "$" with calls to "jQuery".
 +
<syntaxhighlight lang="jquery">
 +
function CavernStatus(el){
 +
  $.ajax({
 +
    type:'GET',
 +
    url:'http://www.openuru.org/tools/cavstat.php',
 +
    data: 'type=jsonp',
 +
    dataType: 'jsonp',
 +
    jsonp: 'jsoncallback',
 +
    crossDomain: true,
 +
    success: function(data){
 +
      //In this point, if you want, you can manipulate the data received from OpenUru
 +
      output='<div id="cspanel"><span class="cshead">Cavern Status:</span><img src="'+data.LED+'"> '+data.State+'<div id="cavstat_link"> - <a href="'+data.LinkURL+'" target="_blank"> '+data.Link+'</a></div><div id="cavstat_row2"><span class="cshead">Developer Message:</span> '+data.Message+' </div><div style="font-size: 8px; text-align: right;"><a href="'+data.OriginURL+'">'+data.Origin+'</a></div></div>';
 +
      $(el).html(output);
 +
    },
 +
    error: function(jqXHR, textStatus, errorThrown){//What to do if error happens
 +
      //You can choose to let the user know the request didn't succeed
 +
    },
 +
    timeout: 1500//Script timesout in 1.5 seconds if server doesn't respond
 +
  })
 +
}
 +
</syntaxhighlight>
 +
In the code above you can see the ''output'' variable that contains the HTML code that will be generated in your web page, you can customize it to follow your website design or preferences. To know more about the member variables of the ''data'' object please consult the section ''JSONP'' above.
 +
Optionally you can insert some error handling code in the error function, where we placed just a comment.
  
I'm not too familiar with using the JQuery library, so I'll leave it for someone else to contribute here, but I don't expect to be much different from using PHP.
+
Call the CavernStatus function somewhere in your code (usually when document is ready, with $.ready()), passing the jQuery selector for the element where you want to put the widget. Call it every X seconds to make the widget update dynamically.
 +
In this example we assume the id of the element that will contain the Cavern Status Widget is "widget"
 +
<syntaxhighlight lang="jquery">
 +
$(function(){//Short version of $.ready()
 +
  CavernStatus('#widget')//Initial Loading
 +
  setInterval("CavernStatus('#widget')",600000)//Update the widget every 10 minutes.
 +
})
 +
</syntaxhighlight>
  
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:OpenUru.org]]
 
[[Category:OpenUru.org]]

Latest revision as of 13:57, 11 June 2017

This is a simple widget that you can use in webpages to display the current status of the MOULagain servers.

General

During the development of the styling for the OpenUru.org website, it was felt that offering an indication of whether the MOULa cavern was open or not could be a useful feature. This already (partly) existed in the Cyan MOULa client launcher, in the form of the "welcome" message displayed during startup. By "piggybacking" on the source of that message, and after negotiating with Cyan on a standard for flags within the messages, it became possible to provide green, yellow or red status lights:

http://assets.openuru.org/wiki/img/led-green.gif

  - Open. Logins are unrestricted.

http://assets.openuru.org/wiki/img/led-yellow.gif

  - Restrictions. The cavern is open but some restrictions are in place, e.g. there is downtime scheduled to occur shortly.

http://assets.openuru.org/wiki/img/led-red.gif

  - Closed. No user logins are permitted.

A link back to the "Play" page at mystonline.com was included in the displayed status to help support Cyan Worlds, as well as the entirety of the status message, which may at times include promotional messages for other Cyan products.

In response to enquiries following the announcement of this feature, a widget was split out from the site styling to allow others to include this in their own webpages. The widget can be made to display in various forms and styles using the control options described in the Usage section. Some examples are given in the following images:


http://assets.openuru.org/wiki/cavstat/cavstat1.png
Full Cavern Status with border line added


http://assets.openuru.org/wiki/cavstat/cavstat2.png
Minimised Cavern Status


http://assets.openuru.org/wiki/cavstat/cavstat3.png
Cavern Status with alternative colors

CAVCON Indication

The widget has been updated following the discovery in early October 2011 that the donation "CAVCON" status being reported on the mystonline.com forums had been in error for some considerable time[1]. Cyan Worlds have started to include a CAVCON indication within the welcome message text. In an effort to highlight this status the widget now includes a colored icon corresponding to the declared CAVCON level, as shown below. No icon is shown if there is no CAVCON indication included in the welcome message.

The CAVCON scale:

http://assets.openuru.org/wiki/icons/dollar_red2.png

  - CAVCON 1: Donations are less than MO:ULagain expenses, and the reserve fund is empty.

http://assets.openuru.org/wiki/icons/dollar_orange2.png

  - CAVCON 2: Donations are less than MO:ULagain expenses, and the reserve fund is being used to help pay for MO:ULagain expenses.

http://assets.openuru.org/wiki/icons/dollar_yellow2.png

  - CAVCON 3: Donations are roughly equal to MO:ULagain expenses.

http://assets.openuru.org/wiki/icons/dollar_blue2.png

  - CAVCON 4: Donations are exceeding MO:ULagain expenses, and a small reserve fund is being built.

http://assets.openuru.org/wiki/icons/dollar_green2.png

  - CAVCON 5: Donations are exceeding MO:ULagain expenses, there are a couple of months of MO:ULagain expenses in reserve, and extra money can be put toward server upgrades, bug fixes, new content, incorporating fan created content, etc.

Usage

The simplest way to use the Cavern Status Widget is by inserting an iframe in your webpage at the point you'd like the widget to appear:

  <iframe src="http://www.openuru.org/tools/cavstat.php" width="550px" height="120px" frameborder="0">
    <p>Your browser does not support iframes.</p>
  </iframe>

The width and height settings in the iframe determine the size of the space allowed in your page for the status message. If the message box can't be fitted inside that space, then scroll bars may appear. Setting frameborder = "0" hides the rather ugly boundary that would otherwise be shown.

To avoid using an iframe or have more control over presentation, see Advanced topics.

Usage Notes

Recent updates to the code behind the widget introduced local caching of the status message that is fetched from Cyan's support server. This has a number of effects:

  1. Page display is faster since there no longer is a need to wait on an additional GET each time the status message is displayed.
  2. Page load will not "hang" for an extended time if the Cyan support server is offline.
  3. Loading on the Cyan support server is limited and flattened out.
  4. The displayed state of the Cavern may "lag" the true state by up to one minute (the cache refresh interval).


Please remember that the Cavern Status display is not dynamic: It will only update if you refresh or reload the page you are viewing. There is no universally easy way to have the server "push" a real-time update to your browser.

Controlling the appearance

You can control the appearance of the status message so that it blends better with your webpage: Add a '?' after the call to cavstat.php then list the parameter=value pairs, separating each with '&' and making sure to avoid leaving any spaces. The possible parameters are:

  • color= The color of the text as a hex value, omitting the usual leading '#' symbol. Defaults to black if parameter omitted.
  • bgcolor= The background color of the box containing the status message, as a hex value, omitting the usual leading '#' symbol. Defaults to grey (DDDDDD) if parameter omitted.
  • txtsize= The size of the body text of the message, e.g. 12pt, 14px, 1.1em. Defaults to 1.0em if parameter is omitted.
  • hdsize= The size of the heading text of the message, e.g. 12pt, 14px, 1.1em. The headings are bold, so you may want to reduce the size compared to the main text to restore some "balance". Defaults to 0.8em if parameter is omitted.
  • width= The width of the box containing the status message, in px or %. Note that the iframe may also have a width specified and you may need to adjust both get a satisfactory result. Defaults to 500px if parameter is omitted.
  • height= The height of the box containing the status message, in px or %. Note that the iframe may also have a height specified and you may need to adjust both get a satisfactory result. Defaults to 60px if parameter is omitted.
  • border= The color of the border around the box containing the status message, as a hex value, omitting the usual leading '#' symbol. The border is a 1px solid line and is only displayed if a value is specified, otherwise the box will be borderless (default).
  • type= Controls the display and styling type:
    • maxi : The default display - shows the cavern status indication and a link to Cyan's "Play" page on the first line, and the Cyan "Developer's message" on the second line.
    • midi : Single line display, with only the cavern status and the "Play" link.
    • mini : Single line display, with only the cavern status included.
    • raw : Most inline styling is removed and all other parameters are ignored. Used when applying local styling in more advanced uses (see below).
    • text : All styling is removed, with only the cavern status in plain text.
    • jsonp : Provides the output in JSON-P (Javascript Object Notation with Padding) format, intended for javascript/jQuery users. See the additional notes below on using this option.

Example:

  <iframe src="http://www.openuru.org/tools/cavstat.php?bgcolor=ffdddd&hdsize=0.9em&border=000099" width="550px" height="120px" frameborder="0">
    <p>Your browser does not support iframes.</p>
  </iframe>

Mini Widget

The "Mini Widget" is a small, graphic element intended for basic status indication or for inclusion in things like forum signatures.

There are three versions of this and the examples given will work for inserting the widget into many popular forums:

  [img]http://www.openuru.org/tools/cavstat.gif[/img]
  [img]http://www.openuru.org/tools/cavstat_b.gif[/img]
  [img]http://www.openuru.org/tools/cavstat_c.gif[/img]

Note that only the cavstat_c variant will show all three possible states: The others will treat "Restrictions" and "Closed" as the same state (which is effectively true for the typical user).

Advanced topics

PHP

If your page is written in PHP, you could use the cURL library to fetch the widget output and build it into your page. This would allow you to use the IDs and classes along with your own page CSS to apply styling. For this, you need to ensure that all unwanted inline styling is removed from the widget by using the ?type=raw control.

This will produce a code fragment that looks similar to:

  <div id="cspanel">
    <span class="cshead">Cavern Status:</span>
    <img src="http://www.openuru.org/sitestyle/img/led-green.gif"> Open for exploration! 
    <div id="cavstat_link">
      - <a href="http://mystonline.com/play/"> Sign up to play at MystOnline.com!</a>
    </div>
    <div id="cavstat_row2">
      <span class="cshead">Developer Message:</span> Welcome to Myst Online: Uru Live!
    </div>
    <div style="font-size: 8px; text-align: right;"><a href="http://www.openuru.org/">www.openuru.org</a></div>
  </div>


Include the following functions in your PHP:

  // Check availability of site
  function isURLOnline($sSiteToCheck)
  {
  	if(phpversion() > "5.2")
    {
      if(function_exists('get_headers')==True && ini_get('allow_url_fopen') == true)
      {
        $sIUOTemp = @get_headers($sSiteToCheck);
        if($sIUOTemp == '')
        {
          return True; // Assume it's online even when nothing is returned
        }
        else
        {
          if(strpos($sIUOTemp[0], '200') == true)
          {
            return True;
          }
          else
          {
            return False;
          }
        }
      }
      else
      {
        return True; // Assume true if we can't check it .......
      }
    }
    else
    {
      return True; // get_headers apparently isn't available in PHP4
    }
  }

  // Gets a URL's content
  function getURL($sURL)
  {
    if(isURLOnline($sURL) == false)
    {
      $sURLTemp = 'Unable to connect to server';
      return $sURLTemp;
    }
    else
    {
      if(@function_exists('file_get_contents') && @ini_get('allow_url_fopen') == true)
      {
        // Use file_get_contents
        $sURLTemp = @file_get_contents($sURL);
      }
      else
      {
        // Use cURL (if available)
        $curl = @curl_init();
        curl_setopt($curl, CURLOPT_URL, $sURL);
        curl_setopt($curl, CURLOPT_VERBOSE, 1);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($curl, CURLOPT_HEADER, 0);
        curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
        $sURLTemp = @curl_exec($curl);
        @curl_close($curl);
      }
      return $sURLTemp;
    }
  }

Fetch the code fragment using a line similar to this:

  $cavernStatus=getURL("<nowiki>http://www.openuru.org/tools/cavstat.php?type=raw</nowiki>");

This will give you the entire fragment in a string, $cavernStatus, that you can then echo to your own page or manipulate as you wish.

JSON-P

Setting the type argument in a request to "jsonp" will return output formatted for Javascript Object Notation with Padding, essentially an object of data passed to a callback function. This method is essential if you are trying to fetch the CAVCON data with javascript (due to the same-origin-policy applied by most browsers). To know more about JSONP, its usage and the reason of its existance read Wikipedia's Article. When using this option, it is also necessary to specify the function name of the callback procedure that will parse the returned array in the client, so a second argument, jsoncallback, must be supplied as in the following example:

http://www.openuru.org/tools/cavstat.php?type=jsonp&jsoncallback=anyFunctionName

Note that the name of the callback function is not important as far as the server is concerned, but it must be supplied otherwise an error message will be returned.

In response, the server will return data similar to the following:

anyFunctionName({"LED": "http://www.openuru.org/sitestyle/img/led-green.gif", 
"State": "Open for exploration!", "Link": "Sign up to play at MystOnline.com!", 
"LinkURL": "http://mystonline.com/play/", "Message": "Welcome to Myst Online: Uru Live! 
Bug Chucker now available on Android Marketplace!", "Origin": "www.openuru.org", 
"OriginURL": "http://www.openuru.org/", "CAVCON": "http://www.openuru.org/sitestyle/img/dollar_yellow2.png"})

For clarity, the array returned in the padded object consists of the following members:

  • "LED": A URL to the applicable colored status "lamp"; red green or yellow,
  • "State": Text string indicating the state of the cavern,
  • "Link": Text message intended to be used as anchor text for LinkURL,
  • "LinkURL": URL to the current MOULa sign-up/play page at mystonline.com,
  • "Message": The Cyan developer message, as shown on the MOULa startup dialogs,
  • "Origin": Text message intended to be used as anchor text for OriginURL.
  • "OriginURL": URL of the site that the status message has been delivered from.
  • "CAVCON": A URL for an icon representing the current CAVCON status. May be empty if a valid CAVCON status cannot be determined from the developer message.

There is no requirement that the end user implements all of these, or that they represent them in any particular manner giving the page designer complete freedom to manage the usage, format and layout as best suits their intended page layout.

jQuery

The following code can be used to dynamically update the cavern widget on a webpage. This is an independent code, it does not need the PHP code above, just include the jQuery library in your webpage.

Include the following code in the scripts of your webpage. The code assumes you are not using the "No Conflict" option of jQuery. If you are using it, change all the calls to "$" with calls to "jQuery".

function CavernStatus(el){
  $.ajax({
    type:'GET',
    url:'http://www.openuru.org/tools/cavstat.php',
    data: 'type=jsonp',
    dataType: 'jsonp',
    jsonp: 'jsoncallback',
    crossDomain: true,
    success: function(data){
      //In this point, if you want, you can manipulate the data received from OpenUru
      output='<div id="cspanel"><span class="cshead">Cavern Status:</span><img src="'+data.LED+'"> '+data.State+'<div id="cavstat_link"> - <a href="'+data.LinkURL+'" target="_blank"> '+data.Link+'</a></div><div id="cavstat_row2"><span class="cshead">Developer Message:</span> '+data.Message+' </div><div style="font-size: 8px; text-align: right;"><a href="'+data.OriginURL+'">'+data.Origin+'</a></div></div>';
      $(el).html(output);
    },
    error: function(jqXHR, textStatus, errorThrown){//What to do if error happens
      //You can choose to let the user know the request didn't succeed
    },
    timeout: 1500//Script timesout in 1.5 seconds if server doesn't respond
  })
}

In the code above you can see the output variable that contains the HTML code that will be generated in your web page, you can customize it to follow your website design or preferences. To know more about the member variables of the data object please consult the section JSONP above. Optionally you can insert some error handling code in the error function, where we placed just a comment.

Call the CavernStatus function somewhere in your code (usually when document is ready, with $.ready()), passing the jQuery selector for the element where you want to put the widget. Call it every X seconds to make the widget update dynamically. In this example we assume the id of the element that will contain the Cavern Status Widget is "widget"

$(function(){//Short version of $.ready()
  CavernStatus('#widget')//Initial Loading
  setInterval("CavernStatus('#widget')",600000)//Update the widget every 10 minutes.
})