Example #1
0
File: Auth.php Project: getkep/kep
 /**
  * Check user session integrity.
  *
  * @acess public
  *
  * @param string $user  Username
  * @param string $token Access token
  */
 public function checkToken($user, $token)
 {
     if (!isset($_SESSION)) {
         session_start();
     }
     if (parent::isAuth() == true) {
         if (isset($_SESSION['uid'])) {
             // Layer 1 - sent token check and compare the session
             if ($_SESSION['token'] == $token) {
                 // Layer 2 - Check the database
                 $result = parent::authentication();
                 if ($result == $_SESSION['token']) {
                     // Successful authentication
                     return $auth['result'] = 'true';
                 } else {
                     return $auth['result'] = 'false';
                     // Returns error
                 }
             } else {
                 return $auth['result'] = 'false';
                 // returns error
             }
         } else {
             return $auth['result'] = 'false';
             // Returns error, because there is no session
         }
     } else {
         return $auth['result'] = 'disabled';
     }
 }
Example #2
0
 public function testing($name)
 {
     $result = DB::select('SELECT * FROM Users WHERE Name = ?', [$name]);
     return $result;
 }