cryptpad/www/profile/main.js

97 lines
4.0 KiB
JavaScript
Raw Normal View History

2017-10-30 17:49:28 +00:00
// Load #1, load as little as possible because we are in a race to get the loading screen up.
2017-06-27 16:58:20 +00:00
define([
2017-10-30 17:49:28 +00:00
'/bower_components/nthen/index.js',
'/api/config',
2017-06-27 16:58:20 +00:00
'jquery',
2017-10-30 17:49:28 +00:00
'/common/requireconfig.js',
2017-11-13 15:32:40 +00:00
'/common/sframe-common-outer.js',
2017-10-30 17:49:28 +00:00
], function (nThen, ApiConfig, $, RequireConfig, SFCommonO) {
var requireConfig = RequireConfig();
// Loaded in load #2
nThen(function (waitFor) {
$(waitFor());
}).nThen(function (waitFor) {
var req = {
cfg: requireConfig,
req: [ '/common/loading.js' ],
pfx: window.location.origin
2017-06-27 16:58:20 +00:00
};
2017-10-30 17:49:28 +00:00
window.rc = requireConfig;
window.apiconf = ApiConfig;
$('#sbox-iframe').attr('src',
ApiConfig.httpSafeOrigin + '/profile/inner.html?' + requireConfig.urlArgs +
'#' + encodeURIComponent(JSON.stringify(req)));
// This is a cheap trick to avoid loading sframe-channel in parallel with the
// loading screen setup.
var done = waitFor();
var onMsg = function (msg) {
var data = JSON.parse(msg.data);
if (data.q !== 'READY') { return; }
window.removeEventListener('message', onMsg);
var _done = done;
done = function () { };
_done();
2017-06-28 14:59:35 +00:00
};
2017-10-30 17:49:28 +00:00
window.addEventListener('message', onMsg);
}).nThen(function (/*waitFor*/) {
2017-11-13 15:32:40 +00:00
var getSecrets = function (Cryptpad, Utils) {
var Hash = Utils.Hash;
2017-10-30 17:49:28 +00:00
// 1st case: visiting someone else's profile with hash in the URL
if (window.location.hash) {
2017-11-13 15:32:40 +00:00
return Hash.getSecrets('profile', window.location.hash.slice(1));
2017-06-28 08:59:29 +00:00
}
2017-10-30 17:49:28 +00:00
// 2nd case: visiting our own existing profile
var obj = Cryptpad.getProxy();
if (obj.profile && obj.profile.view && obj.profile.edit) {
2017-11-13 15:32:40 +00:00
return Hash.getSecrets('profile', obj.profile.edit);
}
2017-10-30 17:49:28 +00:00
// 3rd case: profile creation (create a new random hash, store it later if needed)
if (!Cryptpad.isLoggedIn()) { return; }
2017-11-13 15:32:40 +00:00
var hash = Hash.createRandomHash();
var secret = Hash.getSecrets('profile', hash);
2017-10-30 17:49:28 +00:00
Cryptpad.pinPads([secret.channel], function (e) {
2017-06-28 14:59:35 +00:00
if (e) {
if (e === 'E_OVER_LIMIT') {
2017-10-30 17:49:28 +00:00
// TODO
2017-06-28 14:59:35 +00:00
}
2017-10-30 17:49:28 +00:00
return;
//return void UI.log(Messages._getKey('profile_error', [e])) // TODO
2017-06-28 14:59:35 +00:00
}
2017-10-30 17:49:28 +00:00
obj.profile = {};
2017-11-13 15:32:40 +00:00
obj.profile.edit = Utils.Hash.getEditHashFromKeys(secret.channel, secret.keys);
obj.profile.view = Utils.Hash.getViewHashFromKeys(secret.channel, secret.keys);
2017-06-28 14:59:35 +00:00
});
2017-10-30 17:49:28 +00:00
return secret;
2017-06-27 16:58:20 +00:00
};
2017-11-13 15:32:40 +00:00
var addRpc = function (sframeChan, Cryptpad, Utils) {
2017-10-30 17:49:28 +00:00
// Adding a new avatar from the profile: pin it and store it in the object
sframeChan.on('Q_PROFILE_AVATAR_ADD', function (data, cb) {
2017-11-13 15:32:40 +00:00
var chanId = Utils.Hash.hrefToHexChannelId(data);
2017-10-30 17:49:28 +00:00
Cryptpad.pinPads([chanId], function (e) {
if (e) { return void cb(e); }
Cryptpad.getProxy().profile.avatar = data;
2017-11-13 15:32:40 +00:00
Utils.Realtime.whenRealtimeSyncs(Cryptpad.getRealtime(), function () {
2017-10-30 17:49:28 +00:00
cb();
});
});
2017-06-28 14:59:35 +00:00
});
2017-10-30 17:49:28 +00:00
// Removing the avatar from the profile: unpin it
sframeChan.on('Q_PROFILE_AVATAR_REMOVE', function (data, cb) {
2017-11-13 15:32:40 +00:00
var chanId = Utils.Hash.hrefToHexChannelId(data);
2017-10-30 17:49:28 +00:00
Cryptpad.unpinPads([chanId], function (e) {
delete Cryptpad.getProxy().profile.avatar;
cb(e);
});
});
};
SFCommonO.start({
getSecrets: getSecrets,
noHash: true, // Don't add the hash in the URL if it doesn't already exist
addRpc: addRpc,
noRealtime: !localStorage.User_hash
2017-06-27 16:58:20 +00:00
});
});
});