🔊 Ajoute des logs

This commit is contained in:
2017-10-01 22:40:56 +02:00
parent 768af6e636
commit c078fc1c68
3 changed files with 97 additions and 6 deletions

View File

@@ -13,6 +13,14 @@ class Actions
const DELETE_URL = 'https://compteperso.leboncoin.fr/store/main?cmd=adservices';
const UPLOAD_URL = 'https://www.leboncoin.fr/ai/photo_upload_ajax/0';
const VERBOSE_INFO = 1;
const VERBOSE_PAGE = 2;
const VERBOSE_REQUEST = 4;
const VERBOSE_ALL = 8;
protected $debug = false;
protected $verbose = self::VERBOSE_INFO;
/**
* @var Account
*/
@@ -27,6 +35,39 @@ class Actions
$this->account = $account;
}
/**
* @param bool $debug
* @return Actions
*/
public function setDebug($debug)
{
$this->debug = $debug;
return $this;
}
/**
* @param int $verbose
* @return Actions
*/
public function setVerbose($verbose)
{
$this->verbose = $verbose;
return $this;
}
/**
* @param $action
* @param Crawler $crawler
* @return bool|int
*/
private function addPageDebug($action, Crawler $crawler)
{
if ($this->debug !== false) {
return file_put_contents(sprintf('%s/%s-%s.html', $this->debug, date('YmdHi'), $action), $crawler->html());
}
return true;
}
/**
* Check if connected, if not, try to connect you
@@ -40,8 +81,10 @@ 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);
}
return $this->account->isConnected();
@@ -57,6 +100,7 @@ class Actions
if ($this->connect()) {
// Let's go to our dashboard
$crawler = $this->account->getClient()->request('GET', self::ACCOUNT_URL);
$this->addPageDebug('retrieve', $crawler);
// Let's list our existing deals
$deals = $crawler->filter('#dashboard .list .element')->each(
function (Crawler $node) {
@@ -87,7 +131,18 @@ class Actions
try {
$crawler = $this->account->getClient()->request('GET', self::ADD_URL);
$form = $crawler->selectButton('Valider')->form();
$image0 = sprintf('%s/%s/image0.jpg', DEALS_DIR, $deal->getId());
$path = $deal->getPath();
if (empty($path)) {
$path = sprintf('%s/%s', DEALS_DIR, $deal->getId());
}
$images = [];
$i = 0;
foreach (new \DirectoryIterator($path) as $file) {
if ($file->isFile() && $file->getExtension() === 'jpg') {
$images['image'.$i] = $file->getRealPath();
$i++;
}
}
$fields = $form->getPhpValues();
$fields = array_merge(
$fields,
@@ -118,12 +173,15 @@ class Actions
);
$uri = $form->getUri();
// It needs to be done twice !!
$this->account->getClient()->request('POST', $uri, $fields, ['image0' => $image0]);
$crawler = $this->account->getClient()->request('POST', $uri, $fields, ['image0' => $image0]);
$crawler = $this->account->getClient()->request('POST', $uri, $fields, $images);
$this->addPageDebug('add-1', $crawler);
$crawler = $this->account->getClient()->request('POST', $uri, $fields, $images);
$this->addPageDebug('add-2', $crawler);
// TODO need to check if we're in the good page
// Let's validate
$form = $crawler->selectButton('Valider mon annonce')->form();
$crawler = $this->account->getClient()->submit($form, ['accept_rule' => 1]);
$this->addPageDebug('add-validation', $crawler);
// TODO return if it's the validation page or not
return true;
} catch (\Exception $e) {
@@ -148,9 +206,11 @@ class Actions
'continue' => 'Continuer'
];
$crawler = $this->account->getClient()->request('POST', self::DELETE_URL, $fields);
$this->addPageDebug('delete', $crawler);
// confirmation
$form = $crawler->selectButton('Valider')->form();
$crawler = $this->account->getClient()->submit($form, ['delete_reason' => '1']);
$this->addPageDebug('delete-validation', $crawler);
// TODO return if it's the validation page or not
return true;
}