users.ino 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. User.ino
  3. This is a new module handling user systems on ESP8266
  4. */
  5. //Create new user, creator must be admin
  6. void HandleNewUser(AsyncWebServerRequest *r) {
  7. if (!IsAdmin(r)) {
  8. SendErrorResp(r, "this function require admin permission");
  9. return;
  10. }
  11. String username = GetPara(r, "username");
  12. String password = GetPara(r, "password");
  13. username.trim();
  14. password.trim();
  15. //Check if the inputs are valid
  16. if (username == "" || password == "") {
  17. SendErrorResp(r, "username or password is an empty string");
  18. return;
  19. } else if (password.length() < 8) {
  20. SendErrorResp(r, "password must contain at least 8 characters");
  21. return;
  22. }
  23. //Check if the user already exists
  24. if (DBKeyExists("user", username)) {
  25. SendErrorResp(r, "user with name: " + username + " already exists");
  26. return;
  27. }
  28. //OK create the user
  29. bool succ = DBWrite("user", username, sha1(password));
  30. if (!succ) {
  31. SendErrorResp(r, "write new user to database failed");
  32. return;
  33. }
  34. r->send(200, "application/json", "\"OK\"");
  35. }
  36. //Remove the given username from the system
  37. void HandleRemoveUser(AsyncWebServerRequest *r) {
  38. if (!IsAdmin(r)) {
  39. SendErrorResp(r, "this function require admin permission");
  40. return;
  41. }
  42. String username = GetPara(r, "username");
  43. username.trim();
  44. //Check if the user exists
  45. if (!DBKeyExists("user", username)) {
  46. SendErrorResp(r, "user with name: " + username + " not exists");
  47. return;
  48. }
  49. //Okey, remove the user
  50. bool succ = DBRemove("user", username);
  51. if (!succ) {
  52. SendErrorResp(r, "remove user from system failed");
  53. return;
  54. }
  55. r->send(200, "application/json", "\"OK\"");
  56. }
  57. //Admin or the user themselve change password for the account
  58. void HandleUserChangePassword(AsyncWebServerRequest *r) {
  59. }