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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
use std::fmt::Display;

use serde::{Deserialize, Serialize};

/// do repetitive work
macro_rules! lang_macro {
    ($($struct_name:ident), *) => {
        paste::paste! {
            #[derive(Clone)]
            #[derive(Debug)]
            #[derive(Default)]
            #[derive(PartialEq, Eq)]
            #[derive(Serialize, Deserialize)]
            pub struct SupportLang {
                $(
                    #[serde(default)]
                    pub [<$struct_name:lower>]: $struct_name,
                )*
            }
        }
        $(
            #[derive(Clone)]
            #[derive(Debug)]
            #[derive(PartialEq, Eq)]
            #[derive(Serialize, Deserialize)]
            pub struct $struct_name {
                pub start: String,
                pub end: String,
                pub inject_start: String,
                pub inject_end: String,
            }
            impl $struct_name {
                /// (`start`, `end`, `inject_start`, `inject_end`)
                pub fn return_info(&self) -> (String, String, String, String) {
                    (
                        self.start.to_owned(),
                        self.end.to_owned(),
                        self.inject_start.to_owned(),
                        self.inject_end.to_owned(),
                    )
                }
            }
        )*
    };
}
lang_macro!(
    Bash, C, Cpp, Csharp, Dart, Elixir, Erlang, Golang, Java, Javascript, Kotlin, Mssql, Mysql,
    Oraclesql, Postgresql, Php, Python, Python3, Racket, React, Ruby, Rust, Scala, Swift,
    Typescript
);

impl Default for Oraclesql {
    fn default() -> Self {
        Self {
            start:        "-- start -".to_owned(),
            end:          "-- end -".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for React {
    fn default() -> Self {
        Self {
            start:        "// start -".to_owned(),
            end:          "// end -".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Postgresql {
    fn default() -> Self {
        Self {
            start:        "-- start -".to_owned(),
            end:          "-- end -".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Mssql {
    fn default() -> Self {
        Self {
            start:        "-- start -".to_owned(),
            end:          "-- end -".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Rust {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: "struct Solution;\n".to_owned(),
            inject_end:   r#"
fn main() {
    println!("{:#?}", Solution::function());
}"#
            .to_owned(),
        }
    }
}
impl Default for Bash {
    fn default() -> Self {
        Self {
            start:        "## start #".to_owned(),
            end:          "## end #".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for C {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Cpp {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Csharp {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Golang {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Java {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Javascript {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Kotlin {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Mysql {
    fn default() -> Self {
        Self {
            start:        "-- start -".to_owned(),
            end:          "-- end -".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Php {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Python {
    fn default() -> Self {
        Self {
            start:        "## start #".to_owned(),
            end:          "## end #".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Python3 {
    fn default() -> Self {
        Self {
            start:        "## start #".to_owned(),
            end:          "## end #".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Ruby {
    fn default() -> Self {
        Self {
            start:        "## start #".to_owned(),
            end:          "## end #".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Scala {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Swift {
    fn default() -> Self {
        Self {
            start:        "// start //".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Typescript {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Racket {
    fn default() -> Self {
        Self {
            start:        ";; start ;".to_owned(),
            end:          ";; end ;".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Erlang {
    fn default() -> Self {
        Self {
            start:        "%% start %".to_owned(),
            end:          "%% end %".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Elixir {
    fn default() -> Self {
        Self {
            start:        "## start #".to_owned(),
            end:          "## end #".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}
impl Default for Dart {
    fn default() -> Self {
        Self {
            start:        "// start /".to_owned(),
            end:          "// end /".to_owned(),
            inject_start: String::new(),
            inject_end:   String::new(),
        }
    }
}

#[derive(Clone)]
#[derive(Debug)]
#[derive(PartialEq, Eq)]
#[derive(Serialize, Deserialize)]
pub struct Urls {
    pub origin:          String,
    pub question_url:    String,
    pub graphql:         String,
    pub all_problem_api: String,
    pub submit:          String,
    pub test:            String,
    pub submissions:     String,
    pub favorites:       String,
    pub points:          String,
}
#[derive(Clone, Copy)]
#[derive(Debug)]
#[derive(Default)]
#[derive(PartialEq, Eq)]
pub enum Suffix {
    Cn,
    #[default]
    Com,
}

impl Display for Suffix {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Cn => "cn",
            Self::Com => "com",
        }
        .fmt(f)
    }
}

impl Urls {
    pub fn new(suffi: Suffix) -> Self {
        let suffix = match suffi {
            Suffix::Cn => "cn",
            Suffix::Com => "com",
        };
        Self {
            origin:          format!("https://leetcode.{}", suffix),
            graphql:         format!("https://leetcode.{}/graphql", suffix),
            question_url:    format!("https://leetcode.{}/problems/$slug/", suffix),
            all_problem_api: format!("https://leetcode.{}/api/problems/$category", suffix),
            submit:          format!("https://leetcode.{}/problems/$slug/submit/", suffix),
            test:            format!(
                "https://leetcode.{}/problems/$slug/interpret_solution/",
                suffix
            ),
            submissions:     format!("https://leetcode.{}/submissions/detail/$id/check/", suffix),
            favorites:       format!("https://leetcode.{}/list/api/questions", suffix),
            points:          format!("https://leetcode.{}/points/api/total/", suffix),
        }
    }

    pub fn mod_all_pb_api(&self, category: &str) -> String {
        self.all_problem_api
            .replace("$category", category)
    }

    pub fn mod_submit(&self, slug: &str) -> String {
        self.submit.replace("$slug", slug)
    }

    pub fn mod_test(&self, slug: &str) -> String {
        self.test.replace("$slug", slug)
    }

    pub fn mod_submissions(&self, id: &str) -> String {
        self.submissions.replace("$id", id)
    }
    pub fn get_qs_url(&self, slug: &str) -> String {
        self.question_url.replace("$slug", slug)
    }
}

impl Default for Urls {
    fn default() -> Self {
        Self::new(Suffix::default())
    }
}