Welcome to mirror list, hosted at ThFree Co, Russian Federation.

detect-migration.js « js « files_encryption « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5627edf4e4d22a6c5bd39a49a0bc80cd65039fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * 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');
				}
			}
		});
	});

});