Merge branch 'staging' of github.com:xwiki-labs/cryptpad into staging
commit
50b6a23067
|
@ -125,7 +125,7 @@ Version 1
|
|||
url += ret.type + '/';
|
||||
if (!ret.hashData) { return url; }
|
||||
if (ret.hashData.type !== 'pad') { return url + '#' + ret.hash; }
|
||||
if (ret.hashData.version !== 1) { throw new Error("Only v1 hashes are managed here."); }
|
||||
if (ret.hashData.version !== 1) { return url + '#' + ret.hash; }
|
||||
url += '#/' + ret.hashData.version +
|
||||
'/' + ret.hashData.mode +
|
||||
'/' + ret.hashData.channel.replace(/\//g, '-') +
|
||||
|
|
|
@ -24,6 +24,7 @@ define([], function () {
|
|||
var channel = conf.channel;
|
||||
var Crypto = conf.crypto;
|
||||
var validateKey = conf.validateKey;
|
||||
var isNewHash = conf.isNewHash;
|
||||
var readOnly = conf.readOnly || false;
|
||||
var padRpc = conf.padRpc;
|
||||
var sframeChan = conf.sframeChan;
|
||||
|
@ -40,7 +41,7 @@ define([], function () {
|
|||
// shim between chainpad and netflux
|
||||
var msgIn = function (msg) {
|
||||
try {
|
||||
var decryptedMsg = Crypto.decrypt(msg, validateKey);
|
||||
var decryptedMsg = Crypto.decrypt(msg, isNewHash);
|
||||
return decryptedMsg;
|
||||
} catch (err) {
|
||||
console.error(err);
|
||||
|
|
|
@ -138,7 +138,6 @@ define([
|
|||
// Check if the pad exists on server
|
||||
if (!window.location.hash) { isNewFile = true; return; }
|
||||
Cryptpad.getFileSize(window.location.href, waitFor(function (err, size) {
|
||||
console.log(size);
|
||||
if (size) {
|
||||
isNewFile = false;
|
||||
return;
|
||||
|
@ -146,9 +145,12 @@ define([
|
|||
isNewFile = true;
|
||||
}));
|
||||
}).nThen(function () {
|
||||
console.log(isNewFile);
|
||||
var readOnly = secret.keys && !secret.keys.editKeyStr;
|
||||
if (!secret.keys) { secret.keys = secret.key; }
|
||||
var isNewHash = true;
|
||||
if (!secret.keys) {
|
||||
isNewHash = false;
|
||||
secret.keys = secret.key;
|
||||
}
|
||||
var parsed = Utils.Hash.parsePadUrl(window.location.href);
|
||||
if (!parsed.type) { throw new Error(); }
|
||||
var defaultTitle = Utils.Hash.getDefaultName(parsed);
|
||||
|
@ -581,6 +583,7 @@ define([
|
|||
channel: secret.channel,
|
||||
padRpc: Cryptpad.padRpc,
|
||||
validateKey: secret.keys.validateKey || undefined,
|
||||
isNewHash: isNewHash,
|
||||
readOnly: readOnly,
|
||||
crypto: Crypto.createEncryptor(secret.keys),
|
||||
onConnect: function (wc) {
|
||||
|
|
|
@ -93,7 +93,6 @@ define([
|
|||
getSecrets: getSecrets,
|
||||
noHash: true, // Don't add the hash in the URL if it doesn't already exist
|
||||
addRpc: addRpc,
|
||||
noRealtime: !localStorage.User_hash
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue