digd.js/lib/public/js/app.js

216 lines
7.1 KiB
JavaScript

(function () {
'use strict';
if (!Element.prototype.matches) {
Element.prototype.matches = Element.prototype.msMatchesSelector;
}
function $qs(qs, el) {
return (el||document).querySelector(qs);
}
function $qsa(qs, el) {
return (el||document).querySelectorAll(qs);
}
function $on(selector, eventname, cb) {
if (!$on._events[eventname]) {
$on._events[eventname] = $on._dispatcher(eventname);
document.addEventListener(eventname, $on._events[eventname]);
}
if (!$on._handlers[eventname]) {
$on._handlers[eventname] = {};
}
if (!$on._handlers[eventname][selector]) {
$on._handlers[eventname][selector] = [];
}
$on._handlers[eventname][selector].push(cb);
}
$on._events = {};
$on._handlers = {};
$on._dispatcher = function (eventname) {
return function (ev) {
//console.log('event: ' + ev.type);
if (!$on._handlers[eventname]) {
console.warn('no handlers for event');
return;
}
var matches = Object.keys($on._handlers[eventname]).some(function (selector) {
if (ev.target.matches(selector)) {
$on._handlers[eventname][selector].forEach(function (cb) { cb(ev); });
return true;
}
});
if (matches) {
console.warn("no handlers for selector");
}
};
};
function verifyAuth(/*ev*/) {
auth = $qs('input.js-jwt').value;
return window.fetch(
'/api/verify-auth'
, { method: 'GET'
, headers: new window.Headers({ 'Authorization': 'Bearer ' + auth })
}
).then(function (resp) {
return resp.json().then(function (data) {
if (data.error) {
localStorage.removeItem('auth');
console.error(data.error);
window.alert('Bad HTTP Response: ' + data.error.message);
throw new Error('Bad HTTP Response: ' + data.error.message);
}
console.log('verify-auth:');
console.log(data);
localStorage.setItem('auth', auth);
return fetchPeers(auth).then(function () {
return fetchZones(auth);
});
});
});
}
function fetchPeers(auth) {
return window.fetch('/api/peers', {
method: 'GET'
, headers: new window.Headers({ 'Authorization': 'Bearer ' + auth })
}).then(function (resp) {
return resp.json().then(function (data) {
var tpl = '';
var el;
if (!tpls.peer) {
tpls.peer = $qs('.js-peer-tpl').innerHTML;
}
data.peers.forEach(function (peer) {
el = document.createElement('div');
el.innerHTML = tpls.peer;
console.log(el);
console.log($qs('.js-peer-name', el));
$qs('.js-peer-name', el).innerText = peer.name;
$qs('.js-peer-name', el).dataset.id = peer.name;
console.log(el.innerHTML);
tpl += el.innerHTML;
console.log(tpl);
});
$qs('.js-peer-tpl').innerHTML = tpl;
console.log($qs('.js-peer-tpl').innerHTML);
});
});
}
function fetchZones(auth) {
return window.fetch('/api/zones', {
method: 'GET'
, headers: new window.Headers({ 'Authorization': 'Bearer ' + auth })
}).then(function (resp) {
return resp.json().then(function (data) {
var tpl = '';
var el;
if (!tpls.zone) {
tpls.zone = $qs('.js-zone-tpl').innerHTML;
}
data.zones.forEach(function (zone) {
el = document.createElement('div');
el.innerHTML = tpls.zone;
console.log(el);
console.log($qs('.js-zone-name', el));
$qs('.js-zone-name', el).innerText = zone.id;
$qs('.js-zone-name', el).dataset.id = zone.id;
console.log(el.innerHTML);
tpl += el.innerHTML;
console.log(tpl);
});
$qs('.js-zone-tpl').innerHTML = tpl;
console.log($qs('.js-zone-tpl').innerHTML);
});
});
}
function fetchRecords(zone) {
return window.fetch('/api/zones/' + zone + '/records', {
method: 'GET'
, headers: new window.Headers({ 'Authorization': 'Bearer ' + auth })
}).then(function (resp) {
return resp.json().then(function (data) {
var tpl = '';
var el;
if (!tpls.recordsMap) {
//tpls.recordTypes = Array.prototype.slice.call($qsa('.js-record-tpl li'));
//.innerHTML;
tpls.recordsMap = {};
tpls.recordsMap.soa = $qs('.js-record-soa').outerHTML;
tpls.recordsMap.any = $qs('.js-record-any').outerHTML;
tpls.recordsMap.ns = $qs('.js-record-ns').outerHTML;
tpls.recordsMap.a = $qs('.js-record-a').outerHTML;
tpls.recordsMap.aaaa = $qs('.js-record-aaaa').outerHTML;
tpls.recordsMap.aname = $qs('.js-record-aname').outerHTML;
tpls.recordsMap.cname = $qs('.js-record-cname').outerHTML;
tpls.recordsMap.caa = $qs('.js-record-caa').outerHTML;
tpls.recordsMap.ptr = $qs('.js-record-ptr').outerHTML;
tpls.recordsMap.mx = $qs('.js-record-mx').outerHTML;
tpls.recordsMap.txt = $qs('.js-record-txt').outerHTML;
tpls.recordsMap.srv = $qs('.js-record-srv').outerHTML;
}
console.log('tpls.recordsMap:');
console.log(tpls.recordsMap);
data.records.forEach(function (record) {
el = document.createElement('div');
console.log('record.type:');
console.log(record.type);
el.innerHTML = tpls.recordsMap[record.type.toLowerCase()];
console.log(el);
console.log($qs('.js-record-name', el));
Object.keys(record).forEach(function (key) {
var x = $qs('.js-record-' + key, el);
if (x) {
x.innerText = record[key];
}
});
//$qs('.js-record-type', el).innerText = record.type;
//$qs('.js-record-name', el).innerText = record.name;
//$qs('.js-record-address', el).innerText = record.address;
console.log('el.innerHTML:');
console.log(el.innerHTML);
tpl += el.innerHTML;
console.log(tpl);
});
$qs('.js-record-tpl').innerHTML = tpl;
console.log($qs('.js-record-tpl').innerHTML);
});
});
}
// BEGIN
var tpls = {};
var auth = localStorage.getItem('auth');
if (auth) {
$qs('input.js-jwt').value = auth;
verifyAuth();
}
$on('body', 'click', function () {
console.log('woo-hoo, that tickles my body!');
});
$on('button.js-jwt', 'click', verifyAuth);
$on('input.js-zone', 'keyup', function (ev) {
$qs('code.js-zone').innerHTML = ev.target.value || ':zone';
// $qs('a.js-zone').setAttribute('data-href', ...)
$qs('a.js-zone').href =
$qs('a.js-zone').dataset.href.replace(/:zone/, ev.target.value || ':zone');
});
$on('input.js-name', 'keyup', function (ev) {
$qs('code.js-name').innerHTML = ev.target.value || ':name';
$qs('a.js-name').href =
$qs('a.js-name').dataset.href.replace(/:name/, ev.target.value || ':name');
});
$on('button.js-zone-name', 'click', function (ev) {
var zone = ev.target.dataset.id;
return fetchRecords(zone);/*.then(function () {
});*/
});
}());