etherpad-lite/src/node
Richard Hansen 405e3e3e19 Settings: Don't filter out users based on password or hash
Some authentication plugins use the users defined in the `users`
object but ignore the `password` and `hash` properties.

This change deletes all of the filtering logic, including the logic
that filters out users that have both `password` and `hash` properties
defined. I could have kept that check, but decided to remove it
because:
  * There's no harm in defining both `hash` and `password`.
  * Allowing both makes it easier to transition from one scheme to
    another.
  * It's fewer lines of code to maintain.
2020-11-04 18:06:08 +00:00
..
db plugins: include more data within padUpdate hook (#4425) 2020-10-21 18:04:03 +01:00
eejs pluginfw/performance: Dont cache if max age is 0 (#4098) 2020-06-08 17:21:55 +01:00
handler PadMessageHandler: Rename client to socket 2020-11-02 20:39:08 +00:00
hooks webaccess: Be extra paranoid about nullish password 2020-11-04 18:06:08 +00:00
utils Settings: Don't filter out users based on password or hash 2020-11-04 18:06:08 +00:00
easysync_tests.js Revert "51c14d9947 changed the return value of" 2015-02-16 06:22:49 +01:00
padaccess.js Security: FEATURE REMOVAL: Remove all plain text password logic and ui (#4178) 2020-10-07 13:43:54 +01:00
README.md minor typo fix 2019-08-08 21:58:30 +02:00
server.js webaccess: Return 401 for authn failure, 403 for authz failure 2020-09-24 10:41:58 +01:00
stats.js Refactor startup/shutdown for tests 2020-09-22 11:07:21 +01:00

About the folder structure

  • db - all modules that are accessing the data structure and are communicating directly to the database
  • handler - all modules that respond directly to requests/messages of the browser
  • utils - helper modules

Module name conventions

Module file names start with a capital letter and uses camelCase

Where does it start?

server.js is started directly