|
|
|
use core::panic;
|
|
|
|
use std::str::FromStr;
|
|
|
|
|
|
|
|
use serde::{Deserialize, Deserializer, Serialize};
|
|
|
|
use serde_yaml::Value;
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct Challenge {
|
|
|
|
pub japanese: Vec<Vec<Vec<ChallengeWord>>>,
|
|
|
|
pub english: Option<Vec<String>>,
|
|
|
|
pub song: Option<Song>,
|
|
|
|
pub youtube: Option<String>,
|
|
|
|
pub spotify: Option<String>,
|
|
|
|
pub translation: Option<Translation>,
|
|
|
|
pub suggester: Option<String>,
|
|
|
|
pub date: chrono::NaiveDate,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct Song {
|
|
|
|
pub japanese: Option<String>,
|
|
|
|
pub english: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize)]
|
|
|
|
pub struct ChallengeWord {
|
|
|
|
pub dictionary: Option<String>,
|
|
|
|
pub pos: Option<PartOfSpeech>,
|
|
|
|
pub text: Option<Vec<Furigana>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'de> Deserialize<'de> for ChallengeWord {
|
|
|
|
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
|
|
where
|
|
|
|
D: Deserializer<'de>,
|
|
|
|
{
|
|
|
|
let value = Deserialize::deserialize(deserializer)?;
|
|
|
|
let map = if let Value::Mapping(map) = value {
|
|
|
|
map
|
|
|
|
} else {
|
|
|
|
return Err(serde::de::Error::invalid_type(
|
|
|
|
serde::de::Unexpected::Other("not a string or map"),
|
|
|
|
&"a string or map",
|
|
|
|
));
|
|
|
|
};
|
|
|
|
let text = map.get("text").map(|value| match value {
|
|
|
|
Value::String(string) => vec![Furigana {
|
|
|
|
kanji: string.clone(),
|
|
|
|
furigana: None,
|
|
|
|
}],
|
|
|
|
Value::Sequence(sequence) => sequence
|
|
|
|
.iter()
|
|
|
|
.map(|value| match value {
|
|
|
|
Value::String(kanji) => Furigana {
|
|
|
|
kanji: kanji.to_owned(),
|
|
|
|
furigana: None,
|
|
|
|
},
|
|
|
|
Value::Mapping(mapping) => {
|
|
|
|
let (kanji, furigana) = mapping.iter().next().unwrap();
|
|
|
|
Furigana {
|
|
|
|
kanji: kanji.as_str().unwrap().to_owned(),
|
|
|
|
furigana: Some(furigana.as_str().unwrap().to_owned()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => panic!(),
|
|
|
|
})
|
|
|
|
.collect(),
|
|
|
|
_ => panic!(),
|
|
|
|
});
|
|
|
|
let dictionary = match map.get("dictionary") {
|
|
|
|
Some(value) => match value {
|
|
|
|
Value::Null => None,
|
|
|
|
Value::String(dictionary) => Some(if !dictionary.starts_with("http") {
|
|
|
|
format!("https://jisho.org/word/{dictionary}")
|
|
|
|
} else {
|
|
|
|
dictionary.to_owned()
|
|
|
|
}),
|
|
|
|
_ => panic!("dictionary must be string!"),
|
|
|
|
},
|
|
|
|
None => text.as_ref().map(|furigana| furigana.iter().map(|segment| segment.kanji.clone()).collect()),
|
|
|
|
};
|
|
|
|
let pos: Option<PartOfSpeech> = map
|
|
|
|
.get("pos")
|
|
|
|
.map(|value| value.as_str().unwrap().parse().unwrap());
|
|
|
|
Ok(ChallengeWord {
|
|
|
|
dictionary,
|
|
|
|
pos,
|
|
|
|
text,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub enum PartOfSpeech {
|
|
|
|
Noun,
|
|
|
|
Adjective,
|
|
|
|
Verb,
|
|
|
|
Adverb,
|
|
|
|
Particle,
|
|
|
|
Phrase,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
|
|
|
pub struct ParsePartOfSpeechError;
|
|
|
|
|
|
|
|
impl FromStr for PartOfSpeech {
|
|
|
|
type Err = ParsePartOfSpeechError;
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
|
|
use PartOfSpeech::*;
|
|
|
|
Ok(match s {
|
|
|
|
"noun" => Noun,
|
|
|
|
"adjective" => Adjective,
|
|
|
|
"verb" => Verb,
|
|
|
|
"adverb" => Adverb,
|
|
|
|
"particle" => Particle,
|
|
|
|
"phrase" => Phrase,
|
|
|
|
_ => return Err(ParsePartOfSpeechError),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct Furigana {
|
|
|
|
pub kanji: String,
|
|
|
|
pub furigana: Option<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct Translation {
|
|
|
|
pub author: Option<String>,
|
|
|
|
pub site: TranslationSite,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct TranslationSite {
|
|
|
|
pub name: String,
|
|
|
|
pub link: String,
|
|
|
|
}
|