Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

mod conf;
mod info;

use super::configuration::CONFIG;
Expand Down
58 changes: 58 additions & 0 deletions src/client/conf.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
// Copyright (C) 2026 The pgmoneta community
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

use super::PgmonetaClient;
use crate::constant::Command;
use serde::Serialize;

#[derive(Serialize, Clone, Debug)]
struct EmptyRequest {}

#[derive(Serialize, Clone, Debug)]
struct ConfSetRequest {
#[serde(rename = "ConfigKey")]
config_key: String,
#[serde(rename = "ConfigValue")]
config_value: String,
}

impl PgmonetaClient {
pub async fn request_conf_reload(username: &str) -> anyhow::Result<String> {
let request = EmptyRequest {};
Self::forward_request(username, Command::RELOAD, request).await
}

pub async fn request_conf_ls(username: &str) -> anyhow::Result<String> {
let request = EmptyRequest {};
Self::forward_request(username, Command::CONF_LS, request).await
}

pub async fn request_conf_get(username: &str) -> anyhow::Result<String> {
let request = EmptyRequest {};
Self::forward_request(username, Command::CONF_GET, request).await
}

pub async fn request_conf_set(
username: &str,
config_key: &str,
config_value: &str,
) -> anyhow::Result<String> {
let request = ConfSetRequest {
config_key: config_key.to_string(),
config_value: config_value.to_string(),
};
Self::forward_request(username, Command::CONF_SET, request).await
}
}
5 changes: 5 additions & 0 deletions src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.

mod conf;
mod hello;
mod info;

Expand Down Expand Up @@ -49,6 +50,10 @@ impl PgmonetaHandler {
.with_sync_tool::<hello::SayHelloTool>()
.with_async_tool::<info::GetBackupInfoTool>()
.with_async_tool::<info::ListBackupsTool>()
.with_async_tool::<conf::ConfReloadTool>()
.with_async_tool::<conf::ConfLsTool>()
.with_async_tool::<conf::ConfGetTool>()
.with_async_tool::<conf::ConfSetTool>()
}
}

Expand Down
Loading
Loading