aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption/js
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2015-03-30 17:29:07 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-04-07 13:30:28 +0200
commite7a68d1c21c52a39ddec59579ab7701dfef82b2a (patch)
treef18553183eee730b754f89bf2b5a2a1ce5facade /apps/files_encryption/js
parent0eee3a2618235bcb59ce1bcb98526a7592de4578 (diff)
downloadnextcloud-server-e7a68d1c21c52a39ddec59579ab7701dfef82b2a.tar.gz
nextcloud-server-e7a68d1c21c52a39ddec59579ab7701dfef82b2a.zip
remove old encryption app
Diffstat (limited to 'apps/files_encryption/js')
-rw-r--r--apps/files_encryption/js/detect-migration.js33
-rw-r--r--apps/files_encryption/js/encryption.js16
-rw-r--r--apps/files_encryption/js/settings-admin.js55
-rw-r--r--apps/files_encryption/js/settings-personal.js89
4 files changed, 0 insertions, 193 deletions
diff --git a/apps/files_encryption/js/detect-migration.js b/apps/files_encryption/js/detect-migration.js
deleted file mode 100644
index f5627edf4e4..00000000000
--- a/apps/files_encryption/js/detect-migration.js
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
- * Copyright (c) 2013
- * Bjoern Schiessle <schiessle@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or later.
- * See the COPYING-README file.
- */
-
-
-$(document).ready(function(){
- $('form[name="login"]').on('submit', function() {
- var user = $('#user').val();
- var password = $('#password').val();
- $.ajax({
- type: 'POST',
- url: OC.linkTo('files_encryption', 'ajax/getMigrationStatus.php'),
- dataType: 'json',
- data: {user: user, password: password},
- async: false,
- success: function(response) {
- if (response.data.migrationStatus === OC.Encryption.MIGRATION_OPEN) {
- var message = t('files_encryption', 'Initial encryption started... This can take some time. Please wait.');
- $('#messageText').text(message);
- $('#message').removeClass('hidden').addClass('update');
- } else if (response.data.migrationStatus === OC.Encryption.MIGRATION_IN_PROGRESS) {
- var message = t('files_encryption', 'Initial encryption running... Please try again later.');
- $('#messageText').text(message);
- $('#message').removeClass('hidden').addClass('update');
- }
- }
- });
- });
-
-});
diff --git a/apps/files_encryption/js/encryption.js b/apps/files_encryption/js/encryption.js
deleted file mode 100644
index d2d1c3a1fc5..00000000000
--- a/apps/files_encryption/js/encryption.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/**
- * 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.
- */
-
-/**
- * @namespace
- * @memberOf OC
- */
-OC.Encryption={
- MIGRATION_OPEN:0,
- MIGRATION_COMPLETED:1,
- MIGRATION_IN_PROGRESS:-1,
-};
diff --git a/apps/files_encryption/js/settings-admin.js b/apps/files_encryption/js/settings-admin.js
deleted file mode 100644
index 2242c1f7124..00000000000
--- a/apps/files_encryption/js/settings-admin.js
+++ /dev/null
@@ -1,55 +0,0 @@
-/**
- * Copyright (c) 2013
- * Sam Tuke <samtuke@owncloud.com>
- * Robin Appelman <icewind1991@gmail.com>
- * Bjoern Schiessle <schiessle@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or later.
- * See the COPYING-README file.
- */
-
-$(document).ready(function(){
-
- $( 'input:radio[name="adminEnableRecovery"]' ).change(
- function() {
- var recoveryStatus = $( this ).val();
- var oldStatus = (1+parseInt(recoveryStatus)) % 2;
- var recoveryPassword = $( '#encryptionRecoveryPassword' ).val();
- var confirmPassword = $( '#repeatEncryptionRecoveryPassword' ).val();
- OC.msg.startSaving('#encryptionSetRecoveryKey .msg');
- $.post(
- OC.filePath( 'files_encryption', 'ajax', 'adminrecovery.php' )
- , { adminEnableRecovery: recoveryStatus, recoveryPassword: recoveryPassword, confirmPassword: confirmPassword }
- , function( result ) {
- OC.msg.finishedSaving('#encryptionSetRecoveryKey .msg', result);
- if (result.status === "error") {
- $('input:radio[name="adminEnableRecovery"][value="'+oldStatus.toString()+'"]').attr("checked", "true");
- } else {
- if (recoveryStatus === "0") {
- $('p[name="changeRecoveryPasswordBlock"]').addClass("hidden");
- } else {
- $('input:password[name="changeRecoveryPassword"]').val("");
- $('p[name="changeRecoveryPasswordBlock"]').removeClass("hidden");
- }
- }
- }
- );
- }
- );
-
- // change recovery password
-
- $('button:button[name="submitChangeRecoveryKey"]').click(function() {
- var oldRecoveryPassword = $('#oldEncryptionRecoveryPassword').val();
- var newRecoveryPassword = $('#newEncryptionRecoveryPassword').val();
- var confirmNewPassword = $('#repeatedNewEncryptionRecoveryPassword').val();
- OC.msg.startSaving('#encryptionChangeRecoveryKey .msg');
- $.post(
- OC.filePath( 'files_encryption', 'ajax', 'changeRecoveryPassword.php' )
- , { oldPassword: oldRecoveryPassword, newPassword: newRecoveryPassword, confirmPassword: confirmNewPassword }
- , function( data ) {
- OC.msg.finishedSaving('#encryptionChangeRecoveryKey .msg', data);
- }
- );
- });
-
-});
diff --git a/apps/files_encryption/js/settings-personal.js b/apps/files_encryption/js/settings-personal.js
deleted file mode 100644
index b798ba7e4e1..00000000000
--- a/apps/files_encryption/js/settings-personal.js
+++ /dev/null
@@ -1,89 +0,0 @@
-/**
- * Copyright (c) 2013, Sam Tuke <samtuke@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or later.
- * See the COPYING-README file.
- */
-
-function updatePrivateKeyPasswd() {
- var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val();
- var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val();
- OC.msg.startSaving('#encryption .msg');
- $.post(
- OC.filePath( 'files_encryption', 'ajax', 'updatePrivateKeyPassword.php' )
- , { oldPassword: oldPrivateKeyPassword, newPassword: newPrivateKeyPassword }
- , function( data ) {
- if (data.status === "error") {
- OC.msg.finishedSaving('#encryption .msg', data);
- } else {
- OC.msg.finishedSaving('#encryption .msg', data);
- }
- }
- );
-}
-
-$(document).ready(function(){
-
- // Trigger ajax on recoveryAdmin status change
- $( 'input:radio[name="userEnableRecovery"]' ).change(
- function() {
- var recoveryStatus = $( this ).val();
- OC.msg.startAction('#userEnableRecovery .msg', 'Updating recovery keys. This can take some time...');
- $.post(
- OC.filePath( 'files_encryption', 'ajax', 'userrecovery.php' )
- , { userEnableRecovery: recoveryStatus }
- , function( data ) {
- OC.msg.finishedAction('#userEnableRecovery .msg', data);
- }
- );
- // Ensure page is not reloaded on form submit
- return false;
- }
- );
-
- $("#encryptAll").click(
- function(){
-
- // Hide feedback messages in case they're already visible
- $('#encryptAllSuccess').hide();
- $('#encryptAllError').hide();
-
- var userPassword = $( '#userPassword' ).val();
- var encryptAll = $( '#encryptAll' ).val();
-
- $.post(
- OC.filePath( 'files_encryption', 'ajax', 'encryptall.php' )
- , { encryptAll: encryptAll, userPassword: userPassword }
- , function( data ) {
- if ( data.status == "success" ) {
- $('#encryptAllSuccess').show();
- } else {
- $('#encryptAllError').show();
- }
- }
- );
- // Ensure page is not reloaded on form submit
- return false;
- }
-
- );
-
- // update private key password
-
- $('input:password[name="changePrivateKeyPassword"]').keyup(function(event) {
- var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val();
- var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val();
- if (newPrivateKeyPassword !== '' && oldPrivateKeyPassword !== '' ) {
- $('button:button[name="submitChangePrivateKeyPassword"]').removeAttr("disabled");
- if(event.which === 13) {
- updatePrivateKeyPasswd();
- }
- } else {
- $('button:button[name="submitChangePrivateKeyPassword"]').attr("disabled", "true");
- }
- });
-
- $('button:button[name="submitChangePrivateKeyPassword"]').click(function() {
- updatePrivateKeyPasswd();
- });
-
-});