Commit Graph

255 Commits (5f35bf354496b63de493f9a53acf6fcef48c15c2)

Author SHA1 Message Date
Jens Frost 5f35bf3544
Merge branch 'master' into test 2 years ago
Maksim Eltyshev 5a32b6327c fix: Fix actions with members
Closes #737
2 years ago
Emmanuel Guyot 8488105810
feat: Search in card descriptions (#729) 2 years ago
Niccolò Pedrini 57ebfa51d8
fix: Update Italian translation (#727) 2 years ago
leroyloren 1629f62d09
fix: Update Czech translation (#725) 2 years ago
Maksim Eltyshev 7ee2d76be4 feat: Display avatar next to user name in top bar 2 years ago
Emmanuel Guyot eb56b2147b
feat: Filter cards by keyword with advanced capabilities (#713)
Closes #706
2 years ago
Maksim Eltyshev 8747aa59de fix: Fix title of sort menu item 2 years ago
Samuel 934dcdf39b
feat: Sort cards within list (#717)
Closes #390
2 years ago
Felipe 2c84316fe0
fix: Limit amount of displayed board members (#715)
Closes #617
2 years ago
ItzAndriss 200ea3bbc0
feat: Add Hungarian translation (#590) 2 years ago
Maksim Eltyshev 8a8c1fee0c fix: Fix error output when sending email or message to Slack 2 years ago
HannesOberreiter cc32daa009
feat: Display clickable links in tasks (#694)
Closes #330
2 years ago
Maksim Eltyshev 4e2863faa7 feat: Automatic logout when session expires
Closes #693
2 years ago
Niccolò Pedrini 39e320fe4b
fix: Update Italian translation (#688) 2 years ago
Blyamur 22964cb375
fix: Update Russian translation (#686) 2 years ago
leroyloren fd89cf7f2b
fix: Update Czech translation (#679) 2 years ago
Matthieu Bollot 6cd9da844f
feat: Add ability to duplicate card (#668) 2 years ago
Maksim Eltyshev 9d95ed6c41 fix: Fix OIDC authentication error when redirecting from another tab
Closes #650
2 years ago
Maksim Eltyshev 1a5a853fa3 fix: Fix scrollbar styles 2 years ago
Maksim Eltyshev 60ab09771d fix: Add date-fns locale to Portuguese translation 2 years ago
Jeffrey cb3ef783ba
feat: Add Dutch translation (#644) 2 years ago
Reuben Hu fe376b10c1
feat: Add Indonesian translation (#643) 2 years ago
IV16SL 786441cda0
fix: Fix Chinese translation (#641) 2 years ago
Chris 0d3cf0a32d
feat: Add Portuguese translation (#640) 2 years ago
Maksim Eltyshev fd5c33dd5d fix: Remove overflow of attachment dropzone 2 years ago
Maksim Eltyshev b8d262f745 feat: Add ability to enforce SSO
Closes #543, closes #545
2 years ago
Maksim Eltyshev 634d6ceab1 feat: Add ability to map OIDC attributes and ignore username
Closes #554
2 years ago
Maksim Eltyshev 389648b546 fix: Add missing date formats to Ukrainian translation 2 years ago
Denis Polishchuk f4789c28db
feat: Add Ukrainian translation (#571) 2 years ago
ossdate 668092de7d
fix: Update Chinese translation (#569) 2 years ago
Yu Inoue 920f9c097d
fix: Display year when date is outside of current year (#567) 2 years ago
NavyStack 079b8eba53
fix: Fine-tune Korean and Japanese translations, fix full stops (#561) 2 years ago
Maksim Eltyshev fee6841d0a fix: Attempt to fix error that occurs during reconnection 2 years ago
Maksim Eltyshev ca6fb3b962 fix: Add state parameter to OIDC authorization url
Closes #558
2 years ago
Maksim Eltyshev 80d12aaeeb fix: Fix Korean translation linting 2 years ago
NavyStack 89af209a2e
fix: Update Korean translation (#560) 2 years ago
Maksim Eltyshev eddeb96b16 fix: Fix Romanian translation linting 2 years ago
Andrei Covali 24163463fc
feat: Add Romanian translation (#555) 2 years ago
Maksim Eltyshev 239611ad51 chore: Update dependencies 2 years ago
Yu Inoue 0575e665fe
fix: Fix time format in Japanese locale (#546)
Closes #542
2 years ago
Maksim Eltyshev 6dc9e4ed99 fix: Disable role change when OIDC roles are not ignored 2 years ago
Maksim Eltyshev 5056d38848 fix: Fix logging out with invalid token 2 years ago
Vishnu Kaushik ded58dc8b0
fix: Add task counter in card modal (#525)
Closes #467
2 years ago
Maksim Eltyshev 7ef457157e fix: Fallback to query if there is no fragment 2 years ago
Maksim Eltyshev 40c04c35ff ref: Refactoring 2 years ago
Lorenz Brun 743f2956c8
feat: Improve OIDC SSO (#524)
The OIDC implementation merged in https://github.com/plankanban/planka/pull/491 is flawed for multiple reasons.

It assumes that the access_token returned by the IDP has to be a JWT parseable by the RP which is not the case [1].
Many major IDPs do issue tokens which are not JWTs and RPs should not rely on the contents of these at all.
The only signed token which has a standardized format for direct RP consumption is the OIDC ID token (id_token), but this by default doesn't contain many claims, especially role claims are omitted from them by default for size reasons. To get these additional claims into the ID token, one needs an IDP with support for the "claims" parameter.

It requires manual specification of the JWKS URL which is mandatory in any OIDC discovery document and thus never needs to be manually specified.

It also makes the questionable decision to use a client-side code flow with PKCE where a normal code flow would be much more appropriate as all user data is processed in the backend which can securely hold a client secret (confidential client). This has far wider IDP support, is safer (due to direct involvement of the IDP in obtaining user information) and doesn't require working with ID tokens and claim parameters.

By using a server-side code flow we can also offload most complexity to the server alone, no longer requiring an additional OIDC library on the web client.

Also silent logout doesn't work on most IDPs for security reasons, one needs to actually redirect the user over to the IDP, which then prompts them once more if they actually want to log out.

This implementation should work with any OIDC-compliant IDP and even OAuth 2.0-only IDPs as long as they serve and OIDC discovery document.

[1] rfc-editor.org/rfc/rfc6749#section-5.1
2 years ago
Maksim Eltyshev 8e0c60f5be fix: OIDC finalization and refactoring 2 years ago
Maksim Eltyshev 91bc889fed feat: Use environment variables for default admin configuration 2 years ago
Gilberto Vidal a34d8e9753
fix: Fix Turkish translation linting (#504) 2 years ago