summaryrefslogtreecommitdiff
path: root/chromium/components/autofill_assistant/browser/service/service_request_sender_impl.h
blob: 7bf23fe4698f17e17f012153998ae88018a8d8e1 (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
// Copyright 2020 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 COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_SERVICE_SERVICE_REQUEST_SENDER_IMPL_H_
#define COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_SERVICE_SERVICE_REQUEST_SENDER_IMPL_H_

#include <memory>
#include <string>

#include "base/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "components/autofill_assistant/browser/service/access_token_fetcher.h"
#include "components/autofill_assistant/browser/service/cup_factory.h"
#include "components/autofill_assistant/browser/service/service_request_sender.h"
#include "components/autofill_assistant/browser/service/simple_url_loader_factory.h"
#include "content/public/browser/browser_context.h"
#include "url/gurl.h"

namespace content {
class BrowserContext;
}  // namespace content

namespace autofill_assistant {

class ServiceRequestSenderImpl : public ServiceRequestSender {
 public:
  // Constructor. |access_token_fetcher| is optional if |auth_enabled| is false.
  // Pointers to |context| and, if provided, |access_token_fetcher| must remain
  // valid during the lifetime of this instance.
  // If |disable_auth_if_no_access_token| is true, authentication will
  // automatically be disabled in case fetching the access token fails.
  ServiceRequestSenderImpl(
      content::BrowserContext* context,
      AccessTokenFetcher* access_token_fetcher,
      std::unique_ptr<cup::CUPFactory> cup_factory,
      std::unique_ptr<SimpleURLLoaderFactory> loader_factory,
      const std::string& api_key);
  ~ServiceRequestSenderImpl() override;
  ServiceRequestSenderImpl(const ServiceRequestSenderImpl&) = delete;
  ServiceRequestSenderImpl& operator=(const ServiceRequestSenderImpl&) = delete;

  // Sends |request_body| to |url|. Depending on configuration, the request
  // will be authenticated either with an Oauth access token or the api key. The
  // |rpc_type| will be used to decide whether to use CUP verification. Returns
  // the http status code and the response itself. If the returned http headers
  // could not be parsed, the http code will be 0.
  //
  // When an auth-request first fails with a 401, the access token is
  // invalidated and fetched again. If the request fails again, the request
  // is considered failed and the callback is invoked.
  void SendRequest(const GURL& url,
                   const std::string& request_body,
                   ServiceRequestSender::AuthMode auth_mode,
                   ResponseCallback callback,
                   RpcType rpc_type) override;

  // Sets the value of the |disable_rpc_signing| field. If |true| CUP signing
  // and verification will be bypassed even if it is enabled and the RPC type
  // supported. Intended for internal use only.
  void SetDisableRpcSigning(bool disable_rpc_signing) override;

 private:
  // Unlike |ServiceRequestSenderImpl::SendRequest|, assumes that any necessary
  // CUP signing and validation is already done or accounted for in the
  // |callback|.
  void InternalSendRequest(const GURL& url,
                           const std::string& request_body,
                           ServiceRequestSender::AuthMode auth_mode,
                           int max_retries,
                           ResponseCallback callback);

  void SendRequestAuth(const GURL& url,
                       const std::string& request_body,
                       const std::string& access_token,
                       ServiceRequestSender::AuthMode auth_mode,
                       int max_retries,
                       ResponseCallback callback);

  void RetryIfUnauthorized(const GURL& url,
                           const std::string& access_token,
                           const std::string& request_body,
                           ServiceRequestSender::AuthMode auth_mode,
                           int max_retries,
                           ResponseCallback callback,
                           int http_status,
                           const std::string& response,
                           const ResponseInfo& response_info);

  void OnFetchAccessToken(GURL url,
                          std::string request_body,
                          ServiceRequestSender::AuthMode auth_mode,
                          int max_retries,
                          ResponseCallback callback,
                          bool access_token_fetched,
                          const std::string& access_token);

  bool OAuthEnabled(ServiceRequestSender::AuthMode auth_mode);

  raw_ptr<content::BrowserContext> context_ = nullptr;
  raw_ptr<AccessTokenFetcher> access_token_fetcher_ = nullptr;
  std::unique_ptr<cup::CUPFactory> cup_factory_;
  std::unique_ptr<SimpleURLLoaderFactory> loader_factory_;

  // API key to add to the URL of unauthenticated requests.
  std::string api_key_;

  // Disable CUP RPC signing. Intended for internal use only.
  bool disable_rpc_signing_ = false;

  // Getting the OAuth token failed. For requests with auth mode allowing to
  // fall back to API key, it will not be retried. For requests forcing auth,
  // the OAuth token will tried to be re-fetched.
  bool failed_to_fetch_oauth_token_ = false;

  bool retried_with_fresh_access_token_ = false;
  base::WeakPtrFactory<ServiceRequestSenderImpl> weak_ptr_factory_{this};
};

}  // namespace autofill_assistant

#endif  // COMPONENTS_AUTOFILL_ASSISTANT_BROWSER_SERVICE_SERVICE_REQUEST_SENDER_IMPL_H_