UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
This commit is contained in:
@@ -0,0 +1,122 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace OCA\Talk\Command\PhoneNumber;
|
||||
|
||||
use OC\Core\Command\Base;
|
||||
use OCA\Talk\Model\PhoneNumber;
|
||||
use OCA\Talk\Model\PhoneNumberMapper;
|
||||
use OCA\Talk\Service\PhoneNumberValidation;
|
||||
use OCP\IDBConnection;
|
||||
use OCP\IUser;
|
||||
use OCP\IUserManager;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
use Symfony\Component\Console\Input\InputOption;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
class ImportPhoneNumbers extends Base {
|
||||
|
||||
public function __construct(
|
||||
private IUserManager $userManager,
|
||||
private PhoneNumberValidation $phoneNumberValidation,
|
||||
private PhoneNumberMapper $mapper,
|
||||
private IDBConnection $db,
|
||||
) {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
#[\Override]
|
||||
protected function configure(): void {
|
||||
$this
|
||||
->setName('talk:phone-number:import')
|
||||
->setDescription('Import a CSV list (format: "number","user") for SIP dial-in')
|
||||
->addOption(
|
||||
'reset',
|
||||
null,
|
||||
InputOption::VALUE_NONE,
|
||||
'Delete all phone numbers before importing',
|
||||
)
|
||||
->addOption(
|
||||
'force',
|
||||
'f',
|
||||
InputOption::VALUE_NONE,
|
||||
'Force the numbers to the given user even when they are assigned already',
|
||||
)
|
||||
;
|
||||
}
|
||||
|
||||
protected function execute(InputInterface $input, OutputInterface $output): int {
|
||||
$reset = (bool)$input->getOption('reset');
|
||||
$force = (bool)$input->getOption('force');
|
||||
|
||||
$this->db->beginTransaction();
|
||||
if ($reset) {
|
||||
$this->db->truncateTable('talk_phone_numbers', false);
|
||||
$force = false;
|
||||
}
|
||||
|
||||
$handle = $this->getResourceFromStdin();
|
||||
if ($handle === false) {
|
||||
$output->writeln('<error>Invalid StdIn provided</error>');
|
||||
return self::FAILURE;
|
||||
}
|
||||
|
||||
$map = [];
|
||||
while ($row = fgetcsv($handle, escape: '')) {
|
||||
if (count($row) !== 2 || $row[0] === '' || $row[1] === '') {
|
||||
continue;
|
||||
}
|
||||
|
||||
try {
|
||||
$row[0] = $this->phoneNumberValidation->validateNumber($row[0]);
|
||||
} catch (\InvalidArgumentException) {
|
||||
$output->writeln('<error>Not a valid phone number ' . $row[0] . '. The format is invalid.</error>');
|
||||
return self::FAILURE;
|
||||
}
|
||||
|
||||
$user = $this->userManager->get($row[1]);
|
||||
if (!$user instanceof IUser) {
|
||||
$output->writeln('<error>Invalid user "' . $row[1] . '" provided</error>');
|
||||
return self::FAILURE;
|
||||
}
|
||||
$row[1] = $user->getUID();
|
||||
|
||||
$map[$row[0]] = $row[1];
|
||||
}
|
||||
|
||||
$entries = $this->mapper->findByPhoneNumbers(array_keys($map));
|
||||
|
||||
if (!$force && !empty($entries)) {
|
||||
$output->writeln('<error>Phone number already assigned:</error>');
|
||||
foreach ($entries as $entry) {
|
||||
$output->writeln(' - ' . $entry->getPhoneNumber());
|
||||
}
|
||||
return self::FAILURE;
|
||||
}
|
||||
|
||||
foreach ($map as $phoneNumber => $userId) {
|
||||
$entry = new PhoneNumber();
|
||||
$entry->setPhoneNumber($phoneNumber);
|
||||
$entry->setActorId($userId);
|
||||
$this->mapper->insert($entry);
|
||||
|
||||
$output->writeln('<info>Phone number ' . $entry->getPhoneNumber() . ' is now assigned to ' . $entry->getActorId() . '</info>');
|
||||
}
|
||||
|
||||
$this->db->commit();
|
||||
return self::SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the resource from stdin ("talk:phone-numbers:import < file.csv")
|
||||
* @return resource|false
|
||||
*/
|
||||
protected function getResourceFromStdin() {
|
||||
return fopen('php://stdin', 'rb');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user