aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/OperationResults.java
blob: 543b83edbb9d76abfba9963e3e48e96aef964ca3 (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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
/*
 * 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.app.Activity;
import android.content.Intent;
import android.os.Parcel;
import android.os.Parcelable;
import android.view.View;

import com.github.johnpersano.supertoasts.SuperCardToast;
import com.github.johnpersano.supertoasts.SuperToast;
import com.github.johnpersano.supertoasts.util.OnClickWrapper;
import com.github.johnpersano.supertoasts.util.Style;

import org.sufficientlysecure.keychain.R;
import org.sufficientlysecure.keychain.pgp.UncachedKeyRing;
import org.sufficientlysecure.keychain.ui.LogDisplayActivity;
import org.sufficientlysecure.keychain.ui.LogDisplayFragment;

public abstract class OperationResults {

    public static class ImportKeyResult extends OperationResultParcel {

        public final int mNewKeys, mUpdatedKeys, mBadKeys;

        // At least one new key
        public static final int RESULT_OK_NEWKEYS = 2;
        // At least one updated key
        public static final int RESULT_OK_UPDATED = 4;
        // At least one key failed (might still be an overall success)
        public static final int RESULT_WITH_ERRORS = 8;
        // There are warnings in the log
        public static final int RESULT_WITH_WARNINGS = 16;

        // No keys to import...
        public static final int RESULT_FAIL_NOTHING = 32 +1;

        public boolean isOkBoth() {
            return (mResult & (RESULT_OK_NEWKEYS | RESULT_OK_UPDATED))
                    == (RESULT_OK_NEWKEYS | RESULT_OK_UPDATED);
        }
        public boolean isOkNew() {
            return (mResult & RESULT_OK_NEWKEYS) == RESULT_OK_NEWKEYS;
        }
        public boolean isOkUpdated() {
            return (mResult & RESULT_OK_UPDATED) == RESULT_OK_UPDATED;
        }
        public boolean isFailNothing() {
            return (mResult & RESULT_FAIL_NOTHING) == RESULT_FAIL_NOTHING;
        }

        public ImportKeyResult(Parcel source) {
            super(source);
            mNewKeys = source.readInt();
            mUpdatedKeys = source.readInt();
            mBadKeys = source.readInt();
        }

        public ImportKeyResult(int result, OperationLog log,
                               int newKeys, int updatedKeys, int badKeys) {
            super(result, log);
            mNewKeys = newKeys;
            mUpdatedKeys = updatedKeys;
            mBadKeys = badKeys;
        }

        @Override
        public void writeToParcel(Parcel dest, int flags) {
            super.writeToParcel(dest, flags);
            dest.writeInt(mNewKeys);
            dest.writeInt(mUpdatedKeys);
            dest.writeInt(mBadKeys);
        }

        public static Creator<ImportKeyResult> CREATOR = new Creator<ImportKeyResult>() {
            public ImportKeyResult createFromParcel(final Parcel source) {
                return new ImportKeyResult(source);
            }

            public ImportKeyResult[] newArray(final int size) {
                return new ImportKeyResult[size];
            }
        };

        public SuperCardToast createNotify(final Activity activity) {

            int resultType = getResult();

            String str;
            int duration, color;

            // Not an overall failure
            if ((resultType & OperationResultParcel.RESULT_ERROR) == 0) {
                String withWarnings;

                // Any warnings?
                if ((resultType & ImportKeyResult.RESULT_WITH_WARNINGS) > 0) {
                    duration = 0;
                    color = Style.ORANGE;
                    withWarnings = activity.getResources().getString(R.string.import_with_warnings);
                } else {
                    duration = SuperToast.Duration.LONG;
                    color = Style.GREEN;
                    withWarnings = "";
                }

                // New and updated keys
                if (this.isOkBoth()) {
                    str = activity.getResources().getQuantityString(
                            R.plurals.import_keys_added_and_updated_1, mNewKeys, mNewKeys);
                    str += " "+ activity.getResources().getQuantityString(
                            R.plurals.import_keys_added_and_updated_2, mUpdatedKeys, mUpdatedKeys, withWarnings);
                } else if (isOkUpdated()) {
                    str = activity.getResources().getQuantityString(
                            R.plurals.import_keys_updated, mUpdatedKeys, mUpdatedKeys, withWarnings);
                } else if (isOkNew()) {
                    str = activity.getResources().getQuantityString(
                            R.plurals.import_keys_added, mNewKeys, mNewKeys, withWarnings);
                } else {
                    duration = 0;
                    color = Style.RED;
                    str = "internal error";
                }

            } else {
                duration = 0;
                color = Style.RED;
                if (isFailNothing()) {
                    str = activity.getString(R.string.import_error_nothing);
                } else {
                    str = activity.getString(R.string.import_error);
                }
            }

            // TODO: externalize into Notify class?
            boolean button = getLog() != null && !getLog().isEmpty();
            SuperCardToast toast = new SuperCardToast(activity,
                    button ? SuperToast.Type.BUTTON : SuperToast.Type.STANDARD,
                    Style.getStyle(color, SuperToast.Animations.POPUP));
            toast.setText(str);
            toast.setDuration(duration);
            toast.setIndeterminate(duration == 0);
            toast.setSwipeToDismiss(true);
            // If we have a log and it's non-empty, show a View Log button
            if (button) {
                toast.setButtonIcon(R.drawable.ic_action_view_as_list,
                        activity.getResources().getString(R.string.view_log));
                toast.setButtonTextColor(activity.getResources().getColor(R.color.black));
                toast.setTextColor(activity.getResources().getColor(R.color.black));
                toast.setOnClickWrapper(new OnClickWrapper("supercardtoast",
                        new SuperToast.OnClickListener() {
                            @Override
                            public void onClick(View view, Parcelable token) {
                                Intent intent = new Intent(
                                        activity, LogDisplayActivity.class);
                                intent.putExtra(LogDisplayFragment.EXTRA_RESULT, ImportKeyResult.this);
                                activity.startActivity(intent);
                            }
                        }
                ));
            }

            return toast;

        }

    }

    public static class EditKeyResult extends OperationResultParcel {

        private transient UncachedKeyRing mRing;
        public final Long mRingMasterKeyId;

        public EditKeyResult(int result, OperationLog log,
                               UncachedKeyRing ring) {
            super(result, log);
            mRing = ring;
            mRingMasterKeyId = ring != null ? ring.getMasterKeyId() : null;
        }

        public UncachedKeyRing getRing() {
            return mRing;
        }

        public EditKeyResult(Parcel source) {
            super(source);
            mRingMasterKeyId = source.readLong();
        }

        @Override
        public void writeToParcel(Parcel dest, int flags) {
            super.writeToParcel(dest, flags);
            dest.writeLong(mRingMasterKeyId);
        }

        public static Creator<EditKeyResult> CREATOR = new Creator<EditKeyResult>() {
            public EditKeyResult createFromParcel(final Parcel source) {
                return new EditKeyResult(source);
            }

            public EditKeyResult[] newArray(final int size) {
                return new EditKeyResult[size];
            }
        };

    }


    public static class SaveKeyringResult extends OperationResultParcel {

        public SaveKeyringResult(int result, OperationLog log) {
            super(result, log);
        }

        // Some old key was updated
        public static final int UPDATED = 2;

        // Public key was saved
        public static final int SAVED_PUBLIC = 8;
        // Secret key was saved (not exclusive with public!)
        public static final int SAVED_SECRET = 16;

        public boolean updated() {
            return (mResult & UPDATED) == UPDATED;
        }

    }

}