| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- /**--------------------------------------------------------------------------**\
- ===================================
- y_users - Registration functions.
- ===================================
- Description:
- Provides access to a user system for registering and saving users.
- Legal:
- Version: MPL 1.1
-
- The contents of this file are subject to the Mozilla Public License Version
- 1.1 (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.mozilla.org/MPL/
-
- Software distributed under the License is distributed on an "AS IS" basis,
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- for the specific language governing rights and limitations under the
- License.
-
- The Original Code is the YSI malloc include.
-
- The Initial Developer of the Original Code is Alex "Y_Less" Cole.
- Portions created by the Initial Developer are Copyright (C) 2011
- the Initial Developer. All Rights Reserved.
-
- Contributors:
- ZeeX, koolk, JoeBullet/Google63, g_aSlice/Slice
-
- Thanks:
- JoeBullet/Google63 - Handy arbitrary ASM jump code using SCTRL.
- ZeeX - Very productive conversations.
- koolk - IsPlayerinAreaEx code.
- TheAlpha - Danish translation.
- breadfish - German translation.
- Fireburn - Dutch translation.
- yom - French translation.
- 50p - Polish translation.
- Zamaroht - Spanish translation.
- Dracoblue, sintax, mabako, Xtreme, other coders - Producing other modes
- for me to strive to better.
- Pixels^ - Running XScripters where the idea was born.
- Matite - Pestering me to release it and using it.
-
- Very special thanks to:
- Thiadmer - PAWN, whose limits continue to amaze me!
- Kye/Kalcor - SA:MP.
- SA:MP Team past, present and future - SA:MP.
-
- Version:
- 2.2
- Changelog:
- 02/02/13:
- Added bits and join timestamp to preload data.
- Added backwards compatible salting to the hash.
- 15/11/11:
- Added comments.
- Added language to the top-level player data (needed for login).
- 11/11/11:
- First version.
- Functions:
- Public
- -
- Core:
- -
- Stock:
- -
- Static:
- -
- Inline:
- -
- API:
- -
- Callbacks:
- -
- Definitions:
- -
- Enums:
- -
- Macros:
- -
- Tags:
- -
- Variables:
- Global:
- -
- Static:
- -
- Commands:
- -
- Compile options:
- -
- Operators:
- -
- </remarks>
- \**--------------------------------------------------------------------------**/
- #if !defined MODE_NAME
- #error Please define "MODE_NAME" before including y_users.
- #endif
- #include <a_samp>
- forward OnPlayerLogin(playerid, uid);
- forward OnPlayerLogout(playerid, uid);
- //#if !defined HAS_USER_CALLBACKS
- // #define HAS_USER_CALLBACKS
- //#endif
- #include "internal\y_version"
- #include "y_text"
- #include "y_remote"
- #include "y_debug"
- #include "y_ini"
- #include "y_utils"
- #include "y_timers"
- #define YSIM_U_DISABLE
- #include "y_master"
- #define MAX_INDEX_LENGTH 8
- #include "internal\y_plugins"
- #include "internal\y_natives"
- #include "y_hooks"
- #if defined PP_ADLER32
- //#define MAX_PASSWORD_LENGTH 11
- #error Adler32 sucks!
- #elseif defined PP_MD5
- #if defined MD5_Hash
- #define MAX_PASSWORD_LENGTH 32
- #else
- #error Could not find MD5_Hash.
- #endif
- #elseif defined PP_SHA1
- #error SHA1 unsupported.
- #elseif defined PP_YSI
- #define MAX_PASSWORD_LENGTH 16
- #elseif defined PP_WP || defined PP_WHIRLPOOL
- #if defined _YSI_PLUGINS_WHIRLPOOL
- #define MAX_PASSWORD_LENGTH 128
- #else
- #error Could not find WP_Hash.
- #endif
- #else
- #error Default hash removed: See YSI topic for details.
- //#define PP_YSI
- //#define MAX_PASSWORD_LENGTH 16
- #endif
- //#define INDEX_DATA_LINE_LENGTH (MAX_INDEX_LENGTH + 1 + MAX_PLAYER_NAME + 1 + MAX_PASSWORD_LENGTH + 3 + 3 + 9 + 9)
- // MAX_INDEX_LENGTH - The player's ID.
- // 1 - Space.
- // MAX_PLAYER_NAME - The player's name.
- // 1 - Space.
- // MAX_PASSWORD_LENGTH - The password hash.
- // 1 - Space.
- // 2 - Language.
- // 1 - Space.
- // 8 - Free HEX bits.
- // 1 - Space.
- // 8 - Join timestamp.
- // 3 - Newline + Null.
- const
- INDEX_DATA_LINE_LENGTH = MAX_INDEX_LENGTH + 1 + MAX_PLAYER_NAME + 1 + MAX_PASSWORD_LENGTH + 1 + 2 + 1 + 8 + 1 + 8 + 3;
- #if !defined USER_FILE_PATH
- #if defined YSI_TESTS
- // Create a separate path for any test data so that we don't ruin any
- // live user data.
- #define USER_FILE_PATH "YSI/test_users/"
- #define USER_FILE_LENGTH 15
- #else
- #define USER_FILE_PATH "YSI/users/"
- #define USER_FILE_LENGTH 10
- #endif
- #endif
- #define OnUserData[%0](%1) @yU_%0(%1)
- #define PINI:%0(%1) forward OnUserData[%0](%1);public OnUserData[%0](%1)
- foreign Player_TryRegister(playerid, string:password[]);
- foreign Player_TryLogin(playerid, string:password[]);
- foreign Player_TryGroup(playerid, string:other[], string:password[]);
- foreign Player_ChangePassword(playerid, string:password[]);
- foreign Player_ForceGroup(playerid, string:other[]);
- foreign Player_ForceLogin(playerid);
- foreign Player_ChangeLanguage(playerid, string:code[]);
- #if defined USERS_USE_MYSQL
- #if _YSI_PLUGINS_MYSQL == 7
- #include "y_users/blueg7"
- #elseif _YSI_PLUGINS_MYSQL == 6
- #include "y_users/blueg6"
- #elseif _YSI_PLUGINS_MYSQL == 7
- #include "y_users/stricken"
- #else
- #error No MySQL plugin found.
- #endif
- #elseif defined USERS_USE_SQLITE
- #include "y_users/sqlite"
- #else
- #include "y_users/ini"
- #endif
- #if defined YSI_TESTS
- #include "y_testing"
- #include "y_users/tests"
- #endif
- #include "internal\y_grouprevert"
|