﻿var bambuserKey = "8a8844cde4bfcfe6f84eb817b89bfdbb";
var bambuserAPIurl = "http://api.bambuser.com/getVideos.json?"
var bambuserAPIEmbedurl = "http://api.bambuser.com/oembed.json?"

function pollBambuserLatestVideo() {
    var film = "";
    jQuery.ajax({
        async: false,
        type: "GET",
        url: bambuserAPIurl,
        data: "username=umea2014&limit=1&api_key=" + bambuserKey + "&jsoncallback=?",
        dataType: "jsonp",
        success: function(data) {
            if (data && typeof (data) == 'object') {
                if (data.result[0].type == "live") {
                    jQuery("#bambuser").html("<object id=\"bplayer\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"250\" height=\"180\"><embed name=\"bplayer\" src=\"http://static.bambuser.com/r/player.swf?context=oembed&vid=" + data.result[0].vid + "\" type=\"application/x-shockwave-flash\" width=\"250\" height=\"180\" allowfullscreen=\"true\" allowscriptaccess=\"always\" wmode=\"opaque\" flashvars=\"autostart=yes\"></embed><param name=\"flashvars\" value=\"autostart=yes\"></param><param name=\"movie\" value=\"http://static.bambuser.com/r/player.swf?context=oembed&vid=" + data.result[0].vid + "\"></param><param name=\"allowfullscreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><param name=\"wmode\" value=\"opaque\"></param></object>");
                }
                else {
                    jQuery("#bambuser").html("<a href=\"http://www.umea2014.se/sidfot/webbtv.4.1a0462c312a613822948000979.html\"><img style= \"border-style: none\" src=\"/images/18.7f5c558c12d7705b3c88000193/webbtv.gif\" /></a>");
                }
            }
        },
        error: function(xmlhttp, error_msg) {
            $("#bambuser").html(error_msg);
        }
    });
}

