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
|
// Copyright 2025 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/ash/components/boca/session_api/add_students_request.h"
#include "base/json/json_writer.h"
#include "base/values.h"
#include "chromeos/ash/components/boca/session_api/constants.h"
#include "google_apis/gaia/gaia_id.h"
namespace {
bool ParseResponse(std::string json) {
// Always notify success if no HTTP error.
return true;
}
} // namespace
namespace ash::boca {
AddStudentsRequest::AddStudentsRequest(google_apis::RequestSender* sender,
std::string url_base,
GaiaId gaia_id,
std::string session_id,
AddStudentsCallback callback)
: UrlFetchRequestBase(sender,
google_apis::ProgressCallback(),
google_apis::ProgressCallback()),
gaia_id_(gaia_id),
session_id_(session_id),
url_base_(std::move(url_base)),
callback_(std::move(callback)) {}
AddStudentsRequest ::~AddStudentsRequest() = default;
GURL AddStudentsRequest::GetURL() const {
auto url = GURL(url_base_).Resolve(base::ReplaceStringPlaceholders(
kAddStudentsUrlTemplate, {gaia_id_.ToString(), session_id_}, nullptr));
return url;
}
google_apis::ApiErrorCode AddStudentsRequest::MapReasonToError(
google_apis::ApiErrorCode code,
const std::string& reason) {
return code;
}
bool AddStudentsRequest::IsSuccessfulErrorCode(
google_apis::ApiErrorCode error) {
return error == google_apis::HTTP_SUCCESS;
}
google_apis::HttpRequestMethod AddStudentsRequest::GetRequestType() const {
return google_apis::HttpRequestMethod::kPost;
}
bool AddStudentsRequest::GetContentData(std::string* upload_content_type,
std::string* upload_content) {
*upload_content_type = boca::kContentTypeApplicationJson;
base::Value::Dict root;
base::Value::Dict student_group;
student_group.Set(kStudentGroupId, student_group_id_);
base::Value::List students;
for (auto& student : students_) {
base::Value::Dict item;
item.Set(kGaiaId, student.gaia_id());
item.Set(kEmail, student.email());
item.Set(kFullName, student.full_name());
item.Set(kPhotoUrl, student.photo_url());
students.Append(std::move(item));
}
student_group.Set(kStudents, std::move(students));
base::Value::List student_groups;
student_groups.Append(std::move(student_group));
root.Set(kStudentGroups, std::move(student_groups));
base::JSONWriter::Write(root, upload_content);
return true;
}
void AddStudentsRequest::ProcessURLFetchResults(
const network::mojom::URLResponseHead* response_head,
base::FilePath response_file,
std::string response_body) {
google_apis::ApiErrorCode error = GetErrorCode();
switch (error) {
case google_apis::HTTP_SUCCESS:
blocking_task_runner()->PostTaskAndReplyWithResult(
FROM_HERE, base::BindOnce(&ParseResponse, std::move(response_body)),
base::BindOnce(&AddStudentsRequest::OnDataParsed,
weak_ptr_factory_.GetWeakPtr()));
break;
default:
RunCallbackOnPrematureFailure(error);
OnProcessURLFetchResultsComplete();
break;
}
}
void AddStudentsRequest::RunCallbackOnPrematureFailure(
google_apis::ApiErrorCode error) {
std::move(callback_).Run(base::unexpected(error));
}
void AddStudentsRequest::OverrideURLForTesting(std::string url) {
url_base_ = std::move(url);
}
void AddStudentsRequest::OnDataParsed(bool success) {
std::move(callback_).Run(true);
OnProcessURLFetchResultsComplete();
}
} // namespace ash::boca
|