| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
| |
While creating a new user using the API, we also create a new client for the current user.
So the app which just create the user can use its newly created client to configure the app.
That new client is only return after creating the user.
When calling the endpoint /api/user to get user information, the new client information won’t be return.
|
|\
| |
| | |
Displays an error with an annotation with a too long quote
|
| |
| |
| |
| | |
Fix #2762
|
|\ \
| | |
| | | |
Add ability to patch an entry with more fields
|
| |/
| |
| |
| |
| |
| |
| |
| |
| | |
Like when we create an entry, we can now patch an entry with new fields:
- content
- language
- preview_picture
- published_at
- authors
|
|\ \
| | |
| | | |
Use an alternative way to detect images
|
| |/
| |
| |
| |
| |
| |
| | |
When parsing content to retrieve images to save locally, we only check for the content-type of the image response.
In some case, that value is empty.
Now we’re also checking for the first few bytes of the content as an alternative to detect if it’s an image wallabag can handle.
We might get higher image supports using that alternative method.
|
|\ \
| | |
| | | |
Show user command
|
| | |
| | |
| | |
| | | |
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
|
| |/
| |
| |
| | |
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
|
| | |
|
|/
|
|
|
|
|
|
| |
I've added a toggle feature (in internal settings) so that user api creation can be disabled while form registration still can be enabled.
Also, the /api/user endpoint shouldn't require authentication. Even if we check the authentication when sending a GET request, to retrieve current user information.
I've moved all the internal settings definition to config to avoid duplicated place to define them.
I don't know why we didn't did that earlier.
|
|\
| |
| | |
Import disableContentUpdate
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
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.
|
| |
| |
| |
| |
| |
| | |
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.
|
|/
|
|
|
|
| |
Images with `&` in the path weren’t well replaced because they might be with `&` in the html instead.
Replacing `&` with `&` fix the problem.
|
|\
| |
| | |
Isolated tests
|
| |
| |
| |
| | |
Use https://github.com/dmaicher/doctrine-test-bundle to have test isolation.
|
| | |
|
| | |
|
| |
| |
| |
| | |
Add adding more tests for forced content
|
| |
| |
| |
| |
| | |
Instead of using htmlawed (which is already used in graby) use graby directly (which require some refacto on graby side).
Still needs some tests.
|
| |
| |
| |
| | |
Down from 2.2 minutes to 1.39 minutes
|
| |
| |
| |
| | |
It might be better to re-use some graby functionalities to clean html instead of building a new system.
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Entry API can now have these new fields:
- content
- language
- preview_picture
- published_at
Re-use the ContentProxy to be able to do the same using the web UI (in the future).
htmLawed is used to clean stuff from content, I hope it’ll be enough to avoid security breach.
Lower content validation when we want to update an entry with content already defined. Before, language & content_type were required. If there weren’t provided, we re-fetched the content using graby. I think these fields aren’t required for an entry to be created. So I removed them.
Which means some import from the v1 export won’t be re-fetched since they provide content, url & title.
Also, remove liberation link from Readability import to avoid overlaping import (from wallabag v1, which had the same link)
|
|\
| |
| | |
Add support for tag in Instapaper import
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Ignore ActionMarkAsRead when removing tag from entry
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Fixes #2835
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
|
|\ \ \
| |_|/
|/| | |
Fix some Scrutinizer issues
|
| | |
| | |
| | |
| | |
| | |
| | | |
Actually use the correct to way handle that
http://symfony.com/doc/current/components/console/helpers/questionhelper.html#testing-a-command-that-expects-input
|
|\ \ \
| |_|/
|/| | |
Fixed is_starred for wallabag v2 import
|
| | | |
|
|\ \ \
| |_|/
|/| | |
Register through API
|
| | | |
|
| | |
| | |
| | |
| | | |
The Profile validation_groups does not exist and then for validation to be skipped (like password length)
|
| | |
| | |
| | |
| | |
| | |
| | | |
The only ugly things is how we handle error by generating the view and then parse the content to retrieve all errors…
Fix exposition fields in User entity
|
|\ \ \
| |/ /
|/| | |
|
| | | |
|
| | |
| | |
| | |
| | | |
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
|
| |/
|/|
| |
| | |
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
|
| |
| |
| |
| | |
SO switched to http yesterday
|
| |
| |
| |
| |
| | |
Even if the tests fail, that config must stay disabled after the test.
Otherwise it might timeout on other test (because it'll try to save all other images)
|