File size: 2,870 Bytes
4e1096a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import { invoke } from '@tauri-apps/api/core';

export interface IAPProduct {
  id: string;
  title: string;
  description: string;
  price: string;
  priceCurrencyCode?: string;
  priceAmountMicros: number;
  productType?: 'consumable' | 'non_consumable' | 'subscription';
}

interface IAPPurchaseBase {
  productId: string;
  purchaseDate: string;
}

interface IOSPurchase {
  platform: 'ios';
  transactionId?: string;
  originalTransactionId?: string;
  packageName?: never;
  orderId?: never;
  purchaseToken?: never;
}

interface AndroidPurchase {
  platform: 'android';
  packageName?: string;
  orderId?: string;
  purchaseToken?: string;
  transactionId?: never;
  originalTransactionId?: never;
}

export type IAPPurchase = IAPPurchaseBase & (IOSPurchase | AndroidPurchase);

interface IAPIsAvailableResponse {
  available: boolean;
}

interface InitializeRequest {
  publicKey?: string;
}

interface InitializeResponse {
  success: boolean;
}

interface FetchProductsRequest {
  productIds: string[];
}

interface FetchProductsResponse {
  products: IAPProduct[];
}

interface PurchaseProductRequest {
  productId: string;
}

interface PurchaseProductResponse {
  purchase: IAPPurchase;
}

interface RestorePurchasesResponse {
  purchases: IAPPurchase[];
}

export class IAPService {
  static async isAvailable(): Promise<boolean> {
    const result = await invoke<IAPIsAvailableResponse>('plugin:native-bridge|iap_is_available');
    return result.available;
  }

  async initialize(): Promise<boolean> {
    const result = await invoke<InitializeResponse>('plugin:native-bridge|iap_initialize', {
      payload: {} as InitializeRequest,
    });
    return result.success;
  }

  async fetchProducts(productIds: string[]): Promise<IAPProduct[]> {
    try {
      const response = await invoke<FetchProductsResponse>(
        'plugin:native-bridge|iap_fetch_products',
        {
          payload: { productIds } as FetchProductsRequest,
        },
      );
      return response.products;
    } catch (error) {
      console.error('Failed to fetch products:', error);
      throw error;
    }
  }

  async purchaseProduct(productId: string): Promise<IAPPurchase> {
    try {
      const response = await invoke<PurchaseProductResponse>(
        'plugin:native-bridge|iap_purchase_product',
        {
          payload: { productId } as PurchaseProductRequest,
        },
      );
      return response.purchase;
    } catch (error) {
      console.error('Failed to purchase product:', error);
      throw error;
    }
  }

  async restorePurchases(): Promise<IAPPurchase[]> {
    try {
      const response = await invoke<RestorePurchasesResponse>(
        'plugin:native-bridge|iap_restore_purchases',
      );
      return response.purchases;
    } catch (error) {
      console.error('Failed to restore purchases:', error);
      throw error;
    }
  }
}