2015-03-27 03:35:36 +03:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2014
|
|
|
|
* Bjoern Schiessle <schiessle@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2015-04-21 13:19:15 +03:00
|
|
|
/**
|
|
|
|
* @namespace
|
|
|
|
* @memberOf OC
|
|
|
|
*/
|
2015-08-06 16:53:38 +03:00
|
|
|
OC.Encryption = _.extend(OC.Encryption || {}, {
|
2015-04-21 13:01:56 +03:00
|
|
|
displayEncryptionWarning: function () {
|
2015-04-23 14:06:00 +03:00
|
|
|
if (!OC.currentUser || !OC.Notification.isHidden()) {
|
2015-04-21 13:01:56 +03:00
|
|
|
return;
|
2015-04-17 19:04:02 +03:00
|
|
|
}
|
2015-04-16 14:47:27 +03:00
|
|
|
|
2015-04-21 13:01:56 +03:00
|
|
|
$.get(
|
|
|
|
OC.generateUrl('/apps/encryption/ajax/getStatus'),
|
|
|
|
function (result) {
|
2015-05-27 12:10:06 +03:00
|
|
|
if (result.status === "interactionNeeded") {
|
2015-04-21 13:01:56 +03:00
|
|
|
OC.Notification.show(result.data.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2015-08-06 16:53:38 +03:00
|
|
|
});
|
2015-04-16 14:47:27 +03:00
|
|
|
$(document).ready(function() {
|
|
|
|
// wait for other apps/extensions to register their event handlers and file actions
|
|
|
|
// in the "ready" clause
|
|
|
|
_.defer(function() {
|
2015-04-21 13:01:56 +03:00
|
|
|
OC.Encryption.displayEncryptionWarning();
|
2015-04-16 14:47:27 +03:00
|
|
|
});
|
|
|
|
});
|