lila-chat/README.md

28 lines
1001 B
Markdown
Raw Normal View History

2021-07-17 15:46:23 +00:00
# Chat Registration System
The basic backend code needed to register & login to a chat system (to be built).
Send it the unhashed username and pin, and it'll store it in the `users.json` file with the pin hashed with SHA1.
## API Documentation
`POST /api/register/<name>/<pin>` Register the username with the pin provided if it doesn't already exist
`GET /api/users/<name>` Check if the user exists
`GET /api/users/<name>/<pin>` Check if the user exists, and if the pin provided matches
2021-07-16 17:37:25 +00:00
`POST /api/users/change/<name>/<pin>/<new-name>/<new-pin>` Change a users pin/name
2021-07-17 19:52:52 +00:00
## Chat Planning
Clientside js will register & check login of users, if login is correct will ask for a random token.
Backend will generate token, store it, and then send it to the client to set as a cookie.
Whenever user sends a message, client will send message & token and backend will check if token matches.
## To-Do:
- [x] Basic auth api
- [ ] Basic messaging system
- [ ] Token generation & storage
- [x] Pronouns