| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "chromeos/attestation/attestation_constants.h" |
| 12 #include "chromeos/attestation/attestation_flow.h" | 13 #include "chromeos/attestation/attestation_flow.h" |
| 13 #include "net/url_request/url_fetcher_delegate.h" | 14 #include "net/url_request/url_fetcher_delegate.h" |
| 14 | 15 |
| 15 namespace chromeos { | 16 namespace chromeos { |
| 16 namespace attestation { | 17 namespace attestation { |
| 17 | 18 |
| 18 // This class is a ServerProxy implementation for the Chrome OS attestation | 19 // This class is a ServerProxy implementation for the Chrome OS attestation |
| 19 // flow. It sends all requests to an Attestation CA via HTTPS. | 20 // flow. It sends all requests to an Attestation CA via HTTPS. |
| 20 class AttestationCAClient : public ServerProxy, | 21 class AttestationCAClient : public ServerProxy, |
| 21 public net::URLFetcherDelegate { | 22 public net::URLFetcherDelegate { |
| 22 public: | 23 public: |
| 23 AttestationCAClient(); | 24 AttestationCAClient(); |
| 24 ~AttestationCAClient() override; | 25 ~AttestationCAClient() override; |
| 25 | 26 |
| 26 // chromeos::attestation::ServerProxy: | 27 // chromeos::attestation::ServerProxy: |
| 27 void SendEnrollRequest(const std::string& request, | 28 void SendEnrollRequest(const std::string& request, |
| 28 const DataCallback& on_response) override; | 29 const DataCallback& on_response) override; |
| 29 void SendCertificateRequest(const std::string& request, | 30 void SendCertificateRequest(const std::string& request, |
| 30 const DataCallback& on_response) override; | 31 const DataCallback& on_response) override; |
| 31 | 32 |
| 32 // net::URLFetcherDelegate: | 33 // net::URLFetcherDelegate: |
| 33 void OnURLFetchComplete(const net::URLFetcher* source) override; | 34 void OnURLFetchComplete(const net::URLFetcher* source) override; |
| 34 | 35 |
| 36 PrivacyCAType GetType() override; |
| 37 |
| 35 private: | 38 private: |
| 39 PrivacyCAType pca_type_; |
| 40 |
| 36 typedef std::map<const net::URLFetcher*, DataCallback> FetcherCallbackMap; | 41 typedef std::map<const net::URLFetcher*, DataCallback> FetcherCallbackMap; |
| 37 | 42 |
| 38 // POSTs |request| data to |url| and calls |on_response| with the response | 43 // POSTs |request| data to |url| and calls |on_response| with the response |
| 39 // data when the fetch is complete. | 44 // data when the fetch is complete. |
| 40 void FetchURL(const std::string& url, | 45 void FetchURL(const std::string& url, |
| 41 const std::string& request, | 46 const std::string& request, |
| 42 const DataCallback& on_response); | 47 const DataCallback& on_response); |
| 43 | 48 |
| 44 // Tracks all URL requests we have started. | 49 // Tracks all URL requests we have started. |
| 45 FetcherCallbackMap pending_requests_; | 50 FetcherCallbackMap pending_requests_; |
| 46 | 51 |
| 47 DISALLOW_COPY_AND_ASSIGN(AttestationCAClient); | 52 DISALLOW_COPY_AND_ASSIGN(AttestationCAClient); |
| 48 }; | 53 }; |
| 49 | 54 |
| 50 } // namespace attestation | 55 } // namespace attestation |
| 51 } // namespace chromeos | 56 } // namespace chromeos |
| 52 | 57 |
| 53 #endif // CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ | 58 #endif // CHROME_BROWSER_CHROMEOS_ATTESTATION_ATTESTATION_CA_CLIENT_H_ |
| OLD | NEW |