MySQL 9.0.0
Source Code Documentation
http_auth_realm.h
Go to the documentation of this file.
1/*
2 Copyright (c) 2018, 2024, Oracle and/or its affiliates.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License, version 2.0,
6 as published by the Free Software Foundation.
7
8 This program is designed to work with certain software (including
9 but not limited to OpenSSL) that is licensed under separate terms,
10 as designated in a particular file or component or in included license
11 documentation. The authors of MySQL hereby grant you an additional
12 permission to link the program and your derivative works with the
13 separately licensed software that they have either included with
14 the program or referenced in the documentation.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24*/
25
26#ifndef ROUTER_HTTP_AUTH_REALM_INCLUDED
27#define ROUTER_HTTP_AUTH_REALM_INCLUDED
28
30
31#include <string>
32#include <system_error>
33
34/**
35 * Authentication Realm.
36 *
37 * multiple areas in the HTTP server may have the same required authentication.
38 * They are in the same 'realm'.
39 *
40 * A realm has
41 *
42 * - a name
43 * - a requirement
44 * - a backend
45 * - a required authentication method
46 */
48 public:
49 HttpAuthRealm(const std::string &name, const std::string &require,
50 const std::string &method, const std::string &backend)
51 : name_{name}, require_{require}, method_{method}, backend_{backend} {}
52
53 /**
54 * name of the auth realm.
55 */
56 std::string name() const { return name_; }
57
58 /**
59 * require notitation of the realm
60 */
61 std::string require() const { return require_; }
62
63 /**
64 * Authentication Method name.
65 *
66 * - basic
67 */
68 std::string method() const { return method_; }
69
70 /**
71 * Authentication Backend name.
72 *
73 * - file
74 */
75 std::string backend() const { return backend_; }
76
77 /**
78 * authenticate a user in a realm.
79 *
80 * @returns error-code
81 * @retval 0 authentication without error
82 */
83 std::error_code authenticate(const std::string &username,
84 const std::string &password) const;
85
86 private:
87 std::string name_;
88 std::string require_;
89 std::string method_;
90 std::string backend_;
91};
92
93#endif
Authentication Realm.
Definition: http_auth_realm.h:47
std::string name() const
name of the auth realm.
Definition: http_auth_realm.h:56
HttpAuthRealm(const std::string &name, const std::string &require, const std::string &method, const std::string &backend)
Definition: http_auth_realm.h:49
std::string method() const
Authentication Method name.
Definition: http_auth_realm.h:68
std::string backend_
Definition: http_auth_realm.h:90
std::string backend() const
Authentication Backend name.
Definition: http_auth_realm.h:75
std::string require() const
require notitation of the realm
Definition: http_auth_realm.h:61
std::string method_
Definition: http_auth_realm.h:89
std::string name_
Definition: http_auth_realm.h:87
std::string require_
Definition: http_auth_realm.h:88
#define HTTP_AUTH_REALM_LIB_EXPORT
Definition: http_auth_realm_lib_export.h:15
static char * password
Definition: mysql_secure_installation.cc:58
case opt name
Definition: sslopt-case.h:29