server.ino 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. /*
  2. Web Server
  3. This is the main entry point of the WebStick bare metal
  4. web server. If you have exception rules that shall not
  5. be handled by the main router, you can do them here.
  6. */
  7. //Check if a user is authenticated / logged in
  8. bool IsUserAuthed(AsyncWebServerRequest *request) {
  9. if (request->hasHeader("Cookie")) {
  10. //User cookie from browser
  11. String authCookie = GetCookieValueByKey(request, "web-auth");
  12. if (authCookie == "") {
  13. return false;
  14. }
  15. //Match it to the server side value in kvdb
  16. //Serial.println(authCookie); //user cookie
  17. //Serial.println(authSession); //server session
  18. if (authSession == "") {
  19. //Server side has no resumable login session
  20. return false;
  21. }
  22. if (authCookie.equals(authSession)) {
  23. return true;
  24. }
  25. return false;
  26. } else {
  27. Serial.println("Cookie Missing");
  28. return false;
  29. }
  30. }
  31. //Check if a user is authenticated and is Admin
  32. bool IsAdmin(AsyncWebServerRequest *request) {
  33. if (request->hasHeader("Cookie")) {
  34. //User cookie from browser
  35. String authCookie = GetCookieValueByKey(request, "web-auth");
  36. if (authCookie == "") {
  37. return false;
  38. }
  39. //Match it to the server side value in kvdb
  40. if (authSession == "") {
  41. //Server side has no resumable login session
  42. return false;
  43. }
  44. if (authCookie.equals(authSession)) {
  45. return true;
  46. }
  47. return false;
  48. } else {
  49. return false;
  50. }
  51. }
  52. //Reply the request by a directory list
  53. void HandleDirRender(AsyncWebServerRequest *r, String dirName, String dirToList) {
  54. AsyncResponseStream *response = r->beginResponseStream("text/html");
  55. //Serve directory entries
  56. File directory = SD.open(dirToList);
  57. // Check if the directory is open
  58. if (!directory) {
  59. SendErrorResp(r, "unable to open directory");
  60. return;
  61. }
  62. response->print("<!DOCTYPE html><html><head><meta charset=\"utf-8\"><title>Content of " + dirName + "</title></head><body style=\"margin: 3em;font-family: Arial;\">");
  63. response->print("<h3>Content of " + dirName + "</h3><div style=\"width: 100%;border-bottom: 1px solid #d9d9d9;\"></div><ul>");
  64. // List the contents of the directory
  65. while (true) {
  66. File entry = directory.openNextFile();
  67. if (!entry) {
  68. // No more files
  69. break;
  70. }
  71. // Print the file name
  72. response->print("<li><a href=\"./" + String(entry.name()) + "\">");
  73. response->print(entry.name());
  74. response->print(" (" + humanReadableSize(entry.size()) + ")</a></li>");
  75. Serial.println(entry.name());
  76. entry.close();
  77. }
  78. // Close the directory
  79. directory.close();
  80. response->print("</ul><div style=\"width: 100%;border-bottom: 1px solid #d9d9d9;\"></div><br><a href=\"../\">Back</a>");
  81. response->print("<br><br><body></html>");
  82. r->send(response);
  83. }
  84. void initWebServer() {
  85. /*
  86. Other handles here, like this
  87. server.on("/logout", HTTP_GET, [](AsyncWebServerRequest *request){
  88. request->send(401);
  89. });
  90. */
  91. /*
  92. server.on("/test", HTTP_GET, [](AsyncWebServerRequest * request) {
  93. getSDCardUsedSpace();
  94. request->send(200);
  95. });
  96. */
  97. /* Authentication Functions */
  98. server.on("/api/auth/chk", HTTP_GET, HandleCheckAuth);
  99. server.on("/api/auth/login", HTTP_POST, HandleLogin);
  100. server.on("/api/auth/logout", HTTP_GET, HandleLogout);
  101. /* File System Functions */
  102. server.on("/api/fs/list", HTTP_GET, HandleListDir);
  103. server.on("/api/fs/del", HTTP_POST, HandleFileDel);
  104. server.on("/api/fs/move", HTTP_POST, HandleFileRename);
  105. server.on("/api/fs/download", HTTP_GET, HandleFileDownload);
  106. server.on("/api/fs/newFolder", HTTP_POST, HandleNewFolder);
  107. server.on("/api/fs/disk", HTTP_GET, HandleLoadSpaceInfo);
  108. server.on("/api/fs/properties", HTTP_GET, HandleFileProp);
  109. server.on("/api/fs/search", HTTP_GET, HandleFileSearch);
  110. /* Preference */
  111. server.on("/api/pref/set", HTTP_GET, HandleSetPref);
  112. server.on("/api/pref/get", HTTP_GET, HandleLoadPref);
  113. /* Others */
  114. server.on("/api/info/wifi", HTTP_GET, HandleWiFiInfo); //Show WiFi Information
  115. server.on("/api/wol", HTTP_GET, HandleWakeOnLan); //Handle WoL request
  116. //File upload handler. see upload.ino
  117. server.onFileUpload(handleFileUpload);
  118. //Not found handler
  119. server.onNotFound([](AsyncWebServerRequest *request) {
  120. //Generally it will not arrive here as NOT FOUND is also handled in the main router.
  121. //See router.ino for implementation details.
  122. prettyPrintRequest(request);
  123. request->send(404, "text/plain", "Not Found");
  124. });
  125. //Main Router, see router.ino
  126. server.addHandler(new MainRouter());
  127. server.begin();
  128. }