jellyfin-web/dashboard-ui/thirdparty/apiclient/device.js

30 lines
639 B
JavaScript
Raw Normal View History

2014-10-26 20:06:01 -07:00
if (!window.MediaBrowser) {
window.MediaBrowser = {};
}
2014-10-26 17:19:52 -07:00
2014-10-26 20:06:01 -07:00
(function (store) {
MediaBrowser.generateDeviceId = function () {
2014-10-26 17:19:52 -07:00
var keys = [];
keys.push(navigator.userAgent);
keys.push((navigator.cpuClass || ""));
var randomId = '';
// Since the above is not guaranteed to be unique per device, add a little more
randomId = store.getItem('randomId');
if (!randomId) {
randomId = new Date().getTime();
store.setItem('randomId', randomId.toString());
}
keys.push(randomId);
return sha1(keys.join('|'));
};
})(store);