コード例 #1
0
 private function createAdminUser($details)
 {
     if (isset($details['adminUserName']) && isset($details['adminUserName'])) {
         $pl = new Player();
         $pl->grantAdminAccess();
         $pl->setUsername($details['adminUserName']);
         $pl->setPassword($details['adminPassword']);
         $pl->commit();
         $session = new Session();
         $session->signIn(array('username' => $details['adminUserName'], 'password' => $details['adminPassword'], 'rememberMe' => true));
     }
 }
コード例 #2
0
 public function createUser($username, $password)
 {
     $player = new Player();
     if (!$player->exists()) {
         $player->createTable();
     }
     $player->setUsername($username);
     $player->setPassword($password);
     $player->setEmail('*****@*****.**');
     $player->setOnlinePlayer('1');
     $player->commit();
     return $player;
 }
コード例 #3
0
ファイル: admincp.php プロジェクト: jamuraa/gatherling
function handleActions()
{
    global $hasError;
    global $errormsg;
    if (!isset($_POST['action'])) {
        return;
    }
    if ($_POST['action'] == "Change Password") {
        $player = new Player($_POST['username']);
        $player->setPassword($_POST['new_password']);
        $result = "Password changed for user {$player->name} to {$_POST['new_password']}";
    }
    if (isset($result)) {
        echo "<div class=\"notice\">{$result}</div>";
    }
}
コード例 #4
0
ファイル: player.php プロジェクト: jamuraa/gatherling
if ($player == NULL) {
    echo "<center> You must <a href=\"login.php\">log in</a> to use your player control panel.</center>\n";
} else {
    // Handle actions
    if (isset($_POST['action'])) {
        if ($_POST['action'] == 'setIgnores') {
            setPlayerIgnores();
        } else {
            if ($_POST['action'] == 'changePassword') {
                $success = false;
                if ($_POST['newPassword2'] == $_POST['newPassword']) {
                    if (strlen($_POST['newPassword']) >= 6) {
                        $authenticated = Player::checkPassword($_POST['username'], $_POST['oldPassword']);
                        if ($authenticated) {
                            $player = new Player($_POST['username']);
                            $player->setPassword($_POST['newPassword']);
                            $result = "Password changed.";
                            $success = true;
                        } else {
                            $result = "Password *not* changed, your old password was incorrect!";
                        }
                    } else {
                        $result = "Password *not* changed, your new password needs to be longer!";
                    }
                } else {
                    $result = "Password *not* changed, your new passwords did not match!";
                }
            } else {
                if ($_POST['action'] == 'verifyAccount') {
                    $success = false;
                    if ($player->checkChallenge($_POST['challenge'])) {
コード例 #5
0
ファイル: EloTest.php プロジェクト: manishkhanchandani/mkgxy
 private function getUserWithNonProvisionalElo($eloValue = null)
 {
     $pl = new Player();
     $pl->setUsername(uniqid('user'));
     $pl->setPassword(uniqid('pass'));
     $pl->commit();
     $eloSetter = new EloSetter(1);
     for ($i = 0; $i < 10; $i++) {
         $eloSetter->registerResult($pl, $this->getUserWithElo(1500), 1);
         $eloSetter->registerResult($pl, $this->getUserWithElo(1400), 1);
         $eloSetter->registerResult($pl, $this->getUserWithElo(1200), -1);
         $eloSetter->registerResult($pl, $this->getUserWithElo(2000), 0.5);
     }
     if (isset($eloValue)) {
         $elo = new Elo($pl->getId(), 1);
         $elo->setElo($eloValue);
         $elo->commit();
         return new Player($pl->getId());
     }
     return $pl;
 }