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

274 lines
7.0 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
@override
RegExp getApiTokenValidation() =>
RegExp(r'\s+|[!$%^&*()@+|~=`{}\[\]:<>?,.\/]');
2022-05-24 21:55:39 +03:00
@override
2021-03-26 01:30:34 +02:00
BaseOptions get options {
2022-06-05 22:36:32 +03:00
final BaseOptions options = BaseOptions(baseUrl: rootAddress);
2021-03-26 01:30:34 +02:00
if (isWithToken) {
2022-06-05 22:36:32 +03:00
final String? token = getIt<ApiConfigModel>().cloudFlareKey;
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
@override
Future<bool> isApiTokenValid(final String token) async {
bool isValid = false;
Response? response;
2022-06-05 22:36:32 +03:00
final Dio client = await getClient();
try {
response = await client.get(
'/user/tokens/verify',
options: Options(headers: {'Authorization': 'Bearer $token'}),
);
} catch (e) {
print(e);
isValid = false;
} finally {
close(client);
}
2021-01-06 19:35:57 +02:00
if (response != null) {
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 isValid;
2021-01-06 19:35:57 +02:00
}
@override
2022-06-05 22:36:32 +03:00
Future<String> getZoneId(final String domain) async {
validateStatus = (final status) =>
status == HttpStatus.ok || status == HttpStatus.forbidden;
2022-06-05 22:36:32 +03:00
final Dio client = await getClient();
final Response response = await client.get(
2021-03-26 01:30:34 +02:00
'/zones',
2021-01-06 19:35:57 +02:00
queryParameters: {'name': domain},
);
2021-03-26 15:38:39 +02:00
close(client);
2021-03-26 01:30:34 +02:00
if (response.data['result'].isEmpty) {
throw DomainNotFoundException('No domains found');
} else {
return response.data['result'][0]['id'];
}
2021-01-06 19:35:57 +02:00
}
@override
2021-01-27 20:33:00 +02:00
Future<void> removeSimilarRecords({
required final ServerDomain domain,
2022-06-05 22:36:32 +03:00
final String? ip4,
2021-01-27 20:33:00 +02:00
}) async {
final String domainName = domain.domainName;
final String domainZoneId = domain.zoneId;
2021-01-27 20:33:00 +02:00
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();
final Response response = await client.get(url);
2021-01-27 20:33:00 +02:00
2022-06-05 22:36:32 +03:00
final List records = response.data['result'] ?? [];
final List<Future> allDeleteFutures = <Future>[];
2021-01-27 20:33:00 +02:00
2022-06-05 22:36:32 +03:00
for (final record in records) {
2021-01-27 20:33:00 +02:00
if (record['zone_name'] == domainName) {
allDeleteFutures.add(
2021-03-26 01:30:34 +02:00
client.delete('$url/${record["id"]}'),
2021-01-27 20:33:00 +02:00
);
}
}
2021-03-26 01:30:34 +02:00
2021-01-27 20:33:00 +02:00
await Future.wait(allDeleteFutures);
2021-03-26 15:38:39 +02:00
close(client);
2021-01-27 20:33:00 +02:00
}
@override
2022-02-16 09:09:53 +02:00
Future<List<DnsRecord>> getDnsRecords({
required final ServerDomain domain,
2022-02-16 09:09:53 +02:00
}) async {
final String domainName = domain.domainName;
final String domainZoneId = domain.zoneId;
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();
final Response response = await client.get(url);
2022-02-16 09:09:53 +02:00
2022-06-05 22:36:32 +03:00
final List records = response.data['result'] ?? [];
final List<DnsRecord> allRecords = <DnsRecord>[];
2022-02-16 09:09:53 +02:00
2022-06-05 22:36:32 +03:00
for (final record in records) {
2022-02-16 09:09:53 +02:00
if (record['zone_name'] == domainName) {
allRecords.add(
DnsRecord(
name: record['name'],
type: record['type'],
content: record['content'],
ttl: record['ttl'],
proxied: record['proxied'],
),
);
2022-02-16 09:09:53 +02:00
}
}
close(client);
return allRecords;
}
@override
2021-01-06 19:35:57 +02:00
Future<void> createMultipleDnsRecords({
required final ServerDomain domain,
2022-06-05 22:36:32 +03:00
final String? ip4,
2021-01-06 19:35:57 +02:00
}) async {
final String domainName = domain.domainName;
final String domainZoneId = domain.zoneId;
2022-06-05 22:36:32 +03:00
final List<DnsRecord> listDnsRecords = projectDnsRecords(domainName, ip4);
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 {
2022-06-05 22:36:32 +03:00
for (final DnsRecord record in listDnsRecords) {
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;
} finally {
close(client);
2021-01-27 20:33:00 +02:00
}
}
List<DnsRecord> projectDnsRecords(
final String? domainName,
final String? ip4,
) {
final DnsRecord domainA =
DnsRecord(type: 'A', name: domainName, content: ip4);
2021-01-27 20:33:00 +02:00
2022-06-05 22:36:32 +03:00
final DnsRecord mx = DnsRecord(type: 'MX', name: '@', content: domainName);
final DnsRecord apiA = DnsRecord(type: 'A', name: 'api', content: ip4);
final DnsRecord cloudA = DnsRecord(type: 'A', name: 'cloud', content: ip4);
final DnsRecord gitA = DnsRecord(type: 'A', name: 'git', content: ip4);
final DnsRecord meetA = DnsRecord(type: 'A', name: 'meet', content: ip4);
final DnsRecord passwordA =
DnsRecord(type: 'A', name: 'password', content: ip4);
final DnsRecord socialA =
DnsRecord(type: 'A', name: 'social', content: ip4);
2022-06-05 22:36:32 +03:00
final DnsRecord vpn = DnsRecord(type: 'A', name: 'vpn', content: ip4);
2021-01-06 19:35:57 +02:00
2022-06-05 22:36:32 +03:00
final DnsRecord txt1 = DnsRecord(
2021-01-06 19:35:57 +02:00
type: 'TXT',
name: '_dmarc',
content: 'v=DMARC1; p=none',
ttl: 18000,
);
2022-06-05 22:36:32 +03:00
final DnsRecord txt2 = DnsRecord(
2021-01-06 19:35:57 +02:00
type: 'TXT',
2021-01-27 20:33:00 +02:00
name: domainName,
2021-01-06 19:35:57 +02:00
content: 'v=spf1 a mx ip4:$ip4 -all',
ttl: 18000,
);
2022-02-16 09:09:53 +02:00
return <DnsRecord>[
2021-01-06 19:35:57 +02:00
domainA,
apiA,
cloudA,
gitA,
meetA,
passwordA,
socialA,
mx,
txt1,
2021-01-27 10:33:26 +02:00
txt2,
vpn
2021-01-06 19:35:57 +02:00
];
2021-01-21 23:01:42 +02:00
}
2021-02-15 20:58:29 +02:00
@override
2022-02-01 03:56:05 +02:00
Future<void> setDkim(
final String dkimRecordString,
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 DnsRecord dkimRecord = DnsRecord(
2022-02-01 03:56:05 +02:00
type: 'TXT',
name: 'selector._domainkey',
content: dkimRecordString,
ttl: 18000,
);
2022-06-05 22:36:32 +03:00
final Dio client = await getClient();
2022-02-01 03:56:05 +02:00
await client.post(
url,
data: dkimRecord.toJson(),
);
client.close();
}
@override
2021-03-23 21:21:42 +02:00
Future<List<String>> domainList() async {
2022-06-05 22:36:32 +03:00
final String url = '$rootAddress/zones';
final Dio client = await getClient();
2021-03-26 01:30:34 +02:00
2022-06-05 22:36:32 +03:00
final Response response = await client.get(
2021-02-15 20:58:29 +02:00
url,
queryParameters: {'per_page': 50},
);
2021-03-26 15:38:39 +02:00
close(client);
2021-02-15 20:58:29 +02:00
return response.data['result']
2022-06-05 22:36:32 +03:00
.map<String>((final el) => el['name'] as String)
2021-02-15 20:58:29 +02:00
.toList();
}
2021-01-06 19:35:57 +02:00
}