DefaultRepository

@Singleton
class DefaultRepository @Inject constructor(defaultSource: DefaultSource, disbursementsService: DisbursementsService, collection: CollectionService, basicAuthCredentialsT: BasicAuthCredentials, accessTokenCredentialsT: AccessTokenCredentials) : DataResponse

The DefaultRepository class is responsible for making network calls to the MTN MOMO APIs.

This class holds all the common API methods for various MTN MOMO products, including user management, transaction processing, and status checks.

Constructors

Link copied to clipboard
@Inject
constructor(defaultSource: DefaultSource, disbursementsService: DisbursementsService, collection: CollectionService, basicAuthCredentialsT: BasicAuthCredentials, accessTokenCredentialsT: AccessTokenCredentials)

Functions

Link copied to clipboard
fun checkApiUser(apiVersion: String, productSubscriptionKey: String): Flow<NetworkResult<ApiUser>>

Checks whether the supplied API user exists.

Link copied to clipboard
fun createApiKey(apiVersion: String, productSubscriptionKey: String): Flow<NetworkResult<ApiKey>>

Gets the API Key based on the ApiUser Id and OCP Subscription Id.

Link copied to clipboard
fun createApiUser(providerCallBackHost: ProviderCallBackHost, apiVersion: String, uuid: String, productSubscriptionKey: String): Flow<NetworkResult<ApiUser>>

Creates a new API user.

Link copied to clipboard
suspend fun deposit(accessToken: String, momoTransaction: MomoTransaction, apiVersion: String, productSubscriptionKey: String, uuid: String): Response<Unit>

Requests a deposit to be processed.

Link copied to clipboard
fun getAccessToken(productSubscriptionKey: String, productType: String): Flow<NetworkResult<AccessToken>>

Gets the Access Token based on the ApiUser ID, OCP Subscription Id, and the API Key.

Link copied to clipboard

Retrieves the current access token authentication credentials.

Link copied to clipboard
fun getAccountBalance(productType: String, apiVersion: String, currency: String?, productSubscriptionKey: String, environment: String): Flow<NetworkResult<AccountBalance>>

Gets the account balance of the entity/user initiating the transaction. This only works with the ProductType.COLLECTION. It seems to break with the other API products. User EUR as the currency on sandbox

Link copied to clipboard

Retrieves the current basic authentication credentials.

Link copied to clipboard
fun getBasicUserInfo(productType: String, apiVersion: String, accountHolder: String, productSubscriptionKey: String, environment: String): Flow<NetworkResult<BasicUserInfo>>

Retrieves the basic user information for a specified MTN MOMO user.

Link copied to clipboard
suspend fun getDepositStatus(referenceId: String, apiVersion: String, productSubscriptionKey: String, accessToken: String): Response<ResponseBody>

Gets the status of a deposit transaction.

Link copied to clipboard
fun getOauthAccessToken(productType: String, productSubscriptionKey: String, environment: String): Flow<NetworkResult<Oauth2AccessToken>>

Gets the Access Token based on the ApiUser ID, OCP Subscription Id, and the API Key.

Link copied to clipboard
suspend fun getRefundStatus(referenceId: String, apiVersion: String, productSubscriptionKey: String, accessToken: String): Response<ResponseBody>

Gets the status of a refund transaction.

Link copied to clipboard
fun getTransferStatus(productType: String, apiVersion: String, referenceId: String, productSubscriptionKey: String, environment: String): Flow<NetworkResult<ResponseBody>>

Retrieves the status of a transfer based on the provided transfer ID.

Link copied to clipboard
fun getUserInfoWithConsent(productType: String, apiVersion: String, productSubscriptionKey: String, environment: String): Flow<NetworkResult<UserInfoWithConsent>>

Retrieves the user information for a specified MTN MOMO user with consent.

Link copied to clipboard
suspend fun refund(accessToken: String, momoTransaction: MomoTransaction, apiVersion: String, productSubscriptionKey: String, uuid: String): Response<Unit>

Requests a refund to be processed.

Link copied to clipboard
suspend fun requestToPay(accessToken: String, momoTransaction: MomoTransaction, apiVersion: String, productSubscriptionKey: String, uuid: String): Response<Unit>

Requests a payment to be processed.

Link copied to clipboard
fun requestToPayDeliveryNotification(productType: String, apiVersion: String, referenceId: String, momoNotification: MomoNotification, productSubscriptionKey: String, environment: String): Flow<NetworkResult<ResponseBody>>

Sends a request to pay a user, identified by the provided reference ID.

Link copied to clipboard
suspend fun requestToPayTransactionStatus(referenceId: String, apiVersion: String, productSubscriptionKey: String, accessToken: String): Response<ResponseBody>

Requests the status of a payment transaction.

Link copied to clipboard
suspend fun requestToWithdraw(accessToken: String, momoTransaction: MomoTransaction, apiVersion: String, productSubscriptionKey: String, uuid: String): Response<Unit>

Requests a withdrawal to be processed.

Link copied to clipboard
suspend fun requestToWithdrawTransactionStatus(referenceId: String, apiVersion: String, productSubscriptionKey: String, accessToken: String): Response<ResponseBody>

Requests the status of a withdrawal transaction.

Link copied to clipboard
suspend fun <T> safeApiCall(apiRequest: suspend () -> Response<T>): NetworkResult<T>

Safely makes an API call and returns the result.

Link copied to clipboard
fun setUpAccessTokenAuth(accessTokenCredentials: AccessTokenCredentials)

Sets up access token authentication credentials.

Link copied to clipboard
fun setUpBasicAuth(basicAuthCredentials: BasicAuthCredentials)

Sets up basic authentication credentials.

Link copied to clipboard
fun transfer(productType: String, apiVersion: String, momoTransaction: MomoTransaction, uuid: String, productSubscriptionKey: String, environment: String): Flow<NetworkResult<Unit>>

Sends a request to transfer funds to a specified account.

Link copied to clipboard
fun validateAccountHolderStatus(productType: String, apiVersion: String, accountHolder: AccountHolder, productSubscriptionKey: String, environment: String): Flow<NetworkResult<ResponseBody>>

Validates the status of an account holder.