aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Controller/PocketController.php
Commit message (Collapse)AuthorAgeFilesLines
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-23/+23
|
* Moved Pocket token to user configJeremy Benoist2016-09-161-1/+1
|
* Change flash message for queued articlesJeremy Benoist2016-09-131-0/+6
|
* Enable Redis async importJeremy Benoist2016-09-111-2/+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` -
* Convert other imports to RabbitJeremy Benoist2016-09-111-1/+1
|
* 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.
* Convert array + phpDocJeremy Benoist2016-04-121-6/+6
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Fix some Scrutinizer issuesJeremy Benoist2016-03-271-0/+9
|
* Add flashes messagesJeremy Benoist2016-03-201-2/+6
|
* 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-041-7/+5
| | | | 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
|
* Add warning message for PocketImportJeremy Benoist2016-01-311-0/+1
| | | | Warn user if pocket_consumer_key isn't defined
* Fix Pocket generateUrl parametersJeremy Benoist2016-01-151-2/+2
|
* Fix recent updateJeremy Benoist2016-01-151-2/+3
| | | | | | - 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-021-4/+6
| | | | | | | | | - 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-021-1/+1
|
* Rewrote Pocket ImportJeremy Benoist2016-01-021-12/+33
| | | | | | | 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 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-021-5/+4
|
* 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