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
|
//! ref: composer/vendor/symfony/console/Question/ConfirmationQuestion.php
use crate::symfony::console::exception::invalid_argument_exception::InvalidArgumentException;
use crate::symfony::console::question::Question;
use crate::symfony::console::question::QuestionInterface;
use shirabe_php_shim::PhpMixed;
/// Represents a yes/no question.
#[derive(Debug)]
pub struct ConfirmationQuestion {
inner: Question,
true_answer_regex: String,
}
impl ConfirmationQuestion {
/// `$question` The question to ask to the user.
/// `$default` The default answer to return, true or false.
/// `$trueAnswerRegex` A regex to match the "yes" answer.
pub fn new(question: String, default: bool, true_answer_regex: String) -> Self {
let mut this = Self {
inner: Question::new(question, Some(PhpMixed::Bool(default))),
true_answer_regex,
};
let normalizer = this.get_default_normalizer();
this.inner.set_normalizer(normalizer);
this
}
/// Returns the default answer normalizer.
fn get_default_normalizer(&self) -> Box<dyn Fn(PhpMixed) -> PhpMixed> {
let default = self.inner.get_default();
let regex = self.true_answer_regex.clone();
Box::new(move |answer: PhpMixed| {
if let PhpMixed::Bool(_) = answer {
return answer;
}
let answer_is_true = {
let mut matches: Vec<Option<String>> = Vec::new();
shirabe_php_shim::preg_match(
®ex,
&shirabe_php_shim::strval(&answer),
&mut matches,
)
};
// false === $default
if matches!(default, PhpMixed::Bool(false)) {
// $answer && $answerIsTrue
return PhpMixed::Bool(!shirabe_php_shim::empty(&answer) && answer_is_true);
}
// '' === $answer || $answerIsTrue
let answer_is_empty_string = matches!(&answer, PhpMixed::String(s) if s.is_empty());
PhpMixed::Bool(answer_is_empty_string || answer_is_true)
})
}
}
impl QuestionInterface for ConfirmationQuestion {
fn get_question(&self) -> &str {
self.inner.get_question()
}
fn get_default(&self) -> PhpMixed {
self.inner.get_default()
}
fn is_multiline(&self) -> bool {
self.inner.is_multiline()
}
fn is_hidden(&self) -> bool {
self.inner.is_hidden()
}
fn is_hidden_fallback(&self) -> bool {
self.inner.is_hidden_fallback()
}
fn get_autocompleter_values(&self) -> Option<Vec<PhpMixed>> {
self.inner.get_autocompleter_values()
}
fn get_autocompleter_callback(&self) -> Option<&dyn Fn(&str) -> Option<Vec<PhpMixed>>> {
self.inner.get_autocompleter_callback()
}
fn get_validator(
&self,
) -> Option<&dyn Fn(Option<PhpMixed>) -> Result<PhpMixed, InvalidArgumentException>> {
self.inner.get_validator()
}
fn get_max_attempts(&self) -> Option<i64> {
self.inner.get_max_attempts()
}
fn get_normalizer(&self) -> Option<&dyn Fn(PhpMixed) -> PhpMixed> {
self.inner.get_normalizer()
}
fn is_trimmable(&self) -> bool {
self.inner.is_trimmable()
}
fn as_confirmation(&self) -> Option<&ConfirmationQuestion> {
Some(self)
}
}
|