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
|
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_ASH_COMPONENTS_BOCA_SESSION_API_GET_SESSION_REQUEST_H_
#define CHROMEOS_ASH_COMPONENTS_BOCA_SESSION_API_GET_SESSION_REQUEST_H_
#include <memory>
#include <string>
#include "base/functional/callback_forward.h"
#include "base/memory/weak_ptr.h"
#include "base/types/expected.h"
#include "google_apis/common/base_requests.h"
#include "google_apis/gaia/gaia_id.h"
namespace boca {
class Session;
}
namespace ash::boca {
class GetSessionRequest : public google_apis::UrlFetchRequestBase {
public:
using Callback = base::OnceCallback<void(
base::expected<std::unique_ptr<::boca::Session>,
google_apis::ApiErrorCode> result)>;
GetSessionRequest(google_apis::RequestSender* sender,
std::string url_base,
bool is_producer,
GaiaId gaia_id,
Callback callback);
GetSessionRequest(const GetSessionRequest&) = delete;
GetSessionRequest& operator=(const GetSessionRequest&) = delete;
~GetSessionRequest() override;
void set_device_id(std::string device_id) {
device_id_ = std::move(device_id);
}
void set_callback(Callback callback) { callback_ = std::move(callback); }
Callback callback() { return std::move(callback_); }
// For testing.
void OverrideURLForTesting(std::string url);
protected:
// UrlFetchRequestBase:
GURL GetURL() const override;
google_apis::ApiErrorCode MapReasonToError(
google_apis::ApiErrorCode code,
const std::string& reason) override;
bool IsSuccessfulErrorCode(google_apis::ApiErrorCode error) override;
void ProcessURLFetchResults(
const network::mojom::URLResponseHead* response_head,
const base::FilePath response_file,
std::string response_body) override;
void RunCallbackOnPrematureFailure(google_apis::ApiErrorCode code) override;
private:
void OnDataParsed(std::unique_ptr<::boca::Session> session);
bool is_producer_;
GaiaId gaia_id_;
std::string url_base_;
std::string device_id_;
Callback callback_;
base::WeakPtrFactory<GetSessionRequest> weak_ptr_factory_{this};
};
} // namespace ash::boca
#endif // CHROMEOS_ASH_COMPONENTS_BOCA_SESSION_API_GET_SESSION_REQUEST_H_
|