aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/WallabagImport.php
Commit message (Collapse)AuthorAgeFilesLines
* Add controller test for InstapaperJeremy Benoist2016-09-271-0/+2
|
* Use scheduled entity insertions to avoid tag duplicateJeremy Benoist2016-09-251-1/+2
| | | | Using `getScheduledEntityInsertions()` we can retrieve not yet flushed but already persisted entities and then avoid tags duplication on import.
* Avoid losing entry when fetching failJeremy Benoist2016-09-171-11/+5
| | | | 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-11/+0
|
* Add ability to define created_at for all importJeremy Benoist2016-09-111-0/+4
| | | | | | At the moment only Readability & wallabag v2 import allow created_at import. Pocket removed `time_added` field from their API v2 to v3... And wallabag v1 doesn't export that value.
* CSJeremy Benoist2016-09-111-2/+0
|
* Some cleanup & refactorJeremy Benoist2016-09-111-2/+0
|
* Convert other imports to RabbitJeremy Benoist2016-09-111-75/+43
|
* Clearing entities in the loop fail on PostgresJeremy Benoist2016-09-111-4/+1
| | | | It looks like when you clear entities on Postgres some references are lost and tags are not saved :-/
* Fix error on EntityManager clearJeremy Benoist2016-09-111-1/+4
| | | | | Introduced in the recent 2.5.5 release. Also updated deps.
* Avoid breaking import when fetching failJeremy Benoist2016-08-201-21/+8
| | | | | | | | | 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.
* Add testsNicolas Lœuillet2016-04-181-1/+1
|
* Add doctrine clear after flush, thanks to @BitOne talk at Symfony LiveNicolas Lœuillet2016-04-181-0/+1
|
* Refacto wallabag importJeremy Benoist2016-03-281-0/+204
Use an abstract class to store all common action from wallabag vX import. Move specificity in v1 & v2 import.