Skip to content

Commit

Permalink
fix: Better restart feedback & attempt to fix CORS
Browse files Browse the repository at this point in the history
  • Loading branch information
mrv777 committed Nov 5, 2024
1 parent da2d255 commit 7d6b9a5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,16 @@ export class SwarmComponent implements OnInit, OnDestroy {
}

public restart(axe: any) {
this.systemService.restart(`http://${axe.IP}`).subscribe(res => {

this.systemService.restart(`http://${axe.IP}`).pipe(
catchError(error => {
this.toastr.error('Failed to restart device', 'Error');
return of(null);
})
).subscribe(res => {
if (res !== null) {
this.toastr.success('Bitaxe restarted', 'Success');
}
});
this.toastr.success('Success!', 'Bitaxe restarted');
}

public remove(axeOs: any) {
Expand Down
10 changes: 10 additions & 0 deletions main/http_server/http_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,12 @@ static esp_err_t PATCH_update_settings(httpd_req_t * req)

static esp_err_t POST_restart(httpd_req_t * req)
{
// Set CORS headers
if (set_cors_headers(req) != ESP_OK) {
httpd_resp_send_500(req);
return ESP_FAIL;
}

ESP_LOGI(TAG, "Restarting System because of API Request");

// Send HTTP response before restarting
Expand Down Expand Up @@ -694,6 +700,10 @@ esp_err_t start_rest_server(void * pvParameters)
.uri = "/api/system/restart", .method = HTTP_POST, .handler = POST_restart, .user_ctx = rest_context};
httpd_register_uri_handler(server, &system_restart_uri);

httpd_uri_t system_restart_options_uri = {
.uri = "/api/system/restart", .method = HTTP_OPTIONS, .handler = handle_options_request, .user_ctx = NULL};
httpd_register_uri_handler(server, &system_restart_options_uri);

httpd_uri_t update_system_settings_uri = {
.uri = "/api/system", .method = HTTP_PATCH, .handler = PATCH_update_settings, .user_ctx = rest_context};
httpd_register_uri_handler(server, &update_system_settings_uri);
Expand Down

0 comments on commit 7d6b9a5

Please sign in to comment.