aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Controller
Commit message (Collapse)AuthorAgeFilesLines
* Jump to Symfony 3.4Jeremy Benoist2018-10-0410-10/+10
| | | | | | | Thanks to the BC compatibility, almost nothing have to be changed. All changes are related to new bundle version of: - SensioFrameworkExtraBundle - DoctrineFixturesBundle
* php-cs-fixerKevin Decherf2018-09-055-5/+5
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fix some namespaces and phpdocNicolas Hart2017-07-291-0/+2
|
* CSJeremy Benoist2017-07-241-6/+6
|
* Add a real configuration for CS-FixerJeremy Benoist2017-07-0111-133/+132
|
* Fix tests & deprecation noticeJeremy Benoist2016-12-155-5/+5
|
* Add Pinboard importJeremy Benoist2016-11-042-0/+79
|
* Add Instapaper importJeremy Benoist2016-09-272-2/+87
| | | | Also update ImportController with latest import (chrome, firefox & instapaper).
* cs & fixesThomas Citharel2016-09-252-4/+4
|
* bring chrome and firefox as separate importsThomas Citharel2016-09-253-12/+93
|
* Import Firefox & Chrome bookmarks into wallabagThomas Citharel2016-09-251-0/+91
|
* Display a message when async import won’t workJeremy Benoist2016-09-241-14/+22
| | | | | Mostly if Redis or RabbitMQ isn’t installed / launched. I guess it’ll avoid some issues.
* Moved Pocket token to user configJeremy Benoist2016-09-161-1/+1
|
* Only display message in queue for adminJeremy Benoist2016-09-161-0/+8
| | | | Instead of for EVERYONE
* Change flash message for queued articlesJeremy Benoist2016-09-133-0/+18
|
* Display how many messages are queueJeremy Benoist2016-09-131-0/+54
| | | | | - update the docker-composer to add Redis - add migrations
* Add more testsJeremy Benoist2016-09-112-2/+2
| | | | And ability to define how many messages can be hanle by the redis worker before stopping (usefull for tests)
* Enable Redis async importJeremy Benoist2016-09-114-8/+16
| | | | | | | | - 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` -
* Convert other imports to RabbitJeremy Benoist2016-09-115-5/+21
|
* Send every imported item to the queueJeremy Benoist2016-09-111-4/+21
| | | | | Instead of queing real Entry to process, we queue all the item to import from Pocket in a raw format. Then, the worker retrieve that information, find / create the entry and save it.
* Add Readability importJeremy Benoist2016-09-011-0/+65
| | | | Based on the JSON export instead of the API (which will be shutting down by the September 30, 2016)
* Convert array + phpDocJeremy Benoist2016-04-122-8/+8
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Refacto wallabag importJeremy Benoist2016-03-283-100/+121
| | | | | Use an abstract class to store all common action from wallabag vX import. Move specificity in v1 & v2 import.
* Fix some Scrutinizer issuesJeremy Benoist2016-03-271-0/+9
|
* Add flashes messagesJeremy Benoist2016-03-203-8/+18
|
* Convert english translation fileJeremy Benoist2016-03-201-5/+5
| | | | | | | - convert english translation to translate key - remove baggy template for login (never used since user isn't logged in and it'll use the default theme: material) - fix tests about text in response (now checking translation key instead of translated text) - remove all ugly `<div class="hidden">{{ form_rest(form) }}</div>`
* Adding testJeremy Benoist2016-03-042-7/+6
| | | | Reformat json file (thanks pro.jsonlint.com)
* cs & tests for wllbg v1 importThomas Citharel2016-03-031-3/+0
|
* french translation & pocketThomas Citharel2016-03-031-2/+21
|
* Mark all imported articles as readThomas Citharel2016-03-032-0/+4
|
* Merge pull request #1612 from wallabag/v2-settings-pageNicolas Lœuillet2016-02-041-0/+1
|\ | | | | Settings page
| * Add warning message for PocketImportJeremy Benoist2016-01-311-0/+1
| | | | | | | | Warn user if pocket_consumer_key isn't defined
* | [#1590] Add JSON import from wallabag v2Nicolas Lœuillet2016-01-201-0/+60
|/
* Fix Pocket generateUrl parametersJeremy Benoist2016-01-151-2/+2
|
* Fix recent updateJeremy Benoist2016-01-152-3/+4
| | | | | | - some missing url parameters from WallabagRestController & EntryController - use a service for `EntryFilterType` to use fully qualified name instead (so changing class signature) - update ImportBundle (url & form)
* Add tagged services for importJeremy Benoist2016-01-023-16/+21
| | | | | | | | | - list services in /import - add url to import service - ImportBundle routing are now prefixed by /import - optimize flush in each import (flushing each 20 contents) - improve design of each import - add more tests
* Rewrote Wallabag v1 importJeremy Benoist2016-01-022-1/+59
|
* Rewrote Pocket ImportJeremy Benoist2016-01-022-58/+35
| | | | | | | For the moment, we won't do a queue system, just a plain synchronous import. We also use ContentProxy to grab content for each article from Pocket. Error from Pocket are now logged using the logger. The ImportInterface need to be simple and not related to oAuth (not all import will use that method).
* Update after previous mergeJeremy Benoist2016-01-021-2/+46
| | | | PR #1443 was merged into this branch to handle all import type in the same place.
* Update url & service nameJeremy Benoist2016-01-021-6/+9
| | | | | Prefix ur with service namel: [service]_[route name] Add comment in Interface
* create ImportController to list importersNicolas Lœuillet2016-01-022-5/+21
|
* service callNicolas Lœuillet2016-01-021-2/+2
|
* refactor pocket importNicolas Lœuillet2016-01-021-105/+7
|
* 1st draft for Pocket import via APINicolas Lœuillet2016-01-021-0/+139