aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity
Commit message (Collapse)AuthorAgeFilesLines
* Add new Helper to process Ignore Origin rules and RulerZ operatorKevin Decherf2020-04-252-4/+2
| | | | | | | | | | This commits adds a new helper like RuleBasedTagger for processing ignore origin rules. It also adds a new custom RulerZ operator for the '~' pattern matching rule. Renames 'pattern' with '_all' in IgnoreOriginRule entity. Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Add IgnoreOriginRule-related entities, db migration, update configKevin Decherf2020-04-256-1/+214
| | | | | | | | Add IgnoreOriginUserRule for user-defined rules and IgnoreOriginInstanceRule for system-wide rules. Add an interface for these two new entities. Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Fix createdAt date range filterKevin Decherf2020-03-221-1/+1
| | | | | | | | | | | - hiddenName has been disabled in order to fix the missing date range values when using the material theme - data format has been changed to 'Y-m-d' in order to comply with the browser date input default format - tests: date() and strtotime have been replaced with DateTime-related objects Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Use lang attributeSimounet2020-01-231-0/+13
|
* Update depsJeremy Benoist2019-11-124-22/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also CS (because cs-fixer got an update) Package operations: 0 installs, 26 updates, 0 removals - Updating twig/twig (v2.12.1 => v2.12.2) - Updating symfony/symfony (v3.4.33 => v3.4.34) - Updating doctrine/event-manager (v1.0.0 => 1.1.0) - Updating doctrine/collections (v1.6.2 => 1.6.3) - Updating doctrine/cache (v1.8.1 => 1.9.0) - Updating doctrine/persistence (1.1.1 => 1.2.0) - Updating doctrine/inflector (v1.3.0 => 1.3.1) - Updating symfony/mime (v4.3.5 => v4.3.7) - Updating swiftmailer/swiftmailer (v6.2.1 => v6.2.3) - Updating symfony/swiftmailer-bundle (v3.3.0 => v3.3.1) - Updating doctrine/dbal (v2.9.2 => v2.9.3) - Updating doctrine/instantiator (1.2.0 => 1.3.0) - Updating j0k3r/graby-site-config (1.0.93 => 1.0.94) - Updating phpoption/phpoption (1.5.0 => 1.5.2) - Updating symfony/http-client-contracts (v1.1.7 => v1.1.8) - Updating symfony/http-client (v4.3.5 => v4.3.7) - Updating sensiolabs/security-checker (v6.0.2 => v6.0.3) - Updating paragonie/constant_time_encoding (v2.2.3 => v2.3.0) - Updating scheb/two-factor-bundle (v4.7.1 => v4.8.0) - Updating symfony/phpunit-bridge (v4.3.6 => v4.3.7) - Updating composer/xdebug-handler (1.3.3 => 1.4.0) - Updating friendsofphp/php-cs-fixer (v2.15.3 => v2.16.0) - Updating doctrine/data-fixtures (v1.3.2 => 1.3.3) - Updating nette/schema (v1.0.0 => v1.0.1) - Updating nikic/php-parser (v4.2.4 => v4.3.0) - Updating sentry/sentry (2.2.2 => 2.2.4)
* Rename internal settings tableJeremy Benoist2019-08-082-1/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | In fact it's not _just_ a rename. We are now able to use our own entity with the CraueConfigBundle which allow us to enforce a custom length on string field and avoid error with utf8mb4 on MySQL. To fix that issue before we were in need to fork CraueConfigBundle to hard apply these length changes. The recent 2.3.0 release fix that issue. That's why we are in need to rename the table (getting rid of the bundle name from it) Also updating deps: - Updating symfony/polyfill-mbstring (v1.11.0 => v1.12.0) - Updating symfony/polyfill-ctype (v1.11.0 => v1.12.0) - Updating symfony/polyfill-php70 (v1.11.0 => v1.12.0) - Updating symfony/polyfill-util (v1.11.0 => v1.12.0) - Updating symfony/polyfill-php56 (v1.11.0 => v1.12.0) - Updating symfony/polyfill-intl-icu (v1.11.0 => v1.12.0) - Updating symfony/polyfill-apcu (v1.11.0 => v1.12.0) - Updating j0k3r/graby-site-config (1.0.88 => 1.0.89) - Updating php-http/message (1.7.2 => 1.8.0) - Updating symfony/polyfill-php73 (v1.11.0 => v1.12.0) - Updating symfony/http-client (v4.3.2 => v4.3.3) - Updating symfony/polyfill-php72 (v1.11.0 => v1.12.0) - Updating symfony/polyfill-intl-idn (v1.11.0 => v1.12.0) - Updating symfony/mime (v4.3.2 => v4.3.3) - Updating craue/config-bundle (dev-utf8mb4 46cfd37 => 2.3.0) - Updating masterminds/html5 (2.6.0 => 2.7.0) - Updating nette/di (v3.0.0 => v3.0.1) - Updating symfony/polyfill-iconv (v1.11.0 => v1.12.0) - Updating wallabag/php-mobi (1.0.1 => 1.1.0)
* Add `tag_label` & `config_feed_token` indexJeremy Benoist2019-08-082-1/+9
|
* Add user_created indexOlivier Mehani2019-08-071-0/+1
| | | | Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Add user_archived indexOlivier Mehani2019-08-071-0/+1
| | | | Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Add index on starred entriesOlivier Mehani2019-08-061-1/+2
| | | | | | Fixes #4079 Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Update language in Entry model, and add indexOlivier Mehani2019-08-061-2/+3
| | | | | | Fixes #4080 Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Add ability to import/export tagging rulesJeremy Benoist2019-07-081-0/+10
| | | | | | | | | - Add missing translations - Add some tests - Add `/api/taggingrule/export` API endpoint - Add baggy theme - Add error message when importing tagging rules failed - Also fix all translations (I think we are good now)
* Merge pull request #3959 from wallabag/mig-tag-collationJérémy Benoist2019-06-061-1/+4
|\ | | | | mysql: change collation of tag label
| * mysql: change collation of tag tableKevin Decherf2019-05-191-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | utf8mb4_unicode_ci considers that 'caché' is equal to 'cache' which can lead to attaching incorrect tags to entries. This issue is due to some unicode normalization done by MySQL. utf8mb4_bin makes no unicode normalization, letting wallabag to consider 'cache' and 'caché' as two different tags. We change the collation of the whole table as Doctrine does not support setting a collation on a column for a specific platform (it tries to apply utf8mb4_bin even for pgsql and sqlite). Fixes #3302 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* | Merge pull request #3271 from wallabag/store-resolved-urlJérémy Benoist2019-06-051-10/+58
|\ \ | | | | | | Add `given_url` in Entry table to check if a redirected url has already added
| * | TyposJeremy Benoist2019-06-051-2/+2
| | |
| * | Use two indexes instead of one for hashed urlsJeremy Benoist2019-06-051-1/+2
| | | | | | | | | | | | | | | When using `OR` in a where clause, a composite index can't be used. We should use a `UNION` to take advantages of it. Instead, create 2 indexes on each hashed urls and make 2 queries to find an url. It'll be faster than the previous solution.
| * | Use hash given url to avoid duplicateJeremy Benoist2019-05-291-43/+56
| | | | | | | | | | | | Using hashed url we can ensure an index on them to ensure it's fast.
| * | Added given_url in entry tableNicolas Lœuillet2019-05-291-1/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added index on entry table for given_url field - Fix tests: The previous `bit.ly` url redirected to doc.wallabag but that url doesn't exist in the fixtures. I used our own internal "redirector" to create a redirect to an url which exist in the fixtures. Also, updating current migration to use the new `WallabagMigration`.
* | | Fix some Scrutinizer issuesJeremy Benoist2019-05-291-1/+1
|/ /
* / Add Wallabag\CoreBundle\Helper\UrlHasherOlivier Mehani2019-05-241-1/+2
|/ | | | Signed-off-by: Olivier Mehani <shtrom@ssji.net>
* Fix tests & cs & migrationJeremy Benoist2019-04-261-2/+2
|
* Changed RSS to Atom feed and improve pagingThomas Citharel2019-04-251-17/+17
|
* Fix index on MySQLJeremy Benoist2019-04-011-1/+1
|
* Use a better index for hashed_urlJeremy Benoist2019-04-011-2/+3
| | | | | | It'll most often be used in addition to the `user_id`. Also, automatically generate the hash when saving the url. Switch from `md5` to `sha1`.
* Keep url in exists endpointJeremy Benoist2019-04-011-2/+2
| | | | | | - Add migration - Use md5 instead of sha512 (we don't need security here, just a hash) - Update tests
* Hash the urls to check if they existThomas Citharel2019-04-011-1/+29
| | | | Signed-off-by: Thomas Citharel <tcit@tcit.fr>
* Enable PHPStanJeremy Benoist2019-01-181-0/+17
| | | | | - Fix error for level 0 & 1 (level 7 has 699 errors...) - Add `updated_at` to site_credential (so the `timestamps()` method applies correctly)
* Fix RulerZBundleJeremy Benoist2018-11-251-1/+1
| | | | | People should really follow semver and provide UPGRADE file when they provide a library ...
* Entry: add archived_at property and updateArchived methodSébastien Viande2018-09-211-1/+48
|
* Fix phpcsKevin Decherf2017-11-191-2/+2
| | | | Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Add originUrl property to Entry, handle that in EntryRestController, handle ↵Kevin Decherf2017-11-191-0/+33
| | | | | | migration Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* Changed reading_time field to prevent null valuesNicolas Lœuillet2017-10-131-2/+2
|
* Merge pull request #3139 from Kdecherf/2502-tag-caseJérémy Benoist2017-09-031-1/+1
|\ | | | | Ignore tag's case
| * Tag: render tags case-insensitive by storing them in lowercaseKevin Decherf2017-08-271-1/+1
| | | | | | | | | | | | Fixes #2502 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
* | Set a starred_at field when an entry is starred.François D2017-08-251-0/+47
|/ | | | | | | | This date is used to sort starred entries. Can not use Entry::timestamps method otherwise starred_at will be updated each time entry is updated. Add an updateStar method into Entry class A migration script has been added in order to set starred_at field.
* Add EntityTimestampsTrait to handle datesJeremy Benoist2017-07-062-23/+6
| | | | Refactorize timestamps() method to avoid re-writing it on each entity
* Merge pull request #3256 from wallabag/fix-patchJérémy Benoist2017-07-051-0/+16
|\ | | | | Fix PATCH method
| * Fix PATCH methodJeremy Benoist2017-07-031-0/+16
| | | | | | | | | | The PATCH method for the entry should only update what user sent to us and not the whole entry as it was before. Also, sending tags when patching an entry will now remove all current tags & assocatied new ones.
* | CSJeremy Benoist2017-07-031-1/+1
|/
* Add a real configuration for CS-FixerJeremy Benoist2017-07-013-7/+7
|
* Merge pull request #2683 from wallabag/credentials-in-dbJérémy Benoist2017-06-201-0/+195
|\ | | | | Store credentials in DB
| * Fix reviewsThomas Citharel2017-06-201-2/+1
| | | | | | | | | | | | | | | | Encrypt username too Redirect to list after saving credentials Fix typos Signed-off-by: Thomas Citharel <tcit@tcit.fr>
| * Crypt site credential passwordJeremy Benoist2017-06-201-2/+1
| |
| * Add CRUD for site credentialsJeremy Benoist2017-06-201-0/+197
| |
* | Few fixesJeremy Benoist2017-06-101-0/+1
| |
* | Add public filter/field in the APIJeremy Benoist2017-06-101-0/+4
| | | | | | | | | | | | Listing entries can now be filtered by “public”. Creating or patching an entry can now set is to public or remove the public. Entry response now include “is_public” boolean field
* | Add isPublic filter on entriesJeremy Benoist2017-06-101-0/+10
|/
* CSJeremy Benoist2017-05-301-1/+1
|
* Fix some Scrutinizer issuesJeremy Benoist2017-05-301-3/+3
|