28 lines
800 B
PHP
28 lines
800 B
PHP
<?php
|
|
/**
|
|
* 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.
|
|
*
|
|
* @brief check migration status
|
|
*/
|
|
use OCA\Encryption\Util;
|
|
|
|
\OCP\JSON::checkAppEnabled('files_encryption');
|
|
|
|
$user = isset($_POST['user']) ? $_POST['user'] : '';
|
|
$password = isset($_POST['password']) ? $_POST['password'] : '';
|
|
|
|
$migrationCompleted = true;
|
|
|
|
if ($user !== '' && $password !== '') {
|
|
if (\OCP\User::checkPassword($user, $password)) {
|
|
$util = new Util(new \OC_FilesystemView('/'), $user);
|
|
if ($util->getMigrationStatus() !== Util::MIGRATION_COMPLETED) {
|
|
$migrationCompleted = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
\OCP\JSON::success(array('data' => array('migrationCompleted' => $migrationCompleted)));
|