2022-02-26 13:50:31 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, Lucas Chollet <lucas.chollet@free.fr>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2023-12-16 11:19:34 -03:00
|
|
|
#include <AK/ByteString.h>
|
2022-02-26 13:50:31 -03:00
|
|
|
#include <AK/Error.h>
|
|
|
|
|
#include <AK/Function.h>
|
|
|
|
|
|
|
|
|
|
namespace Web {
|
|
|
|
|
|
2023-01-30 18:35:47 -03:00
|
|
|
class FileRequest {
|
2022-02-26 13:50:31 -03:00
|
|
|
public:
|
2024-05-17 21:14:06 -03:00
|
|
|
FileRequest(ByteString path, ESCAPING Function<void(ErrorOr<i32>)> on_file_request_finish);
|
2022-02-26 13:50:31 -03:00
|
|
|
|
2023-12-16 11:19:34 -03:00
|
|
|
ByteString path() const;
|
2022-02-26 13:50:31 -03:00
|
|
|
|
|
|
|
|
Function<void(ErrorOr<i32>)> on_file_request_finish;
|
|
|
|
|
|
|
|
|
|
private:
|
2023-12-16 11:19:34 -03:00
|
|
|
ByteString m_path {};
|
2022-02-26 13:50:31 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|