This repository was archived by the owner on Feb 7, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathGenerateContactsCommand.php
210 lines (192 loc) · 6.77 KB
/
GenerateContactsCommand.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<?php
declare(strict_types=1);
namespace Bitrix24\SDK\Tools\Commands;
use Symfony\Component\Console\Attribute\AsCommand;
use Symfony\Component\Console\Command\Command;
use Bitrix24\SDK\Core\Batch;
use Bitrix24\SDK\Core\BulkItemsReader\BulkItemsReaderBuilder;
use Bitrix24\SDK\Core\CoreBuilder;
use Bitrix24\SDK\Core\Credentials\Credentials;
use Bitrix24\SDK\Core\Credentials\WebhookUrl;
use Bitrix24\SDK\Core\Exceptions\BaseException;
use Bitrix24\SDK\Services\ServiceBuilder;
use InvalidArgumentException;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
#[AsCommand(
name: 'b24:generate:contacts',
description: 'generate demo-data contacts in CRM',
hidden: false
)]
class GenerateContactsCommand extends Command
{
/**
* @var LoggerInterface
*/
protected LoggerInterface $logger;
protected const CONTACTS_COUNT = 'count';
protected const WEBHOOK_URL = 'webhook';
/**
* GenerateContactsCommand constructor.
*
* @param LoggerInterface $logger
*/
public function __construct(LoggerInterface $logger)
{
// best practices recommend to call the parent constructor first and
// then set your own properties. That wouldn't work in this case
// because configure() needs the properties set in this constructor
$this->logger = $logger;
parent::__construct();
}
/**
* настройки
*/
protected function configure(): void
{
$this
->setDescription('generate contacts')
->setHelp('generate demo-data contacts in CRM')
->addOption(
self::WEBHOOK_URL,
null,
InputOption::VALUE_REQUIRED,
'bitrix24 incoming webhook',
''
)
->addOption(
self::CONTACTS_COUNT,
null,
InputOption::VALUE_REQUIRED,
'contacts count',
1
);
}
/**
* @param \Symfony\Component\Console\Input\InputInterface $input
* @param \Symfony\Component\Console\Output\OutputInterface $output
*
* @return void
*/
protected function interact(InputInterface $input, OutputInterface $output): void
{
$b24Webhook = (string)$input->getOption(self::WEBHOOK_URL);
if ($b24Webhook === '') {
throw new InvalidArgumentException(sprintf('option %s not found, you must set this option', self::WEBHOOK_URL));
}
}
/**
* @param InputInterface $input
* @param OutputInterface $output
*
* @return int
*/
protected function execute(InputInterface $input, OutputInterface $output): int
{
$this->logger->debug('GenerateContactsCommand.start');
$contactsCount = (int)$input->getOption(self::CONTACTS_COUNT);
$b24Webhook = (string)$input->getOption(self::WEBHOOK_URL);
$io = new SymfonyStyle($input, $output);
$output->writeln(
[
'<info>Generate contacts in CRM</info>',
'<info>========================</info>',
sprintf('webhook url: %s', $b24Webhook),
sprintf('try to add contacts: %s', $contactsCount),
]
);
try {
// todo create service builder factory
$core = (new CoreBuilder())
->withLogger($this->logger)
->withCredentials(Credentials::createFromWebhook(new WebhookUrl($b24Webhook)))
->build();
$batch = new Batch(
$core,
$this->logger
);
$services = new ServiceBuilder(
$core,
$batch,
(new BulkItemsReaderBuilder(
$core,
$batch,
$this->logger
))
->build(),
$this->logger
);
$output->writeln(sprintf('contacts total count: %s', $services->getCRMScope()->contact()->countByFilter()));
$io->section('start adding contacts…');
$timeStart = microtime(true);
foreach (
$services->getCRMScope()->contact()->batch->add(
$this->generateContacts($contactsCount)
) as $queryCnt => $addedItem
) {
/**
* @var $queryResultData \Bitrix24\SDK\Core\Result\AddedItemBatchResult
*/
$io->writeln(
[
sprintf(
'%s Mb |%s of %s | contact id: %s',
round(memory_get_peak_usage(true) / 1024 / 1024, 2),
$queryCnt + 1,
$contactsCount,
$addedItem->getId()
),
]
);
}
$timeEnd = microtime(true);
$io->writeln(GenerateContactsCommand . phpsprintf('batch query duration: %s seconds', round($timeEnd - $timeStart, 2)) . PHP_EOL . PHP_EOL);
$io->success('contacts added');
} catch (BaseException $exception) {
$io = new SymfonyStyle($input, $output);
$io->caution(sprintf('error message: %s', $exception->getMessage()));
$io->text(
$exception->getTraceAsString()
);
} catch (\Throwable $exception) {
$io = new SymfonyStyle($input, $output);
$io->caution('unknown error');
$io->text(
[
sprintf('%s', $exception->getMessage()),
]
);
}
$this->logger->debug('GenerateContactsCommand.finish');
return Command::SUCCESS;
}
/**
* Generate fake contacts
*
* @param int $contactsCount
*
* @return array<int, array> $contacts
* @throws \Exception
*/
protected function generateContacts(int $contactsCount): array
{
$contacts = [];
for ($i = 0; $i < $contactsCount; $i++) {
$contacts[] = [
'NAME' => sprintf('name_%s', $i),
'LAST_NAME' => sprintf('last_%s', $i),
'SECOND_NAME' => sprintf('second_%s', $i),
'PHONE' => [
['VALUE' => sprintf('+7978%s', random_int(1000000, 9999999)), 'VALUE_TYPE' => 'MOBILE'],
],
'EMAIL' => [
['VALUE' => sprintf('test-%s@gmail.com', random_int(1000000, 9999999)), 'VALUE_TYPE' => 'WORK'],
],
];
}
return $contacts;
}
}