2016-06-18 18:40:57 +02:00
|
|
|
//clay stores the values in the localStorage
|
|
|
|
localStorage.clear();
|
|
|
|
|
2016-02-28 22:25:21 +01:00
|
|
|
function loadScript(url, callback) {
|
|
|
|
// Adding the script tag to the head as suggested before
|
|
|
|
var head = document.getElementsByTagName('head')[0];
|
|
|
|
var script = document.createElement('script');
|
|
|
|
script.type = 'text/javascript';
|
|
|
|
script.src = url;
|
|
|
|
|
|
|
|
// Then bind the event to the callback function.
|
|
|
|
// There are several events for cross browser compatibility.
|
|
|
|
script.onreadystatechange = callback;
|
|
|
|
script.onload = callback;
|
|
|
|
|
|
|
|
// Fire the loading
|
|
|
|
head.appendChild(script);
|
|
|
|
}
|
|
|
|
|
|
|
|
function getURLVariable(variable, defaultValue) {
|
|
|
|
// Find all URL parameters
|
|
|
|
var query = location.search.substring(1);
|
|
|
|
var vars = query.split('&');
|
|
|
|
for (var i = 0; i < vars.length; i++) {
|
|
|
|
var pair = vars[i].split('=');
|
|
|
|
|
|
|
|
// If the query variable parameter is found, decode it to use and return it for use
|
|
|
|
if (pair[0] === variable) {
|
|
|
|
return decodeURIComponent(pair[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultValue || false;
|
|
|
|
}
|
|
|
|
|
2016-06-18 18:40:57 +02:00
|
|
|
function showStep(desiredStep) {
|
|
|
|
var steps = document.getElementsByClassName("step");
|
|
|
|
var testStep = null;
|
|
|
|
for (var i = 0; i < steps.length; i ++) {
|
|
|
|
if (steps[i].id == desiredStep)
|
|
|
|
testStep = steps[i].id;
|
|
|
|
}
|
|
|
|
if (testStep !== null) {
|
|
|
|
for (var i = 0; i < steps.length; i ++) {
|
|
|
|
steps[i].style.display = 'none';
|
|
|
|
}
|
|
|
|
document.getElementById(desiredStep).style.display="block";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-28 22:25:21 +01:00
|
|
|
function gbPebble() {
|
|
|
|
this.configurationURL = null;
|
|
|
|
this.configurationValues = null;
|
2016-06-18 18:40:57 +02:00
|
|
|
var self = this;
|
2016-02-28 22:25:21 +01:00
|
|
|
|
|
|
|
this.addEventListener = function(e, f) {
|
2016-03-04 17:44:42 +01:00
|
|
|
if(e == 'ready') {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.ready = f;
|
2016-03-04 17:44:42 +01:00
|
|
|
}
|
2016-02-28 22:25:21 +01:00
|
|
|
if(e == 'showConfiguration') {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.showConfiguration = f;
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
if(e == 'webviewclosed') {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.parseconfig = f;
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
if(e == 'appmessage') {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.appmessage = f;
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-04 17:44:42 +01:00
|
|
|
this.removeEventListener = function(e, f) {
|
|
|
|
if(e == 'ready') {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.ready = null;
|
2016-03-04 17:44:42 +01:00
|
|
|
}
|
|
|
|
if(e == 'showConfiguration') {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.showConfiguration = null;
|
2016-03-04 17:44:42 +01:00
|
|
|
}
|
|
|
|
if(e == 'webviewclosed') {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.parseconfig = null;
|
2016-03-04 17:44:42 +01:00
|
|
|
}
|
|
|
|
if(e == 'appmessage') {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.appmessage = null;
|
2016-03-04 17:44:42 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-28 22:25:21 +01:00
|
|
|
this.actuallyOpenURL = function() {
|
2016-06-18 18:40:57 +02:00
|
|
|
showStep("step1compat");
|
|
|
|
window.open(self.configurationURL.toString(), "config");
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this.actuallySendData = function() {
|
2016-06-18 18:40:57 +02:00
|
|
|
GBjs.sendAppMessage(self.configurationValues);
|
|
|
|
GBjs.closeActivity();
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//needs to be called like this because of original Pebble function name
|
|
|
|
this.openURL = function(url) {
|
2016-03-08 17:45:11 +01:00
|
|
|
if (url.lastIndexOf("http", 0) === 0) {
|
|
|
|
document.getElementById("config_url").innerHTML=url;
|
|
|
|
var UUID = GBjs.getAppUUID();
|
2016-06-18 18:40:57 +02:00
|
|
|
self.configurationURL = new Uri(url).addQueryParam("return_to", "gadgetbridge://"+UUID+"?config=true&json=");
|
2016-03-08 17:45:11 +01:00
|
|
|
} else {
|
|
|
|
//TODO: add custom return_to
|
|
|
|
location.href = url;
|
|
|
|
}
|
|
|
|
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this.getActiveWatchInfo = function() {
|
|
|
|
return JSON.parse(GBjs.getActiveWatchInfo());
|
|
|
|
}
|
|
|
|
|
2016-03-04 17:44:42 +01:00
|
|
|
this.sendAppMessage = function (dict, callbackAck, callbackNack){
|
|
|
|
try {
|
2016-06-18 18:40:57 +02:00
|
|
|
self.configurationValues = JSON.stringify(dict);
|
2016-03-04 17:44:42 +01:00
|
|
|
document.getElementById("jsondata").innerHTML=this.configurationValues;
|
|
|
|
return callbackAck;
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
GBjs.gbLog("sendAppMessage failed");
|
|
|
|
return callbackNack;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getAccountToken = function() {
|
|
|
|
return '';
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
|
2016-03-04 17:44:42 +01:00
|
|
|
this.getWatchToken = function() {
|
|
|
|
return GBjs.getWatchToken();
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
2016-03-04 17:44:42 +01:00
|
|
|
|
2016-06-18 18:40:57 +02:00
|
|
|
this.getTimelineToken = function() {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2016-03-04 17:44:42 +01:00
|
|
|
this.showSimpleNotificationOnPebble = function(title, body) {
|
|
|
|
GBjs.gbLog("app wanted to show: " + title + " body: "+ body);
|
|
|
|
}
|
|
|
|
|
2016-03-21 21:19:32 +01:00
|
|
|
this.ready = function() {
|
|
|
|
}
|
2016-03-04 17:44:42 +01:00
|
|
|
|
2016-06-17 17:47:13 +02:00
|
|
|
this.parseReturnedPebbleJS = function() {
|
|
|
|
var str = document.getElementById('pastereturn').value;
|
|
|
|
var needle = "pebblejs://close#";
|
|
|
|
|
|
|
|
if (str.split(needle)[1] !== undefined) {
|
|
|
|
var t = new Object();
|
|
|
|
t.response = unescape(str.split(needle)[1]);
|
2016-06-18 18:40:57 +02:00
|
|
|
self.parseconfig(t);
|
|
|
|
showStep("step2");
|
2016-06-17 17:47:13 +02:00
|
|
|
} else {
|
|
|
|
console.error("No valid configuration found in the entered string.");
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var Pebble = new gbPebble();
|
|
|
|
|
|
|
|
var jsConfigFile = GBjs.getAppConfigurationFile();
|
2016-06-18 18:40:57 +02:00
|
|
|
document.addEventListener('DOMContentLoaded', function(){
|
2016-02-28 22:25:21 +01:00
|
|
|
if (jsConfigFile != null) {
|
|
|
|
loadScript(jsConfigFile, function() {
|
|
|
|
if (getURLVariable('config') == 'true') {
|
2016-06-18 18:40:57 +02:00
|
|
|
showStep("step2");
|
2016-02-28 22:25:21 +01:00
|
|
|
var json_string = unescape(getURLVariable('json'));
|
|
|
|
var t = new Object();
|
|
|
|
t.response = json_string;
|
|
|
|
if (json_string != '')
|
|
|
|
Pebble.parseconfig(t);
|
|
|
|
} else {
|
2016-03-08 17:45:11 +01:00
|
|
|
Pebble.ready();
|
2016-03-21 21:19:32 +01:00
|
|
|
Pebble.showConfiguration();
|
2016-02-28 22:25:21 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-06-18 18:40:57 +02:00
|
|
|
}, false);
|