mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Run cargo +nightly fmt * Latest prost-build includes clippy workaround * Tweak Rust protobuf imports - Avoid use of stringify!(), as JetBrains editors get confused by it - Stop merging all protobuf symbols into a single namespace * Remove some unnecessary qualifications Found via IntelliJ lint * Migrate some asserts to assert_eq/ne * Remove mention of node_modules exclusion This no longer seems to be necessary after migrating away from Bazel, and excluding it means TS/Svelte files can't be edited properly.
92 lines
2.1 KiB
Rust
92 lines
2.1 KiB
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
pub mod csv;
|
|
mod import;
|
|
mod json;
|
|
|
|
use serde_derive::{Deserialize, Serialize};
|
|
|
|
use super::LogNote;
|
|
use crate::pb::import_export::csv_metadata::DupeResolution;
|
|
|
|
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
|
|
#[serde(default)]
|
|
pub struct ForeignData {
|
|
dupe_resolution: DupeResolution,
|
|
default_deck: NameOrId,
|
|
default_notetype: NameOrId,
|
|
notes: Vec<ForeignNote>,
|
|
notetypes: Vec<ForeignNotetype>,
|
|
global_tags: Vec<String>,
|
|
updated_tags: Vec<String>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Default, Serialize, Deserialize)]
|
|
#[serde(default)]
|
|
pub struct ForeignNote {
|
|
guid: String,
|
|
fields: Vec<Option<String>>,
|
|
tags: Option<Vec<String>>,
|
|
notetype: NameOrId,
|
|
deck: NameOrId,
|
|
cards: Vec<ForeignCard>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Default, Serialize, Deserialize)]
|
|
#[serde(default)]
|
|
pub struct ForeignCard {
|
|
pub due: i32,
|
|
pub interval: u32,
|
|
pub ease_factor: f32,
|
|
pub reps: u32,
|
|
pub lapses: u32,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
|
|
pub struct ForeignNotetype {
|
|
name: String,
|
|
fields: Vec<String>,
|
|
templates: Vec<ForeignTemplate>,
|
|
#[serde(default)]
|
|
is_cloze: bool,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
|
|
pub struct ForeignTemplate {
|
|
name: String,
|
|
qfmt: String,
|
|
afmt: String,
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum NameOrId {
|
|
Id(i64),
|
|
Name(String),
|
|
}
|
|
|
|
impl Default for NameOrId {
|
|
fn default() -> Self {
|
|
NameOrId::Name(String::new())
|
|
}
|
|
}
|
|
|
|
impl From<String> for NameOrId {
|
|
fn from(s: String) -> Self {
|
|
Self::Name(s)
|
|
}
|
|
}
|
|
|
|
impl ForeignNote {
|
|
pub(crate) fn into_log_note(self) -> LogNote {
|
|
LogNote {
|
|
id: None,
|
|
fields: self
|
|
.fields
|
|
.into_iter()
|
|
.map(Option::unwrap_or_default)
|
|
.collect(),
|
|
}
|
|
}
|
|
}
|