AppFlowy/shared-lib/flowy-folder-data-model/src/entities/share.rs

65 lines
1.3 KiB
Rust
Raw Normal View History

2021-11-09 08:00:09 +00:00
use crate::errors::ErrorCode;
use flowy_derive::{ProtoBuf, ProtoBuf_Enum};
use std::convert::TryInto;
#[derive(PartialEq, Debug, ProtoBuf_Enum, Clone)]
pub enum ExportType {
2022-01-23 04:14:00 +00:00
Text = 0,
Markdown = 1,
2022-01-23 04:14:00 +00:00
Link = 2,
2021-11-09 08:00:09 +00:00
}
impl std::default::Default for ExportType {
2022-01-23 04:14:00 +00:00
fn default() -> Self {
ExportType::Text
}
2021-11-09 08:00:09 +00:00
}
impl std::convert::From<i32> for ExportType {
fn from(val: i32) -> Self {
match val {
0 => ExportType::Text,
1 => ExportType::Markdown,
2 => ExportType::Link,
2021-11-09 08:00:09 +00:00
_ => {
log::error!("Invalid export type: {}", val);
2021-11-09 08:04:13 +00:00
ExportType::Text
2022-01-23 04:14:00 +00:00
}
2021-11-09 08:00:09 +00:00
}
}
}
#[derive(Default, ProtoBuf)]
pub struct ExportRequest {
#[pb(index = 1)]
pub doc_id: String,
#[pb(index = 2)]
pub export_type: ExportType,
}
2021-11-09 09:50:32 +00:00
#[derive(Default, Debug)]
2021-11-09 08:00:09 +00:00
pub struct ExportParams {
pub doc_id: String,
pub export_type: ExportType,
}
impl TryInto<ExportParams> for ExportRequest {
type Error = ErrorCode;
fn try_into(self) -> Result<ExportParams, Self::Error> {
Ok(ExportParams {
doc_id: self.doc_id,
export_type: self.export_type,
})
}
}
#[derive(Default, ProtoBuf)]
pub struct ExportData {
#[pb(index = 1)]
pub data: String,
#[pb(index = 2)]
pub export_type: ExportType,
2021-11-09 08:00:09 +00:00
}