aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/moe/yuuta/gplicense/ipc/ILicenseResultListener.java
blob: a7683b68e07590b29287ef2419ea83dd2b584279 (plain)
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
package moe.yuuta.gplicense.ipc;

import android.os.Binder;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import android.os.RemoteException;

import androidx.annotation.NonNull;

import moe.yuuta.gplicense.util.Base64;
import moe.yuuta.gplicense.util.Base64DecoderException;

public interface ILicenseResultListener extends IInterface {
    abstract class Stub extends Binder implements ILicenseResultListener {
        private static final String DESCRIPTOR;

        static {
            try {
                // Base64 encoded -
                // com.android.vending.licensing.ILicenseResultListener
                DESCRIPTOR = new String(Base64.decode(
                        "Y29tLmFuZHJvaWQudmVuZGluZy5saWNlbnNpbmcuSUxpY2Vuc2VSZXN1bHRMaXN0ZW5lcg=="));
            } catch (Base64DecoderException e) {
                throw new RuntimeException(e);
            }
        }

        protected Stub() {
            this.attachInterface(this, DESCRIPTOR);
        }

        static ILicenseResultListener asInterface(IBinder obj) {
            if ((obj == null)) {
                return null;
            }
            IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
            if (iin instanceof ILicenseResultListener) {
                return (ILicenseResultListener) iin;
            }
            return new Stub.Proxy(obj);
        }

        @Override
        public IBinder asBinder() {
            return this;
        }

        @Override
        public boolean onTransact(int code, @NonNull Parcel data, Parcel reply, int flags) throws RemoteException {
            switch (code) {
                case INTERFACE_TRANSACTION: {
                    reply.writeString(DESCRIPTOR);
                    return true;
                }
                case TRANSACTION_verifyLicense: {
                    data.enforceInterface(DESCRIPTOR);
                    int responseCode = data.readInt();
                    String signedData = data.readString();
                    String signature = data.readString();
                    this.verifyLicense(responseCode, signedData, signature);
                    return true;
                }
                default: {
                    return super.onTransact(code, data, reply, flags);
                }
            }
        }

        private static class Proxy implements ILicenseResultListener {
            private IBinder mRemote;

            Proxy(IBinder remote) {
                mRemote = remote;
            }

            @Override
            public IBinder asBinder() {
                return mRemote;
            }

            @Override
            public void verifyLicense(int responseCode, String signedData, String signature) throws RemoteException {
                Parcel args = Parcel.obtain();
                try {
                    args.writeInterfaceToken(DESCRIPTOR);
                    args.writeInt(responseCode);
                    args.writeString(signedData);
                    args.writeString(signature);
                    mRemote.transact(TRANSACTION_verifyLicense, args, null, IBinder.FLAG_ONEWAY);
                } finally {
                    args.recycle();
                }
            }
        }

        static final int TRANSACTION_verifyLicense = IBinder.FIRST_CALL_TRANSACTION;
    }

    void verifyLicense(int responseCode, String signedData, String signature) throws RemoteException;
}