Exemple #1
0
					</div>
				</div>
				<hr id="login-hr">
				<div class="ui login form">
					<form class="login-form" method="post">
						<div class="field username">
							<label>Username</label>
							<input type="text" id="username" name="username" placeholder="Username">
							<p class="note">You can login with your username, email or id.</p>
						</div>
						<div class="field password">
							<label>Password</label>
							<input type="password" name="password" placeholder="Password">
						</div>
							<br>
							<button class="ui button green submit" type="submit">Log in</button>
						<input type="hidden" name="auth_token" value="<?php 
echo Token::generateToken();
?>
" />
					</form>
				</div>
			</div>
		</div>
	</div>
<script src="/scripts/auth.js"></script>
<?php 
include ROOT_PATH . 'inc/footer.php';
?>
</body>
</html>
 static function install()
 {
     $token = Token::generateToken();
     add_option('watchtower', array('access_token' => $token));
     flush_rewrite_rules();
 }
 /**
  *
  */
 public function access_token_callback()
 {
     printf('<input type="hidden" id="access_token" name="watchtower[access_token]" value="' . Token::generateToken() . '" />', isset($this->options['access_token']) ? esc_attr($this->options['access_token']) : '');
 }
Exemple #4
0
    }
    // Check if username exists
    if (User::where('nickname', 'like', $req_body->nickname)->count()) {
        $app->halt(400, 'nickname_exists');
    }
    try {
        $user = new User();
        $user->nickname = $req_body->nickname;
        $user->gender = $req_body->gender;
        $user->password = sha1($req_body->password1);
        $user->educationLevel()->associate(EducationLevel::find((int) $req_body->schoolAdvice));
        $user->school()->associate(School::find((int) $req_body->school));
        $user->save();
        // Create token
        $token = new Token();
        $token->generateToken();
        $token->user()->associate($user);
        $token->save();
    } catch (Exception $e) {
        $app->halt(500, 'something_went_wrong');
    }
    echo $token->toJson();
});
$app->get('/user', function () use($app) {
    $app->response()->header('Content-Type', 'application/json');
    $token_key = $app->request->headers->get('Authorization');
    try {
        $user = User::with('talents', 'token')->whereHas('token', function ($q) use($token_key) {
            $q->where('key', '=', $token_key);
        })->firstOrFail();
    } catch (ModelNotFoundException $e) {