delete empty profile
This commit is contained in:
Submodule client-gui2 updated: 3993395df0...052ee01763
@@ -85,6 +85,10 @@ service TableDefinition {
|
|||||||
|
|
||||||
// Drops a table and its metadata, then deletes the profile if it becomes empty.
|
// Drops a table and its metadata, then deletes the profile if it becomes empty.
|
||||||
rpc DeleteTable(DeleteTableRequest) returns (DeleteTableResponse);
|
rpc DeleteTable(DeleteTableRequest) returns (DeleteTableResponse);
|
||||||
|
|
||||||
|
// Deletes an entire profile only when none of its user or backend-managed
|
||||||
|
// tables, audit stores, document stores, or accounting stores contain data.
|
||||||
|
rpc DeleteProfile(DeleteProfileRequest) returns (DeleteProfileResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
message CreateCustomExchangeRatesTableRequest {
|
message CreateCustomExchangeRatesTableRequest {
|
||||||
@@ -716,6 +720,16 @@ message DeleteTableResponse {
|
|||||||
string message = 2;
|
string message = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message DeleteProfileRequest {
|
||||||
|
string profile_name = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message DeleteProfileResponse {
|
||||||
|
bool success = 1;
|
||||||
|
string message = 2;
|
||||||
|
int32 tables_deleted = 3;
|
||||||
|
}
|
||||||
|
|
||||||
// How a column type is spelled in ColumnDefinition.field_type.
|
// How a column type is spelled in ColumnDefinition.field_type.
|
||||||
enum ColumnTypeSpelling {
|
enum ColumnTypeSpelling {
|
||||||
// The name is the whole spelling: "text", "money", "gtin_13".
|
// The name is the whole spelling: "text", "money", "gtin_13".
|
||||||
|
|||||||
Binary file not shown.
@@ -805,6 +805,22 @@ pub struct DeleteTableResponse {
|
|||||||
#[prost(string, tag = "2")]
|
#[prost(string, tag = "2")]
|
||||||
pub message: ::prost::alloc::string::String,
|
pub message: ::prost::alloc::string::String,
|
||||||
}
|
}
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
|
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||||
|
pub struct DeleteProfileRequest {
|
||||||
|
#[prost(string, tag = "1")]
|
||||||
|
pub profile_name: ::prost::alloc::string::String,
|
||||||
|
}
|
||||||
|
#[derive(serde::Serialize, serde::Deserialize)]
|
||||||
|
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
|
||||||
|
pub struct DeleteProfileResponse {
|
||||||
|
#[prost(bool, tag = "1")]
|
||||||
|
pub success: bool,
|
||||||
|
#[prost(string, tag = "2")]
|
||||||
|
pub message: ::prost::alloc::string::String,
|
||||||
|
#[prost(int32, tag = "3")]
|
||||||
|
pub tables_deleted: i32,
|
||||||
|
}
|
||||||
/// Response describing the whole column-type vocabulary.
|
/// Response describing the whole column-type vocabulary.
|
||||||
///
|
///
|
||||||
/// This is the authority a client builds its column-type picker from: every rule
|
/// This is the authority a client builds its column-type picker from: every rule
|
||||||
@@ -1764,6 +1780,37 @@ pub mod table_definition_client {
|
|||||||
);
|
);
|
||||||
self.inner.unary(req, path, codec).await
|
self.inner.unary(req, path, codec).await
|
||||||
}
|
}
|
||||||
|
/// Deletes an entire profile only when none of its user or backend-managed
|
||||||
|
/// tables, audit stores, document stores, or accounting stores contain data.
|
||||||
|
pub async fn delete_profile(
|
||||||
|
&mut self,
|
||||||
|
request: impl tonic::IntoRequest<super::DeleteProfileRequest>,
|
||||||
|
) -> std::result::Result<
|
||||||
|
tonic::Response<super::DeleteProfileResponse>,
|
||||||
|
tonic::Status,
|
||||||
|
> {
|
||||||
|
self.inner
|
||||||
|
.ready()
|
||||||
|
.await
|
||||||
|
.map_err(|e| {
|
||||||
|
tonic::Status::unknown(
|
||||||
|
format!("Service was not ready: {}", e.into()),
|
||||||
|
)
|
||||||
|
})?;
|
||||||
|
let codec = tonic_prost::ProstCodec::default();
|
||||||
|
let path = http::uri::PathAndQuery::from_static(
|
||||||
|
"/komp_ac.table_definition.TableDefinition/DeleteProfile",
|
||||||
|
);
|
||||||
|
let mut req = request.into_request();
|
||||||
|
req.extensions_mut()
|
||||||
|
.insert(
|
||||||
|
GrpcMethod::new(
|
||||||
|
"komp_ac.table_definition.TableDefinition",
|
||||||
|
"DeleteProfile",
|
||||||
|
),
|
||||||
|
);
|
||||||
|
self.inner.unary(req, path, codec).await
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/// Generated server implementations.
|
/// Generated server implementations.
|
||||||
@@ -1951,6 +1998,15 @@ pub mod table_definition_server {
|
|||||||
tonic::Response<super::DeleteTableResponse>,
|
tonic::Response<super::DeleteTableResponse>,
|
||||||
tonic::Status,
|
tonic::Status,
|
||||||
>;
|
>;
|
||||||
|
/// Deletes an entire profile only when none of its user or backend-managed
|
||||||
|
/// tables, audit stores, document stores, or accounting stores contain data.
|
||||||
|
async fn delete_profile(
|
||||||
|
&self,
|
||||||
|
request: tonic::Request<super::DeleteProfileRequest>,
|
||||||
|
) -> std::result::Result<
|
||||||
|
tonic::Response<super::DeleteProfileResponse>,
|
||||||
|
tonic::Status,
|
||||||
|
>;
|
||||||
}
|
}
|
||||||
/// The TableDefinition service manages the entire lifecycle of user-defined
|
/// The TableDefinition service manages the entire lifecycle of user-defined
|
||||||
/// tables (stored as both metadata and physical PostgreSQL tables) inside
|
/// tables (stored as both metadata and physical PostgreSQL tables) inside
|
||||||
@@ -2947,6 +3003,52 @@ pub mod table_definition_server {
|
|||||||
};
|
};
|
||||||
Box::pin(fut)
|
Box::pin(fut)
|
||||||
}
|
}
|
||||||
|
"/komp_ac.table_definition.TableDefinition/DeleteProfile" => {
|
||||||
|
#[allow(non_camel_case_types)]
|
||||||
|
struct DeleteProfileSvc<T: TableDefinition>(pub Arc<T>);
|
||||||
|
impl<
|
||||||
|
T: TableDefinition,
|
||||||
|
> tonic::server::UnaryService<super::DeleteProfileRequest>
|
||||||
|
for DeleteProfileSvc<T> {
|
||||||
|
type Response = super::DeleteProfileResponse;
|
||||||
|
type Future = BoxFuture<
|
||||||
|
tonic::Response<Self::Response>,
|
||||||
|
tonic::Status,
|
||||||
|
>;
|
||||||
|
fn call(
|
||||||
|
&mut self,
|
||||||
|
request: tonic::Request<super::DeleteProfileRequest>,
|
||||||
|
) -> Self::Future {
|
||||||
|
let inner = Arc::clone(&self.0);
|
||||||
|
let fut = async move {
|
||||||
|
<T as TableDefinition>::delete_profile(&inner, request)
|
||||||
|
.await
|
||||||
|
};
|
||||||
|
Box::pin(fut)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
let accept_compression_encodings = self.accept_compression_encodings;
|
||||||
|
let send_compression_encodings = self.send_compression_encodings;
|
||||||
|
let max_decoding_message_size = self.max_decoding_message_size;
|
||||||
|
let max_encoding_message_size = self.max_encoding_message_size;
|
||||||
|
let inner = self.inner.clone();
|
||||||
|
let fut = async move {
|
||||||
|
let method = DeleteProfileSvc(inner);
|
||||||
|
let codec = tonic_prost::ProstCodec::default();
|
||||||
|
let mut grpc = tonic::server::Grpc::new(codec)
|
||||||
|
.apply_compression_config(
|
||||||
|
accept_compression_encodings,
|
||||||
|
send_compression_encodings,
|
||||||
|
)
|
||||||
|
.apply_max_message_size_config(
|
||||||
|
max_decoding_message_size,
|
||||||
|
max_encoding_message_size,
|
||||||
|
);
|
||||||
|
let res = grpc.unary(method, req).await;
|
||||||
|
Ok(res)
|
||||||
|
};
|
||||||
|
Box::pin(fut)
|
||||||
|
}
|
||||||
_ => {
|
_ => {
|
||||||
Box::pin(async move {
|
Box::pin(async move {
|
||||||
let mut response = http::Response::new(
|
let mut response = http::Response::new(
|
||||||
|
|||||||
@@ -1299,6 +1299,19 @@ impl GrpcClient {
|
|||||||
.into_inner())
|
.into_inner())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn delete_profile(
|
||||||
|
&mut self,
|
||||||
|
request: common::proto::komp_ac::table_definition::DeleteProfileRequest,
|
||||||
|
) -> Result<common::proto::komp_ac::table_definition::DeleteProfileResponse> {
|
||||||
|
let request = self.authenticated_request(request)?;
|
||||||
|
Ok(self
|
||||||
|
.table_definition_client
|
||||||
|
.delete_profile(request)
|
||||||
|
.await
|
||||||
|
.context("gRPC DeleteProfile call failed")?
|
||||||
|
.into_inner())
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn copy_profile(
|
pub async fn copy_profile(
|
||||||
&mut self,
|
&mut self,
|
||||||
request: common::proto::komp_ac::table_definition::CopyProfileRequest,
|
request: common::proto::komp_ac::table_definition::CopyProfileRequest,
|
||||||
|
|||||||
2
server
2
server
Submodule server updated: d3c676d64a...a1ce6f6d6c
Reference in New Issue
Block a user