123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2017 Bjoern Schiessle <bjoern@schiessle.org>
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Côme Chilliet <come.chilliet@nextcloud.com>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Patrik Kernstock <info@pkern.at>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * 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 <http://www.gnu.org/licenses/>.
- *
- */
- namespace OCA\Settings\BackgroundJobs;
- use OCP\Accounts\IAccountManager;
- use OCP\Accounts\PropertyDoesNotExistException;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Utility\ITimeFactory;
- use OCP\BackgroundJob\IJobList;
- use OCP\BackgroundJob\Job;
- use OCP\Http\Client\IClientService;
- use OCP\IConfig;
- use OCP\IUserManager;
- use Psr\Log\LoggerInterface;
- class VerifyUserData extends Job {
- /** @var bool */
- private bool $retainJob = true;
- /** @var int max number of attempts to send the request */
- private int $maxTry = 24;
- /** @var int how much time should be between two tries (1 hour) */
- private int $interval = 3600;
- private string $lookupServerUrl;
- public function __construct(
- private IAccountManager $accountManager,
- private IUserManager $userManager,
- private IClientService $httpClientService,
- private LoggerInterface $logger,
- ITimeFactory $timeFactory,
- private IConfig $config,
- ) {
- parent::__construct($timeFactory);
- $lookupServerUrl = $config->getSystemValue('lookup_server', 'https://lookup.nextcloud.com');
- $this->lookupServerUrl = rtrim($lookupServerUrl, '/');
- }
- public function start(IJobList $jobList): void {
- if ($this->shouldRun($this->argument)) {
- parent::start($jobList);
- $jobList->remove($this, $this->argument);
- if ($this->retainJob) {
- $this->reAddJob($jobList, $this->argument);
- } else {
- $this->resetVerificationState();
- }
- }
- }
- protected function run($argument) {
- $try = (int)$argument['try'] + 1;
- switch ($argument['type']) {
- case IAccountManager::PROPERTY_WEBSITE:
- $result = $this->verifyWebsite($argument);
- break;
- case IAccountManager::PROPERTY_TWITTER:
- case IAccountManager::PROPERTY_EMAIL:
- $result = $this->verifyViaLookupServer($argument, $argument['type']);
- break;
- default:
- // no valid type given, no need to retry
- $this->logger->error($argument['type'] . ' is no valid type for user account data.');
- $result = true;
- }
- if ($result === true || $try > $this->maxTry) {
- $this->retainJob = false;
- }
- }
- /**
- * verify web page
- *
- * @param array $argument
- * @return bool true if we could check the verification code, otherwise false
- */
- protected function verifyWebsite(array $argument) {
- $result = false;
- $url = rtrim($argument['data'], '/') . '/.well-known/' . 'CloudIdVerificationCode.txt';
- $client = $this->httpClientService->newClient();
- try {
- $response = $client->get($url);
- } catch (\Exception $e) {
- return false;
- }
- if ($response->getStatusCode() === Http::STATUS_OK) {
- $result = true;
- $publishedCode = $response->getBody();
- // remove new lines and spaces
- $publishedCodeSanitized = trim(preg_replace('/\s\s+/', ' ', $publishedCode));
- $user = $this->userManager->get($argument['uid']);
- // we don't check a valid user -> give up
- if ($user === null) {
- $this->logger->error($argument['uid'] . ' doesn\'t exist, can\'t verify user data.');
- return $result;
- }
- $userAccount = $this->accountManager->getAccount($user);
- $websiteProp = $userAccount->getProperty(IAccountManager::PROPERTY_WEBSITE);
- $websiteProp->setVerified($publishedCodeSanitized === $argument['verificationCode']
- ? IAccountManager::VERIFIED
- : IAccountManager::NOT_VERIFIED
- );
- $this->accountManager->updateAccount($userAccount);
- }
- return $result;
- }
- protected function verifyViaLookupServer(array $argument, string $dataType): bool {
- if (empty($this->lookupServerUrl) ||
- $this->config->getAppValue('files_sharing', 'lookupServerUploadEnabled', 'yes') !== 'yes' ||
- $this->config->getSystemValue('has_internet_connection', true) === false) {
- return true;
- }
- $user = $this->userManager->get($argument['uid']);
- // we don't check a valid user -> give up
- if ($user === null) {
- $this->logger->info($argument['uid'] . ' doesn\'t exist, can\'t verify user data.');
- return true;
- }
- $cloudId = $user->getCloudId();
- $lookupServerData = $this->queryLookupServer($cloudId);
- // for some reasons we couldn't read any data from the lookup server, try again later
- if (empty($lookupServerData) || empty($lookupServerData[$dataType])) {
- return false;
- }
- // lookup server has verification data for wrong user data (e.g. email address), try again later
- if ($lookupServerData[$dataType]['value'] !== $argument['data']) {
- return false;
- }
- // lookup server hasn't verified the email address so far, try again later
- if ($lookupServerData[$dataType]['verified'] === IAccountManager::NOT_VERIFIED) {
- return false;
- }
- try {
- $userAccount = $this->accountManager->getAccount($user);
- $property = $userAccount->getProperty($dataType);
- $property->setVerified(IAccountManager::VERIFIED);
- $this->accountManager->updateAccount($userAccount);
- } catch (PropertyDoesNotExistException $e) {
- return false;
- }
- return true;
- }
- /**
- * @param string $cloudId
- * @return array
- */
- protected function queryLookupServer($cloudId) {
- try {
- $client = $this->httpClientService->newClient();
- $response = $client->get(
- $this->lookupServerUrl . '/users?search=' . urlencode($cloudId) . '&exactCloudId=1',
- [
- 'timeout' => 10,
- 'connect_timeout' => 3,
- ]
- );
- $body = json_decode($response->getBody(), true);
- if (is_array($body) && isset($body['federationId']) && $body['federationId'] === $cloudId) {
- return $body;
- }
- } catch (\Exception $e) {
- // do nothing, we will just re-try later
- }
- return [];
- }
- /**
- * re-add background job with new arguments
- *
- * @param IJobList $jobList
- * @param array $argument
- */
- protected function reAddJob(IJobList $jobList, array $argument) {
- $jobList->add(VerifyUserData::class,
- [
- 'verificationCode' => $argument['verificationCode'],
- 'data' => $argument['data'],
- 'type' => $argument['type'],
- 'uid' => $argument['uid'],
- 'try' => (int)$argument['try'] + 1,
- 'lastRun' => time()
- ]
- );
- }
- /**
- * test if it is time for the next run
- *
- * @param array $argument
- * @return bool
- */
- protected function shouldRun(array $argument) {
- $lastRun = (int)$argument['lastRun'];
- return ((time() - $lastRun) > $this->interval);
- }
- /**
- * reset verification state after max tries are reached
- */
- protected function resetVerificationState(): void {
- $user = $this->userManager->get($this->argument['uid']);
- if ($user !== null) {
- $userAccount = $this->accountManager->getAccount($user);
- try {
- $property = $userAccount->getProperty($this->argument['type']);
- $property->setVerified(IAccountManager::NOT_VERIFIED);
- $this->accountManager->updateAccount($userAccount);
- } catch (PropertyDoesNotExistException $e) {
- return;
- }
- }
- }
- }
|