Commit Graph

238 Commits

Author SHA1 Message Date
Benjamin Dauvergne 79fb2f8dcd migrations: add default date in migration 0015 (#22682) 2018-03-27 16:00:08 +02:00
Benjamin Dauvergne 7846a6ab5b dj11: replace deprecated symbols (#22682) 2018-03-27 13:13:44 +02:00
Benjamin Dauvergne 2db8756f48 fargo: prevent pushing the same file many times (#22682)
Bug was discovered because we added the creation_date non-null field as
content_hash is the primary key. When saving a Document with the same
content_hash, Django try to update the existing document by setting
creation_date to NULL which fails.
2018-03-27 13:08:06 +02:00
Benjamin Dauvergne 7089a0fa7e add a fargo-cleanup command (#22682) 2018-03-27 11:20:44 +02:00
Benjamin Dauvergne 23124dbe34 oauth2: use auto_now_add for creation_date fields (#22682) 2018-03-26 15:32:47 +02:00
Frédéric Péters a0a4c7962f oauth2: extend oauth2tempfile uuid to 32 characters (#22782) 2018-03-24 08:30:33 +01:00
Benjamin Dauvergne a102c7d78e models: handle ENOENT from file-magic (fixes #22745)
magic.Magic.file() does not return None or raise an exception on a
missing file, it just return the string "cannot open ...".
2018-03-23 22:44:34 +01:00
Frédéric Péters 666fe66494 oauth2: fix typo in error message (#22713) 2018-03-23 15:56:48 +01:00
Benjamin Dauvergne e98b74dccc oauth2: allow modifications of client_id and client_secret (#22717) 2018-03-22 21:16:46 +01:00
Benjamin Dauvergne c741e8df51 fargo: PE8 (#22717) 2018-03-22 21:16:46 +01:00
Benjamin Dauvergne 59ec2bea1a oauth2: do not use the document hash as primary key for temp files (#22717)
It prevents a client from pushing the same file multiple times, which
makes temporary errors harder to handle (client would have to handle a
failure from the web-service). We allow any number of push of the same
document, orphans will be cleaned up by a background task, and storage
is not duplicated as document are deduplicated through their hash.
2018-03-22 21:15:30 +01:00
Benjamin Dauvergne d813e2b167 oauth2: improve logs with new link to clients (#22717) 2018-03-22 11:47:47 +01:00
Benjamin Dauvergne 1dddba4baf oauth2: link authorizations and temp files to clients (#22717) 2018-03-22 11:47:47 +01:00
Benjamin Dauvergne 1803cb9ddf oauth2: log more (#22717) 2018-03-22 11:47:47 +01:00
Benjamin Dauvergne 60d6259023 oauth2: use client_name as unicode value of clients (#22717) 2018-03-22 11:47:47 +01:00
Benjamin Dauvergne fc6119683b share make_url() with fargo, simplify URL building code (#22717) 2018-03-22 11:47:46 +01:00
Benjamin Dauvergne ab4a137c09 oauth2: update french translations (#22717) 2018-03-22 11:47:46 +01:00
Benjamin Dauvergne 49a01aac71 oauth2: remove useless for check redirect_uri in token endpoint (#22717) 2018-03-22 11:47:39 +01:00
Benjamin Dauvergne fbe0fc0b78 oauth2: enforce access_token and code lifetime (#22717) 2018-03-21 23:55:02 +01:00
Benjamin Dauvergne 2fe7382ab3 oauth2: improve coding style (#22717)
* declare all views with .as_view()
* add helper make_url() to properly add parameters to query string of
  redirect_uri
* stop threading the redirect_uri through the session
* make POST form target implicit, so that parameters are kept
* do checks in dispatch() to share them between POST and GET methods
2018-03-21 23:53:40 +01:00
Benjamin Dauvergne d5608c7478 oauth2: always delete the temp document on a POST (#22717) 2018-03-21 23:53:40 +01:00
Benjamin Dauvergne 114e474d4c oauth2: fix typo (#22717) 2018-03-21 23:53:40 +01:00
Benjamin Dauvergne 0ec6e92235 oauth2: add localization (#22717) 2018-03-21 23:53:40 +01:00
Benjamin Dauvergne db69542403 oauth2: remove unused import (#22717) 2018-03-21 23:53:40 +01:00
Benjamin Dauvergne 3d69062edb tox.ini: rename coverage file only if coverage is enabled (#22717) 2018-03-21 23:53:40 +01:00
Benjamin Dauvergne d780a085a9 fix typo "attachement" -> "attachment" (fixes #22676) 2018-03-21 19:03:34 +01:00
Frédéric Péters b962eb7d5d translation update 2018-03-17 17:33:00 +01:00
Frédéric Péters 8cc1cb6d98 misc: change empty document box message (#22597) 2018-03-17 13:34:47 +01:00
Frédéric Péters 47f0ac02b4 templates: fix colspan and add a class to empty table row (#22596) 2018-03-17 13:19:25 +01:00
Frédéric Péters 43666f7ac9 use proper capitalisation for column titles (#22581) 2018-03-16 15:39:04 +01:00
Frédéric Péters 2444be6af6 fix typo in translation 2018-03-16 15:32:32 +01:00
Paul Marillonnet 5958b9a916 simpler title/filename printing in templates (#22516) 2018-03-14 15:01:21 +01:00
Frédéric Péters 570b4b391a translation update 2018-03-14 11:51:58 +01:00
Frédéric Péters 855bd1fc88 misc: mark Title as header column for translation (#22514) 2018-03-14 11:37:43 +01:00
Frédéric Péters 28ce42fd46 translation update 2018-03-14 11:08:43 +01:00
Frédéric Péters 35fd40d6d6 add a confirmation page before removing a file (#16825) 2018-03-14 11:04:36 +01:00
Serghei Mihai 334ea5b5a8 oauth2: remove unused template tag loading (#22505) 2018-03-14 11:04:36 +01:00
Paul Marillonnet bf3e756d51 add additional read-only information in main table (#21486) 2018-03-14 11:04:36 +01:00
Benjamin Dauvergne 6d8c9f9a54 setup.py: really constrain to django-filter<2 (#22350) 2018-03-12 15:29:57 +01:00
Benjamin Dauvergne 400ea0e308 debian: restrain to python-django-filters<2 (fixes #22350) 2018-03-12 15:11:20 +01:00
Benjamin Dauvergne 246d2a128d setup.py: restrain to django-filter<2 (#22350) 2018-03-12 14:56:18 +01:00
Josue Kouka e22648dd3f api: authenticate OAUTH2 clients through Authentic (fixes #16842) 2018-03-06 12:08:41 +01:00
Josue Kouka 85ebba8394 api: use DRF for OAUTH2 APIs (#16842) 2018-03-06 12:08:27 +01:00
Josue Kouka 94dab06b42 misc: move some util functions in a utils.py file (#16842) 2018-03-06 12:05:17 +01:00
Frédéric Péters bdc7945217 misc: don't initialize queryset with an empty string 2018-02-02 14:33:21 +01:00
Frédéric Péters 4eb36e2f01 misc: use django-tables2 adapted to django version 2018-02-02 14:29:58 +01:00
Frédéric Péters 904854876f debian: remove TEMPLATE_DEBUG reference (#16056) 2018-02-02 14:05:44 +01:00
Frédéric Péters 0bf5b6b90f misc: add support for django 1.11 (#16057) 2017-12-12 11:00:25 +01:00
Frédéric Péters 7ed396892d misc: update to use new TEMPLATES settings (#16056) 2017-12-12 11:00:25 +01:00
Paul Marillonnet 8cd7cabb00 i18n and French translation update (#20139) 2017-12-06 12:53:23 +01:00