aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle
Commit message (Collapse)AuthorAgeFilesLines
* Use username to importThomas Citharel2017-05-041-3/+8
| | | | | | | | | | | | | | | | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr> add docs Signed-off-by: Thomas Citharel <tcit@tcit.fr> use username as default Signed-off-by: Thomas Citharel <tcit@tcit.fr> rename user to username typo Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Import: we now skip messages when user is nullNicolas Lœuillet2017-02-201-1/+2
|
* Merge pull request #2667 from wallabag/upgrade-symfony-32Nicolas Lœuillet2016-12-155-5/+5
|\ | | | | Upgrade to Symfony 3.2
| * Fix tests & deprecation noticeJeremy Benoist2016-12-155-5/+5
| |
* | Moved total messages from importNicolas Lœuillet2016-12-081-0/+6
| |
* | Fixed imports with is_starred and is_archivedNicolas Lœuillet2016-12-073-3/+6
| |
* | Casted maxIterations for Redis importNicolas Lœuillet2016-12-061-1/+1
| | | | | | | | Simpleue\Worker wants an integer, we gave it a string
* | Allow fetching content on all import typesJerome Charaoui2016-12-034-8/+0
| | | | | | | | | | For better consistency, allow all types of imported entries to update, which was already the case for Firefox and Chrome.
* | Imported entries which fail to fetch get standard error bodyJerome Charaoui2016-12-024-2/+4
|/
* Add Pinboard importJeremy Benoist2016-11-049-2/+312
|
* CleanupJeremy Benoist2016-11-032-5/+1
|
* Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-031-0/+3
|\
| * Add Instapaper to CLI importLaurent2016-11-011-0/+3
| |
| * Inject parameter instead of serviceJeremy Benoist2016-10-301-1/+0
| | | | | | | | | | We are injecting CraueConfig service when we only need to retrieve one or two values from it. Instead I discovered we can directly inject a value from a service in the service definition!
* | Add warning message for import + download imagesJeremy Benoist2016-11-038-4/+17
| | | | | | | | | | When import isn't async and downloading images is enabled, we warn the user that import can fail. Also, added missing translations
* | CSJeremy Benoist2016-11-021-2/+0
| |
* | Add more importer to wallabag:import commandJeremy Benoist2016-11-021-10/+16
| | | | | | | | All importer available expect Pocket which require an oAuth login.
* | Add entry.saved event to import & restJeremy Benoist2016-11-027-9/+68
| |
* | CleanupJeremy Benoist2016-10-301-1/+0
|/
* Requeue depending on producerJeremy Benoist2016-10-201-0/+12
| | | | Browser import can requeue message from `parseEntry` but we should take care of the way import are handled (depending on the producer)
* Avoid RabbitMQ consumer to loopJeremy Benoist2016-10-201-2/+3
| | | | When the `parseEntry` returns null it means the entry already exists in the database. Sending `false` as return, will requeue the message which will then loop forever.
* Add controller test for InstapaperJeremy Benoist2016-09-274-0/+12
|
* Add Instapaper importJeremy Benoist2016-09-279-3/+308
| | | | Also update ImportController with latest import (chrome, firefox & instapaper).
* Merge pull request #2192 from wallabag/import-browser-bookmarksJeremy Benoist2016-09-2613-6/+658
|\ | | | | Import Firefox & Chrome bookmarks into wallabag
| * Move prepareEntry to dedicated placeJeremy Benoist2016-09-263-35/+42
| | | | | | | | | | Yeah first try was ugly, now each part are in the dedicated place. Also, the date is hardly truncated to 10 chars because Firefox date are 16 chars long and Chrome are 17 chars long. So instead of divised them by a huge number, I prefer to truncate them.
| * Update Firefox fileJeremy Benoist2016-09-251-12/+24
| | | | | | | | | | With real data, the previous looks more than a Chrome converted file. Also, fix date conversion (hope so).
| * Fix bad date format in Browser importJeremy Benoist2016-09-253-62/+23
| |
| * Fixed tests by removing clear()Nicolas Lœuillet2016-09-251-4/+0
| |
| * fix testsThomas Citharel2016-09-253-24/+24
| |
| * cs & fixesThomas Citharel2016-09-255-33/+14
| |
| * bring chrome and firefox as separate importsThomas Citharel2016-09-2512-147/+472
| |
| * Add Chrome path for Mac OSNicolas Lœuillet2016-09-252-11/+1
| |
| * Import Firefox & Chrome bookmarks into wallabagThomas Citharel2016-09-256-6/+386
| |
* | Use scheduled entity insertions to avoid tag duplicateJeremy Benoist2016-09-252-2/+4
|/ | | | Using `getScheduledEntityInsertions()` we can retrieve not yet flushed but already persisted entities and then avoid tags duplication on import.
* Display a message when async import won’t workJeremy Benoist2016-09-242-16/+36
| | | | | Mostly if Redis or RabbitMQ isn’t installed / launched. I guess it’ll avoid some issues.
* Avoid losing entry when fetching failJeremy Benoist2016-09-174-39/+18
| | | | 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.
* Missing some migrationsJeremy Benoist2016-09-161-1/+0
| | | | and CS
* Moved Pocket token to user configJeremy Benoist2016-09-163-13/+7
|
* Only display message in queue for adminJeremy Benoist2016-09-161-0/+8
| | | | Instead of for EVERYONE
* AMPQ -> AMQPJeremy Benoist2016-09-142-9/+9
|
* Change flash message for queued articlesJeremy Benoist2016-09-137-34/+32
|
* Display how many messages are queueJeremy Benoist2016-09-132-0/+65
| | | | | - update the docker-composer to add Redis - add migrations
* Add tests on ImportCommandJeremy Benoist2016-09-111-1/+5
|
* Add more testsJeremy Benoist2016-09-114-3/+7
| | | | And ability to define how many messages can be hanle by the redis worker before stopping (usefull for tests)
* Re-facto EntryConsumerJeremy Benoist2016-09-113-112/+78
| | | | Using an abstract method allow to share code but also can be used it we add a new broker in the future
* Display a message when async is enabledJeremy Benoist2016-09-114-1/+15
|
* Enable Redis async importJeremy Benoist2016-09-1112-43/+300
| | | | | | | | - 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` -
* Retrieve created date from PocketJeremy Benoist2016-09-111-0/+4
|
* Add test for RabbitMQJeremy Benoist2016-09-111-1/+1
| | | | Also update Symfony deps
* Fix DateTime & clear()Jeremy Benoist2016-09-112-2/+11
|