IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

PHP & Base de données Discussion :

variable dans "private $dbhost ="


Sujet :

PHP & Base de données

  1. #1
    Nouveau membre du Club
    Homme Profil pro
    Inscrit en
    Juillet 2011
    Messages
    40
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations forums :
    Inscription : Juillet 2011
    Messages : 40
    Points : 26
    Points
    26
    Par défaut variable dans "private $dbhost ="
    Bonjour,

    J'essaye d'ajouter la variable $dbusername dans class LoginSystem (cette variable est définie dans mon fichier config.php
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     
    include_once('config.php');//dans ce fichier se trouve mes infos de connexion
    class LoginSystem {
     
    	/* Start Config */
     	private $dbhost = "localhost"; 
     	private $dbuser = "nom_utilisateur"; // je souhaiterais mettre ici $dbusername mais la connexion ne fonctionne pas via une variable
    Mais la connexion ne fonctionne pas quand je mets $dbusername ... quand je mets directement le nom d'utilisateur de la bdd cela fonctionne et la variable est bien définie dans $dbusername

    Est-ce possible d'insérer des variables d'un autre fichier via include dans class LoginSystem ?

    Merci d'avance pour l'info,

    Sub

  2. #2
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Tu as mis "dbuser" au lieu de "dbusername".

  3. #3
    Nouveau membre du Club
    Homme Profil pro
    Inscrit en
    Juillet 2011
    Messages
    40
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations forums :
    Inscription : Juillet 2011
    Messages : 40
    Points : 26
    Points
    26
    Par défaut
    J'ai un fichier config.php qui contient la donnée $dbusername et le fichier LoginSystem.php me demande également les info de connexion à la bdd.

    J'ai donc mis
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    include_once('config.php');
    pour inclure la donnée $dbusername

    et au lieu d'avoir
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    private $dbuser = "nom_utilisateur";
    J'essaye d'avoir
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    private $dbuser = $dbusername;
    Mais cela ne semble pas fonctionner

  4. #4
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    ou est l'include ?

  5. #5
    Nouveau membre du Club
    Homme Profil pro
    Inscrit en
    Juillet 2011
    Messages
    40
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations forums :
    Inscription : Juillet 2011
    Messages : 40
    Points : 26
    Points
    26
    Par défaut
    Comme ceci
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    include_once('/cheminversledossierousetrouve/config.php');//dans ce fichier se trouve mes infos de connexion
    class LoginSystem {
     
    	/* Start Config */
     	private $dbhost = "localhost"; 
     	private $dbuser = $dbusername;

  6. #6
    Nouveau membre du Club
    Homme Profil pro
    Inscrit en
    Juillet 2011
    Messages
    40
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations forums :
    Inscription : Juillet 2011
    Messages : 40
    Points : 26
    Points
    26
    Par défaut
    Même quand je fais comme ceci :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    $db_username = "nomdelutilisateur";
    class LoginSystem {
     
    	/* Start Config */
     	private $dbuser= $db_username; // Host Name
    Cela ne fonctionne pas

    erreur =

    Parse error: syntax error, unexpected '$db_username' (T_VARIABLE)

  7. #7
    Modérateur
    Avatar de sabotage
    Homme Profil pro
    Inscrit en
    Juillet 2005
    Messages
    29 208
    Détails du profil
    Informations personnelles :
    Sexe : Homme

    Informations forums :
    Inscription : Juillet 2005
    Messages : 29 208
    Points : 44 155
    Points
    44 155
    Par défaut
    Il faut que tu revois la notion de portée :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    class LoginSystem {
     
        private $dbuser;
        function __construct()   {
    	include('config.php');
     	$this->dbuser= $db_username; // Host Name
    }

  8. #8
    Nouveau membre du Club
    Homme Profil pro
    Inscrit en
    Juillet 2011
    Messages
    40
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Belgique

    Informations forums :
    Inscription : Juillet 2011
    Messages : 40
    Points : 26
    Points
    26
    Par défaut
    Ok je vais me mettre à lire sur la notion de portée parce que j'ai 5 données à pouvoir remplir via include d'un fichier config.php qui contient les données de connexion

    Ce sont les lignes de 24 à 29 que j'essaye de compléter à partir d'un fichier php de configuration
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
     
    <?php
    /*
    .---------------------------------------------------------------------------.
    |  Software: PHP Login System - PHP logSys                                  |
    |   Version: 0.3                                                            |
    |   Contact: http://github.com/subins2000/logsys  (also subinsb.com)        |
    |      Info: http://github.com/subins2000/logsys                            |
    |   Support: http://subinsb.com/ask/php-logsys                              |
    | ------------------------------------------------------------------------- |
    |    Author: Subin Siby (project admininistrator)                           |
    | Copyright (c) 2014, Subin Siby. All Rights Reserved.                      |
    | ------------------------------------------------------------------------- |
    |   License: Distributed under the General Public License (GPL)             |
    |            http://www.gnu.org/licenses/gpl-3.0.html                       |
    | This program is distributed in the hope that it will be useful - WITHOUT  |
    | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or     |
    | FITNESS FOR A PARTICULAR PURPOSE.                                         |
    '---------------------------------------------------------------------------'
    */
    ini_set("display_errors", "on");
    class LoginSystem {
      /* Start Config */
      private $dbhost = "";  // Host Name
      private $dbport = "";  //Port
      private $dbuser = "";  // MySQL Database Username
      private $dbpass = "";  // MySQL Database Password
      private $dbname = "";  // Database Name
      private $dbtable = "";  // Your Users Table
     
      private $secureKey = "";  // A Secure Key For Cookie Encryption. Don't make this public
      private $passwordSalt = "";  // Secret Password Salt. Only change once before making user registration public.
      private $company = "My Site";  // Company for name for including in emails
     
      var $phpsessionstart = true;  // Should I Start A PHP Session
      var $emailLogin = true;  // Make Login With Username & E-Mail Possible
      var $rememberMe = true;  // Add Remember Me Feature.
      var $blockBruteForce = true; // Deny login for $LS->bfTime seconds after incorrect login tries of 5
     
        /* Extra Settings */
     
          /* Set the following variables only if you're going to use $LS->init() */
          public $staticPages = array(
            "/", "/reset.php", "/register.php"
          );  // Pages that doesn't require logging in (exclude login page) (but include register page if you want)
     
          private $loginPage = "/login.php"; // The login page. ex : /login.php or /accounts/login.php
          private $homePage = "/home.php";  // The home page. The main page for logged in users. Redirects to here when logs in
     
          public $bfTime = 300; // The time IN SECONDS for which block from login action should be done after 5 incorrect login attempts. Use http://www.easysurf.cc/utime.htm#m60s for converting minutes to seconds. Default : 5 minutes
     
        /* End Extra Settings */
     
      /* End Config */
     
      public $loggedIn = false;
      public $db = true;
      public $user = false;
      private $initCalled = false;
      private $cookie;
      private $session;
      private $remCook;
      private $dbh;
     
      public function __construct(){
        if($this->phpsessionstart == true){
          session_start();
        }
        /* Try connecting to Database Server */
        try{
          /* Merge the login page to the pages array that doesn't need logging in */
          array_push($this->staticPages, $this->loginPage);
     
          $this->dbh    = new PDO("mysql:dbname={$this->dbname};host={$this->dbhost};port={$this->dbport}", $this->dbuser, $this->dbpass);
          $this->db     = true;
          $this->cookie  = isset($_COOKIE['logSyslogin']) ? $_COOKIE['logSyslogin'] : false;
          $this->session  = isset($_SESSION['logSyscuruser']) ? $_SESSION['logSyscuruser'] : false;
          $this->remCook  = isset($_COOKIE['logSysrememberMe']) ? $_COOKIE['logSysrememberMe'] : false;
     
          $encUserID     = hash("sha256", "{$this->secureKey}{$this->session}{$this->secureKey}");
          $this->loggedIn = $this->cookie == $encUserID ? true : false;
     
          /* If there is a Remember Me Cookie and the user is not logged in, then log in the user with the ID in the remember cookie, if it matches with the secure hashed value in logSyslogin cookie */
          if($this->rememberMe === true && isset($this->remCook) && $this->loggedIn === false){
     
            $encUserID    = hash("sha256", "{$this->secureKey}{$this->remCook}{$this->secureKey}");
            $this->loggedIn = $this->cookie == $encUserID ? true : false;
     
            if($this->loggedIn === true){
              $_SESSION['logSyscuruser'] = $this->remCook;
              $this->session = $this->remCook;
            }
          }
     
          $this->user = $this->session;
          return true;
     
        }catch( PDOException $e ) {
          return false;
        }
      }
     
      /* A function that will automatically redirect user according to his/her login status */
      public function init() {
        if( $this->loggedIn && array_search($this->curPage(), $this->staticPages) !== false ){
          $this->redirect($this->homePage);
        }elseif( !$this->loggedIn && array_search($this->curPage(), $this->staticPages) === false ){
          $this->redirect($this->loginPage);
        }
        $this->initCalled = true;
      }
     
      /* A function to login the user with the username and password given. */
      public function login($username, $password, $cookies = true){
        if($this->db === true){
     
          /* We Add LIMIT to 1 in SQL query because we need to just get an array of data with key as the column name. Nothing else. */
          if($this->emailLogin === true){
            $query = "SELECT `id`, `password`, `password_salt`, `attempt` FROM `{$this->dbtable}` WHERE `username`=:login OR `email`=:login ORDER BY `id` LIMIT 1";
          }else{
            $query = "SELECT `id`, `password`, `password_salt`, `attempt` FROM `{$this->dbtable}` WHERE `username`=:login ORDER BY `id` LIMIT 1";
          }
     
          $sql = $this->dbh->prepare($query);
          $sql->bindValue(":login", $username);
          $sql->execute();
     
          if($sql->rowCount() == 0){
            // No such user like that
            return false;
          }else{
            /* Get the user details */
            $rows    = $sql->fetch(PDO::FETCH_ASSOC);
            $us_id    = $rows['id'];
            $us_pass   = $rows['password'];
            $us_salt   = $rows['password_salt'];
            $status   = $rows['attempt'];
            $saltedPass = hash('sha256', "{$password}{$this->passwordSalt}{$us_salt}");
     
            if(substr($status, 0, 2) == "b-"){
              $blockedTime = substr($status, 2);
              if(time() < $blockedTime){
                $block = true;
                return array(
                  "status"   => "blocked",
                  "minutes"  => round(abs($blockedTime - time()) / 60, 0),
                  "seconds"  => round(abs($blockedTime - time()) / 60*60, 2)
                );
              }else{
                // remove the block, because the time limit is over
                $this->updateUser(array(
                  "attempt" => "" // No tries at all
                ), $us_id);
              }
            }
            if(!isset($block) && ($saltedPass == $us_pass || $password == "")){
              if($cookies === true){
     
                $_SESSION['logSyscuruser'] = $us_id;
                setcookie("logSyslogin", hash("sha256", $this->secureKey.$us_id.$this->secureKey), time()+3600*99*500, "/");
     
                if( isset($_POST['remember_me']) && $this->rememberMe === true ){
                  setcookie("logSysrememberMe", $us_id, time()+3600*99*500, "/");
                }
                $this->loggedIn = true;
     
                // Update the attempt status
                $this->updateUser(array(
                  "attempt" => "" // No tries
                ), $us_id);
     
                // Redirect
                if( $this->initCalled ){
                  $this->redirect($this->homePage);
                }
              }
              return true;
            }else{
              // Incorrect password
              if($this->blockBruteForce === true){
                // Checking for brute force is enabled
                if($status == ""){
                  // User was not logged in before
                  $this->updateUser(array(
                    "attempt" => "1" // Tried 1 time
                  ), $us_id);
                }else if($status == 5){
                  $this->updateUser(array(
                    "attempt" => "b-" . strtotime("+{$this->bfTime} seconds", time()) // Blocked, only available for re-login at the time in UNIX timestamp
                  ), $us_id);
                }else if(substr($status, 0, 2) == "b-"){
                  // Account blocked
                }else if($status < 5){
                  // If the attempts are less than 5 and not 5
                  $this->updateUser(array(
                    "attempt" => $status + 1 // Tried current tries + 1 time
                  ), $us_id);
                }
              }
              return false;
            }
          }
        }
      }
     
      /* A function to register a user with passing the username, password and optionally any other additional fields. */
      public function register( $id, $password, $other = array() ){
        if( $this->userExists($id) || (isset($other['email']) && $this->userExists($other['email'])) ){
          return "exists";
        }else{
          $randomSalt  = $this->rand_string(20);
          $saltedPass  = hash('sha256', "{$password}{$this->passwordSalt}{$randomSalt}");
     
          if( count($other) == 0 ){
            /* If there is no other fields mentioned, make the default query */
            $sql = $this->dbh->prepare("INSERT INTO `{$this->dbtable}` (`username`, `password`, `password_salt`) VALUES(:username, :password, :passwordSalt)");
          }else{
            /* if there are other fields to add value to, make the query and bind values according to it */
            $keys   = array_keys($other);
            $columns = implode(",", $keys);
            $colVals = implode(",:", $keys);
            $sql   = $this->dbh->prepare("INSERT INTO `{$this->dbtable}` (`username`, `password`, `password_salt`, $columns) VALUES(:username, :password, :passwordSalt, :$colVals)");
            foreach($other as $key => $value){
              $value = htmlspecialchars($value);
              $sql->bindValue(":$key", $value);
            }
          }
          /* Bind the default values */
          $sql->bindValue(":username", $id);
          $sql->bindValue(":password", $saltedPass);
          $sql->bindValue(":passwordSalt", $randomSalt);
          $sql->execute();
          return true;
        }
      }
     
      /* Logout the current logged in user by deleting the cookies and destroying session */
      public function logout(){
        session_destroy();
        setcookie("logSyslogin", "", time()-3600, "/");
        setcookie("logSysrememberMe", "", time()-3600, "/");
        $this->redirect($this->loginPage);
        return true;
      }
     
      /* A function to handle the Forgot Password process */
      public function forgotPassword(){
     
        $curStatus = "initial";  // The Current Status of Forgot Password process
        $identName = $this->emailLogin === false ? "Username" : "Username / E-Mail";
     
        if( !isset($_POST['logSysforgotPass']) && !isset($_GET['resetPassToken']) && !isset($_POST['logSysforgotPassRePass']) ){
          $html='<form action="'.$_SERVER['PHP_SELF'].'" method="POST">';
            $html.="<label>$identName<br/><input type='text' id='loginSysIdentification' placeholder='Enter your $identName' size='25' name='identification'/></label>";
            $html.="<br/><button name='logSysforgotPass' type='submit'>Reset Password</button>";
          $html.="</form>";
          echo $html;
          $curStatus = "resetPasswordForm"; // The user had moved to the reset password form ie she/he is currently seeing the forgot password form.
     
        }elseif( isset($_GET['resetPassToken']) && !isset($_POST['logSysforgotPassRePass']) ){
          /* The user gave the password reset token. Check if the token is valid. */
          $_GET['resetPassToken'] = urldecode($_GET['resetPassToken']);
          $sql = $this->dbh->prepare("SELECT `uid` FROM `resetTokens` WHERE `token` = ?");
          $sql->execute(array($_GET['resetPassToken']));
     
          if( $sql->rowCount() == 0 || $_GET['resetPassToken'] == "" ){
            echo "<h3>Error : Wrong/Invalid Token</h3>";
            $curStatus = "invalidToken"; // The token user gave was not valid
          }else{
            /* The token is valid, display the new password form */
            $html  = "<p>The Token key was Authorized. Now, you can change the password</p>";
            $html .= "<form action='{$_SERVER['PHP_SELF']}' method='POST'>";
              $html  .=  "<input type='hidden' name='token' value='{$_GET['resetPassToken']}'/>";
              $html  .=  "<label>New Password<br/><input type='password' name='password'/></label><br/>";
              $html  .=  "<label>Retype Password<br/><input type='password' name='password2'/></label><br/>";
              $html  .=  "<button name='logSysforgotPassRePass'>Reset Password</button>";
            $html  .=  "</form>";
            echo $html;
            $curStatus = "changePasswordForm"; // The token was correct, displayed the change/new password form.
          }
        }elseif( isset($_POST['logSysforgotPassRePass']) ){
          $_POST['token'] = urldecode($_POST['token']);
          $sql = $this->dbh->prepare("SELECT `uid` FROM `resetTokens` WHERE `token` = ?");
          $sql->execute(array($_POST['token']));
     
          if( $sql->rowCount()==0 || $_POST['token']=="" ){
            echo "<h3>Error : Wrong/Invalid Token</h3>";
            $curStatus = "invalidToken"; // The token user gave was not valid
          }else{
            if( $_POST['password'] != $_POST['password2'] || $_POST['password']=="" || $_POST['password2']=="" ){
              echo "<h3>Error : Passwords Don't Match Or Passwords Left Blank</h3>";
              $curStatus = "passwordDontMatch"; // The new password and retype password submitted didn't match
            }else{
     
              $_POST['newPassword'] = $_POST['password2'];
              $this->user        = $sql->fetchColumn();
              $this->loggedIn      = true; // We must create a fake assumption that the user is logged in to change the password as $LS->changePassword() requires the user to be logged in.
     
              if( $this->changePassword($this->secureKey) ){
                $this->user    = false;
                $this->loggedIn = false;
                $sql      = $this->dbh->prepare("DELETE FROM resetTokens WHERE token=?");
                $sql->execute(array($_POST['token']));
                echo "<h3>Success : Password Reset Successful</h3><p>You may now login with your new password.</p>";
                $curStatus = "passwordChanged"; // The password was successfully changed
              }
            }
          }
        }else{
          /* Check if username/email is provided and if it's valid and exists */
          $identification = isset($_POST['identification']) ? $_POST['identification']:"";
          if($identification == ""){
            echo "<h3>Error : $identName not provided</h3>";
            $curStatus = "identityNotProvided"; // The identity was not given
          }else{
            $sql = $this->dbh->prepare("SELECT `email`, `id` FROM `{$this->dbtable}` WHERE `username`=:login OR `email`=:login");
            $sql->bindValue(":login", $identification);
            $sql->execute();
            if($sql->rowCount() == 0){
              echo "<h3>Error : User Not Found</h3>";
              $curStatus = "userNotFound"; // The user with the identity given was not found in the users database
            }else{
              $rows  = $sql->fetch(PDO::FETCH_ASSOC);
              $email = $rows['email'];
              $uid   = $rows['id'];
              $token = $this->rand_string(40);
              $sql   = $this->dbh->prepare("INSERT INTO `resetTokens` (`token`, `uid`, `requested`) VALUES (?, ?, NOW())");
              $sql->execute(array($token, $uid));
              $encodedToken = urlencode($token);
     
              /* Prepare the email to be sent */
              $subject = "Reset Password";
              $body   = "You requested for resetting your password on {$this->company}. For this, please click the following link :
              <blockquote>
                <a href='{$this->curPageURL()}?resetPassToken={$encodedToken}'>Reset Password : {$token}</a>
              </blockquote>";
              $this->sendMail($email, $subject, $body);  /* Change mail() function to something else if you like */
              echo "<p>An email has been sent to your email inbox with instructions. Check Your Mail Inbox and SPAM Folders.</p><p>You can close this window.</p>";
              $curStatus = "emailSent"; // E-Mail has been sent
            }
          }
        }
        return $curStatus;
      }
     
      /* A function that handles the logged in user to change her/his password */
      public function changePassword($parent = ""){
        $curStatus = "initial";  // The Current Status of Change Password action
        if($this->loggedIn){
          if( $parent == $this->secureKey && isset($_POST['newPassword']) && $_POST['newPassword'] != "" ){
            $randomSalt  = $this->rand_string(20);
            $saltedPass = hash('sha256',$_POST['newPassword'].$this->passwordSalt.$randomSalt);
            $sql    = $this->dbh->prepare("UPDATE `{$this->dbtable}` SET `password` = ?, `password_salt` = ? WHERE `id` = ?");
            $sql->execute(array($saltedPass, $randomSalt, $this->user));
            return true;
          }elseif( !isset($_POST['logSysChangePassword']) ){
            $html = "<form action='".$_SERVER['PHP_SELF']."' method='POST'>";
              $html .= "<label>Current Password<br/><input type='password' name='curpass'/></label><br/>";
              $html .= "<label>New Password<br/><input type='password' name='newPassword'/></label><br/>";
              $html .= "<label>Retype New Password<br/><input type='password' name='newPassword2'/></label><br/>";
              $html .= "<button name='logSysChangePassword' type='submit'>Change Password</button>";
            $html .= "</form>";
            echo $html;
            $curStatus = "changePasswordForm"; // The form for changing password is shown now
          }elseif(isset($_POST['logSysChangePassword'])){
            if( isset($_POST['newPassword']) && $_POST['newPassword']!="" && isset($_POST['newPassword2']) && $_POST['newPassword2']!="" && isset($_POST['curpass']) && $_POST['curpass']!="" ){
              $curpass    = $_POST['curpass'];
              $newPassword  = $_POST['newPassword'];
              $newPassword2 = $_POST['newPassword2'];
              $sql      = $this->dbh->prepare("SELECT username FROM `{$this->dbtable}` WHERE id=?");
              $sql->execute(array($this->user));
              $curuserUsername = $sql->fetchColumn();
              if($this->login($curuserUsername, $curpass, false)){
                if($newPassword != $newPassword2){
                  echo "<h3>Error : Password Mismatch</h3>";
                  $curStatus = "newPasswordMismatch"; // The Password's don't match (New Password & Retype Password field)
                }else{
                  $this->changePassword($this->secureKey);
                  echo "<h3>Success : Password Changed Successful</h3>";
                  $curStatus = "passwordChanged"; // Password changed
                }
              }else{
                echo "<h3>Error : Current Password Was Wrong</h3>";
                $curStatus = "currentPasswordWrong"; // The current password entered was wrong
              }
            }else{
              echo "<h3>Error : Password Fields was blank</h3>";
              $curStatus = "newPasswordFieldsBlank"; // Blank new password field
            }
          }
        }else{
          echo "<h3>Error : Not Logged In</h3>";
          $curStatus = "notLoggedIn"; // Not logged In
        }
        return $curStatus;
      }
     
      /* Check if user exists with ther username/email given */
      public function userExists($username){
        if($this->emailLogin === true){
          $query = "SELECT `id` FROM `{$this->dbtable}` WHERE `username`=:login OR `email`=:login";
        }else{
          $query = "SELECT `id` FROM `{$this->dbtable}` WHERE `username`=:login";
        }
        $sql = $this->dbh->prepare($query);
        $sql->execute(array(
          ":login" => $username
        ));
        return $sql->rowCount() == 0 ? false : true;
      }
     
      /* Fetches data of user in database. Returns a single value or an array of value according to parameteres given to the function */
      public function getUser($what = "*", $user = null){
        if($user == null){
          $user = $this->user;
        }
        if( is_array($what) ){
          $columns = implode("`,`", $what);
          $columns  = "`{$columns}`";
        }else{
          $columns = $what != "*" ? "`$what`" : "*";
        }
     
        $sql = $this->dbh->prepare("SELECT {$columns} FROM `{$this->dbtable}` WHERE `id`=? ORDER BY `id` LIMIT 1");
        $sql->execute(array($user));
     
        $data = $sql->fetch(PDO::FETCH_ASSOC);
        if( !is_array($what) ){
          $data = $what == "*" ? $data : $data[$what];
        }
        return $data;
      }
     
      /* Updates the user data */
      public function updateUser($toUpdate = array(), $user = null){
        if( is_array($toUpdate) && !isset($toUpdate['id']) ){
          if($user == null){
            $user = $this->user;
          }
          $columns = "";
          foreach($toUpdate as $k => $v){
            $columns .= "`$k` = :$k, ";
          }
          $columns = substr($columns, 0, -2); // Remove last ","
     
          $sql = $this->dbh->prepare("UPDATE `{$this->dbtable}` SET {$columns} WHERE `id`=:id");
          $sql->bindValue(":id", $user);
          foreach($toUpdate as $key => $value){
            $value = htmlspecialchars($value);
            $sql->bindValue(":$key", $value);
          }
          $sql->execute();
     
        }else{
          return false;
        }
      }
     
      /* Returns a string which shows the time since the user has joined */
      public function timeSinceJoin($user = null){
        if($user == null){
          $user = $this->user;
        }
        $created   = $this->getUser("created");
        $timeFirst  = strtotime($created);
        $timeSecond = strtotime("now");
        $memsince   = $timeSecond - strtotime($created);
        $regged     = date("n/j/Y", strtotime($created));
     
        if($memsince < 60) {
          $memfor = $memsince . "Seconds";
        }else if($memsince < 3600 && $memsince > 60){
          $memfor = floor($memsince / 60) . " Minutes";
        }else if($memsince < 86400 && $memsince > 60){
          $memfor = floor($memsince / 3600) . " Hours";
        }else if($memsince < 604800 && $memsince > 3600){
          $memfor = floor($memsince / 86400) . " Days";
        }else if($memsince < 2592000 && $memsince > 86400){
          $memfor = floor($memsince / 604800) . " Weeks";
        }else if($memsince > 604800){
          $memfor = floor($memsince / 2592000) . " Months";
        }
        return (string) $memfor;
      }
     
      /* Extra Tools/Functions */
     
      /* Check if valid E-Mail */
      public function validEmail($email = ""){
        return filter_var($email, FILTER_VALIDATE_EMAIL);
      }
     
      /* Get the current page URL */
      public function curPageURL() {
        $pageURL = 'http';
        if(isset($_SERVER["HTTPS"]) && $_SERVER["HTTPS"] == "on"){$pageURL .= "s";}
        $pageURL .= "://";
        if($_SERVER["SERVER_PORT"] != "80") {
          $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
        }else{
          $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
        }
        return $pageURL;
      }
     
      /* Generate a Random String */
      public function rand_string($length) {
        $str="";
        $chars = "subinsblogabcdefghijklmanopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
        $size = strlen($chars);
        for($i = 0;$i < $length;$i++) {
          $str .= $chars[rand(0,$size-1)];
        }
        return $str;
      }
     
      /* Get the current page path */
      public function curPage(){
        $parts = parse_url($this->curPageURL());
        return $parts["path"];
      }
     
      /* Do a redirect */
      public function redirect($url, $status=302){
        header("Location: $url", true, $status);
        exit;
      }
     
      /* Any mails need to be snt by logSys goes to here. */
      public function sendMail($email, $subject, $body){
        mail($email, $subject, $body);  /* Change this to something else if you don't like PHP's mail() */
      }
      /* End Extra Tools/Functions */
    }
    ?>

Discussions similaires

  1. [PowerShell] double quotes et variables dans une ligne de script Powershell
    Par Aenean dans le forum Scripts/Batch
    Réponses: 1
    Dernier message: 08/12/2014, 17h55
  2. Réponses: 5
    Dernier message: 15/04/2005, 14h22

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo