isDir() && !$existing_deal->isDot()) { $existing_deals[$existing_deal->getFilename()] = \Shikiryu\LBCReposter\Deal::fromJSON($existing_deal->getRealPath() . '/data.json'); } } function copy_folder($from, $to) { $directory = new RecursiveDirectoryIterator($from); foreach (new RecursiveIteratorIterator($directory) as $filename => $current) { $source = $current->getPathName(); $destination = $to . $current->getFileName(); copy($source, $destination); } } echo sprintf('%u annonces locales, normalement en ligne.%s', count($existing_deals), "\n"); $script_params = parse_ini_file(sprintf('%s/lbcreposter.ini', DEALS_DIR), true); $config = new \Shikiryu\LBCReposter\Config($script_params); $account = new \Shikiryu\LBCReposter\Account($config); $actions = new \Shikiryu\LBCReposter\Actions($account); $actions->setDebug(LOGS_DIR); if ($actions->connect()) { // existing deals $deals = $actions->retrieve(); // Synchro /** @var \Shikiryu\LBCReposter\Deal $deal */ foreach ($deals as $i => $deal) { // l'annonce existe déjà if (in_array($deal->getId(), array_keys($existing_deals))) { echo sprintf('L\'annonce %s existe déjà, ', $deal->getId()); // si elle est vieille, on supprime et on recréé if ($existing_deals[$deal->getId()]->getDateCreation()->add(new DateInterval('P1W')) <= (new DateTime())) { // Suppression echo sprintf('elle est vieille (%s), on la supprime. %s', $existing_deals[$deal->getId()]->getDateCreation()->format('d/m/Y H:i'), "\n"); $actions->delete($deal); // Backup mkdir(BACKUP_DEALS_DIR.'/'.$deal->getId()); copy_folder(EXISTING_DEALS_DIR.'/'.$deal->getId(), BACKUP_DEALS_DIR.'/'.$deal->getId()); // Placement en "à créer" rename(EXISTING_DEALS_DIR.'/'.$deal->getId(), NEW_DEALS_DIR.'/'.$deal->getId()); } else { // sinon on la laisse echo sprintf('et tout va bien. %s', "\n"); } } else { echo sprintf('L\'annonce %s n\'existait pas et est sauvegardée. %s', $deal->getSubject(), "\n"); // Une annonce non sauvegardée ? on la sauve $deal->save(EXISTING_DEALS_DIR); } } // Creation foreach (new DirectoryIterator(NEW_DEALS_DIR) as $new_deal) { if ($new_deal->isDir() && !$new_deal->isDot()) { $new_deal = \Shikiryu\LBCReposter\Deal::fromJSON($new_deal->getRealPath() . '/data.json'); if ($actions->create($new_deal)) { echo sprintf('L\'annonce %s a bien été créée. %s', $new_deal->getSubject(), "\n"); break; } else { echo sprintf('L\'annonce %s n\'a pas bien été créée. %s', $new_deal->getSubject(), "\n"); } sleep(30); } } } else { echo 'not connected'; }