2023-07-10 17:32:14 +02:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'package:dartz/dartz.dart';
|
|
|
|
import 'package:http/http.dart' as http;
|
2024-01-27 23:07:06 +01:00
|
|
|
import '../server_manager.dart';
|
2023-07-10 17:32:14 +02:00
|
|
|
|
2024-01-27 23:07:06 +01:00
|
|
|
/// Gets the status of the server and health information
|
2024-01-28 00:32:09 +01:00
|
|
|
FutureOr<Either<ServerHealthResponse, Failure>> apiGetServerHealth(
|
|
|
|
String? apiKey, String? serverUrl, String apiVersion) async {
|
2023-07-10 17:32:14 +02:00
|
|
|
try {
|
2024-01-28 00:32:09 +01:00
|
|
|
final response = await http
|
|
|
|
.get(Uri.parse("$serverUrl/rest/v$apiVersion/health"), headers: {
|
2024-01-27 23:07:06 +01:00
|
|
|
"X-Api-Key": apiKey ?? "",
|
2023-07-10 17:32:14 +02:00
|
|
|
});
|
|
|
|
if (response.statusCode == 200) {
|
|
|
|
var jsonData = jsonDecode(response.body);
|
2024-01-28 00:32:09 +01:00
|
|
|
return left(ServerHealthResponse(
|
|
|
|
status: jsonData["status"], version: jsonData["version"]));
|
|
|
|
} else {
|
2023-07-10 17:32:14 +02:00
|
|
|
try {
|
|
|
|
var jsonBody = jsonDecode(response.body);
|
2024-01-28 00:32:09 +01:00
|
|
|
return right(ApiFailure(
|
|
|
|
type: jsonBody["type"],
|
|
|
|
detail: jsonBody["detail"],
|
|
|
|
title: jsonBody["title"],
|
|
|
|
status: jsonBody["status"]));
|
|
|
|
} catch (resErr) {
|
2023-07-10 17:32:14 +02:00
|
|
|
return right(RequestFailure(response.statusCode, resErr.toString()));
|
|
|
|
}
|
|
|
|
}
|
2024-01-28 00:32:09 +01:00
|
|
|
} catch (reqErr) {
|
2023-07-10 17:32:14 +02:00
|
|
|
return right(RequestFailure(0, reqErr.toString()));
|
|
|
|
}
|
2024-01-28 00:32:09 +01:00
|
|
|
}
|