ORE Studio 0.0.4
Loading...
Searching...
No Matches
auth_session_service.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 *
3 * Copyright (C) 2026 Marco Craveiro <marco.craveiro@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 3 of the License, or (at your option) any later
8 * version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 */
20#ifndef ORES_IAM_SERVICE_AUTH_SESSION_SERVICE_HPP
21#define ORES_IAM_SERVICE_AUTH_SESSION_SERVICE_HPP
22
23#include <mutex>
24#include <optional>
25#include <string>
26#include <string_view>
27#include <unordered_map>
28#include <vector>
29#include "ores.iam.api/domain/session.hpp"
30#include "ores.logging/make_logger.hpp"
31
33
40public:
41 void add_session(const std::string& token, ores::iam::domain::session session);
42 void remove_session(const std::string& token);
43 std::optional<ores::iam::domain::session>
44 find_session(const std::string& token) const;
45 std::vector<ores::iam::domain::session> get_all_sessions() const;
46
47private:
48 inline static std::string_view logger_name =
49 "ores.iam.service.auth_session_service";
50
51 static auto& lg() {
52 using namespace ores::logging;
53 static auto instance = make_logger(logger_name);
54 return instance;
55 }
56
57 mutable std::mutex mutex_;
58 std::unordered_map<std::string, ores::iam::domain::session> sessions_;
59};
60
61}
62
63#endif
Service layer for the IAM module.
Definition auth_session_service.hpp:32
Implements logging infrastructure for ORE Studio.
Definition boost_severity.hpp:28
Represents a user session in the system.
Definition session.hpp:80
In-memory JWT session tracker.
Definition auth_session_service.hpp:39