18
18
#include < dpp/dpp.h>
19
19
20
20
#include " ../../handler/handler.h"
21
- #include " ../../handler/btnHandler.h"
22
21
#include " ../../commands/moderation/timeout.h"
23
22
24
23
void timeout (dpp::cluster& client, const dpp::slashcommand_t & event)
@@ -29,7 +28,7 @@ void timeout(dpp::cluster& client, const dpp::slashcommand_t& event)
29
28
const auto successTitle = " <:success:1036206685779398677> Success!" ;
30
29
const auto warnTitle = " Warning message" ;
31
30
32
- const auto duration = std::get<int64_t >(event.get_parameter (" duration" ));
31
+ const auto duration = std::get<std::string >(event.get_parameter (" duration" ));
33
32
const auto usr = std::get<dpp::snowflake>(event.get_parameter (" member" ));
34
33
const auto tgtReason = event.get_parameter (" reason" );
35
34
@@ -111,69 +110,95 @@ void timeout(dpp::cluster& client, const dpp::slashcommand_t& event)
111
110
return ;
112
111
}
113
112
114
- auto tout_Component = dpp::component ();
115
- auto cnl_Component = dpp::component ();
113
+ // Time format engine
114
+ // Working in progress ...
116
115
117
- tout_Component.set_label (" Timeout" ).set_type (dpp::cot_button).set_style (dpp::cos_danger).set_emoji (" success" , 1036206685779398677 ).set_id (" tout_Id" );
118
- cnl_Component.set_label (" Cancel" ).set_type (dpp::cot_button).set_style (dpp::cos_success).set_emoji (" failed" , 1036206712916553748 ).set_id (" tout_cnl_Id" );
116
+ // Making a function to input number string and automatically output as minute
119
117
120
- // Button for muting user (timeout)
121
- ButtonBind (tout_Component, [&client, tgtGuild, tgtReason, usr, source, duration](const dpp::button_click_t & event)
122
- {
123
- // If not the user who request that interaction
124
- if (source != event.command .usr .id )
125
- return false ;
118
+ std::string input = duration;
126
119
127
- const auto toutContent = fmt::format ( " <@{}> has been timeout until <t:{}:f>! " , usr, time ( nullptr ) + duration) ;
128
- std::string tout_Reason = " No reason provided " ;
120
+ uint64_t sec = 0 ;
121
+ uint64_t temp = 0 ;
129
122
130
- // If reason is provided
131
- if (std::holds_alternative<std::string>(tgtReason))
132
- tout_Reason = std::get<std::string>(tgtReason);
123
+ bool bSyntax = 0 ;
124
+ bool error = 0 ;
133
125
134
- client.set_audit_reason (tout_Reason);
135
-
136
- // Timeout the user
137
- client.guild_member_timeout (tgtGuild, usr, time (nullptr ) + duration);
138
-
139
- event.reply (
140
- dpp::interaction_response_type::ir_update_message,
141
- dpp::message ().set_flags (dpp::m_ephemeral)
142
- .set_content (toutContent)
143
- );
126
+ // Automatically convert if no day format
127
+ if (isNumber (input))
128
+ {
129
+ sec += temp * 60 ;
130
+ temp = 0 ;
131
+ bSyntax = 0 ;
132
+ }
144
133
145
- return true ;
146
- });
134
+ for (int a : input)
135
+ {
136
+ a = tolower (a);
137
+
138
+ if (' 0' <= a && a <= ' 9' )
139
+ {
140
+ temp = temp * 10 + (a - ' 0' );
141
+ bSyntax = 1 ;
142
+ }
143
+ else if (a == ' d' && bSyntax)
144
+ {
145
+ sec += temp * 86400 ;
146
+ temp = 0 ;
147
+ bSyntax = 0 ;
148
+ }
149
+ else if (a == ' h' && bSyntax)
150
+ {
151
+ sec += temp * 3600 ;
152
+ temp = 0 ;
153
+ bSyntax = 0 ;
154
+ }
155
+ else if (a == ' m' && bSyntax)
156
+ {
157
+ sec += temp * 60 ;
158
+ temp = 0 ;
159
+ bSyntax = 0 ;
160
+ }
161
+ else if (a == ' s' && bSyntax)
162
+ {
163
+ sec += temp;
164
+ temp = 0 ;
165
+ bSyntax = 0 ;
166
+ }
167
+ else
168
+ error = true ;
169
+ }
170
+
171
+ // Check all error cases occur
172
+ if (std::isdigit (input[input.size () - 1 ]))
173
+ error = true ;
174
+
175
+ if (error)
176
+ {
177
+ EmbedBuild (embed, 0xFF7578 , errorTitle, warnTitle, " Wrong time format" , event.command .usr );
178
+ event.reply (
179
+ dpp::message (event.command .channel_id , embed).set_flags (dpp::m_ephemeral)
180
+ );
147
181
148
- // Button for cancelling
149
- ButtonBind (cnl_Component, [source](const dpp::button_click_t & event)
150
- {
151
- // If not the user who request that interaction
152
- if (source != event.command .usr .id )
153
- return false ;
182
+ return ;
183
+ }
154
184
155
- const auto cnlContent = " Cancelled request!" ;
185
+ auto toutContent = fmt::format (" <@{}> has been timeouted until <t:{}:F>!" , usr, time (nullptr ) + sec);
186
+ std::string tout_Reason = " No reason provided" ;
156
187
157
- event.reply (
158
- dpp::interaction_response_type::ir_update_message,
159
- dpp::message ().set_flags (dpp::m_ephemeral)
160
- .set_content (cnlContent)
161
- );
188
+ if (sec == 0 )
189
+ toutContent = fmt::format (" <@{}> has been un-timeouted!" , usr);
162
190
163
- return true ;
164
- });
191
+ // If reason is provided
192
+ if (std::holds_alternative<std::string>(tgtReason))
193
+ tout_Reason = std::get<std::string>(tgtReason);
165
194
166
- dpp::message tout_Confirm (
167
- fmt::format (" Do you want to timeout <@{}> until <t:{}:f>? Press the button below to confirm" , usr, time (nullptr ) + duration)
168
- );
195
+ client.set_audit_reason (tout_Reason);
169
196
170
- tout_Confirm.add_component (
171
- dpp::component ().add_component (tout_Component)
172
- .add_component (cnl_Component)
173
- );
197
+ // Timeout the user
198
+ client.guild_member_timeout (tgtGuild, usr, time (nullptr ) + sec);
174
199
175
200
event.reply (
176
- tout_Confirm .set_flags (dpp::m_ephemeral)
177
- . set_channel_id (tgtChannel )
201
+ dpp::message () .set_flags (dpp::m_ephemeral)
202
+ . set_content (toutContent )
178
203
);
179
204
}
0 commit comments