aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
Commit message (Collapse)AuthorAgeFilesLines
* CleanupJeremy Benoist2016-11-031-2/+1
|
* Fix rest controller mergeJeremy Benoist2016-11-031-0/+3
|
* Merge remote-tracking branch 'origin/master' into 2.2Jeremy Benoist2016-11-031-637/+4
|\
| * Exploded WallabagRestController into many controllersNicolas Lœuillet2016-10-281-520/+2
| | | | | | | | Fix #2503
* | Add entry.saved event to import & restJeremy Benoist2016-11-021-1/+8
| |
* | Add test on /api/annotationsJeremy Benoist2016-10-221-16/+17
| | | | | | | | | | | | | | Fix controller forward in WallabagRestController. Update PHPDoc so it is sorted the same way as others one Duplicate all annotations test to use both api & normal way Also, make annotation tests independent to each other
* | CSJeremy Benoist2016-10-221-1/+0
| |
* | Added a missing namespaceNicolas Lœuillet2016-10-221-0/+1
| |
* | fix cs and phpdocThomas Citharel2016-10-221-18/+6
| |
* | csThomas Citharel2016-10-221-6/+13
| |
* | move codeThomas Citharel2016-10-221-56/+31
| |
* | csThomas Citharel2016-10-221-3/+0
| |
* | bring annotations to APIThomas Citharel2016-10-221-0/+132
| |
* | CSJeremy Benoist2016-10-151-1/+0
| |
* | ApiDoc & Route annotation were conflictedJeremy Benoist2016-10-151-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | The generated error was “Unable to guess how to get a Doctrine instance from the request information.”. I haven’t checked deeper in Doctrine (I know it was coming from the DoctrineParamConverter). Anyway, I check for FosRest possiblity to add extra format without allowing them for every route (like it was done in the first place). I finally found a way but it then seems all request goes to the FormatListener of FosRest so I needed to add a custom rules to match all request to be sure we don’t get a 406 error from FosRest. Should be ok now …
* | Merge pull request #2372 from pmartin/api-get-entry-as-epubJeremy Benoist2016-10-121-2/+27
|\ \ | |/ |/| API: ability to export entry in all available format (epub, pdf, etc...)
| * Add entry export in APIJeremy Benoist2016-10-081-10/+28
| | | | | | | | | | Export isn't available for json & xml because user can use the default entry endpoint instead.
| * API: getEntry can return EPUBPascal MARTIN2016-10-081-1/+8
| |
* | Optimize the way tag list is renderedJeremy Benoist2016-10-091-1/+1
| | | | | | | | | | | | Instead of retrieve all informations about entries of a tag to just count them, we’ll count them before with a fastest query. Also change the layout of the tag list in material design
* | Merge pull request #2393 from wallabag/api-urls-existNicolas Lœuillet2016-10-081-1/+21
|\ \ | | | | | | Ability to check multiple urls in API
| * | Ability to check multiple urls in APIJeremy Benoist2016-10-071-1/+21
| |/
* / Ensure orphan tag are remove in APIJeremy Benoist2016-10-071-0/+28
|/ | | | | | When the association between a tag and an entry is removed, if the tag doesn’t have other entries, we can remove it. Also add more tests for that part and ensure TagControllerTest is isolated from the rest of the test suite (finally!)
* Fix typo & add testJeremy Benoist2016-10-051-1/+1
|
* Fix exists API callThomas Citharel2016-10-051-1/+1
| | | Boo
* Fix parameters in API _linksJeremy Benoist2016-10-021-2/+15
| | | | We forgot to pass them to the factory
* CSJeremy Benoist2016-10-021-1/+1
|
* Add an exists endpoint in APIJeremy Benoist2016-10-011-0/+32
| | | | It should allow third party to check if an url was already saved by a user
* Fix tags count in menuJeremy Benoist2016-09-251-3/+1
| | | | Move enable cache for Tag in the Entity because function `find*` should return result and not a Query
* Re-user JsonResponseJeremy Benoist2016-09-081-40/+27
| | | | Since Symfony 3.1 we can define the json of a JsonResonse using `->setJson()`
* Added tags counter in sidebar (material theme)Nicolas Lœuillet2016-09-041-1/+3
|
* Add some testsJeremy Benoist2016-08-231-23/+35
| | | | | | | | | | | Also, retrieve tag from the request instead of the query (which will be the same but it's more easy to test). Moved down `deleteTagAction` because it conflicted with the new action: api_delete_tag => /api/tags/{tag}.{_format} api_delete_tags_label => /api/tags/label.{_format} And finally, throw exception when a tag is not found before removing it.
* CSThomas Citharel2016-08-231-2/+1
|
* Delete tag or tags by labelThomas Citharel2016-08-231-0/+61
| | | | Tests not included
* Add filter for tags on APIThomas Citharel2016-06-291-1/+2
|
* CSThomas Citharel2016-06-251-1/+1
|
* Add since parameterThomas Citharel2016-06-251-1/+3
|
* PATCH also clears starred and archived signsYuriy Evdokimov2016-05-181-2/+2
|
* Starred and Archived clears if article is already existsYuriy Evdokimov2016-05-181-2/+2
|
* Set the title via POST /api/entriesNicolas Lœuillet2016-05-021-0/+5
| | | | Fix #2009
* Convert array + phpDocJeremy Benoist2016-04-121-1/+1
| | | | Thanks for https://github.com/thomasbachem/php-short-array-syntax-converter
* Remove int castNicolas Lœuillet2016-04-101-2/+2
|
* All the entries are fetched via GET /api/entriesNicolas Lœuillet2016-04-091-3/+3
| | | | Fix #1863: only the unread entries were fetched with GET /api/entries entrypoint. Now, all the entries are fetched
* add checkThomas Citharel2016-03-161-2/+6
|
* fix updating entry status through APIThomas Citharel2016-03-161-6/+2
|
* use integers for archived/starred statusThomas Citharel2016-03-161-18/+18
|
* fix api properties and typoThomas Citharel2016-03-161-2/+2
|
* Don't add entry through API if it already existsThomas Citharel2016-03-161-4/+8
|
* typos & csThomas Citharel2016-03-081-1/+3
|
* Add version in APIVincent2016-03-071-0/+13
|
* Remove 'content' from APIJeremy Benoist2016-03-041-6/+0
| | | | Waiting to find a good solution to avoid side problem since user can no define the content