92 lines
2.8 KiB
Dart
92 lines
2.8 KiB
Dart
import 'package:logging/logging.dart';
|
|
|
|
import 'package:uuid/uuid.dart';
|
|
|
|
import 'package:pshared/api/requests/payment/initiate.dart';
|
|
import 'package:pshared/api/responses/payment/payment.dart';
|
|
import 'package:pshared/api/responses/payment/payments.dart';
|
|
import 'package:pshared/data/mapper/payment/payment_response.dart';
|
|
import 'package:pshared/models/payment/page.dart';
|
|
import 'package:pshared/models/payment/payment.dart';
|
|
import 'package:pshared/service/authorization/service.dart';
|
|
import 'package:pshared/service/services.dart';
|
|
import 'package:pshared/utils/http/params.dart';
|
|
|
|
|
|
class PaymentService {
|
|
static final _logger = Logger('service.payment');
|
|
static const String _objectType = Services.payments;
|
|
|
|
static Future<PaymentPage> listPage(
|
|
String organizationRef, {
|
|
int? limit,
|
|
String? cursor,
|
|
String? sourceRef,
|
|
String? destinationRef,
|
|
List<String>? states,
|
|
}) async {
|
|
_logger.fine('Listing payments for organization $organizationRef');
|
|
final queryParams = <String, String>{};
|
|
if (sourceRef != null && sourceRef.isNotEmpty) {
|
|
queryParams['source_ref'] = sourceRef;
|
|
}
|
|
if (destinationRef != null && destinationRef.isNotEmpty) {
|
|
queryParams['destination_ref'] = destinationRef;
|
|
}
|
|
if (states != null && states.isNotEmpty) {
|
|
queryParams['state'] = states.join(',');
|
|
}
|
|
|
|
final url = cursorParamsToUriString(
|
|
path: '/$organizationRef',
|
|
limit: limit,
|
|
cursor: cursor,
|
|
queryParams: queryParams,
|
|
);
|
|
final response = await AuthorizationService.getGETResponse(_objectType, url);
|
|
final parsed = PaymentsResponse.fromJson(response);
|
|
final payments = parsed.payments.map((payment) => payment.toDomain()).toList();
|
|
return PaymentPage(items: payments, nextCursor: parsed.nextCursor);
|
|
}
|
|
|
|
static Future<List<Payment>> list(
|
|
String organizationRef, {
|
|
int? limit,
|
|
String? cursor,
|
|
String? sourceRef,
|
|
String? destinationRef,
|
|
List<String>? states,
|
|
}) async {
|
|
final page = await listPage(
|
|
organizationRef,
|
|
limit: limit,
|
|
cursor: cursor,
|
|
sourceRef: sourceRef,
|
|
destinationRef: destinationRef,
|
|
states: states,
|
|
);
|
|
return page.items;
|
|
}
|
|
|
|
static Future<Payment> pay(
|
|
String organizationRef,
|
|
String quotationRef, {
|
|
String? idempotencyKey,
|
|
Map<String, String>? metadata,
|
|
}) async {
|
|
_logger.fine('Executing payment for quotation $quotationRef in $organizationRef');
|
|
final request = InitiatePaymentRequest(
|
|
idempotencyKey: idempotencyKey ?? Uuid().v4(),
|
|
quoteRef: quotationRef,
|
|
metadata: metadata,
|
|
);
|
|
final response = await AuthorizationService.getPOSTResponse(
|
|
_objectType,
|
|
'/by-quote/$organizationRef',
|
|
request.toJson(),
|
|
);
|
|
return PaymentResponse.fromJson(response).payment.toDomain();
|
|
}
|
|
|
|
}
|