aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/keyimport/ImportKeysList.java
blob: 75a219191dccbfb848c511129d82146943574bce (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
/*
 * Copyright (C) 2014 Tim Bray <tbray@textuality.com>
 *
 * 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.keyimport;

import java.util.ArrayList;
import java.util.Collection;

/**
 * Just an ArrayList, only with a synchronized dupe-merging add/addAll, and a sign-off method
 */
public class ImportKeysList extends ArrayList<ImportKeysListEntry> {

    private int mSupplierCount;

    public ImportKeysList(int supplierCount) {
        mSupplierCount = supplierCount;
    }

    @Override
    public boolean add(ImportKeysListEntry toAdd) {
        addOrMerge(toAdd);
        return true; // that’s what the ArrayList#add contract says
    }

    @Override
    public boolean addAll(Collection<? extends ImportKeysListEntry> addThese) {
        boolean modified = false;
        for (ImportKeysListEntry toAdd : addThese) {
            modified = addOrMerge(toAdd) || modified;
        }
        return modified;
    }

    // NOTE: side-effects
    // NOTE: synchronized
    private synchronized boolean addOrMerge(ImportKeysListEntry toAdd) {
        for (ImportKeysListEntry existing : this) {
            if (toAdd.hasSameKeyAs(existing)) {
                return mergeDupes(toAdd, existing);
            }
        }
        return super.add(toAdd);
    }

    // being a little anal about the ArrayList#addAll contract here
    private boolean mergeDupes(ImportKeysListEntry incoming, ImportKeysListEntry existing) {
        boolean modified = false;

        // if any source thinks it’s expired/revoked, it is
        if (incoming.isRevoked()) {
            existing.setRevoked(true);
            modified = true;
        }
        if (incoming.isExpired()) {
            existing.setExpired(true);
            modified = true;
        }

        // keep track if this key result is from a HKP keyserver
        boolean incomingFromHkpServer = true;
        // we’re going to want to try to fetch the key from everywhere we found it, so remember
        //  all the origins
        for (String origin : incoming.getOrigins()) {
            existing.addOrigin(origin);

            // to work properly, Keybase-sourced/Facebook-sourced entries need to pass along the
            // identifying name/id
            if (incoming.getKeybaseName() != null) {
                existing.setKeybaseName(incoming.getKeybaseName());
                // one of the origins is not a HKP keyserver
                incomingFromHkpServer = false;
            }
            if (incoming.getFbUsername() != null) {
                existing.setFbUsername(incoming.getFbUsername());
                // one of the origins is not a HKP keyserver
                incomingFromHkpServer = false;
            }
        }

        ArrayList<String> incomingIDs = incoming.getUserIds();
        ArrayList<String> existingIDs = existing.getUserIds();
        for (String incomingID : incomingIDs) {
            if (!existingIDs.contains(incomingID)) {
                // prepend  HKP server results to the start of the list,
                // so that the UI (for cloud key search, which is picking the first list item)
                // shows the right main email address, as mail addresses returned by HKP servers
                // are preferred over keybase.io IDs
                if (incomingFromHkpServer) {
                    existingIDs.add(0, incomingID);
                } else {
                    existingIDs.add(incomingID);
                }
                modified = true;
            }
        }
        existing.updateMergedUserIds();
        return modified;
    }

    // NOTE: synchronized
    public synchronized void finishedAdding() {
        mSupplierCount--;
        if (mSupplierCount == 0) {
            this.notify();
        }
    }

    public int outstandingSuppliers() {
        return mSupplierCount;
    }
}