99 lines
2.8 KiB
PHP
99 lines
2.8 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace app\common\library\scrm\spider;
|
||
|
|
|
||
|
|
use app\common\library\scrm\AbstractScrmSpider;
|
||
|
|
use app\common\library\scrm\UnifiedScrmData;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* A2C 云控蜘蛛
|
||
|
|
*/
|
||
|
|
class A2cSpider extends AbstractScrmSpider
|
||
|
|
{
|
||
|
|
private const API_LIST = '/api/talk/counter/share/record/list';
|
||
|
|
|
||
|
|
private const API_DETAILS = '/api/talk/counter/share/detail';
|
||
|
|
|
||
|
|
private const DEFAULT_PER_PAGE_COUNT = 20;
|
||
|
|
|
||
|
|
private string $pageUrl;
|
||
|
|
|
||
|
|
private string $account;
|
||
|
|
|
||
|
|
private string $password;
|
||
|
|
|
||
|
|
private UnifiedScrmData $unifiedData;
|
||
|
|
|
||
|
|
public function __construct(
|
||
|
|
string $pageUrl,
|
||
|
|
string $account = '',
|
||
|
|
string $password = '',
|
||
|
|
string $nodeHost = 'http://127.0.0.1:3001'
|
||
|
|
) {
|
||
|
|
parent::__construct($nodeHost);
|
||
|
|
$this->pageUrl = $pageUrl;
|
||
|
|
$this->account = $account;
|
||
|
|
$this->password = $password;
|
||
|
|
$this->unifiedData = new UnifiedScrmData();
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function getSpiderConfig(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'pageUrl' => $this->pageUrl,
|
||
|
|
'listApi' => self::API_LIST,
|
||
|
|
'detailApi' => self::API_DETAILS,
|
||
|
|
'listMethod' => 'POST',
|
||
|
|
'paginationMode' => self::MODE_UI,
|
||
|
|
'authActions' => [
|
||
|
|
['type' => 'wait', 'ms' => 2000],
|
||
|
|
],
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function extractListTotalPages($listFirstPageData, $countData = null)
|
||
|
|
{
|
||
|
|
$total = (int) ($listFirstPageData['data']['total'] ?? 0);
|
||
|
|
$this->unifiedData->total = $total;
|
||
|
|
if ($total <= self::DEFAULT_PER_PAGE_COUNT) {
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
return (int) ceil($total / self::DEFAULT_PER_PAGE_COUNT);
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function buildListPageParams(int $page): array
|
||
|
|
{
|
||
|
|
return ['page' => $page, 'pageSize' => self::DEFAULT_PER_PAGE_COUNT];
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function getUiPaginationConfig(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'nextBtnSelector' => '.btn-next',
|
||
|
|
'waitMs' => 2000,
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
protected function parseToUnifiedData($detailData, array $allListPagesData): UnifiedScrmData
|
||
|
|
{
|
||
|
|
$unifiedData = $this->unifiedData;
|
||
|
|
if ($detailData) {
|
||
|
|
$unifiedData->todayNewCount = (int) ($detailData['data']['newFollowersToday'] ?? 0);
|
||
|
|
}
|
||
|
|
foreach ($allListPagesData as $pageRaw) {
|
||
|
|
$records = $pageRaw['data']['rows'] ?? [];
|
||
|
|
foreach ($records as $item) {
|
||
|
|
if (empty($item['account'])) {
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
$number = (string) $item['account'];
|
||
|
|
$isOnline = isset($item['numberStatus']) && (int) $item['numberStatus'] === 1;
|
||
|
|
$unifiedData->addNumber($number, $isOnline, (int) ($item['newFollowersToday'] ?? 0));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return $unifiedData;
|
||
|
|
}
|
||
|
|
}
|