diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-13 20:47:47 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-13 20:47:47 +0000 |
commit | 11079a4772dacf7865c3d650b7aa911242bb782e (patch) | |
tree | 6731bf180dad1ef9e6ca6fd5ba2ac2130815e2de /chrome/browser/ui/webui/options2/certificate_manager_handler.h | |
parent | 8a087f4885188a062320c0fba9feb33e48173b04 (diff) | |
download | chromium_src-11079a4772dacf7865c3d650b7aa911242bb782e.zip chromium_src-11079a4772dacf7865c3d650b7aa911242bb782e.tar.gz chromium_src-11079a4772dacf7865c3d650b7aa911242bb782e.tar.bz2 |
Options2: Pull the trigger.
Options2 is a copy of the resources for and implementation of chrome://settings that will be pared down significantly for UberPage (see bug).
BUG=100885
TEST=none
R=csilv
Review URL: http://codereview.chromium.org/8895023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@114267 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui/options2/certificate_manager_handler.h')
-rw-r--r-- | chrome/browser/ui/webui/options2/certificate_manager_handler.h | 171 |
1 files changed, 171 insertions, 0 deletions
diff --git a/chrome/browser/ui/webui/options2/certificate_manager_handler.h b/chrome/browser/ui/webui/options2/certificate_manager_handler.h new file mode 100644 index 0000000..0e26a17 --- /dev/null +++ b/chrome/browser/ui/webui/options2/certificate_manager_handler.h @@ -0,0 +1,171 @@ +// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_CERTIFICATE_MANAGER_HANDLER_H_ +#define CHROME_BROWSER_UI_WEBUI_OPTIONS2_CERTIFICATE_MANAGER_HANDLER_H_ +#pragma once + +#include <string> + +#include "base/compiler_specific.h" +#include "base/memory/scoped_ptr.h" +#include "chrome/browser/certificate_manager_model.h" +#include "chrome/browser/ui/select_file_dialog.h" +#include "chrome/browser/ui/webui/options2/options_ui.h" +#include "content/browser/cancelable_request.h" +#include "net/base/cert_database.h" +#include "ui/gfx/native_widget_types.h" + +class FileAccessProvider; + +class CertificateManagerHandler : public OptionsPage2UIHandler, + public CertificateManagerModel::Observer, + public SelectFileDialog::Listener { + public: + CertificateManagerHandler(); + virtual ~CertificateManagerHandler(); + + // OptionsPage2UIHandler implementation. + virtual void GetLocalizedValues( + base::DictionaryValue* localized_strings) OVERRIDE; + virtual void RegisterMessages() OVERRIDE; + + // CertificateManagerModel::Observer implementation. + virtual void CertificatesRefreshed() OVERRIDE; + + // SelectFileDialog::Listener implementation. + virtual void FileSelected(const FilePath& path, + int index, + void* params) OVERRIDE; + virtual void FileSelectionCanceled(void* params) OVERRIDE; + + private: + // View certificate. + void View(const base::ListValue* args); + + // Edit server certificate trust values. + void EditServer(const base::ListValue* args); + + // Edit certificate authority trust values. The sequence goes like: + // 1. user clicks edit button -> CertificateEditCaTrustOverlay.show -> + // GetCATrust -> CertificateEditCaTrustOverlay.populateTrust + // 2. user clicks ok -> EditCATrust -> CertificateEditCaTrustOverlay.dismiss + void GetCATrust(const base::ListValue* args); + void EditCATrust(const base::ListValue* args); + + // Cleanup state stored during import or export process. + void CancelImportExportProcess(const base::ListValue* args); + void ImportExportCleanup(); + + // Export to PKCS #12 file. The sequence goes like: + // 1a. user click on export button -> ExportPersonal -> launches file + // selector + // 1b. user click on export all button -> ExportAllPersonal -> launches file + // selector + // 2. user selects file -> ExportPersonalFileSelected -> launches password + // dialog + // 3. user enters password -> ExportPersonalPasswordSelected -> unlock slots + // 4. slots unlocked -> ExportPersonalSlotsUnlocked -> exports to memory + // buffer -> starts async write operation + // 5. write finishes (or fails) -> ExportPersonalFileWritten + void ExportPersonal(const base::ListValue* args); + void ExportAllPersonal(const base::ListValue* args); + void ExportPersonalFileSelected(const FilePath& path); + void ExportPersonalPasswordSelected(const base::ListValue* args); + void ExportPersonalSlotsUnlocked(); + void ExportPersonalFileWritten(int write_errno, int bytes_written); + + // Import from PKCS #12 file. The sequence goes like: + // 1. user click on import button -> StartImportPersonal -> launches file + // selector + // 2. user selects file -> ImportPersonalFileSelected -> launches password + // dialog + // 3. user enters password -> ImportPersonalPasswordSelected -> starts async + // read operation + // 4. read operation completes -> ImportPersonalFileRead -> unlock slot + // 5. slot unlocked -> ImportPersonalSlotUnlocked attempts to + // import with previously entered password + // 6a. if import succeeds -> ImportExportCleanup + // 6b. if import fails -> show error, ImportExportCleanup + // TODO(mattm): allow retrying with different password + void StartImportPersonal(const base::ListValue* args); + void ImportPersonalFileSelected(const FilePath& path); + void ImportPersonalPasswordSelected(const base::ListValue* args); + void ImportPersonalFileRead(int read_errno, std::string data); + void ImportPersonalSlotUnlocked(); + + // Import Server certificates from file. Sequence goes like: + // 1. user clicks on import button -> ImportServer -> launches file selector + // 2. user selects file -> ImportServerFileSelected -> starts async read + // 3. read completes -> ImportServerFileRead -> parse certs -> attempt import + // 4a. if import succeeds -> ImportExportCleanup + // 4b. if import fails -> show error, ImportExportCleanup + void ImportServer(const base::ListValue* args); + void ImportServerFileSelected(const FilePath& path); + void ImportServerFileRead(int read_errno, std::string data); + + // Import Certificate Authorities from file. Sequence goes like: + // 1. user clicks on import button -> ImportCA -> launches file selector + // 2. user selects file -> ImportCAFileSelected -> starts async read + // 3. read completes -> ImportCAFileRead -> parse certs -> + // CertificateEditCaTrustOverlay.showImport + // 4. user clicks ok -> ImportCATrustSelected -> attempt import + // 5a. if import succeeds -> ImportExportCleanup + // 5b. if import fails -> show error, ImportExportCleanup + void ImportCA(const base::ListValue* args); + void ImportCAFileSelected(const FilePath& path); + void ImportCAFileRead(int read_errno, std::string data); + void ImportCATrustSelected(const base::ListValue* args); + + // Export a certificate. + void Export(const base::ListValue* args); + + // Delete certificate and private key (if any). + void Delete(const base::ListValue* args); + + // Populate the trees in all the tabs. + void Populate(const base::ListValue* args); + + // Populate the given tab's tree. + void PopulateTree(const std::string& tab_name, net::CertType type); + + // Display a WebUI error message box. + void ShowError(const std::string& title, const std::string& error) const; + + // Display a WebUI error message box for import failures. + // Depends on |selected_cert_list_| being set to the imports that we + // attempted to import. + void ShowImportErrors( + const std::string& title, + const net::CertDatabase::ImportCertFailureList& not_imported) const; + +#if defined(OS_CHROMEOS) + // Check whether Tpm token is ready and notifiy JS side. + void CheckTpmTokenReady(const base::ListValue* args); +#endif + + gfx::NativeWindow GetParentWindow() const; + + // The Certificates Manager model + scoped_ptr<CertificateManagerModel> certificate_manager_model_; + + // For multi-step import or export processes, we need to store the path, + // password, etc the user chose while we wait for them to enter a password, + // wait for file to be read, etc. + FilePath file_path_; + string16 password_; + bool use_hardware_backed_; + std::string file_data_; + net::CertificateList selected_cert_list_; + scoped_refptr<SelectFileDialog> select_file_dialog_; + scoped_refptr<net::CryptoModule> module_; + + // Used in reading and writing certificate files. + CancelableRequestConsumer consumer_; + scoped_refptr<FileAccessProvider> file_access_provider_; + + DISALLOW_COPY_AND_ASSIGN(CertificateManagerHandler); +}; + +#endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_CERTIFICATE_MANAGER_HANDLER_H_ |