root/trunk/src/game/AccountMgr.h @ 26

Revision 2, 1.7 kB (checked in by yumileroy, 17 years ago)

[svn] * Proper SVN structure

Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00

Line 
1/*
2 * Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
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 as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17 */
18
19#ifndef _ACCMGR_H
20#define _ACCMGR_H
21
22#include "Common.h"
23#include "Policies/Singleton.h"
24#include <string>
25
26enum AccountOpResult
27{
28    AOR_OK,
29    AOR_NAME_TOO_LONG,
30    AOR_PASS_TOO_LONG,
31    AOR_NAME_ALREDY_EXIST,
32    AOR_NAME_NOT_EXIST,
33    AOR_DB_INTERNAL_ERROR
34};
35
36#define MAX_ACCOUNT_STR 16
37
38class AccountMgr
39{
40    public:
41        AccountMgr();
42        ~AccountMgr();
43
44        AccountOpResult CreateAccount(std::string username, std::string password);
45        AccountOpResult DeleteAccount(uint32 accid);
46        AccountOpResult ChangeUsername(uint32 accid, std::string new_uname, std::string new_passwd);
47        AccountOpResult ChangePassword(uint32 accid, std::string new_passwd);
48        bool CheckPassword(uint32 accid, std::string passwd);
49
50        uint32 GetId(std::string username);
51
52        static bool normilizeString(std::string& utf8str);
53};
54
55#define accmgr MaNGOS::Singleton<AccountMgr>::Instance()
56#endif
Note: See TracBrowser for help on using the browser.