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
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_COMMON_WEBID_IDENTITY_URL_LOADER_THROTTLE_H_
#define CONTENT_COMMON_WEBID_IDENTITY_URL_LOADER_THROTTLE_H_
#include <memory>
#include <string_view>
#include "base/functional/callback.h"
#include "base/gtest_prod_util.h"
#include "base/memory/weak_ptr.h"
#include "content/common/content_export.h"
#include "content/public/common/web_identity.h"
#include "third_party/blink/public/common/loader/url_loader_throttle.h"
#include "url/gurl.h"
namespace net {
class HttpResponseHeaders;
} // namespace net
namespace content {
// Used to intercept signin/signout response headers from IDPs.
class CONTENT_EXPORT IdentityUrlLoaderThrottle
: public blink::URLLoaderThrottle {
public:
explicit IdentityUrlLoaderThrottle(SetIdpStatusCallback callback);
~IdentityUrlLoaderThrottle() override;
IdentityUrlLoaderThrottle(const IdentityUrlLoaderThrottle&) = delete;
IdentityUrlLoaderThrottle& operator=(const IdentityUrlLoaderThrottle&) =
delete;
// URLLoaderThrottle implementation:
void DetachFromCurrentSequence() override;
void WillStartRequest(network::ResourceRequest* request,
bool* defer) override;
void WillProcessResponse(const GURL& response_url,
network::mojom::URLResponseHead* response_head,
bool* defer) override;
void WillRedirectRequest(
net::RedirectInfo* redirect_info,
const network::mojom::URLResponseHead& response_head,
bool* defer,
std::vector<std::string>* to_be_removed_request_headers,
net::HttpRequestHeaders* modified_request_headers,
net::HttpRequestHeaders* modified_cors_exempt_request_headers) override;
private:
FRIEND_TEST_ALL_PREFIXES(IdentityUrlLoaderThrottleTest, HeaderHasToken);
void HandleResponseOrRedirect(
const GURL& response_url,
const network::mojom::URLResponseHead& response_head);
static bool HeaderHasToken(const net::HttpResponseHeaders& headers,
std::string_view header_name,
std::string_view token);
GURL request_url_;
SetIdpStatusCallback set_idp_status_cb_;
bool has_user_gesture_ = false;
base::WeakPtrFactory<IdentityUrlLoaderThrottle> weak_ptr_factory_{this};
};
} // namespace content
#endif // CONTENT_COMMON_WEBID_IDENTITY_URL_LOADER_THROTTLE_H_
|