-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
63 changed files
with
1,000 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,10 +8,10 @@ | |
Retrieve the users and groups info. Allow the users to change their passwords. | ||
Sync the users' email addresses with the addresses stored by Nextcloud. | ||
</description> | ||
<version>4.0.0-rc2</version> | ||
<version>4.0.0</version> | ||
<licence>agpl</licence> | ||
<author>Andreas Böhler <dev (at) aboehler (dot) at></author> | ||
<author>Marcin Łojewski <[email protected]></author> | ||
<author>Marcin Łojewski</author> | ||
<author>Andreas Böhler</author> | ||
<namespace>UserSQL</namespace> | ||
<bugs>https://github.com/nextcloud/user_sql/issues</bugs> | ||
<repository>https://github.com/nextcloud/user_sql</repository> | ||
|
@@ -22,7 +22,7 @@ | |
<category>auth</category> | ||
<dependencies> | ||
<php min-version="7.0"/> | ||
<nextcloud min-version="13" max-version="13"/> | ||
<nextcloud min-version="14" max-version="14"/> | ||
</dependencies> | ||
<settings> | ||
<admin>\OCA\UserSQL\Settings\Admin</admin> | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<?php | ||
/** | ||
* Nextcloud - user_sql | ||
* | ||
* @copyright 2018 Marcin Łojewski <[email protected]> | ||
* @author Marcin Łojewski <[email protected]> | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace OCA\UserSQL\Action; | ||
|
||
use OCA\UserSQL\Constant\App; | ||
use OCA\UserSQL\Constant\Opt; | ||
use OCA\UserSQL\Model\User; | ||
use OCA\UserSQL\Properties; | ||
use OCA\UserSQL\Repository\UserRepository; | ||
use OCP\IConfig; | ||
use OCP\ILogger; | ||
|
||
/** | ||
* Synchronizes the user quota. | ||
* | ||
* @author Marcin Łojewski <[email protected]> | ||
*/ | ||
class QuotaSync implements IUserAction | ||
{ | ||
/** | ||
* @var string The application name. | ||
*/ | ||
private $appName; | ||
/** | ||
* @var ILogger The logger instance. | ||
*/ | ||
private $logger; | ||
/** | ||
* @var Properties The properties array. | ||
*/ | ||
private $properties; | ||
/** | ||
* @var IConfig The config instance. | ||
*/ | ||
private $config; | ||
/** | ||
* @var UserRepository The user repository. | ||
*/ | ||
private $userRepository; | ||
|
||
/** | ||
* The default constructor. | ||
* | ||
* @param string $appName The application name. | ||
* @param ILogger $logger The logger instance. | ||
* @param Properties $properties The properties array. | ||
* @param IConfig $config The config instance. | ||
* @param UserRepository $userRepository The user repository. | ||
*/ | ||
public function __construct( | ||
$appName, ILogger $logger, Properties $properties, IConfig $config, | ||
UserRepository $userRepository | ||
) { | ||
$this->appName = $appName; | ||
$this->logger = $logger; | ||
$this->properties = $properties; | ||
$this->config = $config; | ||
$this->userRepository = $userRepository; | ||
} | ||
|
||
/** | ||
* @inheritdoc | ||
* @throws \OCP\PreConditionNotMetException | ||
*/ | ||
public function doAction(User $user) | ||
{ | ||
$this->logger->debug( | ||
"Entering QuotaSync#doAction($user->uid)", ["app" => $this->appName] | ||
); | ||
|
||
$ncQuota = $this->config->getUserValue( | ||
$user->uid, "files", "quota", "" | ||
); | ||
|
||
$result = false; | ||
|
||
switch ($this->properties[Opt::QUOTA_SYNC]) { | ||
case App::SYNC_INITIAL: | ||
if (empty($ncQuota) && !empty($user->quota)) { | ||
$this->config->setUserValue( | ||
$user->uid, "files", "quota", $user->quota | ||
); | ||
} | ||
|
||
$result = true; | ||
break; | ||
case App::SYNC_FORCE_NC: | ||
if (!empty($ncQuota) && $user->quota !== $ncQuota) { | ||
$user = $this->userRepository->findByUid($user->uid); | ||
if (!($user instanceof User)) { | ||
break; | ||
} | ||
|
||
$user->quota = $ncQuota; | ||
$result = $this->userRepository->save($user); | ||
} | ||
|
||
break; | ||
case App::SYNC_FORCE_SQL: | ||
if (!empty($user->quota) && $user->quota !== $ncQuota) { | ||
$this->config->setUserValue( | ||
$user->uid, "files", "quota", $user->quota | ||
); | ||
} | ||
|
||
$result = true; | ||
break; | ||
} | ||
|
||
$this->logger->debug( | ||
"Returning QuotaSync#doAction($user->uid): " . ($result ? "true" | ||
: "false"), | ||
["app" => $this->appName] | ||
); | ||
|
||
return $result; | ||
} | ||
} |
Oops, something went wrong.