jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

42 lines
1.1 KiB

const charset = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/';
const generatePassword = () => {
if (window.crypto) {
const buf = new Uint8Array(20); //8 keeps charcodes within range
window.crypto.getRandomValues(buf);
return btoa(String.fromCharCode.apply(null, buf));
} else {
return new Array(20)
.fill(null)
.map(x => charset[Math.floor(Math.random()*charset.length)])
.join('');
}
}
setDefaultLocalStorage('postpassword', generatePassword());
class syncedField {
constructor(selector, key, persistent) {
this.fields = document.querySelectorAll(selector);
this.key = key;
this.persistent = persistent;
for (let field of this.fields) {
field.value = localStorage.getItem(this.key);
field.addEventListener('input', (e) => { this.update(e) }, false);
}
}
update(e) {
if (this.persistent) {
setLocalStorage(this.key, e.target.value);
}
for (let field of this.fields) {
field.value = e.target.value;
}
}
}
window.addEventListener('settingsReady', () => {
new syncedField('input[name="postpassword"]', 'postpassword', true);
});