1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
use crate::data::{PageInfo, UserInfo};
use crate::settings::WikitextSettings;
use crate::tree::{ImageSource, LinkLabel, LinkLocation, Module};
use crate::url::BuildSiteUrl;
use std::borrow::Cow;
use std::num::NonZeroUsize;
use wikidot_normalize::normalize;
#[derive(Debug)]
pub struct Handle;
impl Handle {
pub fn render_module(&self, buffer: &mut String, module: &Module) {
info!("Rendering module '{}'", module.name());
str_write!(buffer, "<p>TODO: module {}</p>", module.name());
}
pub fn get_page_title(&self, _site: &str, _page: &str) -> Option<String> {
info!("Fetching page title");
Some(format!("TODO: actual title ({_site} {_page})"))
}
pub fn get_page_exists(&self, _site: &str, _page: &str) -> bool {
info!("Checking page existence");
#[cfg(test)]
if _page == "missing" {
return false;
}
true
}
pub fn get_user_info<'a>(&self, name: &'a str) -> Option<UserInfo<'a>> {
info!("Fetching user info (name '{name}')");
let mut info = UserInfo::dummy();
info.user_name = cow!(name);
info.user_profile_url = Cow::Owned(format!("/user:info/{name}"));
Some(info)
}
pub fn get_image_link<'a>(
&self,
source: &ImageSource<'a>,
info: &PageInfo,
settings: &WikitextSettings,
) -> Option<Cow<'a, str>> {
info!("Getting file link for image");
let (site, page, file): (&str, &str, &str) = match source {
ImageSource::Url(url) => return Some(Cow::clone(url)),
ImageSource::File1 { .. }
| ImageSource::File2 { .. }
| ImageSource::File3 { .. }
if !settings.allow_local_paths =>
{
warn!("Specified path image source when local paths are disabled");
return None;
}
ImageSource::File1 { file } => (&info.site, &info.page, file),
ImageSource::File2 { page, file } => (&info.site, page, file),
ImageSource::File3 { site, page, file } => (site, page, file),
};
Some(Cow::Owned(format!(
"https://{site}.wjfiles.com/local--files/{page}/{file}",
)))
}
pub fn get_link_label<F>(
&self,
site: &str,
link: &LinkLocation,
label: &LinkLabel,
f: F,
) where
F: FnOnce(&str),
{
let page_title;
let label_text = match *label {
LinkLabel::Text(ref text) => text,
LinkLabel::Url(Some(ref text)) => text,
LinkLabel::Url(None) => match link {
LinkLocation::Url(url) => url,
LinkLocation::Page(page_ref) => page_ref.page(),
},
LinkLabel::Page => match link {
LinkLocation::Url(_) => {
panic!("Requested link label of page for a URL");
}
LinkLocation::Page(page_ref) => {
let (site, page) = page_ref.fields_or(site);
page_title = match self.get_page_title(site, page) {
Some(title) => title,
None => page_ref.to_string(),
};
&page_title
}
},
};
f(label_text);
}
pub fn get_message(&self, language: &str, message: &str) -> &'static str {
info!("Fetching message (language {language}, key {message})");
let _ = language;
match message {
"button-copy-clipboard" => "Copy to Clipboard",
"collapsible-open" => "+ open block",
"collapsible-hide" => "- hide block",
"table-of-contents" => "Table of Contents",
"footnote" => "Footnote",
"footnote-block-title" => "Footnotes",
"bibliography-reference" => "Reference",
"bibliography-block-title" => "Bibliography",
"bibliography-cite-not-found" => "Bibliography item not found",
"image-context-bad" => "No images in this context",
_ => {
error!("Unknown message requested (key {message})");
"?"
}
}
}
pub fn post_html(&self, info: &PageInfo, html: &str) -> String {
info!("Submitting HTML to create iframe-able snippet");
let _ = info;
let _ = html;
str!("https://example.com/")
}
pub fn post_code(&self, index: NonZeroUsize, code: &str) {
info!("Submitting code snippet (index {})", index.get());
let _ = index;
let _ = code;
}
}
impl BuildSiteUrl for Handle {
fn build_url(&self, site: &str, path: &str) -> String {
let path = {
let mut path = str!(path);
normalize(&mut path);
path
};
format!("https://{site}.wikijump.com/{path}")
}
}