summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-05-18 14:48:12 +0500
committerilotterytea <iltsu@alright.party>2024-05-18 14:48:12 +0500
commitd1793df1eda463b10107d41785ad1d7f055ed476 (patch)
treefd3e41c3b4a05924748ae4b762e1ae55a0bc815c /src/utils
parentd7a2de17e9b7931f68b5b4079b1c36866a19d343 (diff)
upd: moved the bot part to a relative subfolder
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/chrono.cpp48
-rw-r--r--src/utils/chrono.hpp11
-rw-r--r--src/utils/string.cpp66
-rw-r--r--src/utils/string.hpp32
4 files changed, 0 insertions, 157 deletions
diff --git a/src/utils/chrono.cpp b/src/utils/chrono.cpp
deleted file mode 100644
index 7a7f2c9..0000000
--- a/src/utils/chrono.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-#include "chrono.hpp"
-
-#include <chrono>
-#include <cmath>
-#include <ctime>
-#include <iomanip>
-#include <sstream>
-#include <string>
-
-namespace bot::utils::chrono {
- std::string format_timestamp(int seconds) {
- int d = round(seconds / (60 * 60 * 24));
- int h = round(seconds / (60 * 60) % 24);
- int m = round(seconds % (60 * 60) / 60);
- int s = round(seconds % 60);
-
- // Only seconds:
- if (d == 0 && h == 0 && m == 0) {
- return std::to_string(s) + "s";
- }
- // Minutes and seconds:
- else if (d == 0 && h == 0) {
- return std::to_string(m) + "m" + std::to_string(s) + "s";
- }
- // Hours and minutes:
- else if (d == 0) {
- return std::to_string(h) + "h" + std::to_string(m) + "m";
- }
- // Days and hours:
- else {
- return std::to_string(d) + "d" + std::to_string(h) + "h";
- }
- }
-
- std::chrono::system_clock::time_point string_to_time_point(
- const std::string &value, const std::string &format) {
- std::tm tm = {};
- std::stringstream ss(value);
-
- ss >> std::get_time(&tm, format.c_str());
-
- if (ss.fail()) {
- throw std::invalid_argument("Invalid time format");
- }
-
- return std::chrono::system_clock::from_time_t(std::mktime(&tm));
- }
-}
diff --git a/src/utils/chrono.hpp b/src/utils/chrono.hpp
deleted file mode 100644
index 7e85e70..0000000
--- a/src/utils/chrono.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-
-#include <chrono>
-#include <string>
-
-namespace bot::utils::chrono {
- std::string format_timestamp(int seconds);
- std::chrono::system_clock::time_point string_to_time_point(
- const std::string &value,
- const std::string &format = "%Y-%m-%d %H:%M:%S");
-}
diff --git a/src/utils/string.cpp b/src/utils/string.cpp
deleted file mode 100644
index 71c06bf..0000000
--- a/src/utils/string.cpp
+++ /dev/null
@@ -1,66 +0,0 @@
-#include "string.hpp"
-
-#include <sstream>
-#include <string>
-#include <vector>
-
-namespace bot {
- namespace utils {
- namespace string {
- std::vector<std::string> split_text(const std::string &text,
- char delimiter) {
- std::vector<std::string> parts;
-
- std::istringstream iss(text);
- std::string part;
-
- while (std::getline(iss, part, delimiter)) {
- parts.push_back(part);
- }
-
- return parts;
- }
-
- std::string join_vector(const std::vector<std::string> &vec,
- char delimiter) {
- if (vec.empty()) {
- return "";
- }
-
- std::string str;
-
- for (auto i = vec.begin(); i != vec.end() - 1; i++) {
- str += *i + delimiter;
- }
-
- str += vec[vec.size() - 1];
-
- return str;
- }
-
- std::string join_vector(const std::vector<std::string> &vec) {
- std::string str;
-
- for (const auto &e : vec) {
- str += e;
- }
-
- return str;
- }
-
- bool string_contains_sql_injection(const std::string &input) {
- std::string forbidden_strings[] = {";", "--", "'", "\"",
- "/*", "*/", "xp_", "exec",
- "sp_", "insert", "select", "delete"};
-
- for (const auto &str : forbidden_strings) {
- if (input.find(str) != std::string::npos) {
- return true;
- }
- }
-
- return false;
- }
- }
- }
-}
diff --git a/src/utils/string.hpp b/src/utils/string.hpp
deleted file mode 100644
index c8385ad..0000000
--- a/src/utils/string.hpp
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-
-#include <sstream>
-#include <string>
-#include <vector>
-
-namespace bot {
- namespace utils {
- namespace string {
- std::vector<std::string> split_text(const std::string &text,
- char delimiter);
- std::string join_vector(const std::vector<std::string> &vec,
- char delimiter);
- std::string join_vector(const std::vector<std::string> &vec);
-
- template <typename T>
- std::string str(T begin, T end, char delimiter) {
- std::stringstream ss;
- bool first = true;
-
- for (; begin != end; begin++) {
- if (!first) ss << delimiter;
- ss << *begin;
- first = false;
- }
- return ss.str();
- }
-
- bool string_contains_sql_injection(const std::string &input);
- }
- }
-}