aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/DummyAccountService.java
blob: 18bc3cc9da39ee1cce77b9905ec6d5b74c5949d6 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
 * Copyright (C) 2014 Dominik Schürmann <dominik@dominikschuermann.de>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package org.sufficientlysecure.keychain.service;

import android.accounts.AbstractAccountAuthenticator;
import android.accounts.Account;
import android.accounts.AccountAuthenticatorResponse;
import android.accounts.NetworkErrorException;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.os.Message;
import android.widget.Toast;

import org.sufficientlysecure.keychain.Constants;
import org.sufficientlysecure.keychain.R;
import org.sufficientlysecure.keychain.util.Log;

/**
 * This service actually does nothing, it's sole task is to show a Toast if the use tries to create an account.
 */
public class DummyAccountService extends Service {

    private class Toaster {
        private static final String TOAST_MESSAGE = "toast_message";
        private Context context;
        private Handler handler = new Handler(new Handler.Callback() {
            @Override
            public boolean handleMessage(Message msg) {
                Toast.makeText(context, msg.getData().getString(TOAST_MESSAGE), Toast.LENGTH_LONG).show();
                return true;
            }
        });

        private Toaster(Context context) {
            this.context = context;
        }

        public void toast(int resourceId) {
            toast(context.getString(resourceId));
        }

        public void toast(String message) {
            Message msg = new Message();
            Bundle bundle = new Bundle();
            bundle.putString(TOAST_MESSAGE, message);
            msg.setData(bundle);
            handler.sendMessage(msg);
        }
    }

    private class Authenticator extends AbstractAccountAuthenticator {

        public Authenticator() {
            super(DummyAccountService.this);
        }

        @Override
        public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
            Log.d(Constants.TAG, "DummyAccountService.editProperties");
            return null;
        }

        @Override
        public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType,
                                 String[] requiredFeatures, Bundle options) throws NetworkErrorException {
            response.onResult(new Bundle());
            toaster.toast(R.string.account_no_manual_account_creation);
            Log.d(Constants.TAG, "DummyAccountService.addAccount");
            return null;
        }

        @Override
        public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options)
                throws NetworkErrorException {
            Log.d(Constants.TAG, "DummyAccountService.confirmCredentials");
            return null;
        }

        @Override
        public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType,
                                   Bundle options) throws NetworkErrorException {
            Log.d(Constants.TAG, "DummyAccountService.getAuthToken");
            return null;
        }

        @Override
        public String getAuthTokenLabel(String authTokenType) {
            Log.d(Constants.TAG, "DummyAccountService.getAuthTokenLabel");
            return null;
        }

        @Override
        public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, String authTokenType,
                                        Bundle options) throws NetworkErrorException {
            Log.d(Constants.TAG, "DummyAccountService.updateCredentials");
            return null;
        }

        @Override
        public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features)
                throws NetworkErrorException {
            Log.d(Constants.TAG, "DummyAccountService.hasFeatures");
            return null;
        }
    }

    private Toaster toaster;

    @Override
    public IBinder onBind(Intent intent) {
        toaster = new Toaster(this);
        return new Authenticator().getIBinder();
    }
}