aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/AbstractImport.php
Commit message (Collapse)AuthorAgeFilesLines
* Add entry.saved event to import & restJeremy Benoist2016-11-021-1/+23
|
* Add Instapaper importJeremy Benoist2016-09-271-0/+4
| | | | Also update ImportController with latest import (chrome, firefox & instapaper).
* Avoid losing entry when fetching failJeremy Benoist2016-09-171-3/+3
| | | | Instead of just say “Failed to save entry” we’ll save the entry at all cost and try to fetch content. If fetching content failed, the entry will still be saved at least, but without content.
* Change flash message for queued articlesJeremy Benoist2016-09-131-1/+14
|
* Enable Redis async importJeremy Benoist2016-09-111-4/+4
| | | | | | | | - using javibravo/simpleue - internal config value are now `import_with_redis` & `import_with_rabbit` which are more clear - if both option are enable rabbit will be choosen - services imports related to async are now splitted into 2 files: `redis.yml` & `rabbit.yml` -
* Fix DateTime & clear()Jeremy Benoist2016-09-111-1/+5
|
* CSJeremy Benoist2016-09-111-0/+2
|
* Some cleanup & refactorJeremy Benoist2016-09-111-3/+39
|
* Convert other imports to RabbitJeremy Benoist2016-09-111-0/+83
|
* Avoid breaking import when fetching failJeremy Benoist2016-08-201-0/+47
graby will throw an Exception in some case (like a bad url, a restricted url or a secured pdf). Import doesn't handle that case and break the whole import. With that commit the import isn't stopped but the entry is just skipped. Also, as a bonus, I've added extra test on WallabagImportV2 when the json is empty.