1 changed files with 318 additions and 0 deletions
@ -0,0 +1,318 @@ |
|||||||
|
<?php namespace Magefly\Aauth\Config; |
||||||
|
|
||||||
|
use CodeIgniter\Config\BaseConfig; |
||||||
|
|
||||||
|
class Aauth extends BaseConfig |
||||||
|
{ |
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| Link Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'linkNoPermission' |
||||||
|
| |
||||||
|
| If user don't have permisssion to see the page he will be redirected |
||||||
|
| the page specified. |
||||||
|
| (default: false) |
||||||
|
| |
||||||
|
| 'linkResetPassword' |
||||||
|
| |
||||||
|
| Link for reset_password without site_url or base_url |
||||||
|
| (default: '/account/reset_password') |
||||||
|
| |
||||||
|
| 'linkVerification' |
||||||
|
| |
||||||
|
| Link for verification without site_url or base_url |
||||||
|
| (default: '/account/verification') |
||||||
|
| 'linkVerification' |
||||||
|
| |
||||||
|
| Redirect path to TOTP Verification page |
||||||
|
| (default: '/account/twofactor_verification') |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $linkNoPermission = false; |
||||||
|
public $linkResetPassword = '/account/reset_password'; |
||||||
|
public $linkVerification = '/account/verification'; |
||||||
|
public $linkTotp = '/account/twofactor_verification'; |
||||||
|
|
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| User Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'userVerification' |
||||||
|
| |
||||||
|
| User Verification, if TRUE sends a verification email on account creation |
||||||
|
| (default: false) |
||||||
|
| |
||||||
|
| 'userAdditionalChars' |
||||||
|
| |
||||||
|
| Additional valid chars for username. Non alphanumeric characters that are |
||||||
|
| allowed by default |
||||||
|
| (default: array()) |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $userVerification = false; |
||||||
|
public $userAdditionalChars = array(); |
||||||
|
|
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| Password Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'passwordMin' |
||||||
|
| |
||||||
|
| Password min char length |
||||||
|
| (default: 8) |
||||||
|
| |
||||||
|
| 'passwordMax' |
||||||
|
| |
||||||
|
| Password max char length |
||||||
|
| (default: 32) |
||||||
|
| |
||||||
|
| 'passwordHashAlgo' |
||||||
|
| |
||||||
|
| password_hash algorithm (PASSWORD_DEFAULT, PASSWORD_BCRYPT) |
||||||
|
| for details see http://php.net/manual/de/password.constants.php |
||||||
|
| (default: PASSWORD_DEFAULT) |
||||||
|
| |
||||||
|
| 'passwordHashOptions' |
||||||
|
| |
||||||
|
| password_hash options array |
||||||
|
| for details see http://php.net/manual/en/function.password-hash.php |
||||||
|
| (default: array()) |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $passwordMin = 8; |
||||||
|
public $passwordMax = 32; |
||||||
|
public $passwordHashAlgo = PASSWORD_DEFAULT; |
||||||
|
public $passwordHashOptions = array(); |
||||||
|
|
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| Login Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'loginUseUsername' |
||||||
|
| |
||||||
|
| Login Identificator, if TRUE username needed to login else email address |
||||||
|
| (default: false) |
||||||
|
| |
||||||
|
| 'loginRemember' |
||||||
|
| |
||||||
|
| Remember time (in relative format) elapsed after connecting and automatic |
||||||
|
| logout for usage with cookies. |
||||||
|
| Relative format (e.g. '+ 1 week', '+ 1 month') for details see |
||||||
|
| http://php.net/manual/de/datetime.formats.relative.php |
||||||
|
| (default: '+14 days') |
||||||
|
| |
||||||
|
| 'loginProtection' |
||||||
|
| |
||||||
|
| Enables the DDoS Protection, user will be banned temporary when he exceed the login 'try' |
||||||
|
| (default: true) |
||||||
|
| |
||||||
|
| 'loginAttemptLimit' |
||||||
|
| |
||||||
|
| Login attempts limit |
||||||
|
| (default: 10) |
||||||
|
| |
||||||
|
| 'loginAttemptLimitTimePeriod' |
||||||
|
| |
||||||
|
| Period of time for max login attempts |
||||||
|
| (default: '5 minutes') |
||||||
|
| |
||||||
|
| 'loginAttemptRemoveSuccessful' |
||||||
|
| |
||||||
|
| Enables removing login attempt after successful login |
||||||
|
| (default: true) |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $loginRemember = '+14 days'; |
||||||
|
public $loginUseUsername = false; |
||||||
|
public $loginProtection = true; |
||||||
|
public $loginAttemptLimit = 10; |
||||||
|
public $loginAttemptLimitTimePeriod = '5 minutes'; |
||||||
|
public $loginAttemptRemoveSuccessful = true; |
||||||
|
|
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| Email Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'emailFrom' |
||||||
|
| |
||||||
|
| Sender email address, used for remind_password, send_verification and |
||||||
|
| reset_password |
||||||
|
| (default: 'admin@example.com') |
||||||
|
| |
||||||
|
| 'emailFromName' |
||||||
|
| |
||||||
|
| Sender name, used for remind_password, send_verification and |
||||||
|
| reset_password |
||||||
|
| (default: 'Aauth v3') |
||||||
|
| |
||||||
|
| 'emailConfig' |
||||||
|
| |
||||||
|
| Array of Config for CI's Email Library |
||||||
|
| (default: false) |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $emailFrom = 'admin@example.com'; |
||||||
|
public $emailFromName = 'Aauth v3'; |
||||||
|
public $emailConfig = false; |
||||||
|
|
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| Time-based One-time Password Algorithm Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'totpEnabled' |
||||||
|
| |
||||||
|
| Enables the Time-based One-time Password Algorithm |
||||||
|
| (default: false) |
||||||
|
| |
||||||
|
| 'totpOnIpChange' |
||||||
|
| |
||||||
|
| TOTP only on IP Change |
||||||
|
| (default: false) |
||||||
|
| |
||||||
|
| 'totpResetPassword' |
||||||
|
| |
||||||
|
| Reset TOTP secret on reset_password() |
||||||
|
| (default: false) |
||||||
|
| |
||||||
|
| 'totpLogin' |
||||||
|
| |
||||||
|
| TOTP required if uses has TOTP secret on login() |
||||||
|
| (default: false) |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $totpEnabled = false; |
||||||
|
public $totpOnIpChange = false; |
||||||
|
public $totpResetPassword = false; |
||||||
|
public $totpLogin = false; |
||||||
|
|
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| reCAPTCHA Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'recaptchaEnabled' |
||||||
|
| |
||||||
|
| Enables reCAPTCHA (for details see www.google.com/recaptcha/admin) |
||||||
|
| (default: 'admin@example.com') |
||||||
|
| |
||||||
|
| 'recaptchaLoginAttempts' |
||||||
|
| |
||||||
|
| Login Attempts to display reCAPTCHA |
||||||
|
| (default: '') |
||||||
|
| |
||||||
|
| 'recaptchaSiteKey' |
||||||
|
| |
||||||
|
| The reCAPTCHA siteKey |
||||||
|
| (default: '') |
||||||
|
| |
||||||
|
| 'recaptchaSecret' |
||||||
|
| |
||||||
|
| The reCAPTCHA secretKey |
||||||
|
| (default: '') |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $recaptchaEnabled = false; |
||||||
|
public $recaptchaLoginAttempts = 6; |
||||||
|
public $recaptchaSiteKey = ''; |
||||||
|
public $recaptchaSecret = ''; |
||||||
|
|
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| Group Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'adminGroup' |
||||||
|
| |
||||||
|
| Name of admin group |
||||||
|
| (default: 'admin') |
||||||
|
| |
||||||
|
| 'defaultGroup' |
||||||
|
| |
||||||
|
| Name of default group, the new user is added in it |
||||||
|
| (default: 'default') |
||||||
|
| |
||||||
|
| 'publicGroup' |
||||||
|
| |
||||||
|
| Name of Public group , people who not logged in |
||||||
|
| (default: 'public') |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $adminGroup = 'admin'; |
||||||
|
public $defaultGroup = 'default'; |
||||||
|
public $publicGroup = 'public'; |
||||||
|
|
||||||
|
/* |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| Database Variables |
||||||
|
|-------------------------------------------------------------------------- |
||||||
|
| |
||||||
|
| 'dbProfile' |
||||||
|
| |
||||||
|
| The configuration database profile (definied in Config/Database.php) |
||||||
|
| (default: 'default') |
||||||
|
| |
||||||
|
| 'dbTableUsers' |
||||||
|
| |
||||||
|
| The table which containss users |
||||||
|
| (default: 'aauth_users') |
||||||
|
| |
||||||
|
| 'dbTableUserVariables' |
||||||
|
| |
||||||
|
| The table which contains users variables |
||||||
|
| (default: 'aauth_user_variables') |
||||||
|
| |
||||||
|
| 'dbTableLoginAttempts' |
||||||
|
| |
||||||
|
| The table which contains login attempts |
||||||
|
| (default: 'aauth_login_attempts') |
||||||
|
| |
||||||
|
| 'dbTableGroups' |
||||||
|
| |
||||||
|
| The table which contains groups |
||||||
|
| (default: 'aauth_groups') |
||||||
|
| |
||||||
|
| 'dbTableGroupToUser' |
||||||
|
| |
||||||
|
| The table which contains join of users and groups |
||||||
|
| (default: 'aauth_group_to_user') |
||||||
|
| |
||||||
|
| 'dbTableGroupToGroup' |
||||||
|
| |
||||||
|
| The table which contains join of subgroups and groups |
||||||
|
| (default: 'aauth_group_to_group') |
||||||
|
| |
||||||
|
| 'dbTablePerms' |
||||||
|
| |
||||||
|
| The table which contains permissions |
||||||
|
| (default: 'aauth_perms') |
||||||
|
| |
||||||
|
| 'dbTablePermToUser' |
||||||
|
| |
||||||
|
| The table which contains permissions for users |
||||||
|
| (default: 'aauth_perm_to_user') |
||||||
|
| |
||||||
|
| 'dbTablePermToGroup' |
||||||
|
| |
||||||
|
| The table which contains permissions for groups |
||||||
|
| (default: 'aauth_perm_to_group') |
||||||
|
| |
||||||
|
*/ |
||||||
|
public $dbProfile = 'default'; |
||||||
|
public $dbTableUsers = 'aauth_users'; |
||||||
|
public $dbTableUserVariables = 'aauth_user_variables'; |
||||||
|
public $dbTableLoginAttempts = 'aauth_login_attempts'; |
||||||
|
public $dbTableGroups = 'aauth_groups'; |
||||||
|
public $dbTableGroupToUser = 'aauth_group_to_user'; |
||||||
|
public $dbTableGroupToGroup = 'aauth_group_to_group'; |
||||||
|
public $dbTablePerms = 'aauth_perms'; |
||||||
|
public $dbTablePermToUser = 'aauth_perm_to_user'; |
||||||
|
public $dbTablePermToGroup = 'aauth_perm_to_group'; |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue