/src/znc/include/znc/Nick.h
Line | Count | Source |
1 | | /* |
2 | | * Copyright (C) 2004-2026 ZNC, see the NOTICE file for details. |
3 | | * |
4 | | * Licensed under the Apache License, Version 2.0 (the "License"); |
5 | | * you may not use this file except in compliance with the License. |
6 | | * You may obtain a copy of the License at |
7 | | * |
8 | | * http://www.apache.org/licenses/LICENSE-2.0 |
9 | | * |
10 | | * Unless required by applicable law or agreed to in writing, software |
11 | | * distributed under the License is distributed on an "AS IS" BASIS, |
12 | | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 | | * See the License for the specific language governing permissions and |
14 | | * limitations under the License. |
15 | | */ |
16 | | |
17 | | #ifndef ZNC_NICK_H |
18 | | #define ZNC_NICK_H |
19 | | |
20 | | #include <znc/zncconfig.h> |
21 | | #include <znc/ZNCString.h> |
22 | | #include <vector> |
23 | | |
24 | | // Forward Decl |
25 | | class CIRCNetwork; |
26 | | class CChan; |
27 | | // !Forward Decl |
28 | | |
29 | | class CNick { |
30 | | public: |
31 | | CNick(); |
32 | | CNick(const CString& sNick); |
33 | | ~CNick(); |
34 | | |
35 | 0 | CNick(const CNick&) = default; |
36 | 0 | CNick& operator=(const CNick&) = default; |
37 | | |
38 | | void Reset(); |
39 | | void Parse(const CString& sNickMask); |
40 | | CString GetHostMask() const; |
41 | | size_t GetCommonChans(std::vector<CChan*>& vChans, |
42 | | CIRCNetwork* pNetwork) const; |
43 | | bool NickEquals(const CString& nickname) const; |
44 | | |
45 | | // Setters |
46 | | void SetNetwork(CIRCNetwork* pNetwork); |
47 | | void SetNick(const CString& s); |
48 | | void SetIdent(const CString& s); |
49 | | void SetHost(const CString& s); |
50 | | /// e.g. '@' for chanop. |
51 | | bool AddPerm(char cPerm); |
52 | | /// e.g. '@' for chanop. |
53 | | bool RemPerm(char cPerm); |
54 | | // !Setters |
55 | | |
56 | | // Getters |
57 | | /// e.g. '@' for chanop. |
58 | | CString GetPermStr() const; |
59 | | /// e.g. '@' for chanop. |
60 | | char GetPermChar() const; |
61 | | /// e.g. '@' for chanop. |
62 | | bool HasPerm(char cPerm) const; |
63 | | const CString& GetNick() const; |
64 | | const CString& GetIdent() const; |
65 | | const CString& GetHost() const; |
66 | | CString GetNickMask() const; |
67 | | // !Getters |
68 | | |
69 | | void Clone(const CNick& SourceNick); |
70 | | |
71 | | private: |
72 | | protected: |
73 | | CString m_sChanPerms; |
74 | | CIRCNetwork* m_pNetwork; |
75 | | CString m_sNick; |
76 | | CString m_sIdent; |
77 | | CString m_sHost; |
78 | | }; |
79 | | |
80 | | #endif // !ZNC_NICK_H |