开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
1 Star 1 Fork 0

C++项目/servertech-chat

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (6)
master
feature/48-mysql-connection-pool
gh-pages
bugfix/52-volume-already-in-use
feature/6-simplify-deployment
async-rewrite
master
分支 (6)
master
feature/48-mysql-connection-pool
gh-pages
bugfix/52-volume-already-in-use
feature/6-simplify-deployment
async-rewrite
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (6)
master
feature/48-mysql-connection-pool
gh-pages
bugfix/52-volume-already-in-use
feature/6-simplify-deployment
async-rewrite
servertech-chat
/
server
/
src
/
services
/
mysql_client.cpp
servertech-chat
/
server
/
src
/
services
/
mysql_client.cpp
mysql_client.cpp 13.08 KB
一键复制 编辑 原始数据 按行查看 历史
Ruben Perez 提交于 2023年09月26日 23:21 +08:00 . Authentication, login and account creation
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 390 391 392
//
// Copyright (c) 2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include "services/mysql_client.hpp"
#include <boost/asio/any_io_executor.hpp>
#include <boost/asio/ip/tcp.hpp>
#include <boost/asio/spawn.hpp>
#include <boost/asio/steady_timer.hpp>
#include <boost/describe/class.hpp>
#include <boost/mysql/common_server_errc.hpp>
#include <boost/mysql/connection.hpp>
#include <boost/mysql/diagnostics.hpp>
#include <boost/mysql/handshake_params.hpp>
#include <boost/mysql/results.hpp>
#include <boost/mysql/static_results.hpp>
#include <boost/mysql/tcp.hpp>
#include <chrono>
#include <optional>
#include <sstream>
#include <string>
#include <string_view>
#include "business_types.hpp"
#include "business_types_metadata.hpp" // Required by static_results
#include "error.hpp"
using namespace chat;
// DB setup code. This is executed once at startup.
// This should be improved when implementing
// https://github.com/anarthal/servertech-chat/issues/11
// password stores the PHC-formatted password, which upper character
// limit is difficult to get right.
static constexpr std::string_view setup_code = R"SQL(
CREATE DATABASE IF NOT EXISTS servertech_chat;
USE servertech_chat;
CREATE TABLE IF NOT EXISTS users (
id BIGINT PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(100) NOT NULL,
email VARCHAR(100) NOT NULL,
password TEXT NOT NULL,
UNIQUE (username),
UNIQUE (email)
)
)SQL";
// Returns the handshake params to use.
// This should be improved when implementing
// https://github.com/anarthal/servertech-chat/issues/45
static boost::mysql::handshake_params default_handshake_params() noexcept
{
return {
"root", // user
"", // blank passwd
"servertech_chat", // db
};
}
// Returns the hostname to connect to. Defaults to localhost
static std::string get_mysql_hostname()
{
const char* host_c_str = std::getenv("MYSQL_HOST");
return host_c_str ? host_c_str : "localhost";
}
namespace {
// Wraps a MySQL connection.
// Closes the connection asynchronously when destroyed, using the provided yield context.
class guarded_connection
{
public:
using connection_type = boost::mysql::tcp_connection;
// Move-only type
guarded_connection(connection_type&& conn, boost::asio::yield_context yield)
: impl_{true, std::move(conn), yield}
{
}
guarded_connection(const guarded_connection&) = delete;
guarded_connection(guarded_connection&& rhs) noexcept : impl_(std::move(rhs.impl_))
{
rhs.impl_.has_value = false;
}
guarded_connection& operator=(const guarded_connection&) = delete;
guarded_connection& operator=(guarded_connection&& rhs) noexcept
{
std::swap(impl_, rhs.impl_);
return *this;
}
~guarded_connection()
{
if (!impl_.has_value)
return;
// Discard any error
try
{
error_code ec;
impl_.conn.async_close(impl_.yield[ec]);
}
catch (...)
{
}
}
// Retrieves the underlying connection object
connection_type& get() noexcept { return impl_.conn; }
// Enables the use of operator->
connection_type* operator->() noexcept { return &impl_.conn; }
private:
struct
{
// This is required because connection doesn't have any mean to detect moved-from state
// See https://github.com/boostorg/mysql/issues/177
bool has_value{};
connection_type conn;
boost::asio::yield_context yield;
} impl_;
};
class mysql_client_impl final : public mysql_client
{
boost::asio::any_io_executor ex_;
std::string hostname_;
// Retrieves a usable MySQL connection.
// This should be replaced by a connection pool when implementing
// https://github.com/anarthal/servertech-chat/issues/48
result_with_message<guarded_connection> get_connection(
boost::asio::yield_context yield,
const boost::mysql::handshake_params& hparams = default_handshake_params()
)
{
boost::asio::ip::tcp::resolver resolv(yield.get_executor());
boost::mysql::tcp_connection conn(yield.get_executor());
boost::mysql::diagnostics diag;
error_code ec;
// Resolve hostname
auto entries = resolv.async_resolve(hostname_, boost::mysql::default_port_string, yield[ec]);
if (ec)
return error_with_message{ec};
assert(!entries.empty());
// Connect
conn.async_connect(*entries.begin(), hparams, diag, yield[ec]);
if (ec)
return error_with_message{ec, diag.server_message()};
return guarded_connection(std::move(conn), yield);
}
result_with_message<guarded_connection> get_connection_with_retries(
boost::asio::yield_context yield,
const boost::mysql::handshake_params& hparams
)
{
boost::asio::steady_timer timer(yield.get_executor());
error_code ec;
while (true)
{
// Get a connection
auto conn_result = get_connection(yield, hparams);
if (conn_result.has_error())
{
// Log the error
log_error(std::move(conn_result).error(), "Failed to connect to mysql");
// Wait some time
timer.expires_from_now(std::chrono::seconds(2));
timer.async_wait(yield[ec]);
// If the timer wait errored, it was cancelled, so exit the loop
if (ec)
return error_with_message{ec};
}
else
{
// We managed to get a connection
return conn_result;
}
}
}
public:
mysql_client_impl(boost::asio::any_io_executor ex) : ex_(std::move(ex)), hostname_(get_mysql_hostname())
{
}
error_with_message setup_db(boost::asio::yield_context yield) final override
{
error_code ec;
boost::mysql::diagnostics diag;
boost::mysql::results result;
// Handshake params
auto hparams = default_handshake_params();
hparams.set_database(""); // may not exist yet
hparams.set_multi_queries(true); // enable semicolon-separated queries
// Get a connection. Perform retries until we get a connection or
// we get cancelled via Ctrl-C. This provides safety against MySQL
// failures, which can happen if the server starts before MySQL is ready.
auto conn_result = get_connection_with_retries(yield, hparams);
if (conn_result.has_error())
return std::move(conn_result).error();
auto& conn = conn_result.value();
// Run setup code
conn->async_execute(setup_code, result, diag, yield[ec]);
if (ec)
return error_with_message{ec, diag.server_message()};
// The connection is closed automatically
return {};
}
result_with_message<std::int64_t> create_user(
std::string_view username,
std::string_view email,
std::string_view hashed_password,
boost::asio::yield_context yield
) final override
{
boost::mysql::diagnostics diag;
error_code ec;
boost::mysql::results result;
// Get a connection
auto conn_result = get_connection(yield);
if (conn_result.has_error())
return std::move(conn_result).error();
auto& conn = conn_result.value();
// Prepare a statement
constexpr std::string_view
stmt_sql = R"SQL(INSERT INTO users (username, email, password) VALUES (?, ?, ?))SQL";
auto stmt = conn->async_prepare_statement(stmt_sql, diag, yield[ec]);
if (ec)
return error_with_message{ec, diag.server_message()};
// Execute it
conn->async_execute(stmt.bind(username, email, hashed_password), result, diag, yield[ec]);
// Detect duplicates
if (ec == boost::mysql::common_server_errc::er_dup_entry)
{
// As per MySQL documentation, error messages for er_dup_entry
// are formatted as: Duplicate entry '%s' for key %d
if (diag.server_message().ends_with("'users.username'"))
return error_with_message{errc::username_exists, ""};
else if (diag.server_message().ends_with("'users.email'"))
return error_with_message{errc::email_exists, ""};
}
// Unknown errors
if (ec)
return error_with_message{ec, diag.server_message()};
// Done. MySQL reports last_insert_id as an uint64_t to be able to handle
// any column type, but our id field is defined as BIGINT (int64).
// Closing the statement is not required because we're closing the connection
// on function exit.
return static_cast<std::int64_t>(result.last_insert_id());
}
result_with_message<auth_user> get_user_by_email(std::string_view email, boost::asio::yield_context yield)
final override
{
boost::mysql::diagnostics diag;
error_code ec;
// Get a connection
auto conn_result = get_connection(yield);
if (conn_result.has_error())
return std::move(conn_result).error();
auto& conn = conn_result.value();
// Prepare a statement. static_results requires that SQL field names
// match with C++ struct field names, so we use SQL aliases
constexpr std::string_view
stmt_sql = R"SQL(SELECT id, password AS hashed_password FROM users WHERE email = ?)SQL";
auto stmt = conn->async_prepare_statement(stmt_sql, diag, yield[ec]);
if (ec)
return error_with_message{ec, diag.server_message()};
// Execute it
boost::mysql::static_results<auth_user> result;
conn->async_execute(stmt.bind(email), result, diag, yield[ec]);
if (ec)
return error_with_message{ec, diag.server_message()};
// Result.
// Closing the statement is not required because we're closing the connection
// on function exit.
if (result.rows().empty())
return error_with_message{errc::not_found, ""};
return std::move(result.rows()[0]);
}
result_with_message<user> get_user_by_id(std::int64_t user_id, boost::asio::yield_context yield)
final override
{
boost::mysql::diagnostics diag;
error_code ec;
// Get a connection
auto conn_result = get_connection(yield);
if (conn_result.has_error())
return std::move(conn_result).error();
auto& conn = conn_result.value();
// Prepare a statement
constexpr std::string_view stmt_sql = R"SQL(SELECT id, username FROM users WHERE id = ?)SQL";
auto stmt = conn->async_prepare_statement(stmt_sql, diag, yield[ec]);
if (ec)
return error_with_message{ec, diag.server_message()};
// Execute it
boost::mysql::static_results<user> result;
conn->async_execute(stmt.bind(user_id), result, diag, yield[ec]);
if (ec)
return error_with_message{ec, diag.server_message()};
// Result.
// Closing the statement is not required because we're closing the connection
// on function exit.
if (result.rows().empty())
return error_with_message{errc::not_found, ""};
return std::move(result.rows()[0]);
}
result_with_message<username_map> get_usernames(
boost::span<const std::int64_t> user_ids,
boost::asio::yield_context yield
) final override
{
if (user_ids.empty())
return {};
boost::mysql::diagnostics diag;
error_code ec;
// Get a connection
auto conn_result = get_connection(yield);
if (conn_result.has_error())
return std::move(conn_result).error();
auto& conn = conn_result.value();
// Compose the SQL statement.
// WARNING: this is safe only because user IDs are numeric, and not strings.
// DO NOT USE THIS APPROACH WITH STRINGS, or you will get SQL injections.
// See https://github.com/boostorg/mysql/issues/69
std::ostringstream oss;
oss << "SELECT id, username FROM users WHERE id IN (" << user_ids[0];
for (auto it = std::next(user_ids.begin()); it != user_ids.end(); ++it)
oss << "," << *it;
oss << ')';
// Execute it
using row_t = std::tuple<std::int64_t, std::string>;
boost::mysql::static_results<row_t> result;
conn->async_execute(oss.str(), result, diag, yield[ec]);
if (ec)
return error_with_message{ec, diag.server_message()};
// Result
std::unordered_map<std::int64_t, std::string> res;
for (auto& elm : result.rows())
res.insert({std::get<0>(elm), std::move(std::get<1>(elm))});
return res;
}
};
} // namespace
std::unique_ptr<mysql_client> chat::create_mysql_client(boost::asio::any_io_executor ex)
{
return std::unique_ptr<mysql_client>{new mysql_client_impl(std::move(ex))};
}
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

Web聊天室项目
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cppprojects/servertech-chat.git
git@gitee.com:cppprojects/servertech-chat.git
cppprojects
servertech-chat
servertech-chat
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /