selfprivacy.org.app/lib/logic/api_maps/rest_maps/dns_providers/cloudflare/cloudflare_api.dart

272 lines
6.6 KiB
Dart
Raw Normal View History

2021-01-06 19:35:57 +02:00
import 'dart:io';
2022-02-16 09:09:53 +02:00
2021-01-06 19:35:57 +02:00
import 'package:dio/dio.dart';
2021-03-26 01:30:34 +02:00
import 'package:selfprivacy/config/get_it_config.dart';
import 'package:selfprivacy/logic/api_maps/rest_maps/dns_providers/dns_provider.dart';
import 'package:selfprivacy/logic/models/hive/server_domain.dart';
import 'package:selfprivacy/logic/models/json/dns_records.dart';
2021-01-06 19:35:57 +02:00
class CloudflareApi extends DnsProviderApi {
CloudflareApi({
this.hasLogger = false,
this.isWithToken = true,
this.customToken,
});
2022-06-05 22:36:32 +03:00
@override
final bool hasLogger;
@override
final bool isWithToken;
final String? customToken;
2021-03-26 01:30:34 +02:00
2022-05-24 21:55:39 +03:00
@override
2021-03-26 01:30:34 +02:00
BaseOptions get options {
final BaseOptions options = BaseOptions(
baseUrl: rootAddress,
contentType: Headers.jsonContentType,
responseType: ResponseType.json,
);
2021-03-26 01:30:34 +02:00
if (isWithToken) {
final String? token = getIt<ApiConfigModel>().dnsProviderKey;
2021-03-26 01:30:34 +02:00
assert(token != null);
options.headers = {'Authorization': 'Bearer $token'};
}
if (customToken != null) {
options.headers = {'Authorization': 'Bearer $customToken'};
}
2021-03-26 01:30:34 +02:00
if (validateStatus != null) {
options.validateStatus = validateStatus!;
2021-01-06 19:35:57 +02:00
}
2021-03-26 01:30:34 +02:00
return options;
2021-01-06 19:35:57 +02:00
}
@override
2021-03-26 01:30:34 +02:00
String rootAddress = 'https://api.cloudflare.com/client/v4';
2021-01-06 19:35:57 +02:00
Future<GenericResult<bool>> isApiTokenValid(final String token) async {
bool isValid = false;
Response? response;
String message = '';
2022-06-05 22:36:32 +03:00
final Dio client = await getClient();
try {
response = await client.get(
'/user/tokens/verify',
options: Options(
followRedirects: false,
validateStatus: (final status) =>
status != null && (status >= 200 || status == 401),
headers: {'Authorization': 'Bearer $token'},
),
);
} catch (e) {
print(e);
isValid = false;
message = e.toString();
} finally {
close(client);
}
2021-01-06 19:35:57 +02:00
if (response == null) {
return GenericResult(
data: isValid,
success: false,
message: message,
);
}
if (response.statusCode == HttpStatus.ok) {
isValid = true;
} else if (response.statusCode == HttpStatus.unauthorized) {
isValid = false;
} else {
throw Exception('code: ${response.statusCode}');
2021-01-06 19:35:57 +02:00
}
return GenericResult(
data: isValid,
success: true,
message: response.statusMessage,
);
2021-01-06 19:35:57 +02:00
}
Future<GenericResult<List<dynamic>>> getZones(final String domain) async {
List zones = [];
2021-03-26 01:30:34 +02:00
late final Response? response;
2022-09-09 12:14:37 +03:00
final Dio client = await getClient();
try {
response = await client.get(
2022-09-09 12:14:37 +03:00
'/zones',
queryParameters: {'name': domain},
);
zones = response.data['result'];
2022-09-09 12:14:37 +03:00
} catch (e) {
print(e);
GenericResult(
success: false,
data: zones,
code: response?.statusCode,
message: response?.statusMessage,
);
2022-09-09 12:14:37 +03:00
} finally {
close(client);
}
2022-09-09 12:14:37 +03:00
return GenericResult(success: true, data: zones);
2021-01-06 19:35:57 +02:00
}
Future<GenericResult<void>> removeSimilarRecords({
required final ServerDomain domain,
required final List records,
2021-01-27 20:33:00 +02:00
}) async {
final String domainZoneId = domain.zoneId;
2022-06-05 22:36:32 +03:00
final String url = '/zones/$domainZoneId/dns_records';
2021-03-26 01:30:34 +02:00
2022-06-05 22:36:32 +03:00
final Dio client = await getClient();
2022-09-09 12:14:37 +03:00
try {
final List<Future> allDeleteFutures = <Future>[];
2021-01-27 20:33:00 +02:00
2022-09-09 12:14:37 +03:00
for (final record in records) {
allDeleteFutures.add(
client.delete('$url/${record["id"]}'),
);
2021-01-27 20:33:00 +02:00
}
2022-09-09 12:14:37 +03:00
await Future.wait(allDeleteFutures);
} catch (e) {
print(e);
return GenericResult(
success: false,
data: null,
message: e.toString(),
);
2022-09-09 12:14:37 +03:00
} finally {
close(client);
2021-01-27 20:33:00 +02:00
}
return GenericResult(success: true, data: null);
2021-01-27 20:33:00 +02:00
}
Future<GenericResult<List>> getDnsRecords({
required final ServerDomain domain,
2022-02-16 09:09:53 +02:00
}) async {
2022-09-08 22:58:45 +03:00
Response response;
final String domainName = domain.domainName;
final String domainZoneId = domain.zoneId;
final List allRecords = [];
2022-02-16 09:09:53 +02:00
2022-06-05 22:36:32 +03:00
final String url = '/zones/$domainZoneId/dns_records';
2022-02-16 09:09:53 +02:00
2022-06-05 22:36:32 +03:00
final Dio client = await getClient();
2022-09-08 22:58:45 +03:00
try {
response = await client.get(url);
final List records = response.data['result'] ?? [];
for (final record in records) {
if (record['zone_name'] == domainName) {
allRecords.add(record);
2022-09-08 22:58:45 +03:00
}
2022-02-16 09:09:53 +02:00
}
2022-09-08 22:58:45 +03:00
} catch (e) {
print(e);
return GenericResult(
data: [],
success: false,
message: e.toString(),
);
2022-09-08 22:58:45 +03:00
} finally {
close(client);
2022-02-16 09:09:53 +02:00
}
return GenericResult(data: allRecords, success: true);
2022-02-16 09:09:53 +02:00
}
Future<GenericResult<void>> createMultipleDnsRecords({
required final ServerDomain domain,
required final List<DnsRecord> records,
2021-01-06 19:35:57 +02:00
}) async {
final String domainZoneId = domain.zoneId;
2022-06-05 22:36:32 +03:00
final List<Future> allCreateFutures = <Future>[];
2021-01-27 20:33:00 +02:00
2022-06-05 22:36:32 +03:00
final Dio client = await getClient();
try {
for (final DnsRecord record in records) {
allCreateFutures.add(
client.post(
'/zones/$domainZoneId/dns_records',
data: record.toJson(),
),
);
}
await Future.wait(allCreateFutures);
} on DioError catch (e) {
print(e.message);
2022-05-24 21:55:39 +03:00
rethrow;
} catch (e) {
print(e);
return GenericResult(
success: false,
data: null,
message: e.toString(),
);
} finally {
close(client);
2021-01-27 20:33:00 +02:00
}
return GenericResult(success: true, data: null);
2021-01-27 20:33:00 +02:00
}
Future<void> setDnsRecord(
final DnsRecord record,
final ServerDomain domain,
) async {
final String domainZoneId = domain.zoneId;
2022-06-05 22:36:32 +03:00
final String url = '$rootAddress/zones/$domainZoneId/dns_records';
2022-02-01 03:56:05 +02:00
2022-06-05 22:36:32 +03:00
final Dio client = await getClient();
2022-09-09 12:14:37 +03:00
try {
await client.post(
url,
data: record.toJson(),
2022-09-09 12:14:37 +03:00
);
} catch (e) {
print(e);
} finally {
close(client);
}
2022-02-01 03:56:05 +02:00
}
Future<GenericResult<List>> getDomains() async {
2022-06-05 22:36:32 +03:00
final String url = '$rootAddress/zones';
List domains = [];
2021-03-26 01:30:34 +02:00
late final Response? response;
2022-09-09 12:14:37 +03:00
final Dio client = await getClient();
try {
response = await client.get(
2022-09-09 12:14:37 +03:00
url,
queryParameters: {'per_page': 50},
);
domains = response.data['result'];
} catch (e) {
print(e);
2023-05-17 19:58:15 +03:00
return GenericResult(
success: false,
data: domains,
code: response?.statusCode,
message: response?.statusMessage,
);
} finally {
close(client);
}
2023-05-17 19:58:15 +03:00
return GenericResult(
success: true,
data: domains,
code: response.statusCode,
message: response.statusMessage,
);
}
2021-01-06 19:35:57 +02:00
}