2012-07-25 15:38:40 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Sam Tuke <samtuke@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
require_once realpath(dirname(__FILE__) . '/../../../lib/base.php');
|
|
|
|
require_once realpath(dirname(__FILE__) . '/../lib/crypt.php');
|
|
|
|
require_once realpath(dirname(__FILE__) . '/../lib/keymanager.php');
|
|
|
|
require_once realpath(dirname(__FILE__) . '/../lib/proxy.php');
|
|
|
|
require_once realpath(dirname(__FILE__) . '/../lib/stream.php');
|
|
|
|
require_once realpath(dirname(__FILE__) . '/../lib/util.php');
|
|
|
|
require_once realpath(dirname(__FILE__) . '/../appinfo/app.php');
|
2013-01-02 23:29:22 +04:00
|
|
|
|
2012-11-16 22:30:00 +04:00
|
|
|
use OCA\Encryption;
|
2012-11-14 20:39:35 +04:00
|
|
|
|
2013-05-20 00:28:48 +04:00
|
|
|
/**
|
|
|
|
* Class Test_Encryption_Util
|
|
|
|
*/
|
2013-05-26 22:44:15 +04:00
|
|
|
class Test_Encryption_Util extends \PHPUnit_Framework_TestCase {
|
|
|
|
|
|
|
|
const TEST_ENCRYPTION_UTIL_USER1 = "test-util-user1";
|
|
|
|
const TEST_ENCRYPTION_UTIL_LEGACY_USER = "test-legacy-user";
|
2013-05-20 00:28:48 +04:00
|
|
|
|
|
|
|
public $userId;
|
|
|
|
public $encryptionDir;
|
|
|
|
public $publicKeyDir;
|
|
|
|
public $pass;
|
|
|
|
/**
|
|
|
|
* @var OC_FilesystemView
|
|
|
|
*/
|
|
|
|
public $view;
|
|
|
|
public $keyfilesPath;
|
|
|
|
public $publicKeyPath;
|
|
|
|
public $privateKeyPath;
|
|
|
|
/**
|
|
|
|
* @var \OCA\Encryption\Util
|
|
|
|
*/
|
|
|
|
public $util;
|
|
|
|
public $dataShort;
|
2013-05-20 23:19:28 +04:00
|
|
|
public $legacyEncryptedData;
|
|
|
|
public $legacyEncryptedDataKey;
|
2013-05-26 22:44:15 +04:00
|
|
|
public $legacyKey;
|
|
|
|
public $stateFilesTrashbin;
|
2013-05-20 00:28:48 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
public static function setUpBeforeClass() {
|
2013-05-20 03:24:36 +04:00
|
|
|
// reset backend
|
2013-05-26 22:44:15 +04:00
|
|
|
\OC_User::clearBackends();
|
|
|
|
\OC_User::useBackend('database');
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
// Filesystem related hooks
|
|
|
|
\OCA\Encryption\Helper::registerFilesystemHooks();
|
|
|
|
|
|
|
|
// clear and register hooks
|
|
|
|
\OC_FileProxy::clearProxies();
|
|
|
|
\OC_FileProxy::register(new OCA\Encryption\Proxy());
|
|
|
|
|
|
|
|
// create test user
|
|
|
|
\Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1, true);
|
|
|
|
\Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function setUp() {
|
|
|
|
\OC_User::setUserId(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1);
|
|
|
|
$this->userId = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1;
|
|
|
|
$this->pass = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1;
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-20 03:24:36 +04:00
|
|
|
// set content for encrypting / decrypting in tests
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->dataUrl = realpath(dirname(__FILE__) . '/../lib/crypt.php');
|
2012-11-20 23:10:10 +04:00
|
|
|
$this->dataShort = 'hats';
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->dataLong = file_get_contents(realpath(dirname(__FILE__) . '/../lib/crypt.php'));
|
|
|
|
$this->legacyData = realpath(dirname(__FILE__) . '/legacy-text.txt');
|
|
|
|
$this->legacyEncryptedData = realpath(dirname(__FILE__) . '/legacy-encrypted-text.txt');
|
|
|
|
$this->legacyEncryptedDataKey = realpath(dirname(__FILE__) . '/encryption.key');
|
|
|
|
$this->legacyKey = '30943623843030686906';
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2012-11-20 23:10:10 +04:00
|
|
|
$keypair = Encryption\Crypt::createKeypair();
|
2013-05-20 03:24:36 +04:00
|
|
|
|
|
|
|
$this->genPublicKey = $keypair['publicKey'];
|
2012-11-20 23:10:10 +04:00
|
|
|
$this->genPrivateKey = $keypair['privateKey'];
|
2013-05-20 03:24:36 +04:00
|
|
|
|
|
|
|
$this->publicKeyDir = '/' . 'public-keys';
|
|
|
|
$this->encryptionDir = '/' . $this->userId . '/' . 'files_encryption';
|
2012-11-16 22:30:00 +04:00
|
|
|
$this->keyfilesPath = $this->encryptionDir . '/' . 'keyfiles';
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->publicKeyPath =
|
|
|
|
$this->publicKeyDir . '/' . $this->userId . '.public.key'; // e.g. data/public-keys/admin.public.key
|
|
|
|
$this->privateKeyPath =
|
|
|
|
$this->encryptionDir . '/' . $this->userId . '.private.key'; // e.g. data/admin/admin.private.key
|
2013-05-15 04:38:08 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->view = new \OC_FilesystemView('/');
|
2013-05-15 04:38:08 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->util = new Encryption\Util($this->view, $this->userId);
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
// remember files_trashbin state
|
|
|
|
$this->stateFilesTrashbin = OC_App::isEnabled('files_trashbin');
|
2013-05-01 03:43:56 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
// we don't want to tests with app files_trashbin enabled
|
|
|
|
\OC_App::disable('files_trashbin');
|
2012-07-25 15:38:40 +04:00
|
|
|
}
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-26 05:22:16 +04:00
|
|
|
function tearDown() {
|
2013-05-26 22:44:15 +04:00
|
|
|
// reset app files_trashbin
|
|
|
|
if ($this->stateFilesTrashbin) {
|
|
|
|
OC_App::enable('files_trashbin');
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
OC_App::disable('files_trashbin');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function tearDownAfterClass() {
|
|
|
|
// cleanup test user
|
|
|
|
\OC_User::deleteUser(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1);
|
|
|
|
\OC_User::deleteUser(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
2012-11-16 22:30:00 +04:00
|
|
|
}
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2012-11-16 22:30:00 +04:00
|
|
|
/**
|
|
|
|
* @brief test that paths set during User construction are correct
|
|
|
|
*/
|
2013-05-26 05:22:16 +04:00
|
|
|
function testKeyPaths() {
|
2013-05-26 22:44:15 +04:00
|
|
|
$util = new Encryption\Util($this->view, $this->userId);
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertEquals($this->publicKeyDir, $util->getPath('publicKeyDir'));
|
|
|
|
$this->assertEquals($this->encryptionDir, $util->getPath('encryptionDir'));
|
|
|
|
$this->assertEquals($this->keyfilesPath, $util->getPath('keyfilesPath'));
|
|
|
|
$this->assertEquals($this->publicKeyPath, $util->getPath('publicKeyPath'));
|
|
|
|
$this->assertEquals($this->privateKeyPath, $util->getPath('privateKeyPath'));
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2012-11-16 22:30:00 +04:00
|
|
|
}
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2012-11-16 22:30:00 +04:00
|
|
|
/**
|
2013-05-18 23:37:00 +04:00
|
|
|
* @brief test setup of encryption directories
|
2012-11-16 22:30:00 +04:00
|
|
|
*/
|
2013-05-26 05:22:16 +04:00
|
|
|
function testSetupServerSide() {
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertEquals(true, $this->util->setupServerSide($this->pass));
|
2012-11-16 22:30:00 +04:00
|
|
|
}
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2012-11-16 22:30:00 +04:00
|
|
|
/**
|
2013-05-18 23:37:00 +04:00
|
|
|
* @brief test checking whether account is ready for encryption,
|
2012-11-16 22:30:00 +04:00
|
|
|
*/
|
2013-05-26 05:22:16 +04:00
|
|
|
function testUserIsReady() {
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertEquals(true, $this->util->ready());
|
2013-01-23 23:24:26 +04:00
|
|
|
}
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-20 23:19:28 +04:00
|
|
|
/**
|
|
|
|
* @brief test checking whether account is not ready for encryption,
|
|
|
|
*/
|
2013-05-26 22:44:15 +04:00
|
|
|
// function testUserIsNotReady() {
|
|
|
|
// $this->view->unlink($this->publicKeyDir);
|
|
|
|
//
|
|
|
|
// $params['uid'] = $this->userId;
|
|
|
|
// $params['password'] = $this->pass;
|
|
|
|
// $this->assertFalse(OCA\Encryption\Hooks::login($params));
|
|
|
|
//
|
|
|
|
// $this->view->unlink($this->privateKeyPath);
|
|
|
|
// }
|
2013-05-20 23:19:28 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief test checking whether account is not ready for encryption,
|
|
|
|
*/
|
2013-05-26 22:44:15 +04:00
|
|
|
function testIsLegacyUser() {
|
|
|
|
\Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
|
|
|
|
|
|
|
$userView = new \OC_FilesystemView('/' . \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
2013-05-20 23:19:28 +04:00
|
|
|
|
|
|
|
// Disable encryption proxy to prevent recursive calls
|
|
|
|
$proxyStatus = \OC_FileProxy::$enabled;
|
|
|
|
\OC_FileProxy::$enabled = false;
|
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$encryptionKeyContent = file_get_contents($this->legacyEncryptedDataKey);
|
|
|
|
$userView->file_put_contents('/encryption.key', $encryptionKeyContent);
|
2013-05-20 23:19:28 +04:00
|
|
|
|
|
|
|
\OC_FileProxy::$enabled = $proxyStatus;
|
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$params['uid'] = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER;
|
|
|
|
$params['password'] = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER;
|
2013-05-20 23:19:28 +04:00
|
|
|
|
2013-06-12 16:00:53 +04:00
|
|
|
$this->setMigrationStatus(0, \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
2013-05-20 23:19:28 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertTrue(OCA\Encryption\Hooks::login($params));
|
2013-05-20 23:19:28 +04:00
|
|
|
|
2013-05-28 03:04:09 +04:00
|
|
|
$this->assertEquals($this->legacyKey, \OC::$session->get('legacyKey'));
|
2013-05-20 23:19:28 +04:00
|
|
|
}
|
|
|
|
|
2013-05-26 05:22:16 +04:00
|
|
|
function testRecoveryEnabledForUser() {
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$util = new Encryption\Util($this->view, $this->userId);
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-03-20 22:26:59 +04:00
|
|
|
// Record the value so we can return it to it's original state later
|
2013-05-01 21:18:31 +04:00
|
|
|
$enabled = $util->recoveryEnabledForUser();
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertTrue($util->setRecoveryForUser(1));
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertEquals(1, $util->recoveryEnabledForUser());
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertTrue($util->setRecoveryForUser(0));
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertEquals(0, $util->recoveryEnabledForUser());
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-03-20 22:26:59 +04:00
|
|
|
// Return the setting to it's previous state
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertTrue($util->setRecoveryForUser($enabled));
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-03-20 22:26:59 +04:00
|
|
|
}
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-26 05:22:16 +04:00
|
|
|
function testGetUidAndFilename() {
|
2013-05-20 03:24:36 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
\OC_User::setUserId(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1);
|
2013-05-20 03:24:36 +04:00
|
|
|
|
|
|
|
$filename = 'tmp-' . time() . '.test';
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-20 03:24:36 +04:00
|
|
|
// Disable encryption proxy to prevent recursive calls
|
|
|
|
$proxyStatus = \OC_FileProxy::$enabled;
|
|
|
|
\OC_FileProxy::$enabled = false;
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->view->file_put_contents($this->userId . '/files/' . $filename, $this->dataShort);
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-20 03:24:36 +04:00
|
|
|
// Re-enable proxy - our work is done
|
|
|
|
\OC_FileProxy::$enabled = $proxyStatus;
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$util = new Encryption\Util($this->view, $this->userId);
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
list($fileOwnerUid, $file) = $util->getUidAndFilename($filename);
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertEquals(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_USER1, $fileOwnerUid);
|
2013-04-30 03:35:46 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertEquals($file, $filename);
|
2013-05-26 05:22:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->view->unlink($this->userId . '/files/' . $filename);
|
2013-04-10 19:37:03 +04:00
|
|
|
}
|
2013-05-22 02:55:16 +04:00
|
|
|
|
|
|
|
function testIsSharedPath() {
|
|
|
|
$sharedPath = '/user1/files/Shared/test';
|
|
|
|
$path = '/user1/files/test';
|
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertTrue($this->util->isSharedPath($sharedPath));
|
2013-05-22 02:55:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertFalse($this->util->isSharedPath($path));
|
2013-05-22 02:55:16 +04:00
|
|
|
}
|
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
function testEncryptLegacyFiles() {
|
|
|
|
\Test_Encryption_Util::loginHelper(\Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
2013-05-26 05:22:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$userView = new \OC_FilesystemView('/' . \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
|
|
|
$view = new \OC_FilesystemView('/' . \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER . '/files');
|
2013-05-22 02:55:16 +04:00
|
|
|
|
|
|
|
// Disable encryption proxy to prevent recursive calls
|
|
|
|
$proxyStatus = \OC_FileProxy::$enabled;
|
|
|
|
\OC_FileProxy::$enabled = false;
|
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$encryptionKeyContent = file_get_contents($this->legacyEncryptedDataKey);
|
|
|
|
$userView->file_put_contents('/encryption.key', $encryptionKeyContent);
|
2013-05-22 02:55:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$legacyEncryptedData = file_get_contents($this->legacyEncryptedData);
|
|
|
|
$view->mkdir('/test/');
|
|
|
|
$view->mkdir('/test/subtest/');
|
|
|
|
$view->file_put_contents('/test/subtest/legacy-encrypted-text.txt', $legacyEncryptedData);
|
2013-05-22 02:55:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$fileInfo = $view->getFileInfo('/test/subtest/legacy-encrypted-text.txt');
|
2013-05-22 02:55:16 +04:00
|
|
|
$fileInfo['encrypted'] = true;
|
2013-05-26 22:44:15 +04:00
|
|
|
$view->putFileInfo('/test/subtest/legacy-encrypted-text.txt', $fileInfo);
|
2013-05-22 02:55:16 +04:00
|
|
|
|
|
|
|
\OC_FileProxy::$enabled = $proxyStatus;
|
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$params['uid'] = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER;
|
|
|
|
$params['password'] = \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER;
|
2013-05-22 02:55:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$util = new Encryption\Util($this->view, \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
2013-06-12 16:00:53 +04:00
|
|
|
$this->setMigrationStatus(0, \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER);
|
2013-05-22 02:55:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertTrue(OCA\Encryption\Hooks::login($params));
|
2013-05-22 02:55:16 +04:00
|
|
|
|
2013-05-28 03:04:09 +04:00
|
|
|
$this->assertEquals($this->legacyKey, \OC::$session->get('legacyKey'));
|
2013-05-22 02:55:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$files = $util->findEncFiles('/' . \Test_Encryption_Util::TEST_ENCRYPTION_UTIL_LEGACY_USER . '/files/');
|
2013-05-22 02:55:16 +04:00
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertTrue(is_array($files));
|
2013-05-22 02:55:16 +04:00
|
|
|
|
|
|
|
$found = false;
|
2013-05-26 22:44:15 +04:00
|
|
|
foreach ($files['encrypted'] as $encryptedFile) {
|
|
|
|
if ($encryptedFile['name'] === 'legacy-encrypted-text.txt') {
|
2013-05-22 02:55:16 +04:00
|
|
|
$found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-26 22:44:15 +04:00
|
|
|
$this->assertTrue($found);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $user
|
|
|
|
* @param bool $create
|
|
|
|
* @param bool $password
|
|
|
|
*/
|
|
|
|
public static function loginHelper($user, $create = false, $password = false) {
|
|
|
|
if ($create) {
|
|
|
|
\OC_User::createUser($user, $user);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($password === false) {
|
|
|
|
$password = $user;
|
|
|
|
}
|
|
|
|
|
|
|
|
\OC_Util::tearDownFS();
|
|
|
|
\OC_User::setUserId('');
|
|
|
|
\OC\Files\Filesystem::tearDown();
|
|
|
|
\OC_Util::setupFS($user);
|
|
|
|
\OC_User::setUserId($user);
|
|
|
|
|
|
|
|
$params['uid'] = $user;
|
|
|
|
$params['password'] = $password;
|
|
|
|
OCA\Encryption\Hooks::login($params);
|
2013-05-22 02:55:16 +04:00
|
|
|
}
|
2013-06-12 16:00:53 +04:00
|
|
|
|
|
|
|
private function setMigrationStatus($status, $user) {
|
|
|
|
$sql = 'UPDATE `*PREFIX*encryption` SET `migration_status` = ? WHERE `uid` = ?';
|
|
|
|
$args = array(
|
|
|
|
$status,
|
|
|
|
$user
|
|
|
|
);
|
|
|
|
|
|
|
|
$query = \OCP\DB::prepare($sql);
|
|
|
|
if ($query->execute($args)) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-28 03:04:09 +04:00
|
|
|
}
|