aboutsummaryrefslogtreecommitdiffstats
path: root/docs/render_examples.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/render_examples.py')
0 files changed, 0 insertions, 0 deletions
'n6' href='#n6'>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
/*
 * Copyright (C) 2014 Daniel Albert
 *
 * 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.util;

public class KeyUpdateHelper {

    /*

    public void updateAllKeys(Context context, KeychainIntentServiceHandler finishedHandler) {
        UpdateTask updateTask = new UpdateTask(context, finishedHandler);
        updateTask.execute();
    }

    private class UpdateTask extends AsyncTask<Void, Void, Void> {
        private Context mContext;
        private KeychainIntentServiceHandler mHandler;

        public UpdateTask(Context context, KeychainIntentServiceHandler handler) {
            this.mContext = context;
            this.mHandler = handler;
        }

        @Override
        protected Void doInBackground(Void... voids) {
            ProviderHelper providerHelper = new ProviderHelper(mContext);
            List<ImportKeysListEntry> keys = new ArrayList<ImportKeysListEntry>();
            String[] servers = Preferences.getPreferences(mContext).getKeyServers();

            if (servers != null && servers.length > 0) {
                // Load all the fingerprints in the database and prepare to import them
                for (String fprint : providerHelper.getAllFingerprints(KeychainContract.KeyRings.buildUnifiedKeyRingsUri())) {
                    ImportKeysListEntry key = new ImportKeysListEntry();
                    key.setFingerprintHex(fprint);
                    key.addOrigin(servers[0]);
                    keys.add(key);
                }

                // Start the service and update the keys
                Intent importIntent = new Intent(mContext, KeychainService.class);
                importIntent.setAction(KeychainService.ACTION_DOWNLOAD_AND_IMPORT_KEYS);

                Bundle importData = new Bundle();
                importData.putParcelableArrayList(KeychainService.DOWNLOAD_KEY_LIST,
                        new ArrayList<ImportKeysListEntry>(keys));
                importIntent.putExtra(KeychainService.EXTRA_SERVICE_INTENT, importData);

                importIntent.putExtra(KeychainService.EXTRA_MESSENGER, new Messenger(mHandler));

                mContext.startService(importIntent);
            }
            return null;
        }
    }
    */

}