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
|
// 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_REMOVE_STUDENT_REQUEST_H_
#define CHROMEOS_ASH_COMPONENTS_BOCA_SESSION_API_REMOVE_STUDENT_REQUEST_H_
#include <memory>
#include <string>
#include "base/time/time.h"
#include "base/types/expected.h"
#include "chromeos/ash/components/boca/proto/bundle.pb.h"
#include "chromeos/ash/components/boca/proto/session.pb.h"
#include "google_apis/common/base_requests.h"
#include "google_apis/gaia/gaia_id.h"
namespace google_apis {
class RequestSender;
enum ApiErrorCode;
} // namespace google_apis
namespace ash::boca {
//=================RemoveStudentRequest================
using RemoveStudentCallback = base::OnceCallback<void(
base::expected<bool, google_apis::ApiErrorCode> result)>;
class RemoveStudentRequest : public google_apis::UrlFetchRequestBase {
public:
RemoveStudentRequest(google_apis::RequestSender* sender,
std::string base_url,
GaiaId gaia_id,
std::string session_id,
RemoveStudentCallback callback);
RemoveStudentRequest(const RemoveStudentRequest&) = delete;
RemoveStudentRequest& operator=(const RemoveStudentRequest&) = delete;
~RemoveStudentRequest() override;
// For testing.
void OverrideURLForTesting(std::string url);
RemoveStudentCallback callback() { return std::move(callback_); }
GaiaId gaia_id() { return gaia_id_; }
std::string session_id() { return session_id_; }
std::vector<std::string>& student_ids() { return student_ids_; }
void set_student_ids(std::vector<std::string> student_ids) {
student_ids_ = std::move(student_ids);
}
protected:
// UrlFetchRequestBase:
google_apis::HttpRequestMethod GetRequestType() const override;
GURL GetURL() const override;
google_apis::ApiErrorCode MapReasonToError(
google_apis::ApiErrorCode code,
const std::string& reason) override;
bool IsSuccessfulErrorCode(google_apis::ApiErrorCode error) override;
bool GetContentData(std::string* upload_content_type,
std::string* upload_content) 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(bool success);
GaiaId gaia_id_;
std::string session_id_;
std::vector<std::string> student_ids_;
std::string url_base_;
RemoveStudentCallback callback_;
base::WeakPtrFactory<RemoveStudentRequest> weak_ptr_factory_{this};
};
} // namespace ash::boca
#endif // CHROMEOS_ASH_COMPONENTS_BOCA_SESSION_API_REMOVE_STUDENT_REQUEST_H_
|