mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-12 03:25:48 +01:00
80 lines
1.9 KiB
PHP
80 lines
1.9 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Cachet HQ <support@cachethq.io>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Http\Middleware;
|
|
|
|
use CachetHQ\Cachet\Models\User;
|
|
use Closure;
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|
|
|
class ApiAuthenticate
|
|
{
|
|
/**
|
|
* The Guard implementation.
|
|
*
|
|
* @var \Illuminate\Contracts\Auth\Guard
|
|
*/
|
|
protected $auth;
|
|
|
|
/**
|
|
* Create a new filter instance.
|
|
*
|
|
* @param \Illuminate\Contracts\Auth\Guard $auth
|
|
*/
|
|
public function __construct(Guard $auth)
|
|
{
|
|
$this->auth = $auth;
|
|
}
|
|
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
if ($apiToken = $request->header('X-Cachet-Token')) {
|
|
try {
|
|
$user = User::findByApiToken($apiToken);
|
|
|
|
$this->auth->onceUsingId($user->id);
|
|
} catch (ModelNotFoundException $e) {
|
|
return $this->handleError();
|
|
}
|
|
} elseif ($user = $request->getUser()) {
|
|
if ($this->auth->onceBasic() !== null) {
|
|
return $this->handleError();
|
|
}
|
|
} else {
|
|
return $this->handleError();
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
|
|
/**
|
|
* Common method for returning an unauthorized error.
|
|
*
|
|
* @return \Symfony\Component\HttpFoundation\Response
|
|
*/
|
|
protected function handleError()
|
|
{
|
|
return response()->json([
|
|
'message' => 'You are not authorized to view this content.',
|
|
'status_code' => 401,
|
|
], 401);
|
|
}
|
|
}
|