26 lines
		
	
	
		
			529 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			529 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class AuthApi {
 | 
						|
	public function login(){
 | 
						|
		$token = (new AuthManager)->getToken($this->input->username,$this->input->password);
 | 
						|
		if (!$token) {
 | 
						|
			throw new Exception("Auth failed", 401);
 | 
						|
		}
 | 
						|
		$this->response(['token' => $token]);
 | 
						|
	}
 | 
						|
 | 
						|
	public function logout(){
 | 
						|
		$authenticationBearrer = $_SERVER['HTTP_AUTHORIZATION'];
 | 
						|
		if (!(new AuthManager)->deleteToken($authenticationBearrer)) {
 | 
						|
			throw new Exception("logout Failed", 401);
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	public function registration(){
 | 
						|
 | 
						|
	}
 | 
						|
 | 
						|
	public function restartPassword(){
 | 
						|
 | 
						|
	}
 | 
						|
}
 |