Enable the read-only mode in Cryptpoll
This commit is contained in:
parent
ad32ea2a82
commit
99004428d5
@ -151,6 +151,7 @@ define([
|
||||
|
||||
var onLocal = config.onLocal = function () {
|
||||
if (initializing) { return; }
|
||||
if (readOnly) { return; }
|
||||
|
||||
editor.save();
|
||||
var textValue = canonicalize($textarea.val());
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
<div id="toolbar" class="buttons">
|
||||
<sub><a href="/"></a></sub>
|
||||
</div>
|
||||
<h1>CryptPoll</h1>
|
||||
<h1 id="mainTitle">CryptPoll</h1>
|
||||
<h2 data-localization="poll_subtitle"></h2>
|
||||
|
||||
<p data-localization="poll_p_save"></p>
|
||||
@ -53,7 +53,7 @@
|
||||
<input type="text" id="title" placeholder="title"><br />
|
||||
<textarea id="description" placeholder="description"></textarea>
|
||||
|
||||
<p data-localization="poll_p_howtouse"></p>
|
||||
<p id="howToUse" data-localization="poll_p_howtouse"></p>
|
||||
|
||||
<!-- Table markup-->
|
||||
<table id="table">
|
||||
|
||||
@ -39,6 +39,14 @@ define([
|
||||
*/
|
||||
|
||||
var secret = Cryptpad.getSecrets();
|
||||
var readOnly = secret.keys && !secret.keys.editKeyStr;
|
||||
if (!secret.keys) {
|
||||
secret.keys = secret.key;
|
||||
}
|
||||
if (readOnly) {
|
||||
$('#mainTitle').html($('#mainTitle').html() + ' - ' + Messages.readonly);
|
||||
$('#adduser, #addoption, #howToUse').remove();
|
||||
}
|
||||
|
||||
var module = window.APP = {
|
||||
Cryptpad: Cryptpad,
|
||||
@ -139,6 +147,7 @@ define([
|
||||
var table = module.table = Table($('#table'), xy);
|
||||
|
||||
var setEditable = function (bool) {
|
||||
if (readOnly && bool) { return; }
|
||||
module.isEditable = bool;
|
||||
|
||||
items.forEach(function ($item) {
|
||||
@ -163,6 +172,7 @@ define([
|
||||
};
|
||||
|
||||
var removeRow = function (proxy, uid) {
|
||||
if (readOnly) { return; }
|
||||
// remove proxy.table.rows[uid]
|
||||
|
||||
proxy.table.rows[uid] = undefined;
|
||||
@ -186,6 +196,7 @@ define([
|
||||
};
|
||||
|
||||
var removeColumn = function (proxy, uid) {
|
||||
if (readOnly) { return; }
|
||||
// remove proxy.table.cols[uid]
|
||||
proxy.table.cols[uid] = undefined;
|
||||
delete proxy.table.rows[uid];
|
||||
@ -212,6 +223,7 @@ define([
|
||||
};
|
||||
|
||||
var makeUserEditable = module.makeUserEditable = function (id, bool) {
|
||||
if (readOnly) { return; }
|
||||
var $name = $('input[type="text"][id="' + id + '"]').attr('disabled', !bool);
|
||||
|
||||
var $edit = $name.parent().find('.edit');
|
||||
@ -289,6 +301,11 @@ define([
|
||||
});
|
||||
});
|
||||
|
||||
if (readOnly) {
|
||||
$edit = '';
|
||||
$remove = '';
|
||||
}
|
||||
|
||||
var $wrapper = $('<div>', {
|
||||
'class': 'text-cell',
|
||||
})
|
||||
@ -313,6 +330,7 @@ define([
|
||||
};
|
||||
|
||||
var makeOptionEditable = function (id, bool) {
|
||||
if (readOnly) { return; }
|
||||
if (bool) {
|
||||
module.rt.proxy.table.rowsOrder.forEach(function (rowuid) {
|
||||
$('#' + rowuid)
|
||||
@ -363,6 +381,11 @@ define([
|
||||
});
|
||||
});
|
||||
|
||||
if (readOnly) {
|
||||
$edit = '';
|
||||
$remove = '';
|
||||
}
|
||||
|
||||
var $wrapper = $('<div>', {
|
||||
'class': 'text-cell',
|
||||
})
|
||||
@ -715,16 +738,33 @@ define([
|
||||
});
|
||||
}));
|
||||
|
||||
$toolbar.append(Button({
|
||||
id: 'wizard',
|
||||
'class': 'wizard button action',
|
||||
title: Messages.wizardTitle,
|
||||
}).text(Messages.wizardButton).click(function () {
|
||||
Wizard.show();
|
||||
if (Wizard.hasBeenDisplayed) { return; }
|
||||
Cryptpad.log(Messages.wizardLog);
|
||||
Wizard.hasBeenDisplayed = true;
|
||||
}));
|
||||
if (!readOnly) {
|
||||
$toolbar.append(Button({
|
||||
id: 'wizard',
|
||||
'class': 'wizard button action',
|
||||
title: Messages.wizardTitle,
|
||||
}).text(Messages.wizardButton).click(function () {
|
||||
Wizard.show();
|
||||
if (Wizard.hasBeenDisplayed) { return; }
|
||||
Cryptpad.log(Messages.wizardLog);
|
||||
Wizard.hasBeenDisplayed = true;
|
||||
}));
|
||||
}
|
||||
|
||||
if (!readOnly && module.viewHash) {
|
||||
/* add a 'links' button */
|
||||
var $links = $('<button>', {
|
||||
title: Messages.getViewButtonTitle
|
||||
})
|
||||
.text(Messages.getViewButton)
|
||||
.addClass('button action')
|
||||
.click(function () {
|
||||
var baseUrl = window.location.origin + window.location.pathname + '#';
|
||||
var content = '<b>' + Messages.readonlyUrl + '</b><br><a>' + baseUrl + module.viewHash + '</a><br>';
|
||||
Cryptpad.alert(content);
|
||||
});
|
||||
$toolbar.append($links);
|
||||
}
|
||||
|
||||
/* Import/Export buttons */
|
||||
/*
|
||||
@ -784,6 +824,7 @@ define([
|
||||
}
|
||||
|
||||
Cryptpad.getPadAttribute('column', function (err, column) {
|
||||
if (readOnly) { return; }
|
||||
if (err) {
|
||||
console.log("unable to retrieve column");
|
||||
return;
|
||||
@ -831,7 +872,10 @@ define([
|
||||
websocketURL: Config.websocketURL,
|
||||
channel: secret.channel,
|
||||
data: {},
|
||||
crypto: Crypto.createEncryptor(secret.key),
|
||||
// our public key
|
||||
validateKey: secret.keys.validateKey || undefined,
|
||||
readOnly: readOnly,
|
||||
crypto: Crypto.createEncryptor(secret.keys),
|
||||
};
|
||||
|
||||
// don't initialize until the store is ready.
|
||||
@ -840,7 +884,17 @@ define([
|
||||
var rt = module.rt = Listmap.create(config);
|
||||
rt.proxy.on('create', function (info) {
|
||||
var realtime = module.realtime = info.realtime;
|
||||
window.location.hash = Cryptpad.getHashFromKeys(info.channel, secret.key);
|
||||
|
||||
var editHash;
|
||||
var viewHash = module.viewHash = Cryptpad.getViewHashFromKeys(info.channel, secret.keys);
|
||||
if (!readOnly) {
|
||||
editHash = Cryptpad.getEditHashFromKeys(info.channel, secret.keys);
|
||||
}
|
||||
// set the hash
|
||||
if (!readOnly) {
|
||||
window.location.hash = editHash;
|
||||
}
|
||||
|
||||
module.patchText = TextPatcher.create({
|
||||
realtime: realtime,
|
||||
logging: true,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user