mirror of
https://github.com/rainloreley/shlink-manager.git
synced 2024-11-12 22:45:13 +01:00
29 lines
977 B
Dart
29 lines
977 B
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'package:dartz/dartz.dart';
|
|
import 'package:http/http.dart' as http;
|
|
import '../ServerManager.dart';
|
|
|
|
FutureOr<Either<String, Failure>> API_deleteShortUrl(String shortCode, String? api_key, String? server_url, String apiVersion) async {
|
|
try {
|
|
final response = await http.delete(Uri.parse("${server_url}/rest/v${apiVersion}/short-urls/${shortCode}"), headers: {
|
|
"X-Api-Key": api_key ?? "",
|
|
});
|
|
if (response.statusCode == 204) {
|
|
// get returned short url
|
|
return left("");
|
|
}
|
|
else {
|
|
try {
|
|
var jsonBody = jsonDecode(response.body);
|
|
return right(ApiFailure(type: jsonBody["type"], detail: jsonBody["detail"], title: jsonBody["title"], status: jsonBody["status"]));
|
|
}
|
|
catch(resErr) {
|
|
return right(RequestFailure(response.statusCode, resErr.toString()));
|
|
}
|
|
}
|
|
}
|
|
catch(reqErr) {
|
|
return right(RequestFailure(0, reqErr.toString()));
|
|
}
|
|
} |