aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/AbstractImport.php
Commit message (Collapse)AuthorAgeFilesLines
* CSJeremy Benoist2017-10-091-1/+1
|
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-26/+26
|
* We don't need that getterJeremy Benoist2017-06-011-8/+0
|
* Rewrote code & fix testsJeremy Benoist2017-06-011-5/+2
|
* Fix testsJeremy Benoist2017-06-011-1/+4
|
* CSJeremy Benoist2017-06-011-2/+1
|
* Add disableContentUpdate import optionJerome Charaoui2017-06-011-2/+27
| | | | | | This commit also decouples the "import" and "update" functions inside ContentProxy. If a content array is available, it must be passed to the new importEntry method.
* Avoid returning objects passed by reference.Jerome Charaoui2017-06-011-3/+1
| | | | | | Objects are always passed by reference, so it doesn't make sense to return an object which is passed by reference as it will always be the same object. This change makes the code a bit more readable.
* Move Tags assigner to a separate fileThomas Citharel2017-05-271-1/+4
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* 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.