'lib' rewritten.
This commit is contained in:
136
lib/Action/EmailSync.php
Normal file
136
lib/Action/EmailSync.php
Normal file
@@ -0,0 +1,136 @@
|
||||
<?php
|
||||
/**
|
||||
* Nextcloud - user_sql
|
||||
*
|
||||
* @copyright 2018 Marcin Łojewski <dev@mlojewski.me>
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*
|
||||
* 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 email address.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
class EmailSync 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
|
||||
*/
|
||||
public function doAction(User $user)
|
||||
{
|
||||
$this->logger->debug(
|
||||
"Entering EmailSync#doAction($user->uid)", ["app" => $this->appName]
|
||||
);
|
||||
|
||||
$ncMail = $this->config->getUserValue(
|
||||
$user->uid, "settings", "email", ""
|
||||
);
|
||||
|
||||
$result = false;
|
||||
|
||||
switch ($this->properties[Opt::EMAIL_SYNC]) {
|
||||
case App::EMAIL_INITIAL:
|
||||
if (empty($ncMail) && !empty($user->email)) {
|
||||
$this->config->setUserValue(
|
||||
$user->uid, "settings", "email", $user->email
|
||||
);
|
||||
}
|
||||
|
||||
$result = true;
|
||||
break;
|
||||
case App::EMAIL_FORCE_NC:
|
||||
if (!empty($ncMail) && $user->email !== $ncMail) {
|
||||
$user = $this->userRepository->findByUid($user->uid);
|
||||
if (!($user instanceof User)) {
|
||||
break;
|
||||
}
|
||||
|
||||
$user->email = $ncMail;
|
||||
$result = $this->userRepository->save($user);
|
||||
}
|
||||
|
||||
break;
|
||||
case App::EMAIL_FORCE_SQL:
|
||||
if (!empty($user->email) && $user->email !== $ncMail) {
|
||||
$this->config->setUserValue(
|
||||
$user->uid, "settings", "email", $user->email
|
||||
);
|
||||
}
|
||||
|
||||
$result = true;
|
||||
break;
|
||||
}
|
||||
|
||||
$this->logger->debug(
|
||||
"Returning EmailSync#doAction($user->uid): " . ($result ? "true"
|
||||
: "false"),
|
||||
["app" => $this->appName]
|
||||
);
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
41
lib/Action/IUserAction.php
Normal file
41
lib/Action/IUserAction.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/**
|
||||
* Nextcloud - user_sql
|
||||
*
|
||||
* @copyright 2018 Marcin Łojewski <dev@mlojewski.me>
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*
|
||||
* 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\Model\User;
|
||||
|
||||
/**
|
||||
* Action to execute every time an user account is queried.
|
||||
*
|
||||
* @author Marcin Łojewski <dev@mlojewski.me>
|
||||
*/
|
||||
interface IUserAction
|
||||
{
|
||||
/**
|
||||
* Execute an action.
|
||||
*
|
||||
* @param User $user The user entity.
|
||||
*
|
||||
* @return bool The action status.
|
||||
*/
|
||||
public function doAction(User $user);
|
||||
}
|
||||
Reference in New Issue
Block a user