Skip to content

Commit ea8a571

Browse files
authored
Merge pull request #12 from Harshfeudal-Projects/development
[Update]: time format
2 parents dd330f9 + dc78a91 commit ea8a571

File tree

8 files changed

+96
-62
lines changed

8 files changed

+96
-62
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ These are libraries that we're using in this project:
2828
- [Base64](https://gist.github.com/tomykaira/f0fd86b6c73063283afe550bc5d77594)
2929

3030
Bot current version:
31-
- BETA version - `0.1.6.10` (`x64` Release) [Not official BETA released]
31+
- BETA version - `0.1.6` (`x64` Release) [Not official BETA released]
3232
- Stable version - `Unknown` (Will be officially released on late December if possible, or at final BETA version - `v0.1.9.0`)
3333

3434
For downloading **latest version**, please click [here](https://github.com/Harshfeudal-Projects/Raiden-Shogun/releases).

Raiden Shogun.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#include <Winver.h>
22

3-
#define FILEVERSION_STR "0.1.6.10"
4-
#define PRODUCTVERSION_STR "0.1.6.10"
3+
#define FILEVERSION_STR "0.1.6.38"
4+
#define PRODUCTVERSION_STR "0.1.6.38"
55

66
VS_VERSION_INFO VERSIONINFO
7-
FILEVERSION 0,1,6,10
8-
PRODUCTVERSION 0,1,6,10
7+
FILEVERSION 0,1,6,38
8+
PRODUCTVERSION 0,1,6,38
99
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
1010
#ifdef _DEBUG
1111
FILEFLAGS VS_FF_DEBUG

commands/moderation/timeout.h

+9
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,13 @@
1818

1919
#include <dpp/dpp.h>
2020

21+
inline bool isNumber(const std::string& s)
22+
{
23+
for (char const &ch : s) {
24+
if (std::isdigit(ch) == 0)
25+
return false;
26+
}
27+
return true;
28+
}
29+
2130
void timeout(dpp::cluster& cluster, const dpp::slashcommand_t& event);

handler/builder.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ inline std::map<std::string, commandDef> commands
9494
"Timeout member", timeout,
9595
{
9696
dpp::command_option(dpp::co_user, "member", "Mention a member to timeout", true),
97-
dpp::command_option(dpp::co_integer, "duration", "Timeout duration", true),
97+
dpp::command_option(dpp::co_string, "duration", "Timeout duration", true),
9898
dpp::command_option(dpp::co_string, "reason", "Reason why they got timeout", false)
9999
}
100100
}

src/information/userInfo.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ void userInfo(dpp::cluster& client, const dpp::slashcommand_t& event)
4949
const auto HypesquadBalance = "<:BadgeBalance:1043797533060767835>";
5050
const auto HypesquadBrilliance = "<:BadgeBrilliance:1043798261137408060>";
5151

52-
const auto ActiveDeveloper = "<:BadgeActiveDeveloper:1043797591487426600>";
52+
const auto ActiveDeveloper = "<:BadgeActiveDeveloper:1047528637013962792>";
5353

5454
auto hasStaffBadge = "";
5555
auto hasPartnerBadge = "";

src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ int main()
8787
});
8888

8989
// Console log prettier
90-
SetConsoleTitle(TEXT("[BETA] v0.1.6.0 - Raiden Shogun Discord Bot - The Harshfeudal Projects"));
90+
SetConsoleTitle(TEXT("[BETA] v0.1.6 - Raiden Shogun Discord Bot - The Harshfeudal Projects"));
9191

9292
// Use this logger to check why the code is error (remove when done)
9393
client.on_log(dpp::utility::cout_logger());

src/moderation/move.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ void move(dpp::cluster& client, const dpp::slashcommand_t& event)
148148
if (std::holds_alternative<std::string>(tgtReason))
149149
m_Reason = std::get<std::string>(tgtReason);
150150

151-
// This audit log will be reported as a bug
152-
client.set_audit_reason(m_Reason);
151+
// Note: this is Discord Bug!
152+
// client.set_audit_reason(m_Reason);
153153

154154
// Move the target user
155155
client.guild_member_move(NewChannel, tgtGuild, usr);

src/moderation/timeout.cpp

+77-52
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
#include <dpp/dpp.h>
1919

2020
#include "../../handler/handler.h"
21-
#include "../../handler/btnHandler.h"
2221
#include "../../commands/moderation/timeout.h"
2322

2423
void timeout(dpp::cluster& client, const dpp::slashcommand_t& event)
@@ -29,7 +28,7 @@ void timeout(dpp::cluster& client, const dpp::slashcommand_t& event)
2928
const auto successTitle = "<:success:1036206685779398677> Success!";
3029
const auto warnTitle = "Warning message";
3130

32-
const auto duration = std::get<int64_t>(event.get_parameter("duration"));
31+
const auto duration = std::get<std::string>(event.get_parameter("duration"));
3332
const auto usr = std::get<dpp::snowflake>(event.get_parameter("member"));
3433
const auto tgtReason = event.get_parameter("reason");
3534

@@ -111,69 +110,95 @@ void timeout(dpp::cluster& client, const dpp::slashcommand_t& event)
111110
return;
112111
}
113112

114-
auto tout_Component = dpp::component();
115-
auto cnl_Component = dpp::component();
113+
// Time format engine
114+
// Working in progress ...
116115

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
119117

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;
126119

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;
129122

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;
133125

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+
}
144133

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+
);
147181

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+
}
154184

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";
156187

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);
162190

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);
165194

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);
169196

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);
174199

175200
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)
178203
);
179204
}

0 commit comments

Comments
 (0)