🚧 Démarre le développement suite au passage à React

This commit is contained in:
Shikiryu
2018-06-29 00:04:32 +02:00
parent 7cada3dd07
commit 3a5008cc95
6 changed files with 127 additions and 29 deletions

View File

@@ -2,17 +2,22 @@
namespace Shikiryu\LBCReposter;
use GuzzleHttp\Exception\GuzzleException;
use Symfony\Component\DomCrawler\Crawler;
class Actions
{
const HOME_URL = 'https://www.leboncoin.fr/';
const LOGIN_URL = 'https://www.leboncoin.fr/beta/ajax/popins/connexion.html';
const ACCOUNT_URL = 'https://compteperso.leboncoin.fr/account/index.html';
const ADD_URL = 'https://www.leboncoin.fr/ai/form/0';
const DELETE_URL = 'https://compteperso.leboncoin.fr/store/main?cmd=adservices';
const UPLOAD_URL = 'https://www.leboncoin.fr/ai/photo_upload_ajax/0';
const API_LOGIN_URL = 'https://api.leboncoin.fr/api/oauth/v1/token';
const API_DEAL_RETRIEVE_URL = 'https://api.leboncoin.fr/api/dashboard/v1/search';
const API_PROFILE_URL = 'https://api.leboncoin.fr/api/accounts/v1/accounts/me/personaldata';
const API_STATUS_URL = 'https://api.leboncoin.fr/api/dashboard/v1/kyc_status/me';
const VERBOSE_INFO = 1;
const VERBOSE_PAGE = 2;
const VERBOSE_REQUEST = 4;
@@ -21,6 +26,8 @@ class Actions
protected $debug = false;
protected $verbose = self::VERBOSE_INFO;
protected $access_token;
/**
* @var Account
*/
@@ -80,12 +87,34 @@ class Actions
{
if (!$this->account->isConnected()) {
// Let's connect to your account (or not)
$crawler = $this->account->getClient()->request('GET', self::LOGIN_URL);
$this->addPageDebug('connect', $crawler);
$form = $crawler->selectButton('Se connecter')->form();
$crawler = $this->account->getClient()->submit($form, ['st_username' => $this->account->getConfig()->login, 'st_passwd' => $this->account->getConfig()->password]);
$this->addPageDebug('checkIsConnected', $crawler);
$this->account->setConnected($crawler->filter('.account_userinfo')->count() > 0);
try {
$crawler = $this->account->getClient()->request('POST', self::API_LOGIN_URL, [
'form_params' => [
'client_id' => 'frontweb',
'grant_type' => 'password',
'password' => $this->account->getConfig()->password,
'username' => $this->account->getConfig()->login
]
]);
$response = json_decode($crawler->getBody()->getContents());
$this->access_token = $response->access_token;
} catch (GuzzleException $e) {
$this->account->setConnected(false);
}
try {
$crawler = $this->account->getClient()->request('GET', self::API_STATUS_URL,
[
'headers' => [
'Accept' => 'application/json',
'Authorization' => sprintf('Bearer %s', $this->access_token)
]
]
);
$response = json_decode($crawler->getBody()->getContents());
$this->account->setConnected($response->status === 1);
} catch (GuzzleException $e) {
$this->account->setConnected(false);
}
}
return $this->account->isConnected();
}
@@ -99,7 +128,40 @@ class Actions
{
if ($this->connect()) {
// Let's go to our dashboard
$crawler = $this->account->getClient()->request('GET', self::ACCOUNT_URL);
$search_params = [
'context' => 'default',
'filters' => [
'owner' => [
'store_id' => ''
]
],
'limit' => '5',
'offset' => '0',
'sort_by' => 'date',
'sort_order' => 'desc',
];
var_dump($search_params);
var_dump( $this->access_token );
try {
$crawler = $this->account->getClient()->request('POST', self::API_DEAL_RETRIEVE_URL,
[
'headers' => [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
// 'api_key' => self::API_KEY,
'Authorization' => sprintf('Bearer %s', $this->access_token),
],
'body' => json_encode($search_params),
'debug' => true,
]
);
$response = json_decode($crawler->getBody()->getContents());
var_dump($response); exit;
$this->account->setConnected($response->status === 1);
} catch (GuzzleException $e) {
echo $e->getMessage() . ' - '.$e->getTraceAsString(); exit;
$this->account->setConnected(false);
}
$this->addPageDebug('retrieve', $crawler);
// Let's list our existing deals
$deals = $crawler->filter('#dashboard .list .element')->each(